forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdparanoia-3.10.2-r6.ebuild
60 lines (45 loc) · 1.42 KB
/
cdparanoia-3.10.2-r6.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
52
53
54
55
56
57
58
59
60
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils libtool toolchain-funcs versionator multilib-minimal
MY_P=${PN}-III-$(get_version_component_range 2-3)
DESCRIPTION="an advanced CDDA reader with error correction"
HOMEPAGE="http://www.xiph.org/paranoia"
SRC_URI="http://downloads.xiph.org/releases/${PN}/${MY_P}.src.tgz
https://dev.gentoo.org/~ssuominen/${MY_P}-patches-2.tbz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="static-libs"
RDEPEND="app-eselect/eselect-cdparanoia
abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r4
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
DEPEND=${RDEPEND}
S=${WORKDIR}/${MY_P}
src_prepare() {
EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/patches
mv configure.guess config.guess
mv configure.sub config.sub
sed -i -e '/configure.\(guess\|sub\)/d' configure.in || die
eautoconf
elibtoolize
multilib_copy_sources
}
multilib_src_configure() {
tc-export AR CC RANLIB
econf
}
multilib_src_compile() {
emake OPT="${CFLAGS} -I${S}/interface"
use static-libs && emake lib OPT="${CFLAGS} -I${S}/interface"
}
multilib_src_install_all() {
einstalldocs
mv "${ED}"/usr/bin/${PN}{,-paranoia}
}
pkg_postinst() {
eselect ${PN} update ifunset
}
pkg_postrm() {
eselect ${PN} update ifunset
}