diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-03-03 16:20:18 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-03-03 16:20:18 +0000 |
commit | 7b035e6db68b6538795d354750083877079d4c7d (patch) | |
tree | 974ba1779927a9ab03e008f2f974a3a261504ce5 /sys-process/watchpid | |
parent | stable on amd64 (diff) | |
download | historical-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')
-rw-r--r-- | sys-process/watchpid/ChangeLog | 29 | ||||
-rw-r--r-- | sys-process/watchpid/Manifest | 4 | ||||
-rw-r--r-- | sys-process/watchpid/files/digest-watchpid-0.1-r1 | 1 | ||||
-rw-r--r-- | sys-process/watchpid/metadata.xml | 5 | ||||
-rw-r--r-- | sys-process/watchpid/watchpid-0.1-r1.ebuild | 23 |
5 files changed, 62 insertions, 0 deletions
diff --git a/sys-process/watchpid/ChangeLog b/sys-process/watchpid/ChangeLog new file mode 100644 index 000000000000..aa67483e90eb --- /dev/null +++ b/sys-process/watchpid/ChangeLog @@ -0,0 +1,29 @@ +# ChangeLog for sys-apps/watchpid +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/watchpid/ChangeLog,v 1.1 2005/03/03 16:20:18 ciaranm Exp $ + +*watchpid-0.1-r1 (03 Mar 2005) + + 03 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org> +metadata.xml, + +watchpid-0.1-r1.ebuild: + Moved from sys-apps/watchpid to sys-process/watchpid. + + 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> + watchpid-0.1-r1.ebuild: + virtual/glibc -> virtual/libc + +*watchpid-0.1-r1 (1 Feb 2002) + + 21 Jul 2002; Mark Guertin <gerk@gentoo.org>: + updated keywords (-ppc) + + 14 Jul 2002; phoen][x <phoenix@gentoo.org> watchpid-0.1-r1.ebuild : + Added LICENSE, KEYWORDS, SLOT. + + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/sys-process/watchpid/Manifest b/sys-process/watchpid/Manifest new file mode 100644 index 000000000000..acb7288bf9cc --- /dev/null +++ b/sys-process/watchpid/Manifest @@ -0,0 +1,4 @@ +MD5 cb8ee76aa35571c40a8e9a49729e4643 watchpid-0.1-r1.ebuild 674 +MD5 a61bc36571259a07da43251ae93bbd5a ChangeLog 968 +MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 +MD5 88ee3424da7d0e827ee6bba7aa59c5cc files/digest-watchpid-0.1-r1 63 diff --git a/sys-process/watchpid/files/digest-watchpid-0.1-r1 b/sys-process/watchpid/files/digest-watchpid-0.1-r1 new file mode 100644 index 000000000000..41baeed76ae3 --- /dev/null +++ b/sys-process/watchpid/files/digest-watchpid-0.1-r1 @@ -0,0 +1 @@ +MD5 954939f7ddf337d90ec9806abea0290b watchpid_0.1.tar.gz 36432 diff --git a/sys-process/watchpid/metadata.xml b/sys-process/watchpid/metadata.xml new file mode 100644 index 000000000000..96a2d586367d --- /dev/null +++ b/sys-process/watchpid/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>base-system</herd> +</pkgmetadata> 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 +} |