diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2004-02-24 22:06:40 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2004-02-24 22:06:40 +0000 |
commit | 232ab198de2f502a71eefc8fdc051ff1e993f4d5 (patch) | |
tree | 06aa8e800dc5bc957fd54ae26fdf150185bc953c /sys-libs | |
parent | Initial Import. (Manifest recommit) (diff) | |
download | gentoo-2-232ab198de2f502a71eefc8fdc051ff1e993f4d5.tar.gz gentoo-2-232ab198de2f502a71eefc8fdc051ff1e993f4d5.tar.bz2 gentoo-2-232ab198de2f502a71eefc8fdc051ff1e993f4d5.zip |
new upstream release
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libselinux/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/libselinux/files/digest-libselinux-1.6 | 1 | ||||
-rw-r--r-- | sys-libs/libselinux/libselinux-1.6.ebuild | 34 |
3 files changed, 42 insertions, 2 deletions
diff --git a/sys-libs/libselinux/ChangeLog b/sys-libs/libselinux/ChangeLog index a5fa8b782b5b..92aee99119cc 100644 --- a/sys-libs/libselinux/ChangeLog +++ b/sys-libs/libselinux/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libselinux -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.14 2003/12/16 20:42:08 pebenito Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.15 2004/02/24 22:06:40 pebenito Exp $ + +*libselinux-1.6 (24 Feb 2004) + + 24 Feb 2004; Chris PeBenito <pebenito@gentoo.org> libselinux-1.6.ebuild: + New upstream release. 16 Dec 2003; Chris PeBenito <pebenito@gentoo.org> libselinux-1.4.ebuild: Mark stable. diff --git a/sys-libs/libselinux/files/digest-libselinux-1.6 b/sys-libs/libselinux/files/digest-libselinux-1.6 new file mode 100644 index 000000000000..3b1d90402534 --- /dev/null +++ b/sys-libs/libselinux/files/digest-libselinux-1.6 @@ -0,0 +1 @@ +MD5 40b06c536479e28d7ad910b8ef536152 libselinux-1.6.tgz 38427 diff --git a/sys-libs/libselinux/libselinux-1.6.ebuild b/sys-libs/libselinux/libselinux-1.6.ebuild new file mode 100644 index 000000000000..505def5729b5 --- /dev/null +++ b/sys-libs/libselinux/libselinux-1.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-1.6.ebuild,v 1.1 2004/02/24 22:06:40 pebenito Exp $ + +IUSE="" + +DESCRIPTION="SELinux userland library" +HOMEPAGE="http://www.nsa.gov/selinux" +SRC_URI="http://www.nsa.gov/selinux/archives/${P}.tgz" +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" + +DEPEND="sys-libs/glibc" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + + cd ${S} + sed -i -e "s:-Wall:-Wall ${CFLAGS}:g" src/Makefile \ + || die "src Makefile CFLAGS fix failed." + sed -i -e "s:-Wall:-Wall ${CFLAGS}:g" utils/Makefile \ + || die "utils Makefile CFLAGS fix failed." +} + +src_compile() { + emake || die +} + +src_install() { + make DESTDIR="${D}" install +} |