blob: 75b507ae39f74e021643e927294acec090184b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/ige-mac-integration/ige-mac-integration-9999.ebuild,v 1.4 2011/09/21 08:51:51 mgorny Exp $
EAPI="3"
inherit autotools base git-2 python
EGIT_REPO_URI="git://github.com/rhult/${PN}.git
https://github.com/rhult/${PN}.git"
SRC_URI=""
DESCRIPTION="GTK+ bindings for Mac OS X specific tasks"
LICENSE="LGPL-2"
HOMEPAGE="http://live.gnome.org/GTK+/OSX/Integration"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="x11-libs/gtk+:2
dev-python/pygtk:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
# fix the lookup of the codegen tools
sed -e "s|\$(datadir)/pygtk/2.0|${EPREFIX}/$(python_get_sitedir)/gtk-2.0|g" \
-i bindings/python/Makefile.am
eautoreconf
}
src_configure() {
econf --with-compile-warnings=no
}
|