diff options
Diffstat (limited to 'dev-db/mysql-query-browser/mysql-query-browser-1.1.18.ebuild')
-rw-r--r-- | dev-db/mysql-query-browser/mysql-query-browser-1.1.18.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-db/mysql-query-browser/mysql-query-browser-1.1.18.ebuild b/dev-db/mysql-query-browser/mysql-query-browser-1.1.18.ebuild deleted file mode 100644 index 34beb64f19b6..000000000000 --- a/dev-db/mysql-query-browser/mysql-query-browser-1.1.18.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-query-browser/mysql-query-browser-1.1.18.ebuild,v 1.10 2007/06/26 01:45:18 mr_bones_ Exp $ - -inherit gnome2 eutils flag-o-matic - -DESCRIPTION="MySQL Query Browser" -HOMEPAGE="http://www.mysql.com/products/tools/query-browser/" -SRC_URI="mirror://mysql/Downloads/MySQLAdministrationSuite/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~x86" -IUSE="" - -RDEPEND=">=virtual/mysql-4.0 - >=dev-libs/libpcre-4.4 - >=dev-libs/libxml2-2.6.2 - >=gnome-base/libglade-2 - =gnome-extra/gtkhtml-3.0* - >=dev-libs/glib-2 - =dev-cpp/gtkmm-2.8*" - -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.12.0 - >=app-text/scrollkeeper-0.3.11" -RDEPEND="${RDEPEND} - !dev-db/mysql-gui-tools" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/1.1.18-gtk-fix.patch - epatch "${FILESDIR}"/1.1.18-gcc41-fix.patch - - echo "Categories=Application;Development;" >>"${S}"/mysql-query-browser/MySQLQueryBrowser.desktop.in -} - -src_compile() { - # mysql has -fno-exceptions, but we need exceptions - append-flags -fexceptions - - cd "${S}"/mysql-gui-common - econf --with-commondirname=common/query-browser || die "econf failed" - emake || die "emake failed" - - cd "${S}"/mysql-query-browser - econf --with-commondirname=common/query-browser || die "econf failed" - emake || die "emake failed" -} - -src_install() { - USE_DESTDIR=1 - - cd "${S}"/mysql-gui-common - gnome2_src_install || die "gnome2_src_install failed" - - cd "${S}"/mysql-query-browser - gnome2_src_install || die "gnome2_src_install failed" -} |