diff options
author | 2005-05-29 00:04:41 +0000 | |
---|---|---|
committer | 2005-05-29 00:04:41 +0000 | |
commit | 6a87de2d8892e029c8aced4fe976ebc9b8f2546f (patch) | |
tree | ec223f2b016cee2ec3db0de12c3ac45ebcb9dd97 /app-admin/chroot_safe/chroot_safe-1.4.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-6a87de2d8892e029c8aced4fe976ebc9b8f2546f.tar.gz gentoo-2-6a87de2d8892e029c8aced4fe976ebc9b8f2546f.tar.bz2 gentoo-2-6a87de2d8892e029c8aced4fe976ebc9b8f2546f.zip |
Version bump.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-admin/chroot_safe/chroot_safe-1.4.ebuild')
-rw-r--r-- | app-admin/chroot_safe/chroot_safe-1.4.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-admin/chroot_safe/chroot_safe-1.4.ebuild b/app-admin/chroot_safe/chroot_safe-1.4.ebuild new file mode 100644 index 000000000000..7a46c5d7fcac --- /dev/null +++ b/app-admin/chroot_safe/chroot_safe-1.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/chroot_safe/chroot_safe-1.4.ebuild,v 1.1 2005/05/29 00:02:23 ka0ttic Exp $ + +inherit eutils + +DESCRIPTION="chroot_safe is a tool to chroot any dynamically linked application in a safe and sane manner." +HOMEPAGE="http://chrootsafe.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN//_}/${P}.tgz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="" + +DEPEND="virtual/libc" + +src_compile() { + econf \ + --libexecdir="/usr/$(get_libdir)" \ + --sbindir="/usr/sbin" \ + || die "econf failed" + emake CPPFLAGS="${CXXFLAGS}" || die "emake failed" +} + +src_install() { + dolib.so chroot_safe.so || die "dolib.so failed" + dosbin chroot_safe || die "dosbin failed" + dosed "s:/chroot_safe::" /usr/sbin/chroot_safe \ + || die "dosed chroot_safe failed" + doman chroot_safe.1 || die "doman failed" + dodoc CHANGES.txt +} |