diff options
author | wiz <wiz> | 2001-02-16 13:06:17 +0000 |
---|---|---|
committer | wiz <wiz> | 2001-02-16 13:06:17 +0000 |
commit | fefb24e96e9712b851edf712ea14b1c0a295ace9 (patch) | |
tree | d451a3db8b4e988109ec4e1b267be49694da109b /pkgtools/port2pkg/files | |
parent | 010b7c39b7b933b63231f256d54ad26fdb775ab7 (diff) | |
download | pkgsrc-fefb24e96e9712b851edf712ea14b1c0a295ace9.tar.gz |
Change COMMENT handling:
COMMENTs are now a variable in the Makefile instead of a pkg/COMMENT
file. The COMMENT var should be in the maintainer block after the
homepage.
Modify bsd.pkg.mk, pkglint, url2pkg, and port2pkg (last one untested)
for the new behaviour. Document new state in Packages.txt.
This should save lots of inodes, and lots of time when untarring/updating.
Idea by Alistair Crooks.
For the time being, accept pkg/COMMENT instead of a COMMENT var to avoid
a flag day.
Diffstat (limited to 'pkgtools/port2pkg/files')
-rwxr-xr-x | pkgtools/port2pkg/files/port2pkg.pl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgtools/port2pkg/files/port2pkg.pl b/pkgtools/port2pkg/files/port2pkg.pl index 549bb57c876..e1914421258 100755 --- a/pkgtools/port2pkg/files/port2pkg.pl +++ b/pkgtools/port2pkg/files/port2pkg.pl @@ -1,6 +1,6 @@ #!/usr/bin/env perl # -# $NetBSD: port2pkg.pl,v 1.7 2001/01/04 20:22:47 sommerfeld Exp $ +# $NetBSD: port2pkg.pl,v 1.8 2001/02/16 13:06:20 wiz Exp $ # require 'getopts.pl'; @@ -239,6 +239,14 @@ sub conv_Makefile { } } close(DESCR); + open(COMMENT, "$pkgdir/pkg/COMMENT") + || die "$pkgdir/pkg/COMMENT: $!\n"; + while (<COMMENT>) { + chomp; + print PKG "COMMENT=\t$1\n"; + } + close(COMMENT); + unlink("$pkgdir/pkg/COMMENT"); } elsif ($noportdocs || /^\.if.*NOPORTDOCS/) { if (/^\.if/) { $noportdocs++; |