blob: 44d7a77826bbcfa151fbde5c9e6db9644cd67434 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/flamerobin/flamerobin-0.7.5-r1.ebuild,v 1.3 2007/05/16 16:15:40 dirtyepic Exp $
inherit eutils wxwidgets
DESCRIPTION="A database administration tool for Firebird DBMS"
HOMEPAGE="http://www.flamerobin.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
LICENSE="BSD as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="=x11-libs/wxGTK-2.6*
dev-db/firebird"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${P}-src"
pkg_setup() {
export WX_GTK_VER="2.6"
need-wxwidgets gtk2
}
src_compile() {
local myconf
myconf="${myconf} \
--disable-shared \
--disable-debug \
--with-wx=yes \
--with-wx-config=${WX_CONFIG}"
econf ${myconf} || die "Could not configure FlameRobin"
emake || die "error during make"
}
src_install() {
make DESTDIR="${D}" install || die "Could not install FlameRobin"
doicon ${S}/res/fricon.xpm
domenu ${FILESDIR}/FlameRobin.desktop
dodoc devdocs/* docs/* docs-src/*
}
|