diff options
author | Michael Palimaka <kensington@gentoo.org> | 2012-08-17 17:29:47 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2012-08-17 17:29:47 +0000 |
commit | 4dbddce777255f15c8d34f883b376839d4154eaa (patch) | |
tree | 4ab6c649af886befd6cf5a5c353eb35a807ffec7 /app-misc/jail | |
parent | Security bump. (Bug 431766) (diff) | |
download | gentoo-2-4dbddce777255f15c8d34f883b376839d4154eaa.tar.gz gentoo-2-4dbddce777255f15c8d34f883b376839d4154eaa.tar.bz2 gentoo-2-4dbddce777255f15c8d34f883b376839d4154eaa.zip |
Remove old.
(Portage version: 2.1.11.10/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/jail')
-rw-r--r-- | app-misc/jail/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/jail/jail-1.9-r2.ebuild | 75 |
2 files changed, 4 insertions, 76 deletions
diff --git a/app-misc/jail/ChangeLog b/app-misc/jail/ChangeLog index 97d183e04384..7079228b638f 100644 --- a/app-misc/jail/ChangeLog +++ b/app-misc/jail/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/jail # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/jail/ChangeLog,v 1.30 2012/07/29 16:54:12 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/jail/ChangeLog,v 1.31 2012/08/17 17:29:47 kensington Exp $ + + 17 Aug 2012; Michael Palimaka <kensington@gentoo.org> -jail-1.9-r2.ebuild: + Remove old. 29 Jul 2012; Raúl Porcel <armin76@gentoo.org> jail-1.9-r2.ebuild, jail-1.9-r3.ebuild: diff --git a/app-misc/jail/jail-1.9-r2.ebuild b/app-misc/jail/jail-1.9-r2.ebuild deleted file mode 100644 index 883fbcf84d09..000000000000 --- a/app-misc/jail/jail-1.9-r2.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/jail/jail-1.9-r2.ebuild,v 1.15 2012/07/29 16:54:12 armin76 Exp $ - -inherit eutils flag-o-matic - -S="${WORKDIR}/${PN}_1-9_stable" -DESCRIPTION="a tool that builds a chroot and configures all the required files, directories and libraries" -HOMEPAGE="http://www.jmcresearch.com/projects/jail/" -SRC_URI="mirror://sourceforge/jail/${PN}_${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -DEPEND=">=sys-apps/sed-4" -RDEPEND="dev-lang/perl - dev-util/strace" - -src_unpack() { - unpack ${PN}_${PV}.tar.gz - cd "${S}" - epatch "${FILESDIR}"/${P}-gentoo.patch || die "failed to apply patch" - epatch "${FILESDIR}"/${P}-wrongshell.patch || die "failed to apply patch" - epatch "${FILESDIR}"/${P}-multiuser-rsa.patch || die "failed to apply patch" -} - -src_compile() { - # configuration files should be installed in /etc not /usr/etc - sed -i "s:\$4/etc:\${D}/etc:g" install.sh - - # the destination directory should be /usr not /usr/local - cd "${S}"/src - sed -i -e "s:usr/local:${D}/usr:g" \ - -e "s:^COPT =.*:COPT = -Wl,-z,no:g" Makefile - - # Below didn't work. Don't know why - #append-ldflags -Wl,-z,now - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed" -} - -src_install() { - cd "${S}"/src - einstall - - # remove //var/tmp/portage/jail-1.9/image//usr from files - FILES=( "${D}/usr/bin/mkjailenv" - "${D}/usr/bin/addjailsw" - "${D}/usr/bin/addjailuser" - "${D}/etc/jail.conf" - "${D}/usr/lib/libjail.pm" - "${D}/usr/lib/arch/generic/definitions" - "${D}/usr/lib/arch/generic/functions" - "${D}/usr/lib/arch/linux/definitions" - "${D}/usr/lib/arch/linux/functions" - "${D}/usr/lib/arch/freebsd/definitions" - "${D}/usr/lib/arch/freebsd/functions" - "${D}/usr/lib/arch/irix/definitions" - "${D}/usr/lib/arch/irix/functions" - "${D}/usr/lib/arch/solaris/definitions" - "${D}/usr/lib/arch/solaris/functions" ) - - for f in "${FILES[@]}"; do - # documentation says funtion 'dosed' is supposed to do this, but didn't know how to make it work :'( - # dosed ${file} || die "error in dosed" - sed -i "s:/${D}/usr:/usr:g" ${f} - done - - cd "${D}"/usr/lib - sed -i "s:/usr/etc:/etc:" libjail.pm - - cd "${S}"/doc - dodoc CHANGELOG INSTALL README SECURITY VERSION -} |