blob: 936741bfedd4a2fc6436ee1e92c6a390100a4e07 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/vcdimager-0.7.12.ebuild,v 1.2 2002/07/11 06:30:42 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GNU VCDimager"
SRC_URI="http://www.vcdimager.org/pub/vcdimager/vcdimager-0.7_UNSTABLE/${P}.tar.gz"
HOMEPAGE="http://www.vcdimager.org"
LICENSE="GPL"
# Ideally this would also include help2man, but it's not yet in portage.
DEPENDS="xml2 ? ( >= dev-libs/libxml2-2.3.8 )"
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"
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
${myopts} \
|| die "./configure failed"
emake || die
}
src_install () {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
}
|