diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-09-16 17:18:43 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-09-16 17:18:43 +0000 |
commit | 6bb96e8349262bca7b97f966951f786e4445852b (patch) | |
tree | 08b49dad9a3a34ff52d6b65db6399f4b25edb77c /dev-db/mysql-workbench | |
parent | ppc64 stable wrt #422673 (diff) | |
download | gentoo-2-6bb96e8349262bca7b97f966951f786e4445852b.tar.gz gentoo-2-6bb96e8349262bca7b97f966951f786e4445852b.tar.bz2 gentoo-2-6bb96e8349262bca7b97f966951f786e4445852b.zip |
Version bump. Fix included antlr compilation issues, bug 431756, thanks to Jakub Caban.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/mysql-workbench')
-rw-r--r-- | dev-db/mysql-workbench/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild | 93 |
2 files changed, 101 insertions, 1 deletions
diff --git a/dev-db/mysql-workbench/ChangeLog b/dev-db/mysql-workbench/ChangeLog index d2b4185e3c53..0d6f569cd231 100644 --- a/dev-db/mysql-workbench/ChangeLog +++ b/dev-db/mysql-workbench/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-db/mysql-workbench # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/ChangeLog,v 1.64 2012/08/04 09:47:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/ChangeLog,v 1.65 2012/09/16 17:18:43 graaff Exp $ + +*mysql-workbench-5.2.43 (16 Sep 2012) + + 16 Sep 2012; Hans de Graaff <graaff@gentoo.org> + +mysql-workbench-5.2.43.ebuild: + Version bump. Fix included antlr compilation issues, bug 431756, thanks to + Jakub Caban. 04 Aug 2012; Agostino Sarubbo <ago@gentoo.org> mysql-workbench-5.2.40.ebuild: Stable for amd64, wrt bug #426678 diff --git a/dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild b/dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild new file mode 100644 index 000000000000..32258c6dc277 --- /dev/null +++ b/dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild,v 1.1 2012/09/16 17:18:43 graaff Exp $ + +EAPI=4 +GCONF_DEBUG="no" +PYTHON_DEPEND=2 + +inherit gnome2 eutils flag-o-matic python autotools + +MY_P="${PN}-gpl-${PV}-src" + +DESCRIPTION="MySQL Workbench" +HOMEPAGE="http://dev.mysql.com/workbench/" +SRC_URI="mirror://mysql/Downloads/MySQLGUITools/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="debug doc gnome-keyring nls static-libs" + +# Build system bundles an unreleased copy of dev-libs/antlr-c 3.4 so we +# can't depend on our own packaged version right now. + +CDEPEND="dev-db/sqlite:3 + >=x11-libs/gtk+-2.6:2 + dev-libs/glib:2 + gnome-base/libglade:2.0 + dev-libs/libsigc++:2 + dev-libs/boost + >=dev-cpp/ctemplate-0.95 + >=dev-libs/libxml2-2.6.2:2 + >=dev-cpp/glibmm-2.14:2 + >=dev-cpp/gtkmm-2.14:2.4 + dev-db/libiodbc + dev-libs/libzip + >=virtual/mysql-5.1 + dev-libs/libpcre + virtual/opengl + >=dev-lang/lua-5.1[deprecated] + x11-libs/pango + || ( sys-libs/e2fsprogs-libs + dev-libs/ossp-uuid ) + >=x11-libs/cairo-1.5.12[svg] + dev-python/pexpect + >=dev-python/paramiko-1.7.4 + doc? ( dev-python/pysqlite:2 ) + gnome-keyring? ( gnome-base/libgnome-keyring ) + nls? ( sys-devel/gettext )" +RDEPEND="${CDEPEND} + app-admin/sudo + sys-apps/net-tools" +DEPEND="${CDEPEND} + virtual/pkgconfig" + +S="${WORKDIR}"/"${MY_P}" + +pkg_setup() { + # Make sure we use Python 2 since the code is not compatible with 3. + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + # ifconfig isn't in the normal path + sed -i -e 's:ifconfig:/sbin/ifconfig:' plugins/wb.admin/backend/wb_server_control.py || die + + # Remove hardcoded CXXFLAGS + sed -i -e 's/debug_flags="-ggdb3 /debug_flags="/' configure || die + sed -i -e 's/-O0 -g3//' ext/scintilla/gtk/Makefile.in ext/scintilla/gtk/Makefile.am || die + + # Remove bundled ctemplate version to make sure we use the system + # version, but leave a directory to avoid confusing configure, bug + # 357539. + rm -rf ext/ctemplate || die + mkdir -p ext/ctemplate/ctemplate-src || die + + # Regenerate autotools files to work around broken libtool for + # antlr, bug 431756. + eautoreconf +} + +src_configure() { + econf \ + $(use_enable nls i18n) \ + $(use_enable debug) \ + $(use_enable static-libs static) +} + +src_install() { + emake install DESTDIR="${D}" || die + find "${ED}" -name '*.la' -delete || die +} |