diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-05-30 02:04:49 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-05-30 02:04:49 +0000 |
commit | 9b41e64c7fd79f081fefd4d0bd8948e2eb5505c0 (patch) | |
tree | 0e8428a02b2c3666fdf41eff63d3ed275a55a925 /dev-util/par/par-00.05.01.ebuild | |
parent | (non maintainer commit) Respect flags and QA fixes, bug 240275 by Espen Hustad (diff) | |
download | historical-9b41e64c7fd79f081fefd4d0bd8948e2eb5505c0.tar.gz historical-9b41e64c7fd79f081fefd4d0bd8948e2eb5505c0.tar.bz2 historical-9b41e64c7fd79f081fefd4d0bd8948e2eb5505c0.zip |
(non maintainer commit) Respect flags and QA fixes, bug 244014 by Espen Hustad
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'dev-util/par/par-00.05.01.ebuild')
-rw-r--r-- | dev-util/par/par-00.05.01.ebuild | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/dev-util/par/par-00.05.01.ebuild b/dev-util/par/par-00.05.01.ebuild index ac17b58ed621..8ebe7c51653b 100644 --- a/dev-util/par/par-00.05.01.ebuild +++ b/dev-util/par/par-00.05.01.ebuild @@ -1,22 +1,26 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/par/par-00.05.01.ebuild,v 1.6 2008/11/17 19:10:17 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/par/par-00.05.01.ebuild,v 1.7 2009/05/30 02:04:49 darkside Exp $ + +inherit toolchain-funcs DESCRIPTION="par manipulates PalmOS database files" HOMEPAGE="http://www.djw.org/product/palm/par/" SRC_URI="http://www.djw.org/product/palm/par/prc.tgz" -SLOT="0" LICENSE="MPL-1.1" -KEYWORDS="~x86 ~ppc" +SLOT="0" +KEYWORDS="~ppc ~x86" IUSE="" + DEPEND="!app-text/par !app-arch/par" +RDEPEND="${DEPEND}" S="${WORKDIR}/prc" src_compile() { - emake || die 'Failed to compile!' + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die 'Failed to compile!' emake par.man || die 'Failed to make man page!' } |