summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2011-11-17 14:10:34 +0000
committerAnthony G. Basile <blueness@gentoo.org>2011-11-17 14:10:34 +0000
commitf17b2da4e4d794516aa3824cfb538176615ec9b6 (patch)
treed99b3f996ff37a415a6820b0748c781179c39a75 /sys-apps/gradm
parentVersion bump. Bug #388775 (diff)
downloadgentoo-2-f17b2da4e4d794516aa3824cfb538176615ec9b6.tar.gz
gentoo-2-f17b2da4e4d794516aa3824cfb538176615ec9b6.tar.bz2
gentoo-2-f17b2da4e4d794516aa3824cfb538176615ec9b6.zip
Remove gradm for grsecurity-2.2.0 kernels
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/gradm')
-rw-r--r--sys-apps/gradm/ChangeLog6
-rw-r--r--sys-apps/gradm/files/gradm-udev.patch30
-rw-r--r--sys-apps/gradm/gradm-2.2.0.201011061849.ebuild55
3 files changed, 5 insertions, 86 deletions
diff --git a/sys-apps/gradm/ChangeLog b/sys-apps/gradm/ChangeLog
index dbf695702c55..3a99ace968a4 100644
--- a/sys-apps/gradm/ChangeLog
+++ b/sys-apps/gradm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/gradm
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v 1.168 2011/11/02 09:45:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v 1.169 2011/11/17 14:10:34 blueness Exp $
+
+ 17 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
+ -gradm-2.2.0.201011061849.ebuild, -files/gradm-udev.patch:
+ Remove gradm for grsecurity-2.2.0 kernels
02 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
-gradm-2.2.2.201108142019.ebuild, -files/gradm-2.2.2.201108142019.patch:
diff --git a/sys-apps/gradm/files/gradm-udev.patch b/sys-apps/gradm/files/gradm-udev.patch
deleted file mode 100644
index b8d892816582..000000000000
--- a/sys-apps/gradm/files/gradm-udev.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- Makefile.orig 2010-08-13 21:39:07.000000000 -0400
-+++ Makefile 2010-08-13 21:40:54.000000000 -0400
-@@ -18,16 +18,16 @@
- BISON=/usr/bin/bison
- #YACC := $(shell if [ -x $(BYACC) ]; then echo $(BYACC); else echo $(BISON); fi)
- YACC=$(BISON)
--MKNOD=/bin/mknod
-+MKNOD=true
- #for dietlibc
- #CC=/usr/bin/diet /usr/bin/gcc
- CC=/usr/bin/gcc
- FIND=/usr/bin/find
--STRIP=/usr/bin/strip
-+STRIP=true
- LIBS := $(shell if [ "`uname -m`" != "sparc64" ]; then echo "-lfl" ; else echo "" ; fi)
- OPT_FLAGS := $(shell if [ "`uname -m`" != "sparc64" ] && [ "`uname -m`" != "x86_64" ]; then echo "-O2" ; else echo "-O2 -m64" ; fi)
- CFLAGS := $(OPT_FLAGS) -DGRSEC_DIR=\"$(GRSEC_DIR)\" -D_LARGEFILE64_SOURCE
--LDFLAGS=
-+LDFLAGS+=
- INSTALL = /usr/bin/install -c
-
- # FHS
-@@ -134,6 +134,7 @@
- $(MKNOD) -m 0622 $(DESTDIR)/dev/grsec c 1 13 ; \
- fi \
- fi
-+ @mkdir -p $(DESTDIR)/etc/udev/rules.d
- @if [ -d $(DESTDIR)/etc/udev/rules.d ] ; then \
- echo "ACTION!=\"add|change\", GOTO=\"permissions_end\"" > $(DESTDIR)/etc/udev/rules.d/80-grsec.rules ; \
- echo "KERNEL==\"grsec\", MODE=\"0622\"" >> $(DESTDIR)/etc/udev/rules.d/80-grsec.rules ; \
diff --git a/sys-apps/gradm/gradm-2.2.0.201011061849.ebuild b/sys-apps/gradm/gradm-2.2.0.201011061849.ebuild
deleted file mode 100644
index d4ac900e94a5..000000000000
--- a/sys-apps/gradm/gradm-2.2.0.201011061849.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/gradm-2.2.0.201011061849.ebuild,v 1.3 2011/05/03 15:23:01 blueness Exp $
-
-EAPI=2
-
-inherit flag-o-matic toolchain-funcs versionator
-
-MY_PV="$(replace_version_separator 3 -)"
-
-DESCRIPTION="Administrative interface for the grsecurity Role Based Access Control system"
-HOMEPAGE="http://www.grsecurity.net/"
-SRC_URI="mirror://gentoo/${PN}-${MY_PV}.tar.gz"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
-IUSE="pam"
-
-RDEPEND=""
-DEPEND="sys-devel/bison
- sys-devel/flex
- pam? ( virtual/pam )
- sys-apps/paxctl"
-
-S="${WORKDIR}/${PN}2"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-udev.patch"
-}
-
-src_compile() {
- local target
- use pam || target="nopam"
-
- emake ${target} CC="$(tc-getCC)" OPT_FLAGS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- einstall DESTDIR="${D}" || die "einstall failed"
- fperms 711 /sbin/gradm
-}
-
-pkg_postinst() {
- local UDEVADM="/sbin/udevadm"
- if [[ -x ${UDEVADM} ]] ; then
- $UDEVADM trigger --action=add --sysname-match=grsec
- fi
- einfo
- ewarn
- ewarn "Be sure to set a password with 'gradm -P' before enabling learning mode"
- ewarn "This version of gradm is only supported with hardened-sources >= 2.6.32-r10"
- ewarn
- einfo
-}