diff options
author | Ulrich Müller <ulm@gentoo.org> | 2010-09-04 17:41:54 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2010-09-04 17:41:54 +0000 |
commit | 213e84aa41e9d20b38ea3470ace1ebad5cbd2052 (patch) | |
tree | 3fc69160208d659d8db9930294cb7d410b2b04ce /dev-tex/hyphen_show/hyphen_show-20000425.ebuild | |
parent | no reason for base-system to be here (diff) | |
download | gentoo-2-213e84aa41e9d20b38ea3470ace1ebad5cbd2052.tar.gz gentoo-2-213e84aa41e9d20b38ea3470ace1ebad5cbd2052.tar.bz2 gentoo-2-213e84aa41e9d20b38ea3470ace1ebad5cbd2052.zip |
Respect LDFLAGS, bug 335988.
(Portage version: 2.2_rc71/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex/hyphen_show/hyphen_show-20000425.ebuild')
-rw-r--r-- | dev-tex/hyphen_show/hyphen_show-20000425.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/dev-tex/hyphen_show/hyphen_show-20000425.ebuild b/dev-tex/hyphen_show/hyphen_show-20000425.ebuild index a80087502bae..e745f388e515 100644 --- a/dev-tex/hyphen_show/hyphen_show-20000425.ebuild +++ b/dev-tex/hyphen_show/hyphen_show-20000425.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild,v 1.5 2008/09/19 01:12:16 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/hyphen_show/hyphen_show-20000425.ebuild,v 1.6 2010/09/04 17:41:54 ulm Exp $ inherit eutils toolchain-funcs @@ -13,7 +13,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc64 x86" IUSE="" -DEPEND="" + S=${WORKDIR}/${MY_PN}-${PV} src_unpack() { @@ -22,12 +22,11 @@ src_unpack() { } src_compile() { - $(tc-getCC) ${CFLAGS} hyphen_show.c \ - -o hyphen_show || die "Compilation failed" + $(tc-getCC) ${CFLAGS} ${LDFLAGS} hyphen_show.c -o hyphen_show || die } src_install() { - dobin hyphen_show - doman hyphen_show.1 - dodoc README.hyphen_show + dobin hyphen_show || die + doman hyphen_show.1 || die + dodoc README.hyphen_show || die } |