summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-05-25 22:32:19 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-05-25 22:32:19 +0000
commitca1cebdbde5754d2be86a7ac304307b312c7b933 (patch)
tree46459ad0616b83f0ebd3409a9dbf2505b605e16b /app-text/psutils
parentStable on x86 wrt bug #132213 (diff)
downloadgentoo-2-ca1cebdbde5754d2be86a7ac304307b312c7b933.tar.gz
gentoo-2-ca1cebdbde5754d2be86a7ac304307b312c7b933.tar.bz2
gentoo-2-ca1cebdbde5754d2be86a7ac304307b312c7b933.zip
Fix quoting, make use of the right CC value, use emake instead of make (parallel make works), add maintainer-needed metadata.
(Portage version: 2.1_rc2-r3)
Diffstat (limited to 'app-text/psutils')
-rw-r--r--app-text/psutils/ChangeLog7
-rw-r--r--app-text/psutils/files/digest-psutils-1.172
-rw-r--r--app-text/psutils/metadata.xml8
-rw-r--r--app-text/psutils/psutils-1.17.ebuild10
4 files changed, 22 insertions, 5 deletions
diff --git a/app-text/psutils/ChangeLog b/app-text/psutils/ChangeLog
index 1ce2b9359ea9..289138e0f07d 100644
--- a/app-text/psutils/ChangeLog
+++ b/app-text/psutils/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/psutils
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/psutils/ChangeLog,v 1.18 2006/04/02 14:49:40 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/psutils/ChangeLog,v 1.19 2006/05/25 22:32:19 flameeyes Exp $
+
+ 25 May 2006; Diego Pettenò <flameeyes@gentoo.org> +metadata.xml,
+ psutils-1.17.ebuild:
+ Fix quoting, make use of the right CC value, use emake instead of make
+ (parallel make works), add maintainer-needed metadata.
02 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> psutils-1.17.ebuild:
Add ~x86-fbsd keyword.
diff --git a/app-text/psutils/files/digest-psutils-1.17 b/app-text/psutils/files/digest-psutils-1.17
index 1b875c5cff46..21035d7fb451 100644
--- a/app-text/psutils/files/digest-psutils-1.17
+++ b/app-text/psutils/files/digest-psutils-1.17
@@ -1 +1,3 @@
MD5 b161522f3bd1507655326afa7db4a0ad psutils-1.17.tar.gz 62039
+RMD160 1494f37e7ae809f0e446d52d4b3a21cd48690cc0 psutils-1.17.tar.gz 62039
+SHA256 3853eb79584ba8fbe27a815425b65a9f7f15b258e0d43a05a856bdb75d588ae4 psutils-1.17.tar.gz 62039
diff --git a/app-text/psutils/metadata.xml b/app-text/psutils/metadata.xml
new file mode 100644
index 000000000000..54494c4bb860
--- /dev/null
+++ b/app-text/psutils/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+<email>maintainer-needed@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
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
}