diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-10-27 14:39:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-10-27 14:39:11 +0000 |
commit | 746a700892604599aeb66ab606e06dda5b17929b (patch) | |
tree | 2e25386daa9d159b7cf14f34a149f9430945c5f8 /app-admin/runset | |
parent | Changing SLOT to KV. (diff) | |
download | historical-746a700892604599aeb66ab606e06dda5b17929b.tar.gz historical-746a700892604599aeb66ab606e06dda5b17929b.tar.bz2 historical-746a700892604599aeb66ab606e06dda5b17929b.zip |
fix SRC_URI
Diffstat (limited to 'app-admin/runset')
-rw-r--r-- | app-admin/runset/files/digest-runset-1.4 | 1 | ||||
-rw-r--r-- | app-admin/runset/runset-1.4.ebuild | 31 | ||||
-rw-r--r-- | app-admin/runset/runset-1.5.ebuild | 27 |
3 files changed, 14 insertions, 45 deletions
diff --git a/app-admin/runset/files/digest-runset-1.4 b/app-admin/runset/files/digest-runset-1.4 deleted file mode 100644 index ec55a4b9673c..000000000000 --- a/app-admin/runset/files/digest-runset-1.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 cef32fd197a4f1ccf8f6e9c08a1d55de runset-1.4.tar.gz 129700 diff --git a/app-admin/runset/runset-1.4.ebuild b/app-admin/runset/runset-1.4.ebuild deleted file mode 100644 index 10e29fd5ccbe..000000000000 --- a/app-admin/runset/runset-1.4.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/runset/runset-1.4.ebuild,v 1.15 2003/09/06 22:08:32 msterret Exp $ - -DESCRIPTION="Runset Init suite, a replacement for sysv style initd" -SRC_URI="ftp://ftp.ocis.net/pub/users/ldeutsch/release/${P}.tar.gz" -HOMEPAGE="http://www.icewalkers.com/softlib/app/app_00233.html" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 sparc ppc" - -DEPEND="virtual/glibc" - -src_compile() { - econf - make || die -} - -src_install() { - # fix info file - echo "INFO-DIR-SECTION Admin" >>doc/runset.info - echo "START-INFO-DIR-ENTRY" >>doc/runset.info - echo "* runset: (runset). " >>doc/runset.info - echo "END-INFO-DIR-ENTRY" >>doc/runset.info - - make DESTDIR=${D} install || die - dodoc AUTHORS COPYING INSTALL ChangeLog LSM NEWS README - cp -a ${S}/sample ${D}/usr/share/doc/${PF} - -} diff --git a/app-admin/runset/runset-1.5.ebuild b/app-admin/runset/runset-1.5.ebuild index ab94783e1ebe..0064898823e1 100644 --- a/app-admin/runset/runset-1.5.ebuild +++ b/app-admin/runset/runset-1.5.ebuild @@ -1,30 +1,31 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/runset/runset-1.5.ebuild,v 1.2 2003/06/29 15:24:07 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/runset/runset-1.5.ebuild,v 1.3 2003/10/27 14:39:11 vapier Exp $ DESCRIPTION="Runset Init suite, a replacement for sysv style initd" -SRC_URI="ftp://ftp.ocis.net/pub/users/ldeutsch/release/${P}.tar.gz" HOMEPAGE="http://www.icewalkers.com/softlib/app/app_00233.html" +SRC_URI="http://www.ibiblio.org/pub/Linux/system/daemons/init/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 ~sparc ~ppc" +SLOT="0" +KEYWORDS="x86 ppc sparc" DEPEND="virtual/glibc" src_compile() { - econf - make || die + econf || die + emake || die } src_install() { # fix info file - echo "INFO-DIR-SECTION Admin" >>doc/runset.info - echo "START-INFO-DIR-ENTRY" >>doc/runset.info - echo "* runset: (runset). " >>doc/runset.info - echo "END-INFO-DIR-ENTRY" >>doc/runset.info - + cat << EOF >> doc/runset.info +INFO-DIR-SECTION Admin +START-INFO-DIR-ENTRY +* runset: (runset). +END-INFO-DIR-ENTRY +EOF make DESTDIR=${D} install || die - dodoc AUTHORS COPYING INSTALL ChangeLog LSM NEWS README - cp -a ${S}/sample ${D}/usr/share/doc/${PF} + dodoc AUTHORS ChangeLog LSM NEWS README + cp -a ${S}/sample ${D}/usr/share/doc/${PF}/ } |