summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/sysvinit/sysvinit-2.83.ebuild')
-rw-r--r--sys-apps/sysvinit/sysvinit-2.83.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/sys-apps/sysvinit/sysvinit-2.83.ebuild b/sys-apps/sysvinit/sysvinit-2.83.ebuild
deleted file mode 100644
index 4865d7623c75..000000000000
--- a/sys-apps/sysvinit/sysvinit-2.83.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.83.ebuild,v 1.10 2004/07/15 02:38:23 agriffis Exp $
-
-S=${WORKDIR}/${P}/src
-DESCRIPTION="System initialization stuff"
-SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/daemons/init/${P}.tar.gz"
-HOMEPAGE="http://freshmeat.net/projects/sysvinit/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 amd64"
-IUSE=""
-
-RDEPEND="sys-apps/file"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- mv Makefile Makefile.orig
- sed -e "s:-O2:${CFLAGS}:" Makefile.orig > Makefile
-}
-
-src_compile() {
- emake LDFLAGS="" || die "problem compiling"
-}
-
-src_install() {
- into /
- newsbin init init.system
- dosbin halt killall5 runlevel shutdown sulogin
- dosym init /sbin/telinit
- dobin last mesg utmpdump wall
- dosym killall5 /sbin/pidof
- dosym halt /sbin/reboot
-
- doman man/*.[1-9]
-
- dodoc README doc/*
-}
-
-pkg_postinst() {
- if [ ! -e ${ROOT}sbin/init ]
- then
- cp -a ${ROOT}sbin/init.system ${ROOT}sbin/init
- fi
-}