diff options
author | 2006-05-25 22:32:19 +0000 | |
---|---|---|
committer | 2006-05-25 22:32:19 +0000 | |
commit | 13ced81690e6ad4fe09f2c2e6721d9ad72f3f258 (patch) | |
tree | 049474d5b3aaa7f9e383b1ebed287bac91bbd702 /app-text/psutils/psutils-1.17.ebuild | |
parent | Added to ~hppa, ~ppc64, ~sparc. (diff) | |
download | historical-13ced81690e6ad4fe09f2c2e6721d9ad72f3f258.tar.gz historical-13ced81690e6ad4fe09f2c2e6721d9ad72f3f258.tar.bz2 historical-13ced81690e6ad4fe09f2c2e6721d9ad72f3f258.zip |
Fix quoting, make use of the right CC value, use emake instead of make (parallel make works), add maintainer-needed metadata.
Package-Manager: portage-2.1_rc2-r3
Diffstat (limited to 'app-text/psutils/psutils-1.17.ebuild')
-rw-r--r-- | app-text/psutils/psutils-1.17.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app-text/psutils/psutils-1.17.ebuild b/app-text/psutils/psutils-1.17.ebuild index 156e40e8c883..91916517f19e 100644 --- a/app-text/psutils/psutils-1.17.ebuild +++ b/app-text/psutils/psutils-1.17.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/psutils/psutils-1.17.ebuild,v 1.27 2006/04/02 14:49:40 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/psutils/psutils-1.17.ebuild,v 1.28 2006/05/25 22:32:19 flameeyes Exp $ + +inherit toolchain-funcs DESCRIPTION="PostScript Utilities" HOMEPAGE="http://www.tardis.ed.ac.uk/~ajcd/psutils" @@ -22,15 +24,15 @@ src_unpack() { sed \ -e "s:/usr/local:\$(DESTDIR)/usr:" \ -e "s:-DUNIX -O:-DUNIX ${CFLAGS}:" \ - ${S}/Makefile.unix > ${S}/Makefile + "${S}/Makefile.unix" > "${S}/Makefile" } src_compile() { - make || die + emake CC="$(tc-getCC)" || die } src_install () { dodir /usr/{bin,share/man} - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die dodoc README } |