diff options
author | cjep <cjep> | 2003-01-04 11:27:44 +0000 |
---|---|---|
committer | cjep <cjep> | 2003-01-04 11:27:44 +0000 |
commit | bfe6517aea1207e10f70bbd26541dd9f6bd6f9d7 (patch) | |
tree | 25b32d55b35ca2f33b7b14235e05e8679dcd1ebc /sysutils/fakeroot | |
parent | 257e4aad01a8dec087ed18532525470f25594d39 (diff) | |
download | pkgsrc-bfe6517aea1207e10f70bbd26541dd9f6bd6f9d7.tar.gz |
Fix configure process.
Diffstat (limited to 'sysutils/fakeroot')
-rw-r--r-- | sysutils/fakeroot/Makefile | 5 | ||||
-rw-r--r-- | sysutils/fakeroot/distinfo | 3 | ||||
-rw-r--r-- | sysutils/fakeroot/patches/patch-ab | 42 |
3 files changed, 45 insertions, 5 deletions
diff --git a/sysutils/fakeroot/Makefile b/sysutils/fakeroot/Makefile index 4ea00f7f04a..66fe467bc86 100644 --- a/sysutils/fakeroot/Makefile +++ b/sysutils/fakeroot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/12/20 11:23:53 lonewolf Exp $ +# $NetBSD: Makefile,v 1.2 2003/01/04 11:27:44 cjep Exp $ # DISTNAME= fakeroot_0.5.8 @@ -14,7 +14,4 @@ USE_LIBTOOL= YES LIBTOOL_OVERRIDE=${WRKSRC}/libtool GNU_CONFIGURE= YES -# XXX Kludge, configure bombs without this on my -current -CONFIG_SHELL= - .include "../../mk/bsd.pkg.mk" diff --git a/sysutils/fakeroot/distinfo b/sysutils/fakeroot/distinfo index 9cd6be92bf2..9b6e464874c 100644 --- a/sysutils/fakeroot/distinfo +++ b/sysutils/fakeroot/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/12/20 11:23:54 lonewolf Exp $ +$NetBSD: distinfo,v 1.2 2003/01/04 11:27:44 cjep Exp $ SHA1 (fakeroot_0.5.8.tar.gz) = 84931109b1f734e0aeedd5ada2ef79d503de198b Size (fakeroot_0.5.8.tar.gz) = 420642 bytes SHA1 (patch-aa) = f0d712b2880c9d4309ba426b98e8600e8ca14ffb +SHA1 (patch-ab) = cb921a4b9babe356e17cde41a07e92e46d6ebd0a diff --git a/sysutils/fakeroot/patches/patch-ab b/sysutils/fakeroot/patches/patch-ab new file mode 100644 index 00000000000..3a2425b5c3a --- /dev/null +++ b/sysutils/fakeroot/patches/patch-ab @@ -0,0 +1,42 @@ +$NetBSD: patch-ab,v 1.1 2003/01/04 11:27:45 cjep Exp $ + +--- configure.orig Wed Dec 11 23:47:39 2002 ++++ configure +@@ -10587,29 +10587,28 @@ fi + + + case $target_cpu:$target_os in +- (alpha*:linux*) +- (ia64*:linux*) ++ alpha*:linux*|ia64*:linux*) + libcpath="/lib/libc.so.6.1" + ;; +- (*:linux*) ++ *:linux*) + libcpath="/lib/libc.so.6" + ;; +- (*:freebsd*) ++ *:freebsd*) + libcpath="/usr/lib/libc.so.4" + ;; +- (*:netbsd*) ++ *:netbsd*) + libcpath="/usr/lib/libc.so.12" + ;; +- (*:openbsd*) ++ *:openbsd*) + libcpath="/usr/lib/libc.so.25.2" + ;; +- (*:hpux*) ++ *:hpux*) + libcpath="/usr/lib/hpux32/libc.so.1" + ;; +- (*:osf*) ++ *:osf*) + libcpath="/shlib/libc.so" + ;; +- (*) ++ *) + { echo "$as_me:$LINENO: WARNING: don't know where libc is for $target_os on + $target_cpu, setting to /lib/libc.so" >&5 + echo "$as_me: WARNING: don't know where libc is for $target_os on |