blob: 06a86a525417003445184e882483efab9d764365 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
S=${WORKDIR}/${P}
DESCRIPTION="Eye of GNOME"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/unstable/sources/eog/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/gnome-office/eog.shtml"
RDEPEND="virtual/glibc
>=gnome-base/gconf-1.0.4-r2
>=gnome-base/bonobo-1.0.9-r1"
DEPEND="${RDEPEND}
virtual/glibc
nls? ( sys-devel/gettext )
>=dev-util/intltool-0.11"
src_compile() {
local myconf
if [ -z "`use nls`" ] ; then
myconf="--disable-nls"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} \
GCONG_CONFIG_SOURCE=xml=${D}/etc/gconf/gconf.xml.defaults \
install || die
dodoc AUTHORS COPYING DEPENDS ChangeLog HACKING NEWS README \
TODO MAINTAINERS
}
|