summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiaran McCreesh <ciaranm@gentoo.org>2005-03-03 16:20:18 +0000
committerCiaran McCreesh <ciaranm@gentoo.org>2005-03-03 16:20:18 +0000
commit7b035e6db68b6538795d354750083877079d4c7d (patch)
tree974ba1779927a9ab03e008f2f974a3a261504ce5 /sys-process/watchpid/watchpid-0.1-r1.ebuild
parentstable on amd64 (diff)
downloadhistorical-7b035e6db68b6538795d354750083877079d4c7d.tar.gz
historical-7b035e6db68b6538795d354750083877079d4c7d.tar.bz2
historical-7b035e6db68b6538795d354750083877079d4c7d.zip
Moved from sys-apps/watchpid to sys-process/watchpid.
Diffstat (limited to 'sys-process/watchpid/watchpid-0.1-r1.ebuild')
-rw-r--r--sys-process/watchpid/watchpid-0.1-r1.ebuild23
1 files changed, 23 insertions, 0 deletions
diff --git a/sys-process/watchpid/watchpid-0.1-r1.ebuild b/sys-process/watchpid/watchpid-0.1-r1.ebuild
new file mode 100644
index 000000000000..a6ca6b3b85a4
--- /dev/null
+++ b/sys-process/watchpid/watchpid-0.1-r1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/watchpid/watchpid-0.1-r1.ebuild,v 1.1 2005/03/03 16:20:18 ciaranm Exp $
+
+DESCRIPTION="Watches a process for termination"
+SRC_URI="http://www.codepark.org/projects/utils/${PN}_${PV}.tar.gz"
+HOMEPAGE="http://www.codepark.org/"
+KEYWORDS="x86 amd64 -ppc"
+IUSE=""
+SLOT="0"
+LICENSE="GPL-2"
+DEPEND="virtual/libc"
+
+src_compile() {
+ ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} || die
+ make ${MAKEOPTS} || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ cd ${S}
+ dodoc README AUTHORS COPYING NEWS
+}