diff options
author | William Thomson <wltjr@gentoo.org> | 2006-11-04 20:59:10 +0000 |
---|---|---|
committer | William Thomson <wltjr@gentoo.org> | 2006-11-04 20:59:10 +0000 |
commit | fedcef96fa4212606050b9421283186ad9ffeab3 (patch) | |
tree | 7cdb33e4afa25146c77b7ca76d7f36612626ec29 /dev-db/flamerobin | |
parent | use a snapshot instead of svn, fixes bug 153184 (diff) | |
download | gentoo-2-fedcef96fa4212606050b9421283186ad9ffeab3.tar.gz gentoo-2-fedcef96fa4212606050b9421283186ad9ffeab3.tar.bz2 gentoo-2-fedcef96fa4212606050b9421283186ad9ffeab3.zip |
Fixed dodocs, switch to doicon domenu for desktop entry, fixed invalid dep atom of firebird per bug #154058
(Portage version: 2.1.2_rc1-r1)
Diffstat (limited to 'dev-db/flamerobin')
-rw-r--r-- | dev-db/flamerobin/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/flamerobin/files/digest-flamerobin-0.7.5-r1 | 3 | ||||
-rw-r--r-- | dev-db/flamerobin/flamerobin-0.7.5-r1.ebuild | 37 |
3 files changed, 48 insertions, 1 deletions
diff --git a/dev-db/flamerobin/ChangeLog b/dev-db/flamerobin/ChangeLog index f1a8fe9b92c0..225000fb1b98 100644 --- a/dev-db/flamerobin/ChangeLog +++ b/dev-db/flamerobin/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-db/flamerobin # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/flamerobin/ChangeLog,v 1.2 2006/11/04 06:23:03 wltjr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/flamerobin/ChangeLog,v 1.3 2006/11/04 20:59:10 wltjr Exp $ + +*flamerobin-0.7.5-r1 (04 Nov 2006) + + 04 Nov 2006; William L. Thomson Jr. <wltjr@gentoo.org> + +flamerobin-0.7.5-r1.ebuild: + Fixed dodocs, switch to doicon domenu for desktop entry, fixed invalid dep + atom of firebird per bug #154058 04 Nov 2006; William L. Thomson Jr. <wltjr@gentoo.org> metadata.xml: Got a little herd happy, updated metadata.xml to no-herd diff --git a/dev-db/flamerobin/files/digest-flamerobin-0.7.5-r1 b/dev-db/flamerobin/files/digest-flamerobin-0.7.5-r1 new file mode 100644 index 000000000000..76b9c549f1dd --- /dev/null +++ b/dev-db/flamerobin/files/digest-flamerobin-0.7.5-r1 @@ -0,0 +1,3 @@ +MD5 f7be54b5a70bee15e158cb732c1fbb3d flamerobin-0.7.5-src.tar.gz 771880 +RMD160 25f1fb56e25054ce044e0ea9c6b54a2df608b27e flamerobin-0.7.5-src.tar.gz 771880 +SHA256 5cf69736df816d0b37f580dec4e8db4f45578f5ef589e74c71017dccf9ad612e flamerobin-0.7.5-src.tar.gz 771880 diff --git a/dev-db/flamerobin/flamerobin-0.7.5-r1.ebuild b/dev-db/flamerobin/flamerobin-0.7.5-r1.ebuild new file mode 100644 index 000000000000..dc5ac12ac801 --- /dev/null +++ b/dev-db/flamerobin/flamerobin-0.7.5-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2006 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.1 2006/11/04 20:59:10 wltjr Exp $ + +inherit eutils + +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.0 + dev-db/firebird" + +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${P}-src" + +src_compile() { + local myconf + myconf="${myconf} --disable-shared --disable-debug --with-wx=yes" + 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/* +} + |