diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-16 22:05:24 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-16 22:05:24 +0000 |
commit | c42e804d3105165738b33c98b2f7e5e90712b754 (patch) | |
tree | 4fb1de5b454bbf0fd16011900d4696d8729e075d /kde-base/noatun-plugins | |
parent | Stable on amd64 per bug #161640 (diff) | |
download | historical-c42e804d3105165738b33c98b2f7e5e90712b754.tar.gz historical-c42e804d3105165738b33c98b2f7e5e90712b754.tar.bz2 historical-c42e804d3105165738b33c98b2f7e5e90712b754.zip |
Bump to 3.5.6 (prerelease).
Package-Manager: portage-2.1.2
Diffstat (limited to 'kde-base/noatun-plugins')
-rw-r--r-- | kde-base/noatun-plugins/ChangeLog | 10 | ||||
-rw-r--r-- | kde-base/noatun-plugins/files/digest-noatun-plugins-3.5.6 | 3 | ||||
-rw-r--r-- | kde-base/noatun-plugins/noatun-plugins-3.5.6.ebuild | 32 |
3 files changed, 43 insertions, 2 deletions
diff --git a/kde-base/noatun-plugins/ChangeLog b/kde-base/noatun-plugins/ChangeLog index e35992d78c1a..ec8f7d9be13a 100644 --- a/kde-base/noatun-plugins/ChangeLog +++ b/kde-base/noatun-plugins/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/noatun-plugins -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/noatun-plugins/ChangeLog,v 1.61 2006/12/11 11:36:45 kloeri Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/noatun-plugins/ChangeLog,v 1.62 2007/01/16 21:59:41 flameeyes Exp $ + +*noatun-plugins-3.5.6 (16 Jan 2007) + + 16 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> + +noatun-plugins-3.5.6.ebuild: + Bump to 3.5.6 (prerelease). 11 Dec 2006; <kloeri@gentoo.org> noatun-plugins-3.5.5.ebuild: Stable on ia64. diff --git a/kde-base/noatun-plugins/files/digest-noatun-plugins-3.5.6 b/kde-base/noatun-plugins/files/digest-noatun-plugins-3.5.6 new file mode 100644 index 000000000000..055b06166548 --- /dev/null +++ b/kde-base/noatun-plugins/files/digest-noatun-plugins-3.5.6 @@ -0,0 +1,3 @@ +MD5 96d6d2a76da2a5232b3b46318456a5bc kdeaddons-3.5.6.tar.bz2 1667731 +RMD160 3fd024b901896cc76a848ab57eb3e2ae99b6a202 kdeaddons-3.5.6.tar.bz2 1667731 +SHA256 dec71f341631beb1f3e112083af11e3ef1618ed80394cf4939c662f8c5a3d807 kdeaddons-3.5.6.tar.bz2 1667731 diff --git a/kde-base/noatun-plugins/noatun-plugins-3.5.6.ebuild b/kde-base/noatun-plugins/noatun-plugins-3.5.6.ebuild new file mode 100644 index 000000000000..850d8e854dd1 --- /dev/null +++ b/kde-base/noatun-plugins/noatun-plugins-3.5.6.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/noatun-plugins/noatun-plugins-3.5.6.ebuild,v 1.1 2007/01/16 21:59:41 flameeyes Exp $ +KMNAME=kdeaddons +MAXKDEVER=$PV +KM_DEPRANGE="$PV $MAXKDEVER" +inherit db-use kde-meta + +DESCRIPTION="Various plugins for Noatun." +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="arts sdl berkdb" + +DEPEND="$(deprange-dual $PV $MAXKDEVER kde-base/noatun) + arts? ( $(deprange $PV $MAXKDEVER kde-base/arts) ) + sdl? ( >=media-libs/libsdl-1.2 ) + berkdb? ( =sys-libs/db-4* )" + +RDEPEND="${DEPEND}" + +src_compile() { + local myconf="$(use_with sdl)" + + if use berkdb; then + dblib="$(db_libname)" + myconf="${myconf} --with-berkeley-db --with-db-lib=${dblib/-/_cxx-} + --with-extra-includes=${ROOT}$(db_includedir)" + else + myconf="${myconf} --without-berkeley-db" + fi + + kde-meta_src_compile +} |