diff options
author | 2012-11-04 12:33:04 +0000 | |
---|---|---|
committer | 2012-11-04 12:33:04 +0000 | |
commit | d4e92857791ca1b8fa004d7244cef3c574f2b0bc (patch) | |
tree | 1ec83ed0209a86ae255cd16457e4da45c127f1f0 /dev-db/mysql-workbench | |
parent | Silence repoman. (diff) | |
download | gentoo-2-d4e92857791ca1b8fa004d7244cef3c574f2b0bc.tar.gz gentoo-2-d4e92857791ca1b8fa004d7244cef3c574f2b0bc.tar.bz2 gentoo-2-d4e92857791ca1b8fa004d7244cef3c574f2b0bc.zip |
Cleanup.
(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 | 6 | ||||
-rw-r--r-- | dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild | 93 |
2 files changed, 5 insertions, 94 deletions
diff --git a/dev-db/mysql-workbench/ChangeLog b/dev-db/mysql-workbench/ChangeLog index 9f3c6765c1c0..8f129b62c6c5 100644 --- a/dev-db/mysql-workbench/ChangeLog +++ b/dev-db/mysql-workbench/ChangeLog @@ -1,6 +1,10 @@ # 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.66 2012/10/01 18:39:38 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/ChangeLog,v 1.67 2012/11/04 12:33:04 graaff Exp $ + + 04 Nov 2012; Hans de Graaff <graaff@gentoo.org> + -mysql-workbench-5.2.43.ebuild: + Cleanup. *mysql-workbench-5.2.44 (01 Oct 2012) diff --git a/dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild b/dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild deleted file mode 100644 index 32258c6dc277..000000000000 --- a/dev-db/mysql-workbench/mysql-workbench-5.2.43.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# 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 -} |