summaryrefslogtreecommitdiff
path: root/pkgtools/url2pkg
diff options
context:
space:
mode:
authorrillig <rillig>2009-11-20 11:49:18 +0000
committerrillig <rillig>2009-11-20 11:49:18 +0000
commit59da14dd26f0c26e66fa47148c90ec59f06e64ef (patch)
tree61dc3a3071ddddeee76d18db24c032c58912f340 /pkgtools/url2pkg
parent1a214bc6d171e66f7251731909566d233d8663f6 (diff)
downloadpkgsrc-59da14dd26f0c26e66fa47148c90ec59f06e64ef.tar.gz
Applied patch from PR 38423 by Sergey Svishchev.
Increased the version number to 2.12.
Diffstat (limited to 'pkgtools/url2pkg')
-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;