diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-06 13:36:58 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-06 13:36:58 +0000 |
commit | 424fcaabc4f26270b9ad49f22508f9f0db864d45 (patch) | |
tree | 0d58e9b485606e7d1c1c4087efad5d82bf4fe5fd /app-admin/runset | |
parent | updated template system prototype (diff) | |
download | gentoo-2-424fcaabc4f26270b9ad49f22508f9f0db864d45.tar.gz gentoo-2-424fcaabc4f26270b9ad49f22508f9f0db864d45.tar.bz2 gentoo-2-424fcaabc4f26270b9ad49f22508f9f0db864d45.zip |
*** empty log message ***
Diffstat (limited to 'app-admin/runset')
-rw-r--r-- | app-admin/runset/runset-1.3-r1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-admin/runset/runset-1.3-r1.ebuild b/app-admin/runset/runset-1.3-r1.ebuild new file mode 100644 index 000000000000..85cb1b1184de --- /dev/null +++ b/app-admin/runset/runset-1.3-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-admin/runset/runset-1.3-r1.ebuild,v 1.1 2000/08/06 13:36:58 achim Exp $ + +P=runset-1.3 +A=${P}.tar.gz +S=${WORKDIR}/${P} +CATEGORY="app-admin" +DESCRIPTION="Runset Init suite, a replacement for sysv style initd" +SRC_URI="ftp://ftp.ocis.net/pub/users/ldeutsch/release/"${A} + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S} + ./configure --host=${CHOST} --prefix=/usr + make +} + +src_install() { + cd ${S} + make prefix=${D}/usr install + prepinfo + dodoc AUTHORS COPYING INSTALL ChangeLog LSM NEWS README + cp -a ${S}/sample ${D}/usr/doc/${P} + +} + + + + |