diff options
author | tnn <tnn@pkgsrc.org> | 2009-08-27 11:59:38 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-08-27 11:59:38 +0000 |
commit | c9d4965bc08f15ae0616afa38f928bd8cf91426e (patch) | |
tree | 554c95695d0d7210dc8210efbc4975f3bcf3693a | |
parent | 1eabae19a94e90d5cb11d9181423d36fd2fceb6c (diff) | |
download | pkgsrc-c9d4965bc08f15ae0616afa38f928bd8cf91426e.tar.gz |
patch-aj: "nspr-config --libs" returned the wrong directory. Fix this.
Found by Evaldo Gardenali.
Bump PKGREVISION.
-rw-r--r-- | devel/nspr/Makefile | 4 | ||||
-rw-r--r-- | devel/nspr/distinfo | 3 | ||||
-rw-r--r-- | devel/nspr/patches/patch-aj | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/devel/nspr/Makefile b/devel/nspr/Makefile index 4baf501fcc2..9283c74d7b8 100644 --- a/devel/nspr/Makefile +++ b/devel/nspr/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.29 2009/08/19 15:00:09 joerg Exp $ +# $NetBSD: Makefile,v 1.30 2009/08/27 11:59:38 tnn Exp $ DISTNAME= nspr-4.6.7 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_MOZILLA_ALL:=nspr/releases/v4.6.7/src/} diff --git a/devel/nspr/distinfo b/devel/nspr/distinfo index 857e167240e..a367fd50dd3 100644 --- a/devel/nspr/distinfo +++ b/devel/nspr/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.15 2009/04/07 08:05:50 hasso Exp $ +$NetBSD: distinfo,v 1.16 2009/08/27 11:59:38 tnn Exp $ SHA1 (nspr-4.6.7.tar.gz) = cf45319d02285ec5479445a1e9adfb9e94f55a6a RMD160 (nspr-4.6.7.tar.gz) = 11a0d8b14ebdd441f6899c464b77144704ab638e @@ -12,6 +12,7 @@ SHA1 (patch-af) = 7a94606109277b5af00197164a854f16d4259c0f SHA1 (patch-ag) = 2150cae88a39eaf4588084ad62c611a83e339c75 SHA1 (patch-ah) = 34749dda8e07d9535ef5e158261d0202b7f0e058 SHA1 (patch-ai) = ca4d824540f62a97e2072ef0927b6b8f0a362a0a +SHA1 (patch-aj) = 93661aed7b6b581fad3cf2382e74121a82bed483 SHA1 (patch-ak) = b090f571d539cd15f3ebad7c671bb71531e0f817 SHA1 (patch-al) = 80d75bfcebc271dc222cef982a887cd1735e7692 SHA1 (patch-am) = 4b4737524d76d32a45e20041b0fc7a3fc2f8f1c9 diff --git a/devel/nspr/patches/patch-aj b/devel/nspr/patches/patch-aj new file mode 100644 index 00000000000..45a3d4771ad --- /dev/null +++ b/devel/nspr/patches/patch-aj @@ -0,0 +1,13 @@ +$NetBSD: patch-aj,v 1.1 2009/08/27 11:59:38 tnn Exp $ + +--- config/nspr-config.in.orig 2005-05-11 02:53:41.000000000 +0200 ++++ config/nspr-config.in +@@ -122,7 +122,7 @@ if test "$echo_cflags" = "yes"; then + fi + + if test "$echo_libs" = "yes"; then +- libdirs=-L$libdir ++ libdirs="-Wl,-R$libdir/nspr -L$libdir/nspr" + if test -n "$lib_plds"; then + libdirs="$libdirs -lplds${major_version}" + fi |