diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-01-14 06:16:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-01-14 06:16:34 +0000 |
commit | d0779d38707965786b8eb8bd28c9a8dde8608f23 (patch) | |
tree | a7c2e9e71d6bd92890653ca9d482fc6e2a78057d /sys-apps/gradm/gradm-1.4.ebuild | |
parent | Updated comments on libiconv mask. (diff) | |
download | gentoo-2-d0779d38707965786b8eb8bd28c9a8dde8608f23.tar.gz gentoo-2-d0779d38707965786b8eb8bd28c9a8dde8608f23.tar.bz2 gentoo-2-d0779d38707965786b8eb8bd28c9a8dde8608f23.zip |
version bump
Diffstat (limited to 'sys-apps/gradm/gradm-1.4.ebuild')
-rw-r--r-- | sys-apps/gradm/gradm-1.4.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/sys-apps/gradm/gradm-1.4.ebuild b/sys-apps/gradm/gradm-1.4.ebuild deleted file mode 100644 index 405e10adcfb2..000000000000 --- a/sys-apps/gradm/gradm-1.4.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/gradm-1.4.ebuild,v 1.4 2002/10/28 05:53:00 vapier Exp $ - -DESCRIPTION="Administrative interface to grsecurity" -SRC_URI="http://www.grsecurity.net/gradm-1.4.tar.gz - http://pageexec.virtualave.net/chpax.c" -HOMEPAGE="http://www.grsecurity.net" -LICENSE="GPL-2" -KEYWORDS="x86" -SLOT="0" - -DEPEND="sys-devel/bison - sys-devel/flex" -RDEPEND="" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${P}.tar.gz - cd ${S} - cp ${DISTDIR}/chpax.c . - mv Makefile Makefile.orig - sed <Makefile.orig >Makefile \ - -e 's|YACC=/usr/bin/yacc|YACC=/usr/bin/bison|' \ - -e 's|$(YACC) -d|$(YACC) -y -d|' -} - -src_compile() { - emake || die "compile problem" - emake chpax || die "compile problem" -} - -src_install() { - doman gradm.8 - exeinto /etc/init.d - newexe ${FILESDIR}/grsecurity.rc grsecurity - insinto /etc/conf.d - doins ${FILESDIR}/grsecurity - into / - dosbin gradm chpax - chmod 700 ${D}/sbin/gradm ${D}/sbin/chpax -} |