blob: 7e9fa2b7273b796a4e9cae9eeff13ec584fafedb (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/fxscintilla-1.62-r1.ebuild,v 1.1 2005/05/07 19:40:49 rphillips Exp $
inherit eutils
DESCRIPTION="A free source code editing component for the FOX-Toolkit"
HOMEPAGE="http://www.nongnu.org/fxscintilla/"
SRC_URI="http://savannah.nongnu.org/download/fxscintilla/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha"
IUSE="doc"
DEPEND="=x11-libs/fox-1.0*
=x11-libs/fox-1.2*"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/1.62-shared-libs.patch || die
epatch ${FILESDIR}/1.62-fox-SLOT.patch || die
einfo "Running autoreconf..."
touch NEWS AUTHORS
autoreconf --install --force || die "autoreconf error"
}
src_compile () {
# Borrowed from wxGTK ebuild
einfo "Building ${PN} for FOX-1.0..."
mkdir ${S}/build_1_0
cd ${S}/build_1_0
../configure \
--prefix=/usr \
--includedir=/usr/include \
--libdir=/usr/lib \
${EXTRA_ECONF} \
--enable-nolexer \
--with-fox-1-0 \
--with-foxinclude=${ROOT}usr/include \
--with-foxlib=${ROOT}usr/lib \
|| die "configure error"
emake || die "make error"
einfo "Building ${PN} for FOX-1.2..."
mkdir ${S}/build_1_2
cd ${S}/build_1_2
../configure \
--prefix=/usr \
--includedir=/usr/include \
--libdir=/usr/lib \
${EXTRA_ECONF} \
--enable-nolexer \
--with-foxinclude=${ROOT}usr/include \
--with-foxlib=${ROOT}usr/lib \
|| die "configure error"
emake || die "make error"
}
src_install () {
cd ${S}/build_1_0
make DESTDIR="${D}" install || die "make install error"
cd ${S}/build_1_2
make DESTDIR="${D}" install || die "make install error"
cd ${S}
dodoc README
if use doc ; then
dodoc scintilla/doc/Lexer.txt
dohtml scintilla/doc/*
fi
}
pkg_postinst() {
ewarn
ewarn "New as of 1.62-r1:"
ewarn "FXScintilla is now built separately against FOX-1.0 and FOX-1.2."
ewarn "For FOX-1.2, the library is called libfxscintilla-1.2."
ewarn "Anything linked against previous releases of FOX-1.2 and fxscintilla"
ewarn "may need to be rebuilt."
ewarn
einfo "The nolexer libraries are now included in this release as well."
epause 5
}
|