diff options
Diffstat (limited to 'sys-apps/gradm/gradm-2.2.0.201008112235.ebuild')
-rw-r--r-- | sys-apps/gradm/gradm-2.2.0.201008112235.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sys-apps/gradm/gradm-2.2.0.201008112235.ebuild b/sys-apps/gradm/gradm-2.2.0.201008112235.ebuild new file mode 100644 index 000000000000..2cbd6b9d4ca4 --- /dev/null +++ b/sys-apps/gradm/gradm-2.2.0.201008112235.ebuild @@ -0,0 +1,57 @@ +# 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.0.201008112235.ebuild,v 1.1 2010/08/14 18:41:40 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" + + append-ldflags -Wl,-z,now +} + +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 +} |