summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/apetag/apetag-1.12-r1.ebuild')
-rw-r--r--media-sound/apetag/apetag-1.12-r1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/media-sound/apetag/apetag-1.12-r1.ebuild b/media-sound/apetag/apetag-1.12-r1.ebuild
deleted file mode 100644
index 6a35cba1cba6..000000000000
--- a/media-sound/apetag/apetag-1.12-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1 toolchain-funcs
-
-DESCRIPTION="Command-line ape 2.0 tagger"
-HOMEPAGE="http://muth.org/Robert/Apetag/"
-SRC_URI="http://muth.org/Robert/Apetag/${PN}.${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-IUSE=""
-
-S=${WORKDIR}/Apetag
-
-src_prepare() {
- eapply_user
- sed -i \
- -e 's:CXXDEBUG:LDFLAGS:' \
- Makefile || die
- python_fix_shebang *.py
-}
-
-src_compile() {
- tc-export CXX
- emake \
- CXXFLAGS="${CXXFLAGS} -Wall -pedantic" \
- LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- dobin ${PN}
-
- python_moduleinto /usr/lib/apetag
- python_domodule *.py
-
- fperms +x /usr/lib/apetag/{rmid3tag,tagdir}.py
- dosym ../lib/apetag/rmid3tag.py /usr/bin/rmid3tag.py
- dosym ../lib/apetag/tagdir.py /usr/bin/tagdir.py
-
- dodoc 00readme
-}