diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-02-10 16:23:00 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-02-10 16:23:00 +0000 |
commit | 216dd74b910f61c5cbde21aacf028a167aa487ea (patch) | |
tree | 948e93fa1da112b259fcdc210ef84d1f4a1827b9 /sys-apps/rsbac-admin | |
parent | repoman fix (diff) | |
download | historical-216dd74b910f61c5cbde21aacf028a167aa487ea.tar.gz historical-216dd74b910f61c5cbde21aacf028a167aa487ea.tar.bz2 historical-216dd74b910f61c5cbde21aacf028a167aa487ea.zip |
repoman fix
Diffstat (limited to 'sys-apps/rsbac-admin')
-rw-r--r-- | sys-apps/rsbac-admin/rsbac-admin-1.2.1.ebuild | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/sys-apps/rsbac-admin/rsbac-admin-1.2.1.ebuild b/sys-apps/rsbac-admin/rsbac-admin-1.2.1.ebuild index 74ba5ddfc698..453ce66cdd01 100644 --- a/sys-apps/rsbac-admin/rsbac-admin-1.2.1.ebuild +++ b/sys-apps/rsbac-admin/rsbac-admin-1.2.1.ebuild @@ -1,39 +1,44 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. +# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/rsbac-admin/rsbac-admin-1.2.1.ebuild,v 1.1 2003/02/07 19:38:20 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/rsbac-admin/rsbac-admin-1.2.1.ebuild,v 1.2 2003/02/10 16:23:00 seemant Exp $ + +IUSE="ncurses" # RSBAC Adming packet name ADMIN=rsbac-admin-v1.2.1 +S=${WORKDIR}/${P} DESCRIPTION="Rule Set Based Access Control Admin Tools" HOMEPAGE="http://www.rsbac.org" SRC_URI="http://www.rsbac.org/code/rsbac-admin-v1.2.1.tar.bz2" + +SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86" -IUSE="ncurses" -DEPEND="sys-kernel/rsbac-sources app-misc/dialog" -RDEPEND=">=sys-libs/ncurses-5.2" -S=${WORKDIR}/${P} +DEPEND="sys-kernel/rsbac-sources + app-misc/dialog" + +RDEPEND=">=sys-libs/ncurses-5.2" src_unpack() { - cd ${WORKDIR} - unpack ${ADMIN}.tar.bz2 || die "cannot unpack rsbac-admin tool" + cd ${WORKDIR} + unpack ${ADMIN}.tar.bz2 || die "cannot unpack rsbac-admin tool" } src_compile() { - cd ${WORKDIR}/${ADMIN} - echo "-> Configuring and compiling RSBAC Admin Tools" - econf || die "cannot ./configure RSBAC Admin Tools" - emake || die "cannot make RSBAC Admin Tools" + cd ${WORKDIR}/${ADMIN} + echo "-> Configuring and compiling RSBAC Admin Tools" + econf || die "cannot ./configure RSBAC Admin Tools" + emake || die "cannot make RSBAC Admin Tools" } src_install() { - cd ${WORKDIR}/${ADMIN} - einstall || die "cannot make install" - einfo "-> RSBAC admin tools installed" - einfo ">>> *** IMPORTANT *** <<<" - einfo "Take a look at http://www.rsbac.org if you are not an expert of RSBAC managing" + cd ${WORKDIR}/${ADMIN} + einstall || die "cannot make install" + einfo "-> RSBAC admin tools installed" + einfo ">>> *** IMPORTANT *** <<<" + einfo "Take a look at http://www.rsbac.org if you are not an expert of RSBAC managing" } |