diff options
Diffstat (limited to 'sys-apps/gradm/gradm-2.1.3.200503070918.ebuild')
-rw-r--r-- | sys-apps/gradm/gradm-2.1.3.200503070918.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/sys-apps/gradm/gradm-2.1.3.200503070918.ebuild b/sys-apps/gradm/gradm-2.1.3.200503070918.ebuild new file mode 100644 index 000000000000..df7500ac99b2 --- /dev/null +++ b/sys-apps/gradm/gradm-2.1.3.200503070918.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/gradm-2.1.3.200503070918.ebuild,v 1.1 2005/03/07 20:26:31 solar Exp $ + +inherit flag-o-matic gcc eutils + +myPV=${PV:0:5}-${PV:6} + +MAINTAINER="solar@gentoo.org" +DESCRIPTION="Administrative interface for the grsecurity Role Based Access Control system" +HOMEPAGE="http://www.grsecurity.net/" +SRC_URI="http://www.grsecurity.net/gradm-${myPV}.tar.gz" +#SRC_URI="mirror://gentoo/gradm-${myPV}.tar.gz" +#RESTRICT=primaryuri +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~arm ~amd64 ~ppc64 ~ia64 ~mips" +IUSE="" +RDEPEND="" +DEPEND="virtual/libc + sys-devel/bison + sys-devel/flex + sys-apps/chpax" + +S="${WORKDIR}/${PN}2" + +src_unpack() { + unpack ${A} + cd ${S} + + #epatch ${FILESDIR}/gradm-2.1.2-non-interactive.patch + + ebegin "Patching Makefile to use gentoo CFLAGS" + sed -i -e "s|-O2|${CFLAGS}|" Makefile + eend $? +} + +src_compile() { + cd ${S} + emake CC="$(gcc-getCC)" || die "compile problem" + return 0 +} + +src_install() { + cd ${S} + einstall DESTDIR=${D} + fperms 711 /sbin/gradm + return 0 +} + +pkg_postinst() { + if [ ! -e ${ROOT}/dev/grsec ] ; then + einfo "Making character device for grsec2 learning mode" + mkdir -p -m 755 ${ROOT}/dev/ + mknod -m 0622 ${ROOT}/dev/grsec c 1 12 || die "Cant mknod for grsec learning device" + fi + ewarn "Be sure to set a password with 'gradm -P' before enabling learning mode" +} |