blob: c6a54e2f56db083da945db5d7f175025d30c22c6 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-0.97a.ebuild,v 1.1 2004/08/23 08:06:00 genone Exp $
inherit eutils
DESCRIPTION="a RAD tool for BASIC"
HOMEPAGE="http://gambas.sourceforge.net"
SRC_URI="http://gambas.sourceforge.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="postgres mysql sdl doc curl debug sqlite"
DEPEND=">=sys-devel/automake-1.7.5
>=x11-libs/qt-3.2
>=kde-base/kdelibs-3.2
sdl? ( media-libs/libsdl )
mysql? ( dev-db/mysql )
postgres? ( dev-db/postgresql )
curl? ( net-misc/curl )
sqlite? ( dev-db/sqlite )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i 's:-Os::' configure
# replace braindead Makefile
rm Makefile*
cp "${FILESDIR}/Makefile.am-0.97a" ./Makefile.am
# patches against hardcoded paths
#epatch ${FILESDIR}/non-symlink-0.95.patch
automake
}
src_compile() {
local myconf
myconf="${myconf} --enable-kde --enable-qt"
myconf="${myconf} `use_enable mysql`"
myconf="${myconf} `use_enable postgres`"
myconf="${myconf} `use_enable sqlite`"
myconf="${myconf} `use_enable sdl`"
myconf="${myconf} `use_enable curl`"
if use debug ; then
myconf="${myconf} --disable-optimization --enable-debug"
else
myconf="${myconf} --enable-optimization --disable-debug"
fi
econf ${myconf} || die
emake || die
}
src_install() {
export PATH="${D}/usr/bin:${PATH}"
einstall || die
dodoc README INSTALL NEWS AUTHORS ChangeLog TODO
# only install the API docs and examples with USE=doc
if use doc; then
mv ${D}/usr/share/${PN}/help ${D}/usr/share/doc/${PF}/html
mv ${D}/usr/share/${PN}/examples ${D}/usr/share/doc/${PF}/examples
else
dohtml ${FILESDIR}/WebHome.html
fi
rm -rf ${D}/usr/share/${PN}/help ${D}/usr/share/${PN}/examples
dosym ../doc/${PF}/html /usr/share/${PN}/help
dosym ../doc/${PF}/examples /usr/share/${PN}/examples
}
|