diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2003-01-17 04:43:06 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2003-01-17 04:43:06 +0000 |
commit | 175f0f7f4f7c5314e0a5f403783315f5f4f4e508 (patch) | |
tree | 692bd23ccfdebbbf632235354df1225d889d6cc0 /lang | |
parent | 16d3201ca2b2f5545b13f2884c9ee37cbe9783a2 (diff) | |
download | pkgsrc-175f0f7f4f7c5314e0a5f403783315f5f4f4e508.tar.gz |
'guile-config' didn't produce runtime path information in 'link' command. Fix
it, bump revision to 2.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/guile14/Makefile | 4 | ||||
-rw-r--r-- | lang/guile14/buildlink2.mk | 4 | ||||
-rw-r--r-- | lang/guile14/distinfo | 3 | ||||
-rw-r--r-- | lang/guile14/patches/patch-ae | 13 |
4 files changed, 19 insertions, 5 deletions
diff --git a/lang/guile14/Makefile b/lang/guile14/Makefile index 4e8e12da0e0..e7eb7b21fc9 100644 --- a/lang/guile14/Makefile +++ b/lang/guile14/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2003/01/16 16:42:06 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2003/01/17 04:43:06 uebayasi Exp $ DISTNAME= guile-1.4.1 PKGNAME= guile14-1.4.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GNU:=guile/} diff --git a/lang/guile14/buildlink2.mk b/lang/guile14/buildlink2.mk index 81d6cf26379..1e8031ad2fc 100644 --- a/lang/guile14/buildlink2.mk +++ b/lang/guile14/buildlink2.mk @@ -1,10 +1,10 @@ -# $NetBSD: buildlink2.mk,v 1.5 2003/01/16 17:02:25 wiz Exp $ +# $NetBSD: buildlink2.mk,v 1.6 2003/01/17 04:43:06 uebayasi Exp $ .if !defined(GUILE14_BUILDLINK2_MK) GUILE14_BUILDLINK2_MK= # defined BUILDLINK_PACKAGES+= guile14 -BUILDLINK_DEPENDS.guile14?= guile14>=1.4nb1 +BUILDLINK_DEPENDS.guile14?= guile14>=1.4nb2 BUILDLINK_PKGSRCDIR.guile14?= ../../lang/guile14 # Put only 'bin/guile' and 'bin/guile-config' at ${BUILDLINK_DIR} diff --git a/lang/guile14/distinfo b/lang/guile14/distinfo index 22ba2efb32a..b1f2b3bc385 100644 --- a/lang/guile14/distinfo +++ b/lang/guile14/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.1.1.1 2003/01/07 00:58:27 uebayasi Exp $ +$NetBSD: distinfo,v 1.2 2003/01/17 04:43:06 uebayasi Exp $ SHA1 (guile-1.4.1.tar.gz) = 81a91ea7480ca06d1aeda94b90a89b27e9bdea7a Size (guile-1.4.1.tar.gz) = 1502840 bytes SHA1 (patch-aa) = 22a9181066193cadc3663ae43d42e9f81d55c8e1 SHA1 (patch-ad) = c692027caed122ef840a9ef3bf78eb125b26441e +SHA1 (patch-ae) = 98174a540753d1eb5ac9071fb3ebd073158d8e93 diff --git a/lang/guile14/patches/patch-ae b/lang/guile14/patches/patch-ae new file mode 100644 index 00000000000..6d33dd7b522 --- /dev/null +++ b/lang/guile14/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2003/01/17 04:43:06 uebayasi Exp $ + +--- guile-config/guile-config.in.orig Thu Jan 3 20:05:00 2002 ++++ guile-config/guile-config.in +@@ -164,7 +164,7 @@ + + ;; Include libguile itself in the list, along with the + ;; directory it was installed in. +- (flags (cons (string-append "-L" (get-build-info 'libdir)) ++ (flags (cons (string-append "-Wl,-R" (get-build-info 'libdir) " -L" (get-build-info 'libdir)) + (cons "-lguile" flags)))) + + ;; Display the flags, separated by spaces. |