blob: bb339ad344c99f470eaab3ba81f3614e31a864d8 (
plain)
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cdparanoia/cdparanoia-3.9.8-r2.ebuild,v 1.13 2006/06/16 21:26:01 flameeyes Exp $
IUSE=""
inherit eutils flag-o-matic
MY_P=${PN}-III-alpha9.8
S=${WORKDIR}/${MY_P}
DESCRIPTION="an advanced CDDA reader with error correction"
HOMEPAGE="http://www.xiph.org/paranoia/"
SRC_URI="http://www.xiph.org/paranoia/download/${MY_P}.src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86"
src_unpack() {
unpack ${A}
cd ${S}
# cdda_paranoia.h should include cdda_interface_h, else most configure
# scripts testing for support fails (gnome-vfs, etc).
epatch ${FILESDIR}/${P}-include-cdda_interface_h.patch
epatch ${FILESDIR}/${P}-toc.patch
epatch ${FILESDIR}/${P}-identify_crash.patch
epatch ${FILESDIR}/${PV}-gcc34.patch
# if libdir is specified, cdparanoia causes sandbox violations, and using
# einstall doesnt work around it. so lets patch in DESTDIR support
epatch ${FILESDIR}/${P}-use-destdir.patch
# Let portage handle the stripping of binaries
sed -i -e "/strip cdparanoia/d" Makefile.in
ln -s configure.guess config.guess
ln -s configure.sub config.sub
rm config.{guess,sub}
}
src_compile() {
append-flags -I${S}/interface
econf || die
make OPT="${CFLAGS}" || die
}
src_install() {
dodir /usr/{bin,lib,include} /usr/share/man/man1
make DESTDIR=${D} install || die
dodoc FAQ.txt README
}
|