blob: 1e2412e5a0f7e24b80bee820dfcbd35e0e971f4b (
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-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh Exp
P_VERSION="1.1.9-1"
S=${WORKDIR}/glimmer-${P_VERSION}
DESCRIPTION="All-purpose gnome code editor."
SRC_URI="mirror://sourceforge/glimmer/${PN}-${P_VERSION}.tar.gz"
HOMEPAGE="http://glimmer.sourceforge.net"
DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1
>=gnome-base/ORBit-0.5.10-r1
>=gnome-base/gnome-vfs-1.0.2-r1
>=gnome-base/gnome-print-0.20"
# These are requirements when build with --enable-python.
# We should update this to build with --enable-python if USE=python,
# some work might have to be done to make play with Python 2.X
# >=dev-lang/python-1.5.2
# >=dev-python/gnome-python-1.4.1"
src_compile() {
#--disable-python disable python scripting, needed to build with python-2.x
# see homepage
# regex is included in glibc now, so disable buildin regex since it cause compile errors
mv src/gtkextext/gtkextext.h src/gtkextext/gtkextext.h.orig
sed -e 's/\#include "..\/regex\/regex.h"/\#include <regex.h>/' src/gtkextext/gtkextext.h.orig >src/gtkextext/gtkextext.h
mv src/Makefile.am src/Makefile.am.orig
grep -v 'regex/libregex.a \\' src/Makefile.am.orig >src/Makefile.am.grep
sed -e 's/SUBDIRS \= regex gtkextext/SUBDIRS \= gtkextext/' src/Makefile.am.grep >src/Makefile.am
automake
./configure --disable-python --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} || die
make || die
}
src_install () {
make prefix=${D}/usr sysconfdir=${D}/etc/gnome install || die
dodoc AUTHORS ABOUT-NLS ChangeLog NEWS PROPS TODO README INSTALL COPYING
}
|