diff options
author | William Thomson <wltjr@gentoo.org> | 2007-12-26 16:03:18 +0000 |
---|---|---|
committer | William Thomson <wltjr@gentoo.org> | 2007-12-26 16:03:18 +0000 |
commit | f945e5fe5148fc7dcc9f9bbfdd2123ede8cbdef8 (patch) | |
tree | c7094598cb26772169ff60f4ef88715f0aefa9fd /dev-db/flamerobin/flamerobin-0.8.3.ebuild | |
parent | Stable on amd64; bug 202762 (diff) | |
download | historical-f945e5fe5148fc7dcc9f9bbfdd2123ede8cbdef8.tar.gz historical-f945e5fe5148fc7dcc9f9bbfdd2123ede8cbdef8.tar.bz2 historical-f945e5fe5148fc7dcc9f9bbfdd2123ede8cbdef8.zip |
Bumped to latest release, removed older versions
Package-Manager: portage-2.1.4_rc11
Diffstat (limited to 'dev-db/flamerobin/flamerobin-0.8.3.ebuild')
-rw-r--r-- | dev-db/flamerobin/flamerobin-0.8.3.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-db/flamerobin/flamerobin-0.8.3.ebuild b/dev-db/flamerobin/flamerobin-0.8.3.ebuild new file mode 100644 index 000000000000..4c2995d2c7fa --- /dev/null +++ b/dev-db/flamerobin/flamerobin-0.8.3.ebuild @@ -0,0 +1,47 @@ +# 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.8.3.ebuild,v 1.1 2007/12/26 16:03:17 wltjr 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() { + # temp hack since configure is not executable + chmod +x configure + + 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/* +} |