diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-09-04 18:45:09 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-09-04 18:45:09 +0000 |
commit | c81fc650c6df75a94b3eeb2d4ff3a0ee6f20555d (patch) | |
tree | 877711d6d4f288554ee8519464ef5f0f021aaa4f /media-libs/tunepimp | |
parent | Add support for DOCS variable in src_install (diff) | |
download | gentoo-2-c81fc650c6df75a94b3eeb2d4ff3a0ee6f20555d.tar.gz gentoo-2-c81fc650c6df75a94b3eeb2d4ff3a0ee6f20555d.tar.bz2 gentoo-2-c81fc650c6df75a94b3eeb2d4ff3a0ee6f20555d.zip |
Punt unused version with hardcoded flac depends.
(Portage version: 2.1.3.7)
Diffstat (limited to 'media-libs/tunepimp')
-rw-r--r-- | media-libs/tunepimp/files/digest-tunepimp-0.5.2 | 3 | ||||
-rw-r--r-- | media-libs/tunepimp/tunepimp-0.5.2.ebuild | 62 |
2 files changed, 0 insertions, 65 deletions
diff --git a/media-libs/tunepimp/files/digest-tunepimp-0.5.2 b/media-libs/tunepimp/files/digest-tunepimp-0.5.2 deleted file mode 100644 index e38a24b73b0b..000000000000 --- a/media-libs/tunepimp/files/digest-tunepimp-0.5.2 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 655b254539013f5e7fe50ac035c26dcb libtunepimp-0.5.2.tar.gz 1076084 -RMD160 ec2fe7b28b0d6550d698429df7f70f858c3fb5d8 libtunepimp-0.5.2.tar.gz 1076084 -SHA256 3c78270a844fde2933528c57ebbf1a2910463fe334147ef9911098e39909954c libtunepimp-0.5.2.tar.gz 1076084 diff --git a/media-libs/tunepimp/tunepimp-0.5.2.ebuild b/media-libs/tunepimp/tunepimp-0.5.2.ebuild deleted file mode 100644 index df62fa4083ce..000000000000 --- a/media-libs/tunepimp/tunepimp-0.5.2.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/tunepimp-0.5.2.ebuild,v 1.11 2007/01/23 15:44:49 beandog Exp $ - -WANT_AUTOCONF="latest" -WANT_AUTOMAKE="latest" - -inherit eutils distutils autotools - -MY_P="lib${P}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="TunePimp is a library to create MusicBrainz enabled tagging applications." -HOMEPAGE="http://www.musicbrainz.org/products/tunepimp" -SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 sparc x86" -# Most use flags were void as not deterministic - needs a patch sooner or later. -#IUSE="flac mp3 readline perl python vorbis" -IUSE="python" - -RDEPEND="sys-libs/zlib - dev-libs/expat - net-misc/curl - ~media-libs/flac-1.1.2 - media-libs/libmad - >=media-libs/musicbrainz-2.1.0 - media-libs/libofa - media-libs/libvorbis - !media-sound/trm - sys-libs/readline" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i -e "s: tta::" configure.in - - eautoreconf -} - -src_compile() { - # We need to override distutils_src_compile, bug 160145 - econf || die 'econf failed' - emake || die 'emake failed' -} - -src_install() { - cd ${S} - make DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog INSTALL README TODO - if use python; then - cd ${S}/python - distutils_src_install - insinto /usr/share/doc/${PF}/examples/ - doins examples/* - fi -} |