forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apetag-1.12-r2.ebuild
51 lines (38 loc) · 984 Bytes
/
apetag-1.12-r2.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${PN^}
src_prepare() {
default
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
newdoc 00readme README
}