diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-18 08:55:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-10-18 08:55:06 +0000 |
commit | 5adfaeb155490ceaf1e94f37db0dd7f920d249e6 (patch) | |
tree | c523caba0a1905849362f0631cf18aa7b02fe610 /sys-apps/sysvinit | |
parent | stable x86, bug 287081 (diff) | |
download | historical-5adfaeb155490ceaf1e94f37db0dd7f920d249e6.tar.gz historical-5adfaeb155490ceaf1e94f37db0dd7f920d249e6.tar.bz2 historical-5adfaeb155490ceaf1e94f37db0dd7f920d249e6.zip |
old
Diffstat (limited to 'sys-apps/sysvinit')
-rw-r--r-- | sys-apps/sysvinit/sysvinit-2.86-r8.ebuild | 97 | ||||
-rw-r--r-- | sys-apps/sysvinit/sysvinit-2.86-r9.ebuild | 104 |
2 files changed, 0 insertions, 201 deletions
diff --git a/sys-apps/sysvinit/sysvinit-2.86-r8.ebuild b/sys-apps/sysvinit/sysvinit-2.86-r8.ebuild deleted file mode 100644 index d69024461bbd..000000000000 --- a/sys-apps/sysvinit/sysvinit-2.86-r8.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.86-r8.ebuild,v 1.7 2007/08/12 16:34:40 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 ibm static" - -RDEPEND="selinux? ( >=sys-libs/libselinux-1.28 )" -DEPEND="${RDEPEND} - virtual/os-headers" - -src_unpack() { - unpack ${P}.tar.gz - cd "${S}" - cp "${FILESDIR}"/change_console.{c,8} src/ || die - 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 - #epatch "${FILESDIR}"/sysvinit-2.86-POSIX-1003.1e.patch #5818 - epatch "${FILESDIR}"/sysvinit-2.86-execl.patch - epatch "${FILESDIR}"/sysvinit-2.86-utmp-64bit.patch - epatch "${FILESDIR}/${P}"-shutdown-single.patch - cd src - epatch "${FILESDIR}"/${PV}-gentoo.patch - use selinux && epatch "${FILESDIR}"/${PV}-selinux-1.patch - - # Mung inittab for specific architectures - cd "${WORKDIR}" - cp "${FILESDIR}"/inittab . || die "cp inittab" - local insert="" - use ppc && insert='#psc0:12345:respawn:/sbin/agetty 115200 ttyPSC0 linux' - use arm && insert='#f0:12345:respawn:/sbin/agetty 9600 ttyFB0 vt100' - use hppa && insert='b0:12345:respawn:/sbin/agetty 9600 ttyB0 vt100' - use s390 && insert='s0:12345:respawn:/sbin/agetty 38400 console' - if use ibm ; then - insert="${insert}#hvc0:2345:respawn:/sbin/agetty -L 9600 hvc0"$'\n' - insert="${insert}#hvsi:2345:respawn:/sbin/agetty -L 19200 hvsi0" - fi - (use arm || use mips || use sh || use sparc) && sed -i '/ttyS0/s:#::' inittab - [[ -n ${insert} ]] && echo "# Architecture specific features"$'\n'"${insert}" >> inittab -} - -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" \ - all change_console \ - || die -} - -src_install() { - dodoc README doc/* - - cd src - make install DISTRO="Gentoo" ROOT="${D}" || die "make install" - - into / - dosbin change_console || die - doman change_console.8 - - insinto /etc - doins "${WORKDIR}"/inittab || die "inittab" - - doinitd "${FILESDIR}"/{reboot,shutdown}.sh || die -} - -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} == / ]] ; then - # Do not return an error if this fails - /sbin/telinit U &>/dev/null - fi -} diff --git a/sys-apps/sysvinit/sysvinit-2.86-r9.ebuild b/sys-apps/sysvinit/sysvinit-2.86-r9.ebuild deleted file mode 100644 index a5e0636e8d7d..000000000000 --- a/sys-apps/sysvinit/sysvinit-2.86-r9.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.86-r9.ebuild,v 1.2 2007/08/12 16:34:40 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 ibm static kernel_FreeBSD" - -RDEPEND="selinux? ( >=sys-libs/libselinux-1.28 )" -DEPEND="${RDEPEND} - virtual/os-headers" - -src_unpack() { - unpack ${P}.tar.gz - cd "${S}" - cp "${FILESDIR}"/change_console.{c,8} src/ || die - epatch "${FILESDIR}/${P}"-docs.patch - epatch "${FILESDIR}/${P}"-shutdown-usage.patch - epatch "${FILESDIR}/${P}"-off-by-one.patch - epatch "${DISTDIR}/${P}"-kexec.patch - #epatch "${FILESDIR}/${P}"-POSIX-1003.1e.patch #5818 - epatch "${FILESDIR}/${P}"-execl.patch - epatch "${FILESDIR}/${P}"-utmp-64bit.patch - epatch "${FILESDIR}/${P}"-shutdown-single.patch - epatch "${FILESDIR}/${P}"-utmp-smp.patch - cd src - epatch "${FILESDIR}"/${PV}-gentoo.patch - use selinux && epatch "${FILESDIR}"/${PV}-selinux-1.patch - - # Mung inittab for specific architectures - cd "${WORKDIR}" - cp "${FILESDIR}"/inittab . || die "cp inittab" - local insert="" - use ppc && insert='#psc0:12345:respawn:/sbin/agetty 115200 ttyPSC0 linux' - use arm && insert='#f0:12345:respawn:/sbin/agetty 9600 ttyFB0 vt100' - use hppa && insert='b0:12345:respawn:/sbin/agetty 9600 ttyB0 vt100' - use s390 && insert='s0:12345:respawn:/sbin/agetty 38400 console' - if use ibm ; then - insert="${insert}#hvc0:2345:respawn:/sbin/agetty -L 9600 hvc0"$'\n' - insert="${insert}#hvsi:2345:respawn:/sbin/agetty -L 19200 hvsi0" - fi - (use arm || use mips || use sh || use sparc) && sed -i '/ttyS0/s:#::' inittab - # Support kFreeBSD, #121786 - if use kernel_FreeBSD; then - sed -i -e 's/linux/cons25/g' \ - -e 's/ttyS0/cuaa0/g' \ - -e 's/ttyS1/cuaa1/g' inittab - fi - [[ -n ${insert} ]] && echo "# Architecture specific features"$'\n'"${insert}" >> inittab -} - -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" \ - all change_console \ - || die -} - -src_install() { - dodoc README doc/* - - cd src - make install DISTRO="Gentoo" ROOT="${D}" || die "make install" - - into / - dosbin change_console || die - doman change_console.8 - - insinto /etc - doins "${WORKDIR}"/inittab || die "inittab" - - doinitd "${FILESDIR}"/{reboot,shutdown}.sh || die -} - -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} == / ]] ; then - # Do not return an error if this fails - /sbin/telinit U &>/dev/null - fi -} |