blob: 3f44519c2e91ab6104ea18003dcffae5d97b4ffc (
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
|
# Copyright 1999-2002 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.1 2002/10/16 15:01:59 foser Exp $
inherit flag-o-matic
IUSE="python"
S=${WORKDIR}/${P}
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 sparc64"
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
}
|