diff options
author | 2012-08-17 20:59:10 +0000 | |
---|---|---|
committer | 2012-08-17 20:59:10 +0000 | |
commit | d1982ea40a00fc43ada351823b3de445dcbee3b7 (patch) | |
tree | 5fa43a962d952f01f5fe6b435aa63adb5bac24f4 /sci-libs | |
parent | removed the unneeded dep on php (diff) | |
download | gentoo-2-d1982ea40a00fc43ada351823b3de445dcbee3b7.tar.gz gentoo-2-d1982ea40a00fc43ada351823b3de445dcbee3b7.tar.bz2 gentoo-2-d1982ea40a00fc43ada351823b3de445dcbee3b7.zip |
Fixed soname when tk or motif flags are on, bug #425496
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/pgplot/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/pgplot/files/pgplot-makemake.patch | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-libs/pgplot/ChangeLog b/sci-libs/pgplot/ChangeLog index 1f88b7f1f28e..a384ab60d67b 100644 --- a/sci-libs/pgplot/ChangeLog +++ b/sci-libs/pgplot/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/pgplot # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/pgplot/ChangeLog,v 1.24 2012/07/05 22:00:11 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/pgplot/ChangeLog,v 1.25 2012/08/17 20:59:10 bicatali Exp $ + + 17 Aug 2012; Sébastien Fabbro <bicatali@gentoo.org> + files/pgplot-makemake.patch: + Fixed soname when tk or motif flags are on, bug #425496 *pgplot-5.2.2-r5 (05 Jul 2012) @@ -118,4 +122,3 @@ +files/pgplot-makemake.patch, +metadata.xml, +pgplot-5.2.2.ebuild: A Fortran- or C-callable, device-independent graphics package for making simple scientific graphs. - diff --git a/sci-libs/pgplot/files/pgplot-makemake.patch b/sci-libs/pgplot/files/pgplot-makemake.patch index f7e16bca7f53..6cc3c637b6ef 100644 --- a/sci-libs/pgplot/files/pgplot-makemake.patch +++ b/sci-libs/pgplot/files/pgplot-makemake.patch @@ -128,7 +128,7 @@ $(RANLIB) libXmPgplot.a +libXmPgplot.so: XmPgplot.h XmPgplot.o -+ $(SHARED_LD) $(SHARED_LD_CPGPLOT_OPTS) XmPgplot.o -L. -lcpgplot $(MOTIF_LIBS) -o libXmPgplot.so.5 ++ $(SHARED_LD) $(LDFLAGS) -Wl,-soname,libXmPgplot.so.5 XmPgplot.o -L. -lcpgplot $(MOTIF_LIBS) -o libXmPgplot.so.5 + ln -s libXmPgplot.so.5 libXmPgplot.so + XmPgplot.h: $(XMDIR)/XmPgplot.h @@ -139,7 +139,7 @@ $(RANLIB) libtkpgplot.a +libtkpgplot.so: tkpgplot.h tkpgplot.o -+ $(SHARED_LD) $(SHARED_LD_CPGPLOT_OPTS) tkpgplot.o -L. -lcpgplot $(TK_LIBS) -o libtkpgplot.so.5 ++ $(SHARED_LD) $(LDFLAGS) -Wl,-soname,libtkpgplot.so.5 tkpgplot.o -L. -lcpgplot $(TK_LIBS) -o libtkpgplot.so.5 + ln -s libtkpgplot.so.5 libtkpgplot.so + tkpgplot.h: $(TKDIR)/tkpgplot.h |