Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/mysql-workbench: ChangeLog mysql-workbench-5.2.44.ebuild
Date: Mon, 01 Oct 2012 18:39:55
Message-Id: 20121001183938.B8CAC21600@flycatcher.gentoo.org
1 graaff 12/10/01 18:39:38
2
3 Modified: ChangeLog
4 Added: mysql-workbench-5.2.44.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.11.9/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.66 dev-db/mysql-workbench/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-workbench/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-workbench/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-workbench/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 16 Sep 2012 17:18:43 -0000 1.65
24 +++ ChangeLog 1 Oct 2012 18:39:38 -0000 1.66
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-db/mysql-workbench
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/ChangeLog,v 1.65 2012/09/16 17:18:43 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/ChangeLog,v 1.66 2012/10/01 18:39:38 graaff Exp $
30 +
31 +*mysql-workbench-5.2.44 (01 Oct 2012)
32 +
33 + 01 Oct 2012; Hans de Graaff <graaff@g.o>
34 + +mysql-workbench-5.2.44.ebuild:
35 + Version bump.
36
37 *mysql-workbench-5.2.43 (16 Sep 2012)
38
39
40
41
42 1.1 dev-db/mysql-workbench/mysql-workbench-5.2.44.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-workbench/mysql-workbench-5.2.44.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-workbench/mysql-workbench-5.2.44.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mysql-workbench-5.2.44.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-workbench/mysql-workbench-5.2.44.ebuild,v 1.1 2012/10/01 18:39:38 graaff Exp $
52
53 EAPI=4
54 GCONF_DEBUG="no"
55 PYTHON_DEPEND=2
56
57 inherit gnome2 eutils flag-o-matic python autotools
58
59 MY_P="${PN}-gpl-${PV}-src"
60
61 DESCRIPTION="MySQL Workbench"
62 HOMEPAGE="http://dev.mysql.com/workbench/"
63 SRC_URI="mirror://mysql/Downloads/MySQLGUITools/${MY_P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
68 IUSE="debug doc gnome-keyring nls static-libs"
69
70 # Build system bundles an unreleased copy of dev-libs/antlr-c 3.4 so we
71 # can't depend on our own packaged version right now.
72
73 CDEPEND="dev-db/sqlite:3
74 >=x11-libs/gtk+-2.6:2
75 dev-libs/glib:2
76 gnome-base/libglade:2.0
77 dev-libs/libsigc++:2
78 dev-libs/boost
79 >=dev-cpp/ctemplate-0.95
80 >=dev-libs/libxml2-2.6.2:2
81 >=dev-cpp/glibmm-2.14:2
82 >=dev-cpp/gtkmm-2.14:2.4
83 dev-db/libiodbc
84 dev-libs/libzip
85 >=virtual/mysql-5.1
86 dev-libs/libpcre
87 virtual/opengl
88 >=dev-lang/lua-5.1[deprecated]
89 x11-libs/pango
90 || ( sys-libs/e2fsprogs-libs
91 dev-libs/ossp-uuid )
92 >=x11-libs/cairo-1.5.12[svg]
93 dev-python/pexpect
94 >=dev-python/paramiko-1.7.4
95 doc? ( dev-python/pysqlite:2 )
96 gnome-keyring? ( gnome-base/libgnome-keyring )
97 nls? ( sys-devel/gettext )"
98 RDEPEND="${CDEPEND}
99 app-admin/sudo
100 sys-apps/net-tools"
101 DEPEND="${CDEPEND}
102 virtual/pkgconfig"
103
104 S="${WORKDIR}"/"${MY_P}"
105
106 pkg_setup() {
107 # Make sure we use Python 2 since the code is not compatible with 3.
108 python_set_active_version 2
109 python_pkg_setup
110 }
111
112 src_prepare() {
113 # ifconfig isn't in the normal path
114 sed -i -e 's:ifconfig:/sbin/ifconfig:' plugins/wb.admin/backend/wb_server_control.py || die
115
116 # Remove hardcoded CXXFLAGS
117 sed -i -e 's/debug_flags="-ggdb3 /debug_flags="/' configure || die
118 sed -i -e 's/-O0 -g3//' ext/scintilla/gtk/Makefile.in ext/scintilla/gtk/Makefile.am || die
119
120 # Remove bundled ctemplate version to make sure we use the system
121 # version, but leave a directory to avoid confusing configure, bug
122 # 357539.
123 rm -rf ext/ctemplate || die
124 mkdir -p ext/ctemplate/ctemplate-src || die
125
126 # Regenerate autotools files to work around broken libtool for
127 # antlr, bug 431756.
128 eautoreconf
129 }
130
131 src_configure() {
132 econf \
133 $(use_enable nls i18n) \
134 $(use_enable debug) \
135 $(use_enable static-libs static)
136 }
137
138 src_install() {
139 emake install DESTDIR="${D}" || die
140 find "${ED}" -name '*.la' -delete || die
141 }