|
Lines 12-18
Link Here
|
| 12 |
LICENSE="LGPL-2" |
12 |
LICENSE="LGPL-2" |
| 13 |
SLOT="1" |
13 |
SLOT="1" |
| 14 |
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux" |
14 |
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux" |
| 15 |
IUSE="debug doc +largefile test" |
15 |
IUSE="debug doc test" |
| 16 |
|
16 |
|
| 17 |
RDEPEND=">=dev-libs/dbus-glib-0.73 |
17 |
RDEPEND=">=dev-libs/dbus-glib-0.73 |
| 18 |
>=dev-libs/glib-2.19:2 |
18 |
>=dev-libs/glib-2.19:2 |
|
Lines 29-35
Link Here
|
| 29 |
src_prepare() { |
29 |
src_prepare() { |
| 30 |
epatch "${FILESDIR}"/${PN}-0.4-ldflags.patch \ |
30 |
epatch "${FILESDIR}"/${PN}-0.4-ldflags.patch \ |
| 31 |
"${FILESDIR}"/${PN}-0.4-tests.patch \ |
31 |
"${FILESDIR}"/${PN}-0.4-tests.patch \ |
| 32 |
"${FILESDIR}"/${P}-include-types.h.patch |
32 |
"${FILESDIR}"/${P}-include-types.h.patch \ |
|
|
33 |
"${FILESDIR}"/${PN}-0.5-cross-compile.patch |
| 33 |
|
34 |
|
| 34 |
eautoreconf |
35 |
eautoreconf |
| 35 |
} |
36 |
} |
|
Lines 37-51
Link Here
|
| 37 |
src_configure() { |
38 |
src_configure() { |
| 38 |
# ansi: build fails with |
39 |
# ansi: build fails with |
| 39 |
# verbose-mode: looks useless |
40 |
# verbose-mode: looks useless |
| 40 |
# largefile: not sure usefull |
|
|
| 41 |
econf \ |
41 |
econf \ |
| 42 |
--disable-maintainer-mode \ |
42 |
--disable-maintainer-mode \ |
| 43 |
--disable-dependency-tracking \ |
43 |
--disable-dependency-tracking \ |
| 44 |
--disable-ansi \ |
44 |
--disable-ansi \ |
|
|
45 |
--enable-largefile \ |
| 45 |
$(use_enable debug verbose-mode) \ |
46 |
$(use_enable debug verbose-mode) \ |
| 46 |
$(use_enable doc gtk-doc) \ |
47 |
$(use_enable doc gtk-doc) \ |
| 47 |
$(use_enable doc man-pages) \ |
48 |
$(use_enable doc man-pages) \ |
| 48 |
$(use_enable largefile) \ |
|
|
| 49 |
$(use_enable test tests) |
49 |
$(use_enable test tests) |
| 50 |
} |
50 |
} |
| 51 |
|
51 |
|