diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-20 12:33:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-20 12:33:13 +0000 |
commit | 50d0460dc18509d962b523900d1b39fab3537e76 (patch) | |
tree | def557a2aac96e15e5d096cdfa42f9f715e619e9 /sys-apps/sysvinit | |
parent | Added webapp-config v1.50 for testing (diff) | |
download | historical-50d0460dc18509d962b523900d1b39fab3537e76.tar.gz historical-50d0460dc18509d962b523900d1b39fab3537e76.tar.bz2 historical-50d0460dc18509d962b523900d1b39fab3537e76.zip |
old
Diffstat (limited to 'sys-apps/sysvinit')
-rw-r--r-- | sys-apps/sysvinit/files/digest-sysvinit-2.86-r1 | 2 | ||||
-rw-r--r-- | sys-apps/sysvinit/files/digest-sysvinit-2.86-r2 | 2 | ||||
-rw-r--r-- | sys-apps/sysvinit/sysvinit-2.86-r1.ebuild | 78 | ||||
-rw-r--r-- | sys-apps/sysvinit/sysvinit-2.86-r2.ebuild | 79 |
4 files changed, 0 insertions, 161 deletions
diff --git a/sys-apps/sysvinit/files/digest-sysvinit-2.86-r1 b/sys-apps/sysvinit/files/digest-sysvinit-2.86-r1 deleted file mode 100644 index 36e59eb1e93b..000000000000 --- a/sys-apps/sysvinit/files/digest-sysvinit-2.86-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 7d5d61c026122ab791ac04c8a84db967 sysvinit-2.86.tar.gz 99009 -MD5 650af823f937d386e81520b1741d4d45 sysvinit-2.86-kexec.patch 4139 diff --git a/sys-apps/sysvinit/files/digest-sysvinit-2.86-r2 b/sys-apps/sysvinit/files/digest-sysvinit-2.86-r2 deleted file mode 100644 index 36e59eb1e93b..000000000000 --- a/sys-apps/sysvinit/files/digest-sysvinit-2.86-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 7d5d61c026122ab791ac04c8a84db967 sysvinit-2.86.tar.gz 99009 -MD5 650af823f937d386e81520b1741d4d45 sysvinit-2.86-kexec.patch 4139 diff --git a/sys-apps/sysvinit/sysvinit-2.86-r1.ebuild b/sys-apps/sysvinit/sysvinit-2.86-r1.ebuild deleted file mode 100644 index b84f8267c8c0..000000000000 --- a/sys-apps/sysvinit/sysvinit-2.86-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.86-r1.ebuild,v 1.1 2005/08/04 16:16:40 azarah Exp $ - -inherit eutils toolchain-funcs flag-o-matic - -DESCRIPTION="/sbin/init - parent of all processes" -HOMEPAGE="http://freshmeat.net/projects/sysvinit/" -SRC_URI="ftp://ftp.cistron.nl/pub/people/miquels/software/${P}.tar.gz - ftp://sunsite.unc.edu/pub/Linux/system/daemons/init/${P}.tar.gz - http://www.gc-linux.org/down/isobel/kexec/sysvinit/sysvinit-2.86-kexec.patch" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="selinux bootstrap build ibm static" - -RDEPEND="selinux? ( >=sys-libs/libselinux-1.18 sys-libs/libsepol )" -DEPEND="${RDEPEND} - virtual/os-headers" - -src_unpack() { - unpack ${P}.tar.gz - cd "${S}" - epatch "${FILESDIR}"/${P}-docs.patch - epatch "${FILESDIR}"/${P}-shutdown-usage.patch - epatch "${DISTDIR}"/sysvinit-2.86-kexec.patch - cd src - epatch "${FILESDIR}"/${PV}-gentoo.patch - use selinux && epatch "${FILESDIR}"/${PV}-selinux.patch - cp "${FILESDIR}"/inittab "${WORKDIR}"/ || die "cp inittab" - - if use ibm ; then - cat <<-EOF >> "${WORKDIR}"/inittab - #HVC / HVSI CONSOLE - #hvc0:2345:respawn:/sbin/agetty -L 9600 hvc0 - #hvsi:2345:respawn:/sbin/agetty -L 19200 hvsi0 - EOF - fi -} - -src_compile() { - use static && append-ldflags -static - - # Note: The LCRYPT define below overrides the test in - # sysvinit's Makefile. This is because sulogin must be linked - # to libcrypt in any case, but when building stage2 in - # catalyst, /usr/lib/libcrypt.a isn't available. In truth - # this doesn't change how sulogin is built since ld would use - # the shared obj by default anyway! The other option is to - # refrain from building sulogin, but that isn't a good option. - # (09 Jul 2004 agriffis) - emake -C src \ - CC="$(tc-getCC)" \ - DISTRO="Gentoo" \ - LCRYPT="-lcrypt" \ - || die -} - -src_install() { - dodoc README doc/* - - cd src - make install DISTRO="Gentoo" ROOT="${D}" || die "make install" - - insinto /etc - doins "${WORKDIR}"/inittab || die "inittab" -} - -pkg_postinst() { - # Reload init to fix unmounting problems of / on next reboot. - # This is really needed, as without the new version of init cause init - # not to quit properly on reboot, and causes a fsck of / on next reboot. - if [[ ${ROOT} == / ]] && ! use build && ! use bootstrap; then - # Do not return an error if this fails - /sbin/init U &>/dev/null - fi -} diff --git a/sys-apps/sysvinit/sysvinit-2.86-r2.ebuild b/sys-apps/sysvinit/sysvinit-2.86-r2.ebuild deleted file mode 100644 index f7d79c73cde6..000000000000 --- a/sys-apps/sysvinit/sysvinit-2.86-r2.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.86-r2.ebuild,v 1.1 2005/10/28 02:14:27 vapier Exp $ - -inherit eutils toolchain-funcs flag-o-matic - -DESCRIPTION="/sbin/init - parent of all processes" -HOMEPAGE="http://freshmeat.net/projects/sysvinit/" -SRC_URI="ftp://ftp.cistron.nl/pub/people/miquels/software/${P}.tar.gz - ftp://sunsite.unc.edu/pub/Linux/system/daemons/init/${P}.tar.gz - http://www.gc-linux.org/down/isobel/kexec/sysvinit/sysvinit-2.86-kexec.patch" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="selinux bootstrap build ibm static" - -RDEPEND="selinux? ( >=sys-libs/libselinux-1.18 sys-libs/libsepol )" -DEPEND="${RDEPEND} - virtual/os-headers" - -src_unpack() { - unpack ${P}.tar.gz - cd "${S}" - epatch "${FILESDIR}"/${P}-docs.patch - epatch "${FILESDIR}"/${P}-shutdown-usage.patch - epatch "${FILESDIR}"/sysvinit-2.86-off-by-one.patch - epatch "${DISTDIR}"/sysvinit-2.86-kexec.patch - cd src - epatch "${FILESDIR}"/${PV}-gentoo.patch - use selinux && epatch "${FILESDIR}"/${PV}-selinux.patch - cp "${FILESDIR}"/inittab "${WORKDIR}"/ || die "cp inittab" - - if use ibm ; then - cat <<-EOF >> "${WORKDIR}"/inittab - #HVC / HVSI CONSOLE - #hvc0:2345:respawn:/sbin/agetty -L 9600 hvc0 - #hvsi:2345:respawn:/sbin/agetty -L 19200 hvsi0 - EOF - fi -} - -src_compile() { - use static && append-ldflags -static - - # Note: The LCRYPT define below overrides the test in - # sysvinit's Makefile. This is because sulogin must be linked - # to libcrypt in any case, but when building stage2 in - # catalyst, /usr/lib/libcrypt.a isn't available. In truth - # this doesn't change how sulogin is built since ld would use - # the shared obj by default anyway! The other option is to - # refrain from building sulogin, but that isn't a good option. - # (09 Jul 2004 agriffis) - emake -C src \ - CC="$(tc-getCC)" \ - DISTRO="Gentoo" \ - LCRYPT="-lcrypt" \ - || die -} - -src_install() { - dodoc README doc/* - - cd src - make install DISTRO="Gentoo" ROOT="${D}" || die "make install" - - insinto /etc - doins "${WORKDIR}"/inittab || die "inittab" -} - -pkg_postinst() { - # Reload init to fix unmounting problems of / on next reboot. - # This is really needed, as without the new version of init cause init - # not to quit properly on reboot, and causes a fsck of / on next reboot. - if [[ ${ROOT} == / ]] && ! use build && ! use bootstrap; then - # Do not return an error if this fails - /sbin/init U &>/dev/null - fi -} |