blob: c39793c3a9c784ce59f915dad038cd798a7a9772 (
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
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r1.ebuild,v 1.2 2013/04/24 08:25:42 ago Exp $
EAPI="4"
inherit eutils
DESCRIPTION="provide a C++ API for D-BUS"
HOMEPAGE="http://sourceforge.net/projects/dbus-cplusplus/ http://sourceforge.net/apps/mediawiki/dbus-cplusplus/index.php?title=Main_Page"
SRC_URI="mirror://sourceforge/dbus-cplusplus/lib${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="doc ecore glib static-libs test"
RDEPEND="sys-apps/dbus
ecore? ( dev-libs/ecore )
glib? ( dev-libs/glib )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
dev-util/cppunit
virtual/pkgconfig"
S=${WORKDIR}/lib${P}
src_prepare() {
epatch "${FILESDIR}"/${P}-gcc-4.7.patch #424707
}
src_configure() {
econf \
--disable-examples \
$(use_enable doc doxygen-docs) \
$(use_enable ecore) \
$(use_enable glib) \
$(use_enable static-libs static) \
$(use_enable test tests)
}
src_install() {
default
prune_libtool_files
}
|