diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2008-02-08 18:49:50 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2008-02-08 18:49:50 +0000 |
commit | 2f867059dcd7deaecde33a81e45ba53be20d0bdb (patch) | |
tree | fc420f84864f250d11ca8504107271ffc0390b97 /media-sound/picard | |
parent | Add truecrypt-collective-1.3 (diff) | |
download | gentoo-2-2f867059dcd7deaecde33a81e45ba53be20d0bdb.tar.gz gentoo-2-2f867059dcd7deaecde33a81e45ba53be20d0bdb.tar.bz2 gentoo-2-2f867059dcd7deaecde33a81e45ba53be20d0bdb.zip |
Remove old.
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-sound/picard')
-rw-r--r-- | media-sound/picard/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/picard/picard-0.9.0_beta1.ebuild | 64 |
2 files changed, 6 insertions, 66 deletions
diff --git a/media-sound/picard/ChangeLog b/media-sound/picard/ChangeLog index 104aa56a38a0..c9b2863ff01f 100644 --- a/media-sound/picard/ChangeLog +++ b/media-sound/picard/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/picard -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.5 2007/12/23 22:13:02 coldwind Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.6 2008/02/08 18:49:50 coldwind Exp $ + + 08 Feb 2008; Santiago M. Mola <coldwind@gentoo.org> + -picard-0.9.0_beta1.ebuild: + Remove old. *picard-0.9.0 (23 Dec 2007) diff --git a/media-sound/picard/picard-0.9.0_beta1.ebuild b/media-sound/picard/picard-0.9.0_beta1.ebuild deleted file mode 100644 index 74e44f887acd..000000000000 --- a/media-sound/picard/picard-0.9.0_beta1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.9.0_beta1.ebuild,v 1.1 2007/10/28 17:24:35 coldwind Exp $ - -inherit eutils distutils - -MY_P="${P/_beta/beta}" - -DESCRIPTION="An improved rewrite/port of the Picard Tagger using Qt" -HOMEPAGE="http://musicbrainz.org/doc/PicardQt" -SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/users/luks/picard-qt/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="cdaudio ffmpeg nls" - -RDEPEND=">=dev-lang/python-2.4 - || ( >=dev-lang/python-2.5 >=dev-python/ctypes-0.9 ) - >=dev-python/PyQt4-4.2 - >=x11-libs/qt-4.2 - >=media-libs/mutagen-1.9 - cdaudio? ( >=media-libs/libdiscid-0.1.1 ) - ffmpeg? ( >=media-video/ffmpeg-0.4.9 - >=media-libs/libofa-0.9.2 )" - -DEPEND="${RDEPEND}" - -DOCS="AUTHORS.txt INSTALL.txt NEWS.txt" -S=${WORKDIR}/${MY_P} - -src_compile() { - ${python} setup.py config || die "setup.py config failed" - if ! use ffmpeg; then - sed -i -e "s:\(^with-avcodec\ =\ \).*:\1False:" \ - -e "s:\(^with-libofa\ =\ \).*:\1False:" \ - build.cfg || die "sed failed" - fi - ${python} setup.py build $(use nls || echo "--disable-locales") \ - || die "setup.py build failed" -} - -src_install() { - distutils_src_install --disable-autoupdate --skip-build \ - $(use nls || echo "--disable-locales") -} - -pkg_postinst() { - distutils_pkg_postinst - echo - elog "You should set the environment variable BROWSER to something like" - elog "\"firefox '%s' &\" to let python know which browser to use." - echo - if ! use ffmpeg; then - ewarn "The 'ffmpeg' USE flag is disabled. Acoustic fingerprinting and" - ewarn "recognition will not be available." - echo - fi - if ! use cdaudio; then - ewarn "The 'cdaudio' USE flag is disabled. CD index lookup and" - ewarn "identification will not be available. You can get audio CD support" - ewarn "by installing media-libs/libdiscid." - fi -} |