pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/createbuildlink Update to 2.7:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c86d35fb79ad
branches:  trunk
changeset: 461626:c86d35fb79ad
user:      jmmv <jmmv%pkgsrc.org@localhost>
date:      Thu Sep 18 14:15:00 2003 +0000

description:
Update to 2.7:
- Do not include pkgconfig's nor intltool's dependancies in new generated bl2
  files.  These are *build* dependancies, and the package providing the bl2
  should not assume we will be using them.

diffstat:

 pkgtools/createbuildlink/Makefile              |  4 ++--
 pkgtools/createbuildlink/files/createbuildlink |  7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)

diffs (43 lines):

diff -r 3c84704f35b0 -r c86d35fb79ad pkgtools/createbuildlink/Makefile
--- a/pkgtools/createbuildlink/Makefile Thu Sep 18 14:06:12 2003 +0000
+++ b/pkgtools/createbuildlink/Makefile Thu Sep 18 14:15:00 2003 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.17 2003/07/17 22:52:13 grant Exp $
+# $NetBSD: Makefile,v 1.18 2003/09/18 14:15:00 jmmv Exp $
 #
 
-DISTNAME=      createbuildlink-2.6
+DISTNAME=      createbuildlink-2.7
 WRKSRC=                ${WRKDIR}
 CATEGORIES=    pkgtools sysutils
 MASTER_SITES=  # Nothing
diff -r 3c84704f35b0 -r c86d35fb79ad pkgtools/createbuildlink/files/createbuildlink
--- a/pkgtools/createbuildlink/files/createbuildlink    Thu Sep 18 14:06:12 2003 +0000
+++ b/pkgtools/createbuildlink/files/createbuildlink    Thu Sep 18 14:15:00 2003 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-#      $NetBSD: createbuildlink,v 1.13 2003/04/29 01:36:08 rh Exp $
+#      $NetBSD: createbuildlink,v 1.14 2003/09/18 14:15:01 jmmv Exp $
 #
 # Copyright (c) 2002 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -39,7 +39,7 @@
 # Create an initial buildlink2.mk from a package's Makefile and PLIST
 #
 
-REV=`echo '$Revision: 1.13 $' | sed 's/\\$//g'`
+REV=`echo '$Revision: 1.14 $' | sed 's/\\$//g'`
 tmpdir=/tmp
 makefile=Makefile
 sedrules=$tmpdir/sedrules.buildlink.$$
@@ -164,7 +164,8 @@
 ## buildlinked dependencies
 ##
 for i in $makefile $commons ; do
-       [ ! -f $i ] || grep '^.include.*\.\.\/.*\/.*/buildlink2.mk\"' $i
+       [ ! -f $i ] || grep '^.include.*\.\.\/.*\/.*/buildlink2.mk\"' $i |
+               grep -v devel/pkgconfig | grep -v textproc/intltool
 done
 grep -l '^.include.*\.\.\/.*\/.*/buildlink2.mk\"' $makefile $commons \
        >/dev/null 2>&1 && echo ""      # Be careful not to print duplicate \n



Home | Main Index | Thread Index | Old Index