summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2009-11-20 11:49:18 +0000
committerrillig <rillig@pkgsrc.org>2009-11-20 11:49:18 +0000
commit06d34c3264af713c1a25e4196969e8d3dba5adaf (patch)
tree61dc3a3071ddddeee76d18db24c032c58912f340 /pkgtools
parentea628224883a93d3550305b889d7851f9d7cfc9a (diff)
downloadpkgsrc-06d34c3264af713c1a25e4196969e8d3dba5adaf.tar.gz
Applied patch from PR 38423 by Sergey Svishchev.
Increased the version number to 2.12.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/url2pkg/Makefile4
-rw-r--r--pkgtools/url2pkg/files/url2pkg.pl9
2 files changed, 5 insertions, 8 deletions
diff --git a/pkgtools/url2pkg/Makefile b/pkgtools/url2pkg/Makefile
index 0b336cf84b4..afb9481b532 100644
--- a/pkgtools/url2pkg/Makefile
+++ b/pkgtools/url2pkg/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.59 2009/07/31 22:27:49 rillig Exp $
+# $NetBSD: Makefile,v 1.60 2009/11/20 11:49:18 rillig Exp $
#
-DISTNAME= url2pkg-2.11
+DISTNAME= url2pkg-2.12
CATEGORIES= pkgtools
MASTER_SITES= # none
DISTFILES= # none
diff --git a/pkgtools/url2pkg/files/url2pkg.pl b/pkgtools/url2pkg/files/url2pkg.pl
index 5a712f3e9f6..4396ad51e97 100644
--- a/pkgtools/url2pkg/files/url2pkg.pl
+++ b/pkgtools/url2pkg/files/url2pkg.pl
@@ -1,5 +1,5 @@
#! @PERL@
-# $NetBSD: url2pkg.pl,v 1.14 2009/07/31 22:27:04 rillig Exp $
+# $NetBSD: url2pkg.pl,v 1.15 2009/11/20 11:49:18 rillig Exp $
#
use strict;
@@ -298,16 +298,13 @@ sub generate_initial_package($) {
print PLIST ("\@comment \$NetBSD\$\n");
close(PLIST) or die;
- open(DI, ">", "distinfo") or die;
- close(DI) or die;
-
open(DESCR, ">", "DESCR") or die;
close(DESCR) or die;
run_editor("Makefile", 5);
- print ("url2pkg> Running \"make makesum\" ...\n");
- (system { $make } ($make, "makesum")) == 0 or die;
+ print ("url2pkg> Running \"make distinfo\" ...\n");
+ (system { $make } ($make, "distinfo")) == 0 or die;
print ("url2pkg> Running \"make extract\" ...\n");
(system { $make } ($make, "extract")) == 0 or die;