summaryrefslogtreecommitdiff
blob: cdb5d7a24b0b8e469c3958fe28feafc5dc2600db (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
52
53
54
55
56
57
# Copyright 1999-2003 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.1.1.ebuild,v 1.2 2003/02/13 12:34:06 vapier Exp $

inherit libtool
inherit flag-o-matic

IUSE="nls jpeg"

S=${WORKDIR}/${P}
DESCRIPTION="free, redistributable digital camera software application"
SRC_URI="mirror://sourceforge/gphoto/${P}.tar.bz2"
HOMEPAGE="http://www.gphoto.org/"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"

DEPEND=">=dev-libs/libusb-0.1.6
	=dev-libs/glib-1.2*
	>=sys-libs/zlib-1.1.4
	ncurses? ( dev-libs/cdk )
	aalib? ( 
		media-libs/aalib 
		media-libs/jpeg )
	readline? ( sys-libs/readline )
	dev-libs/popt
	>=media-libs/libgphoto2-2.1.1"

src_compile() {

	elibtoolize
	aclocal

	# -pipe does no work
	filter-flags -pipe

	local myconf
	use nls || myconf="${myconf} --disable-nls"
	use ncurses || myconf="${myconf} --without-cdk"
	use aalib || myconf="${myconf} --without-aalib --without-jpeg"
	use readline ||  myconf="${myconf} --without-readline"

	econf ${myconf}
	emake || die
}

src_install() {

	einstall
		gphotodocdir=${D}/usr/share/doc/${PF} \
		HTML_DIR=${D}/usr/share/doc/${PF}/sgml \
		|| die

	dodoc ChangeLog NEWS* README AUTHORS COPYING
	rm -rf ${D}/usr/share/doc/${PF}/sgml/gphoto2
}