diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-10-26 13:55:19 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-10-26 13:55:19 +0000 |
commit | c37c666f5a9c7a626022375021cd44c93bb16b06 (patch) | |
tree | 56485ac2dc9780161b2b97f818de18fc1a47511b /app-text/bibclean | |
parent | Stable on ppc wrt bug 244417 (diff) | |
download | gentoo-2-c37c666f5a9c7a626022375021cd44c93bb16b06.tar.gz gentoo-2-c37c666f5a9c7a626022375021cd44c93bb16b06.tar.bz2 gentoo-2-c37c666f5a9c7a626022375021cd44c93bb16b06.zip |
respect ldflags and CC/CXX variables
(Portage version: 2.2_rc12/cvs/Linux 2.6.27.3 x86_64)
Diffstat (limited to 'app-text/bibclean')
-rw-r--r-- | app-text/bibclean/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/bibclean/bibclean-2.11.4.ebuild | 16 | ||||
-rw-r--r-- | app-text/bibclean/files/bibclean-2.11.4-ldflags.patch | 13 |
3 files changed, 31 insertions, 6 deletions
diff --git a/app-text/bibclean/ChangeLog b/app-text/bibclean/ChangeLog index d8dda75ff9bd..4a02db148b12 100644 --- a/app-text/bibclean/ChangeLog +++ b/app-text/bibclean/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/bibclean -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/bibclean/ChangeLog,v 1.4 2007/03/12 23:44:09 nattfodd Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/bibclean/ChangeLog,v 1.5 2008/10/26 13:55:19 aballier Exp $ + + 26 Oct 2008; Alexis Ballier <aballier@gentoo.org> + +files/bibclean-2.11.4-ldflags.patch, bibclean-2.11.4.ebuild: + respect ldflags and CC/CXX variables 12 Mar 2007; Alexandre Buisse <nattfodd@gentoo.org> metadata.xml: Replaced text-markup by tex as maintaining herd (text-markup split). diff --git a/app-text/bibclean/bibclean-2.11.4.ebuild b/app-text/bibclean/bibclean-2.11.4.ebuild index 3b836ae60a47..bfca7c6ce84d 100644 --- a/app-text/bibclean/bibclean-2.11.4.ebuild +++ b/app-text/bibclean/bibclean-2.11.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/bibclean/bibclean-2.11.4.ebuild,v 1.2 2006/09/17 16:14:47 jhuebel Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/bibclean/bibclean-2.11.4.ebuild,v 1.3 2008/10/26 13:55:19 aballier Exp $ -inherit toolchain-funcs +inherit toolchain-funcs eutils DESCRIPTION="BibTeX bibliography prettyprinter and syntax checker" SRC_URI="http://www.math.utah.edu/pub/bibclean/${P}.tar.bz2" @@ -15,8 +15,16 @@ IUSE="" SLOT="0" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-ldflags.patch" +} + src_compile() { - emake CC="$(tc-getCC)" CFLAGS="$CFLAGS" || die "emake failed" + tc-export CC CXX + econf + emake LDFLAGS="${LDFLAGS}" || die "emake failed" } src_test() { diff --git a/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch b/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch new file mode 100644 index 000000000000..e93c3be91030 --- /dev/null +++ b/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch @@ -0,0 +1,13 @@ +Index: bibclean-2.11.4/Makefile.in +=================================================================== +--- bibclean-2.11.4.orig/Makefile.in ++++ bibclean-2.11.4/Makefile.in +@@ -343,7 +343,7 @@ BIBCLEAN-OBJS = bibclean.o chek.o do.o + $(LIBOBJS) + + bibclean: $(BIBCLEAN-OBJS) +- $(CC) -o bibclean $(CFLAGS) $(BIBCLEAN-OBJS) $(LIBS) ++ $(CC) $(LDFLAGS) -o bibclean $(CFLAGS) $(BIBCLEAN-OBJS) $(LIBS) + + # This target converts the option descriptions from the manual pages + # to C code for inclusion in bibclean.c. The first awk command |