blob: d170a50a73dc7e0210a00fe19060209777ba6d94 (
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-gfx/gphoto/gphoto-0.4.3-r2.ebuild,v 1.8 2002/11/06 11:41:15 seemant Exp $
inherit flag-o-matic
S=${WORKDIR}/${P}
DESCRIPTION="free, redistributable digital camera software application"
SRC_URI="http://www.gphoto.net/dist/${P}.tar.gz"
HOMEPAGE="http://www.gphoto.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="media-libs/imlib
>=media-gfx/imagemagick-4.1"
src_unpack() {
unpack ${A}
cd ${S}/sony
patch <${FILESDIR}/gphoto-0.4.3-sony-command.c-gentoo.patch
}
src_compile() {
# -pipe does no work
filter-flags -pipe
local myconf
use nls || myconf="${myconf} --disable-nls"
econf \
--sysconfdir=/etc/gnome \
${myconf} || die
make clean || die
pmake || die
}
src_install() {
einstall sysconfdir=${D}/etc/gnome || die
dodoc AUTHORS CONTACTS COPYING ChangeLog FAQ MANUAL NEWS* PROGRAMMERS \
README THANKS THEMES TODO
}
|