diff options
author | 2006-08-31 23:45:10 +0000 | |
---|---|---|
committer | 2006-08-31 23:45:10 +0000 | |
commit | 93ea1ae8435e053836c08f798be20346bc89319c (patch) | |
tree | 0507a7219f8717c035fdcf324744d9d3834962e8 /sys-apps | |
parent | Add 'qa' useflag, currently masked on mips and alpha (diff) | |
download | gentoo-2-93ea1ae8435e053836c08f798be20346bc89319c.tar.gz gentoo-2-93ea1ae8435e053836c08f798be20346bc89319c.tar.bz2 gentoo-2-93ea1ae8435e053836c08f798be20346bc89319c.zip |
Version bump
(Portage version: 2.1.1_rc1-r1)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/paludis/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/paludis/files/digest-paludis-0.6.0 | 3 | ||||
-rw-r--r-- | sys-apps/paludis/paludis-0.6.0.ebuild | 65 |
3 files changed, 74 insertions, 1 deletions
diff --git a/sys-apps/paludis/ChangeLog b/sys-apps/paludis/ChangeLog index 1da550f6986d..7691fcca5ffa 100644 --- a/sys-apps/paludis/ChangeLog +++ b/sys-apps/paludis/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/paludis # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.11 2006/08/22 21:24:09 ferdy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.12 2006/08/31 23:45:10 spb Exp $ + +*paludis-0.6.0 (31 Aug 2006) + + 31 Aug 2006; Stephen Bennett <spb@gentoo.org> +paludis-0.6.0.ebuild: + Version bump *paludis-0.4.4 (22 Aug 2006) diff --git a/sys-apps/paludis/files/digest-paludis-0.6.0 b/sys-apps/paludis/files/digest-paludis-0.6.0 new file mode 100644 index 000000000000..d2a5a75c3670 --- /dev/null +++ b/sys-apps/paludis/files/digest-paludis-0.6.0 @@ -0,0 +1,3 @@ +MD5 182ffb9c230ce5f1e7d592829907b42f paludis-0.6.0.tar.bz2 627805 +RMD160 eb5e7071121513447f09dc8f817216194062ec8c paludis-0.6.0.tar.bz2 627805 +SHA256 d029c08a0c938e6e6a72934ca8de9dd750edbe1cff450c41ab80d604164cb4b1 paludis-0.6.0.tar.bz2 627805 diff --git a/sys-apps/paludis/paludis-0.6.0.ebuild b/sys-apps/paludis/paludis-0.6.0.ebuild new file mode 100644 index 000000000000..0e4e523cecc2 --- /dev/null +++ b/sys-apps/paludis/paludis-0.6.0.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-0.6.0.ebuild,v 1.1 2006/08/31 23:45:10 spb Exp $ + +DESCRIPTION="paludis, the other package mangler" +HOMEPAGE="http://paludis.berlios.de/" +SRC_URI="http://download.berlios.de/paludis/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~mips ~sparc ~x86" +IUSE="doc pink selinux qa" + +DEPEND=" + dev-cpp/libebt + dev-cpp/libwrapiter + >=app-shells/bash-3 + >=sys-devel/autoconf-2.59 + =sys-devel/automake-1.9* + doc? ( app-doc/doxygen ) + selinux? ( sys-libs/libselinux ) + qa? ( dev-libs/pcre++ >=dev-libs/libxml2-2.6 ) + dev-util/pkgconfig" + +RDEPEND=" + >=app-admin/eselect-1.0.2 + >=app-shells/bash-3 + net-misc/wget + net-misc/rsync + qa? ( dev-libs/pcre++ >=dev-libs/libxml2-2.6 ) + !mips? ( sys-apps/sandbox ) + selinux? ( sys-libs/libselinux )" + +PROVIDE="virtual/portage" + +src_compile() { + econf --disable-qa \ + $(use_enable doc doxygen ) \ + $(use_enable !mips sandbox ) \ + $(use_enable pink) \ + $(use_enable selinux) \ + $(use_enable qa) \ + || die "econf failed" + + emake || die "emake failed" + if use doc ; then + make doxygen || die "make doxygen failed" + fi +} + +src_install() { + make DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS README ChangeLog NEWS + + if use doc ; then + dohtml -r -V doc/html/ + fi +} + +src_test() { + # Work around Portage bug + addwrite /var/cache + emake check || die "Make check failed" +} + |