blob: bc5e60be596cffb3275d2d8d7e2ea872374fcb49 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.0-r1.ebuild,v 1.5 2002/07/23 05:18:06 seemant Exp $
inherit libtool
MY_P=${PN}-${PV/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="free, redistributable digital camera software application"
SRC_URI="http://www.gphoto.net/dist/${MY_P}.tar.gz"
HOMEPAGE="http://www.gphoto.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND=">=dev-libs/libusb-0.1.5
=dev-libs/glib-1.2*
>=sys-libs/zlib-1.1.4"
src_compile() {
elibtoolize
aclocal
# -pipe does no work
env CFLAGS="${CFLAGS/-pipe/}" ./configure \
--prefix=/usr \
--sysconfdir=/etc \
|| die
cp libgphoto2/Makefile libgphoto2/Makefile.orig
sed -e 's:$(prefix)/doc/gphoto2:/usr/share/doc/${PF}:' \
libgphoto2/Makefile.orig >libgphoto2/Makefile
make || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
gphotodocdir=${D}/usr/share/doc/${PF} \
HTML_DIR=${D}/usr/share/doc/${PF}/sgml \
install || die
dodoc ChangeLog NEWS* README
rm -rf ${D}/usr/share/doc/${PF}/sgml/gphoto2
}
|