blob: ba9fa4b3b354bfe790e4e915dee14be143445c0a (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Reviewed by Achim Gottinger <achim@gentoo.org>
# /home/cvsroot/gentoo-x86/gnome-apps/gedit/gedit-0.9.4.ebuild,v 1.4 2000/11/27 16:20:46 achim Exp
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Gnome Text Editor"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${A}"
HOMEPAGE="http://gedit.sourceforge.net/"
DEPEND=">=gnome-base/libglade-0.15
>=gnome-base/gnome-print-0.25
>=gnome-base/gnome-vfs-1.0
nls? ( sys-devel/gettext )"
RDEPEND=">=gnome-base/libglade-0.15
>=gnome-base/gnome-print-0.25
>=gnome-base/gnome-vfs-1.0"
src_compile() {
local myconf
if [ -z "`use nls`" ] ; then
myconf="--disable-nls"
fi
try ./configure --host=${CHOST} --prefix=/opt/gnome ${myconf}
try make
}
src_install() {
try make prefix=${D}/opt/gnome install
dodoc AUTHORS BUGS COPYING ChangeLog FAQ NEWS README* THANKS TODO
}
|