diff options
-rw-r--r-- | sys-apps/gradm/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/gradm/files/gradm-2.2.1.201012121738.patch | 30 | ||||
-rw-r--r-- | sys-apps/gradm/gradm-2.2.1.201012121738.ebuild | 55 |
3 files changed, 92 insertions, 1 deletions
diff --git a/sys-apps/gradm/ChangeLog b/sys-apps/gradm/ChangeLog index bc6674b27931..e8930efef5ab 100644 --- a/sys-apps/gradm/ChangeLog +++ b/sys-apps/gradm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/gradm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v 1.138 2010/12/14 13:34:59 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v 1.139 2010/12/14 15:03:36 blueness Exp $ + +*gradm-2.2.1.201012121738 (14 Dec 2010) + + 14 Dec 2010; Anthony G. Basile <blueness@gentoo.org> + +gradm-2.2.1.201012121738.ebuild, +files/gradm-2.2.1.201012121738.patch: + Version bump 14 Dec 2010; Anthony G. Basile <blueness@gentoo.org> gradm-2.2.0.201009022049.ebuild: diff --git a/sys-apps/gradm/files/gradm-2.2.1.201012121738.patch b/sys-apps/gradm/files/gradm-2.2.1.201012121738.patch new file mode 100644 index 000000000000..b702e059b713 --- /dev/null +++ b/sys-apps/gradm/files/gradm-2.2.1.201012121738.patch @@ -0,0 +1,30 @@ +--- 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) -Wcast-qual -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.1.201012121738.ebuild b/sys-apps/gradm/gradm-2.2.1.201012121738.ebuild new file mode 100644 index 000000000000..a4ec6ec42731 --- /dev/null +++ b/sys-apps/gradm/gradm-2.2.1.201012121738.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/gradm-2.2.1.201012121738.ebuild,v 1.1 2010/12/14 15:03:36 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 sys-apps/chpax )" + +S="${WORKDIR}/${PN}2" + +src_prepare() { + epatch "${FILESDIR}/${P}.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 +} |