blob: a7a06c58146e946bc418687a566eb5ca3e3c00d2 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.2.0.ebuild,v 1.3 2006/12/21 14:10:19 gustavoz Exp $
DESCRIPTION="free, redistributable digital camera software application"
HOMEPAGE="http://www.gphoto.org/"
SRC_URI="mirror://sourceforge/gphoto/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc ~x86"
IUSE="nls exif readline ncurses aalib"
# jpeg useflag -> exif support
# aalib -> needs libjpeg
RDEPEND=">=dev-libs/libusb-0.1.8
dev-libs/popt
>=media-libs/libgphoto2-2.2.0
ncurses? ( dev-libs/cdk )
aalib? ( media-libs/aalib
media-libs/jpeg )
exif? ( media-libs/libexif )
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
econf \
$(use_enable nls) \
$(use_with ncurses cdk) \
$(use_with aalib) \
$(use_with aalib jpeg) \
$(use_with exif) \
$(use_with readline) || die "econf failed"
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
}
|