blob: a8e0832a6cb77902975f1e1f87e95c1eea599ed9 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.0-r1.ebuild,v 1.12 2003/08/07 03:45:37 vapier Exp $
inherit libtool
inherit flag-o-matic
MY_P=${PN}-${PV/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="free, redistributable digital camera software application"
HOMEPAGE="http://www.gphoto.org/"
SRC_URI="http://www.gphoto.net/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="nls"
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
filter-flags -pipe
local myconf
use nls || myconf="${myconf} --disable-nls"
econf ${myconf} || 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() {
einstall \
gphotodocdir=${D}/usr/share/doc/${PF} \
HTML_DIR=${D}/usr/share/doc/${PF}/sgml \
|| die
dodoc ChangeLog NEWS* README
rm -rf ${D}/usr/share/doc/${PF}/sgml/gphoto2
}
|