diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 12:57:05 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 12:57:05 +0000 |
commit | 56fe3d211b309d22875df48a5dfacab9582a5187 (patch) | |
tree | f1c738ae329f00bfd0c636ac4b46970d42e99cf9 /app-admin/killproc/killproc-1.12-r2.ebuild | |
parent | version bump and cleanup of stuff (diff) | |
download | historical-56fe3d211b309d22875df48a5dfacab9582a5187.tar.gz historical-56fe3d211b309d22875df48a5dfacab9582a5187.tar.bz2 historical-56fe3d211b309d22875df48a5dfacab9582a5187.zip |
repoman'd
Diffstat (limited to 'app-admin/killproc/killproc-1.12-r2.ebuild')
-rw-r--r-- | app-admin/killproc/killproc-1.12-r2.ebuild | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/app-admin/killproc/killproc-1.12-r2.ebuild b/app-admin/killproc/killproc-1.12-r2.ebuild index 88c295520e23..114376177608 100644 --- a/app-admin/killproc/killproc-1.12-r2.ebuild +++ b/app-admin/killproc/killproc-1.12-r2.ebuild @@ -1,38 +1,35 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-admin/killproc/killproc-1.12-r2.ebuild,v 1.5 2002/07/17 20:43:16 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/killproc/killproc-1.12-r2.ebuild,v 1.6 2002/07/25 12:57:05 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="killproc and assorted tools for boot scripts" +HOMEPAGE="http://www.suse.de/" SRC_URI="ftp://ftp.suse.com/pub/projects/init/${P}.tar.gz" + SLOT="0" LICENSE="GPL-2" +KEYWORDS="x86" DEPEND="virtual/glibc" src_unpack() { - unpack ${A} - cd ${S} - cp Makefile Makefile.orig - sed -e "s/-O2/${CFLAGS}/" -e "s/-m486//" Makefile.orig > Makefile + unpack ${A} + cd ${S} + cp Makefile Makefile.orig + sed -e "s/-O2/${CFLAGS}/" -e "s/-m486//" Makefile.orig > Makefile } src_compile() { - try make + make || die } src_install() { - - into / - dosbin checkproc startproc killproc - into /usr - doman *.8 - dodoc README *.lsm - + into / + dosbin checkproc startproc killproc + into /usr + doman *.8 + dodoc README *.lsm } - - - - |