diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2009-11-14 12:50:52 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2009-11-14 12:50:52 +0000 |
commit | 4b853ca0ae1f15c28e65df07d49638fcc76b8995 (patch) | |
tree | 99c0b802f4e0985080f2e09a272e32f5fa79697b /media-sound/amarok-utils | |
parent | Remove dev-db/pgcluster. Masked since 2005, i was unable to emerge it. (diff) | |
download | gentoo-2-4b853ca0ae1f15c28e65df07d49638fcc76b8995.tar.gz gentoo-2-4b853ca0ae1f15c28e65df07d49638fcc76b8995.tar.bz2 gentoo-2-4b853ca0ae1f15c28e65df07d49638fcc76b8995.zip |
Bumped amarok-utils to release 2.2.1.
This release like 2.2.0 segfauls on start if built with binutils-2.20
(bug 290662).
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/amarok-utils')
-rw-r--r-- | media-sound/amarok-utils/ChangeLog | 10 | ||||
-rw-r--r-- | media-sound/amarok-utils/amarok-utils-2.2.1.ebuild | 63 |
2 files changed, 72 insertions, 1 deletions
diff --git a/media-sound/amarok-utils/ChangeLog b/media-sound/amarok-utils/ChangeLog index d062bd487da9..9ceced83d201 100644 --- a/media-sound/amarok-utils/ChangeLog +++ b/media-sound/amarok-utils/ChangeLog @@ -1,6 +1,14 @@ # 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.7 2009/11/09 18:07:27 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v 1.8 2009/11/14 12:50:52 jmbsvicetto Exp $ + +*amarok-utils-2.2.1 (14 Nov 2009) + + 14 Nov 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> + +amarok-utils-2.2.1.ebuild: + Bumped amarok-utils to release 2.2.1. + This release like 2.2.0 segfauls on start if built with binutils-2.20 + (bug 290662). 09 Nov 2009; Christian Faulhammer <fauli@gentoo.org> amarok-utils-2.2.0.ebuild: diff --git a/media-sound/amarok-utils/amarok-utils-2.2.1.ebuild b/media-sound/amarok-utils/amarok-utils-2.2.1.ebuild new file mode 100644 index 000000000000..fe989a056754 --- /dev/null +++ b/media-sound/amarok-utils/amarok-utils-2.2.1.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.1.ebuild,v 1.1 2009/11/14 12:50:52 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[asf,mp4] + >=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 +} |