blob: 2f37bbc70506969f1a03c0799fdc4576bd6ec0ff (
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
|
# 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.22.ebuild,v 1.1 2005/05/26 23:39:23 luckyduck Exp $
inherit eutils libtool
DESCRIPTION="GNU VCDimager"
HOMEPAGE="http://www.vcdimager.org/"
SRC_URI="http://www.vcdimager.org/pub/vcdimager/vcdimager-0.7/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="xml2 minimal"
RDEPEND=">=dev-libs/libcdio-0.71
!minimal? ( dev-libs/popt )
xml2? ( >=dev-libs/libxml2-2.5.11 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
local myconf
# We disable the xmltest because the configure script includes differently
# than the actual XML-frontend C files.
use xml2 && myconf="${myconf} --with-xml-prefix=/usr --disable-xmltest"
use xml2 || myconf="${myconf} --without-xml-frontend"
econf \
$(use_with !minimal cli-frontends) \
${myconf} \
--disable-dependency-tracking || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS BUGS ChangeLog FAQ HACKING NEWS README THANKS TODO
}
src_test() { :; }
|