diff options
author | Joshua Brindle <method@gentoo.org> | 2003-07-10 00:24:23 +0000 |
---|---|---|
committer | Joshua Brindle <method@gentoo.org> | 2003-07-10 00:24:23 +0000 |
commit | 1be1cb218e6d1adc31a60fa32d691e58ff490c27 (patch) | |
tree | 12b85437c2842d78d9e3c1dbbd23b336ff3d154c /dev-python/python-selinux | |
parent | fixed stuff (diff) | |
download | historical-1be1cb218e6d1adc31a60fa32d691e58ff490c27.tar.gz historical-1be1cb218e6d1adc31a60fa32d691e58ff490c27.tar.bz2 historical-1be1cb218e6d1adc31a60fa32d691e58ff490c27.zip |
fixed stuff
Diffstat (limited to 'dev-python/python-selinux')
-rw-r--r-- | dev-python/python-selinux/Manifest | 4 | ||||
-rw-r--r-- | dev-python/python-selinux/files/digest-python-selinux-1.0-r1 (renamed from dev-python/python-selinux/files/digest-python-selinux-1.0) | 0 | ||||
-rw-r--r-- | dev-python/python-selinux/python-selinux-1.0-r1.ebuild (renamed from dev-python/python-selinux/python-selinux-1.0.ebuild) | 8 |
3 files changed, 7 insertions, 5 deletions
diff --git a/dev-python/python-selinux/Manifest b/dev-python/python-selinux/Manifest index 28e75dbf35f6..8dd4bc59b1ed 100644 --- a/dev-python/python-selinux/Manifest +++ b/dev-python/python-selinux/Manifest @@ -1,4 +1,4 @@ -MD5 e89003755c0049a295da73c879e7792a python-selinux-1.0-r1.ebuild 720 -MD5 a3963e941c121f92f339ceaeecead336 ChangeLog 408 +MD5 afbd1cf62fa9f3d52ea9f0de38d5693b python-selinux-1.0-r1.ebuild 723 +MD5 b3f7051be1ae0b47fa182e948873285a ChangeLog 603 MD5 f182ab46e74041b1e72cc2f0e31d09d7 metadata.xml 418 MD5 41ce3631984a8e2bf2dc1a9ea66a7315 files/digest-python-selinux-1.0-r1 69 diff --git a/dev-python/python-selinux/files/digest-python-selinux-1.0 b/dev-python/python-selinux/files/digest-python-selinux-1.0-r1 index 942de1aeb32b..942de1aeb32b 100644 --- a/dev-python/python-selinux/files/digest-python-selinux-1.0 +++ b/dev-python/python-selinux/files/digest-python-selinux-1.0-r1 diff --git a/dev-python/python-selinux/python-selinux-1.0.ebuild b/dev-python/python-selinux/python-selinux-1.0-r1.ebuild index bbfb4e7f58e0..a5a4290bdd93 100644 --- a/dev-python/python-selinux/python-selinux-1.0.ebuild +++ b/dev-python/python-selinux/python-selinux-1.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-selinux/python-selinux-1.0.ebuild,v 1.1 2003/07/04 01:05:44 method Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-selinux/python-selinux-1.0-r1.ebuild,v 1.1 2003/07/10 00:24:19 method Exp $ DESCRIPTION="Python bindings for SELinux functions" HOMEPAGE="http://selinux.dev.gentoo.org/python" @@ -14,12 +14,14 @@ IUSE="selinux" DEPEND="sys-apps/selinux-small" RDEPEND="sys-apps/selinux-small" -S=${WORKDIR}/${P} +S=${WORKDIR}/${PN} src_compile() { + cd ${S} gcc -shared -o selinux.so -I /usr/include/python2.2/ selinux.c -lsecure } src_install() { - cp selinux.so /usr/lib/python2.2/site-packages + insinto /usr/lib/python2.2/site-packages + doins selinux.so } |