diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-06-21 08:50:38 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-06-21 08:50:38 +0000 |
commit | 7b3dd87f2212aeb311c6ba3afc57f5f9e8c675bd (patch) | |
tree | c955f0c809c7d9c5a46357519f90ecdb32f9795d /sci-biology/embassy-domsearch | |
parent | Stable for PPC64 (bug #551814). (diff) | |
download | gentoo-2-7b3dd87f2212aeb311c6ba3afc57f5f9e8c675bd.tar.gz gentoo-2-7b3dd87f2212aeb311c6ba3afc57f5f9e8c675bd.tar.bz2 gentoo-2-7b3dd87f2212aeb311c6ba3afc57f5f9e8c675bd.zip |
Update buildsystem for latest plplot, bug #552492
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'sci-biology/embassy-domsearch')
-rw-r--r-- | sci-biology/embassy-domsearch/ChangeLog | 6 | ||||
-rw-r--r-- | sci-biology/embassy-domsearch/files/embassy-domsearch-0.1.650_fix-build-system.patch | 31 |
2 files changed, 25 insertions, 12 deletions
diff --git a/sci-biology/embassy-domsearch/ChangeLog b/sci-biology/embassy-domsearch/ChangeLog index 2091b5e76712..2ed7232eaaff 100644 --- a/sci-biology/embassy-domsearch/ChangeLog +++ b/sci-biology/embassy-domsearch/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-biology/embassy-domsearch # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/embassy-domsearch/ChangeLog,v 1.24 2015/03/28 17:59:24 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/embassy-domsearch/ChangeLog,v 1.25 2015/06/21 08:50:38 jlec Exp $ + + 21 Jun 2015; Justin Lecher <jlec@gentoo.org> + files/embassy-domsearch-0.1.650_fix-build-system.patch: + Update buildsystem for latest plplot, bug #552492 28 Mar 2015; Justin Lecher <jlec@gentoo.org> -embassy-domsearch-0.1.0-r4.ebuild, embassy-domsearch-0.1.650.ebuild: diff --git a/sci-biology/embassy-domsearch/files/embassy-domsearch-0.1.650_fix-build-system.patch b/sci-biology/embassy-domsearch/files/embassy-domsearch-0.1.650_fix-build-system.patch index f3f4b3950100..d24857c8386d 100644 --- a/sci-biology/embassy-domsearch/files/embassy-domsearch-0.1.650_fix-build-system.patch +++ b/sci-biology/embassy-domsearch/files/embassy-domsearch-0.1.650_fix-build-system.patch @@ -1,6 +1,12 @@ ---- DOMSEARCH-0.1.650/configure.ac -+++ DOMSEARCH-0.1.650/configure.ac -@@ -635,33 +635,6 @@ + configure.ac | 49 +++++++------------------------------------------ + src/Makefile.am | 6 ++---- + 2 files changed, 9 insertions(+), 46 deletions(-) + +diff --git a/configure.ac b/configure.ac +index f0f97fa..d419d7d 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -635,33 +635,6 @@ AS_CASE([${host_os}], @@ -34,7 +40,7 @@ dnl FIXME: This does no longer seem required with Autoconf 2.67? dnl Intel MacOSX 10.6 puts X11 in a non-standard place dnl AS_IF([test "x${with_x}" != "xno"], -@@ -737,21 +710,6 @@ +@@ -737,21 +710,6 @@ AX_LIB_POSTGRESQL @@ -56,21 +62,25 @@ dnl Test if --enable-localforce given locallink="no" embprefix="/usr/local" -@@ -874,6 +832,11 @@ +@@ -874,6 +832,13 @@ AC_ARG_ENABLE([systemlibs], AM_CONDITIONAL([ESYSTEMLIBS], [test "x${enable_systemlibs}" = "xyes"]) +AS_IF([test "x${enable_systemlibs}" = "xyes"], +[ +dnl using system libraries -+ PKG_CHECK_MODULES([PLPLOT], [plplotd]) ++ PKG_CHECK_MODULES([PLPLOT], [plplotd], ++ [],[PKG_CHECK_MODULES([PLPLOT], [plplot])] ++ ) +]) # Enable the purify tool: --enable-purify, sets CC and LIBTOOL ---- DOMSEARCH-0.1.650/src/Makefile.am -+++ DOMSEARCH-0.1.650/src/Makefile.am -@@ -17,9 +17,7 @@ +diff --git a/src/Makefile.am b/src/Makefile.am +index 9829ebd..433a5c5 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -17,9 +17,7 @@ AM_CPPFLAGS = -I../../../nucleus -I../../../ajax/pcre \ -I../../../ajax/ensembl -I../../../ajax/ajaxdb \ -I../../../ajax/acd -I../../../plplot else @@ -81,11 +91,10 @@ endif if ISSHARED -@@ -62,5 +60,5 @@ +@@ -62,5 +60,5 @@ LDADD = ../../../nucleus/libnucleus.la ../../../ajax/acd/libacd.la \ ../../../plplot/libeplplot.la $(XLIB) else LDADD = -L${embprefix}/lib -lnucleus -lacd -lajaxdb -lensembl -lajaxg \ - -lajax -lepcre $(NLADD) -leplplot $(XLIB) + -lajax $(NLADD) $(XLIB) endif - |