diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-05-06 09:44:45 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-05-06 09:44:45 +0000 |
commit | 5e988feec9d10a504693b5a9a3a9b901ccb171bd (patch) | |
tree | bba1faec355c9171ad01207c83af1357ad137e45 /media-sound | |
parent | Remove old. (diff) | |
download | gentoo-2-5e988feec9d10a504693b5a9a3a9b901ccb171bd.tar.gz gentoo-2-5e988feec9d10a504693b5a9a3a9b901ccb171bd.tar.bz2 gentoo-2-5e988feec9d10a504693b5a9a3a9b901ccb171bd.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/picard/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/picard/picard-1.1.ebuild | 83 |
2 files changed, 4 insertions, 84 deletions
diff --git a/media-sound/picard/ChangeLog b/media-sound/picard/ChangeLog index 90769a0fc5f0..70ed97e91b7d 100644 --- a/media-sound/picard/ChangeLog +++ b/media-sound/picard/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/picard # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.54 2015/04/19 09:48:42 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.55 2015/05/06 09:44:45 mrueg Exp $ + + 06 May 2015; Manuel Rüger <mrueg@gentoo.org> -picard-1.1.ebuild: + Remove old. 19 Apr 2015; Pacho Ramos <pacho@gentoo.org> picard-1.3.1.ebuild: x86 stable wrt bug #534268 diff --git a/media-sound/picard/picard-1.1.ebuild b/media-sound/picard/picard-1.1.ebuild deleted file mode 100644 index 08348044475e..000000000000 --- a/media-sound/picard/picard-1.1.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-1.1.ebuild,v 1.3 2013/01/13 11:38:09 ago Exp $ - -EAPI=4 - -PYTHON_DEPEND="2:2.5" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 3.*" - -inherit eutils distutils - -MY_P="${P/_/}" -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/picard/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="+acoustid +cdda +ffmpeg nls" - -DEPEND="dev-python/PyQt4[X] - media-libs/mutagen - acoustid? ( media-libs/chromaprint[tools] ) - cdda? ( >=media-libs/libdiscid-0.1.1 ) - ffmpeg? ( - virtual/ffmpeg - >=media-libs/libofa-0.9.2 - )" -RDEPEND="${DEPEND}" - -# doesn't work with ebuilds -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -DOCS="AUTHORS.txt NEWS.txt" - -pkg_setup() { - if ! use acoustid && ! use ffmpeg; then - ewarn "The 'acoustid' and 'ffmpeg' USE flag are disabled." - ewarn "Acoustic fingerprinting and recognition will not be available." - fi - if ! use cdda; then - ewarn "The 'cdda' 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 - python_pkg_setup -} - -src_configure() { - $(PYTHON -f) 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 -} - -src_compile() { - distutils_src_compile $(use nls || echo "--disable-locales") -} - -src_install() { - distutils_src_install --disable-autoupdate --skip-build \ - $(use nls || echo "--disable-locales") - - doicon picard.ico - domenu picard.desktop -} - -pkg_postinst() { - distutils_pkg_postinst - echo - ewarn "If you are upgrading Picard and it does not start" - ewarn "try removing Picard's settings:" - ewarn " rm ~/.config/MusicBrainz/Picard.conf" - elog - elog "You should set the environment variable BROWSER to something like" - elog "\"firefox '%s' &\" to let python know which browser to use." -} |