blob: 0f589fc1ba35eeb9d501d2bcef3ab09129cdd176 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/glimmer/glimmer-1.2.1-r5.ebuild,v 1.5 2004/03/13 01:43:06 mr_bones_ Exp $
inherit flag-o-matic
IUSE="python"
DESCRIPTION="All-purpose gnome code editor."
SRC_URI="mirror://sourceforge/glimmer/${P}.tar.gz"
HOMEPAGE="http://glimmer.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
DEPEND="=x11-libs/gtk+-1.2*
=gnome-base/gnome-vfs-1*
>=gnome-base/gnome-libs-1.4.1.7
>=gnome-base/ORBit-0.5.16
>=gnome-base/gnome-print-0.35
python? ( virtual/python
<dev-python/gnome-python-1.99 )"
src_compile() {
replace-flags "-O3" "-O2"
local myconf
use python || myconf="--disable-python"
#disable nls for sandbox issues
econf --disable-nls ${myconf} || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS ABOUT-NLS ChangeLog NEWS PROPS TODO README INSTALL COPYING
}
|