diff options
author | 2010-06-27 20:42:38 +0000 | |
---|---|---|
committer | 2010-06-27 20:42:38 +0000 | |
commit | 92a3f0e86e533df8968b4345e968fc2598992c19 (patch) | |
tree | af35c653248c32a89451223fb2b6c32f59d3d094 /dev-db/sqliteman | |
parent | x86 stable, bug 322791 (diff) | |
download | gentoo-2-92a3f0e86e533df8968b4345e968fc2598992c19.tar.gz gentoo-2-92a3f0e86e533df8968b4345e968fc2598992c19.tar.bz2 gentoo-2-92a3f0e86e533df8968b4345e968fc2598992c19.zip |
Version bump resolving compilation issue with Qt 4.7, bug 325881. Thanks to Alec Moskvin for reporting.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/sqliteman')
-rw-r--r-- | dev-db/sqliteman/ChangeLog | 8 | ||||
-rw-r--r-- | dev-db/sqliteman/sqliteman-1.2.2.ebuild | 28 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-db/sqliteman/ChangeLog b/dev-db/sqliteman/ChangeLog index 4d3ccd396bc3..bedd9d4d85fa 100644 --- a/dev-db/sqliteman/ChangeLog +++ b/dev-db/sqliteman/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-db/sqliteman # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteman/ChangeLog,v 1.4 2010/01/02 20:27:11 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteman/ChangeLog,v 1.5 2010/06/27 20:42:38 spatz Exp $ + +*sqliteman-1.2.2 (27 Jun 2010) + + 27 Jun 2010; Dror Levin <spatz@gentoo.org> +sqliteman-1.2.2.ebuild: + Version bump resolving compilation issue with Qt 4.7, bug 325881. Thanks + to Alec Moskvin for reporting. 02 Jan 2010; Ben de Groot <yngwin@gentoo.org> sqliteman-1.2.1.ebuild: Remove no longer needed qt4 use dep diff --git a/dev-db/sqliteman/sqliteman-1.2.2.ebuild b/dev-db/sqliteman/sqliteman-1.2.2.ebuild new file mode 100644 index 000000000000..48719d1b6e3e --- /dev/null +++ b/dev-db/sqliteman/sqliteman-1.2.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteman/sqliteman-1.2.2.ebuild,v 1.1 2010/06/27 20:42:38 spatz Exp $ + +EAPI=2 + +inherit eutils cmake-utils + +DESCRIPTION="Powerful GUI manager for the Sqlite3 database" +HOMEPAGE="http://sqliteman.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/qt-gui:4 + x11-libs/qt-sql:4[sqlite] + x11-libs/qscintilla" +DEPEND="${RDEPEND}" + +DOCS="AUTHORS README" + +src_prepare() { + # remove bundled lib + rm -rf "${S}"/${PN}/qscintilla2 +} |