diff options
author | wiz <wiz@pkgsrc.org> | 2014-02-17 10:32:02 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-02-17 10:32:02 +0000 |
commit | 5951356af26c39888181daaca5bd52322d9ae6e4 (patch) | |
tree | 6fc306945b61f6d974d39d7b56f03bca1cd6f916 /pkgtools/port2pkg | |
parent | 8a0469d7d594f907bcdb7224ac611dc0c1de73a0 (diff) | |
download | pkgsrc-5951356af26c39888181daaca5bd52322d9ae6e4.tar.gz |
Do not keep FreeBSD Id, since imports are one-offs anyway.
Bump version.
Diffstat (limited to 'pkgtools/port2pkg')
-rw-r--r-- | pkgtools/port2pkg/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/port2pkg/files/port2pkg.pl | 8 |
2 files changed, 4 insertions, 8 deletions
diff --git a/pkgtools/port2pkg/Makefile b/pkgtools/port2pkg/Makefile index c98de047670..993f9a51958 100644 --- a/pkgtools/port2pkg/Makefile +++ b/pkgtools/port2pkg/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.41 2013/11/19 10:46:06 tron Exp $ +# $NetBSD: Makefile,v 1.42 2014/02/17 10:32:02 wiz Exp $ -DISTNAME= port2pkg-1.14 +DISTNAME= port2pkg-1.15 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/port2pkg/files/port2pkg.pl b/pkgtools/port2pkg/files/port2pkg.pl index a0a60ad92fd..269acadab80 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.21 2013/11/19 10:46:06 tron Exp $ +# $NetBSD: port2pkg.pl,v 1.22 2014/02/17 10:32:02 wiz Exp $ # use Getopt::Std; @@ -157,11 +157,7 @@ sub conv_Makefile { while (<PORTS>) { last if (! /^\#/); - if (/\$FreeBSD(: .*) \$/ || /\$Id(: .*) \$/) { - print PKG "\# FreeBSD Id$1\n"; - } else { - print; - } + print; } print PKG; |