summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Ludd <solar@gentoo.org>2003-12-01 22:56:04 +0000
committerNed Ludd <solar@gentoo.org>2003-12-01 22:56:04 +0000
commit78e4cb40d239b656a2ec423ff28d68e829b9994f (patch)
tree0b2be75b392cdac89ed17568121abe0cb3f14142 /sys-apps
parentNew gradm stable series to go with 2.4.23.1.9.13 (diff)
downloadhistorical-78e4cb40d239b656a2ec423ff28d68e829b9994f.tar.gz
historical-78e4cb40d239b656a2ec423ff28d68e829b9994f.tar.bz2
historical-78e4cb40d239b656a2ec423ff28d68e829b9994f.zip
New gradm stable series to go with 2.4.23.1.9.13
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/gradm/Manifest4
-rw-r--r--sys-apps/gradm/files/digest-gradm-1.9.131
-rw-r--r--sys-apps/gradm/gradm-1.9.13.ebuild43
3 files changed, 46 insertions, 2 deletions
diff --git a/sys-apps/gradm/Manifest b/sys-apps/gradm/Manifest
index 7e9480531e91..a72f25417852 100644
--- a/sys-apps/gradm/Manifest
+++ b/sys-apps/gradm/Manifest
@@ -1,5 +1,5 @@
-MD5 5293269f1575bcad84702fdc8a670fe3 ChangeLog 3163
-MD5 77500adfdcf85a970b542ea7520847d8 gradm-1.9.13.ebuild 987
+MD5 a57c30d5fdd46334a17337c01b1d238e ChangeLog 3299
+MD5 3a943a8e7b79d767e8fe48f154d413d2 gradm-1.9.13.ebuild 987
MD5 c8256be5dcaf264bd997602b8a266f45 gradm-1.9.11.ebuild 987
MD5 35e717359a3ffb235d7be31dad52b1f7 metadata.xml 628
MD5 77500adfdcf85a970b542ea7520847d8 gradm-1.9.12.ebuild 987
diff --git a/sys-apps/gradm/files/digest-gradm-1.9.13 b/sys-apps/gradm/files/digest-gradm-1.9.13
new file mode 100644
index 000000000000..59547cb39962
--- /dev/null
+++ b/sys-apps/gradm/files/digest-gradm-1.9.13
@@ -0,0 +1 @@
+MD5 9e0f1fb998275b87a8f23a5da0d42523 gradm-1.9.13.tar.gz 32070
diff --git a/sys-apps/gradm/gradm-1.9.13.ebuild b/sys-apps/gradm/gradm-1.9.13.ebuild
new file mode 100644
index 000000000000..baac359020e7
--- /dev/null
+++ b/sys-apps/gradm/gradm-1.9.13.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/gradm-1.9.13.ebuild,v 1.1 2003/12/01 22:56:00 solar Exp $
+
+DESCRIPTION="Administrative interface for grsecurity ${PV} access control lists"
+SRC_URI="http://www.grsecurity.net/${P}.tar.gz"
+HOMEPAGE="http://www.grsecurity.net/"
+
+LICENSE="GPL-2"
+KEYWORDS="x86 amd64 sparc ~ppc hppa"
+SLOT="0"
+
+IUSE=""
+DEPEND="virtual/glibc
+ sys-devel/bison
+ sys-devel/flex
+ sys-apps/chpax"
+
+S="${WORKDIR}/${PN}"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ epatch ${FILESDIR}/gradm_parse.c-1.9.x.patch
+ mv Makefile{,.orig}
+ sed -e "s|-O2|${CFLAGS}|" Makefile.orig > Makefile
+}
+
+src_compile() {
+ emake CC="${CC}" || die "compile problem"
+}
+
+src_install() {
+ doman gradm.8
+ dodoc acl
+ exeinto /etc/init.d
+ newexe ${FILESDIR}/grsecurity.rc grsecurity
+ insinto /etc/conf.d
+ doins ${FILESDIR}/grsecurity
+ into /
+ dosbin gradm
+ fperms 700 /sbin/gradm
+}