diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2009-10-02 01:12:51 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2009-10-02 01:12:51 +0000 |
commit | 7a857f29dd2bd93bff7eaf1c5c06401bbc1866f7 (patch) | |
tree | dacbb171e0719f1efd456afe861e9c851e13cab9 /media-sound/amarok-utils | |
parent | Bumped amarok to version 2.2.0. (diff) | |
download | historical-7a857f29dd2bd93bff7eaf1c5c06401bbc1866f7.tar.gz historical-7a857f29dd2bd93bff7eaf1c5c06401bbc1866f7.tar.bz2 historical-7a857f29dd2bd93bff7eaf1c5c06401bbc1866f7.zip |
Bumped amarok-utils to version 2.2.0.
Package-Manager: portage-2.2_rc42/cvs/Linux x86_64
Diffstat (limited to 'media-sound/amarok-utils')
-rw-r--r-- | media-sound/amarok-utils/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/amarok-utils/amarok-utils-2.2.0.ebuild | 63 |
2 files changed, 70 insertions, 1 deletions
diff --git a/media-sound/amarok-utils/ChangeLog b/media-sound/amarok-utils/ChangeLog index 894a0518d403..a7910c3d0b0b 100644 --- a/media-sound/amarok-utils/ChangeLog +++ b/media-sound/amarok-utils/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/amarok-utils # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v 1.4 2009/06/26 11:05:41 tampakrap Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v 1.5 2009/10/02 01:12:50 jmbsvicetto Exp $ + +*amarok-utils-2.2.0 (02 Oct 2009) + + 02 Oct 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> + +amarok-utils-2.2.0.ebuild: + Bumped amarok-utils to version 2.2.0. *amarok-utils-2.1.1 (26 Jun 2009) diff --git a/media-sound/amarok-utils/amarok-utils-2.2.0.ebuild b/media-sound/amarok-utils/amarok-utils-2.2.0.ebuild new file mode 100644 index 000000000000..e22a98529cc8 --- /dev/null +++ b/media-sound/amarok-utils/amarok-utils-2.2.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/amarok-utils-2.2.0.ebuild,v 1.1 2009/10/02 01:12:51 jmbsvicetto Exp $ + +EAPI="2" + +if [[ ${PV} = *9999* ]]; then + GIT_ECLASS="git" + EGIT_PROJECT="amarok" + EGIT_REPO_URI="git://gitorious.org/amarok/amarok.git" +fi + +inherit base cmake-utils ${GIT_ECLASS} + +MY_PN="amarok" + +DESCRIPTION="Various utility programs for Amarok." +HOMEPAGE="http://amarok.kde.org/" +if [[ ${PV} = *9999* ]]; then + SRC_URI="" +else + SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/src/${MY_PN}-${PV}.tar.bz2" +fi + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="4" +IUSE="debug" + +DEPEND=" + >=media-libs/taglib-1.6 + >=media-libs/taglib-extras-1.0.1 + >=x11-libs/qt-core-4.4:4 + >=x11-libs/qt-dbus-4.4:4 +" +RDEPEND="${DEPEND} + !<media-sound/amarok-2.1.80:2 + !<media-sound/amarok-2.1.80:${SLOT} +" + +S="${WORKDIR}/${MY_PN}-${PV}" + +DOCS="TODO README ChangeLog AUTHORS" + +src_prepare() { + # Disable po processing + sed -e "s:include(MacroOptionalAddSubdirectory)::" \ + -i "${S}/CMakeLists.txt" \ + || die "Removing include of MacroOptionalAddSubdirectory failed." + sed -e "s:macro_optional_add_subdirectory( po )::" \ + -i "${S}/CMakeLists.txt" \ + || die "Removing include of MacroOptionalAddSubdirectory failed." + + base_src_prepare +} + +src_configure() { + mycmakeargs="${mycmakeargs} + -DWITH_PLAYER=OFF + -DWITH_UTILITIES=ON" + + cmake-utils_src_configure +} |