Update to 1.32:
* Don't use ${WRKSRC} for PKGCONFIG_OVERRIDE (it's assigned automatically) * If there are pkg-config files, now it will add "USE_TOOLS+= pkg-config".
This commit is contained in:
parent
7d0b3d06dc
commit
6c95a6da67
2 changed files with 8 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.38 2005/10/18 21:10:28 rh Exp $
|
||||
# $NetBSD: Makefile,v 1.39 2006/01/05 17:26:54 xtraeme Exp $
|
||||
#
|
||||
|
||||
DISTNAME= url2pkg-1.31
|
||||
DISTNAME= url2pkg-1.32
|
||||
CATEGORIES= pkgtools sysutils
|
||||
MASTER_SITES= # Nothing
|
||||
DISTFILES= # Nothing
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $NetBSD: url2pkg,v 1.33 2005/10/18 21:10:28 rh Exp $
|
||||
# $NetBSD: url2pkg,v 1.34 2006/01/05 17:26:54 xtraeme Exp $
|
||||
#
|
||||
# url2pkg
|
||||
# (c) 1999-2002 Hubert Feyrer <hubert@feyrer.de>
|
||||
|
@ -186,8 +186,12 @@ echo "Fixing up Makefile."
|
|||
echo "USE_LIBTOOL= $USE_LIBTOOL"
|
||||
fi
|
||||
|
||||
if [ -n $PKGCONFIGS ]; then
|
||||
echo "USE_TOOLS+= pkg-config"
|
||||
fi
|
||||
|
||||
for i in $PKGCONFIGS ; do
|
||||
echo "PKGCONFIG_OVERRIDE+= \${WRKSRC}/$i"
|
||||
echo "PKGCONFIG_OVERRIDE+= $i"
|
||||
done
|
||||
|
||||
if [ "${HAS_CONFIGURE}" != "" ]; then
|
||||
|
|
Loading…
Reference in a new issue