blob: d87790efe0777aa9c34cc76bd08a11029a883c6a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/vcdimager-0.7.19.ebuild,v 1.16 2005/03/21 21:03:34 luckyduck Exp $
inherit eutils
DESCRIPTION="GNU VCDimager"
HOMEPAGE="http://www.vcdimager.org/"
SRC_URI="mirror://sourceforge/xine/${P}-cdio.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64 alpha ia64"
IUSE="xml2"
DEPEND="~dev-libs/libcdio-0.64
xml2? ( >=dev-libs/libxml2-2.5.11 )"
S=${WORKDIR}/${P}-cdio
src_compile() {
local myopts
# We disable the xmltest because the configure script includes differently
# than the actual XML-frontend C files.
use xml2 \
&& myopts="${myopts} --with-xml-prefix=/usr --disable-xmltest" \
|| myopts="${myopts} --without-xml-frontend"
econf ${myopts} || die
emake || die
}
src_install() {
make \
prefix=${D}/usr \
libdir=${D}/usr/$(get_libdir) \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
dodoc AUTHORS BUGS COPYING ChangeLog FAQ HACKING INSTALL
dodoc NEWS README THANKS TODO
}
src_test() { :; }
|