diff options
author | Jeroen Roovers <jer@gentoo.org> | 2016-08-19 08:38:24 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2016-08-19 08:38:40 +0200 |
commit | 00e84875533ba7b2267056d04594ff424f905d13 (patch) | |
tree | 4bac768adfb3617621c5cfda90909cb5a21f6a81 /app-cdr/cuecue | |
parent | app-cdr/cuecue: Fix build issues. (diff) | |
download | gentoo-00e84875533ba7b2267056d04594ff424f905d13.tar.gz gentoo-00e84875533ba7b2267056d04594ff424f905d13.tar.bz2 gentoo-00e84875533ba7b2267056d04594ff424f905d13.zip |
app-cdr/cuecue: Old.
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-cdr/cuecue')
-rw-r--r-- | app-cdr/cuecue/cuecue-0.2.2-r1.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/app-cdr/cuecue/cuecue-0.2.2-r1.ebuild b/app-cdr/cuecue/cuecue-0.2.2-r1.ebuild deleted file mode 100644 index 5fc0cfafb30d..000000000000 --- a/app-cdr/cuecue/cuecue-0.2.2-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit base eutils flag-o-matic - -DESCRIPTION="Cuecue is a suite to convert .cue + [.ogg|.flac|.wav|.mp3] to .cue + .bin" -HOMEPAGE="http://cuecue.berlios.de/" -#SRC_URI="mirror://berlios/cuecue/${P}.tar.gz" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -# Enable one use flag by default, bug 254745" -IUSE="flac mp3 +vorbis" -REQUIRED_USE="|| ( flac mp3 vorbis )" - -DEPEND="mp3? ( media-libs/libmad ) - flac? ( media-libs/flac ) - vorbis? ( media-libs/libvorbis media-libs/libogg )" - -PATCHES=( "${FILESDIR}/${P}-flac113.diff" ) # bug 157706 -DOCS="CHANGES README TODO" - -src_configure() { - econf \ - --disable-dependency-tracking \ - $(use_enable mp3) \ - $(use_enable vorbis ogg) \ - --disable-oggtest \ - --disable-vorbistest \ - $(use_enable flac) \ - --disable-libFLACtest -} - -src_compile() { - # fixes portage QA notice - append-flags "-ansi -pedantic" - emake CFLAGS="${CFLAGS}" -} - -src_install () { - default - insinto /usr/include - doins src/libcuecue/cuecue.h || die "doins failed." -} |