blob: c2a2786d85a8cf6c4574e39c9ba9631d73869856 (
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
|
# Copyright 1999-2012 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.6.0_p20111126.ebuild,v 1.4 2012/05/04 18:35:55 jdhore Exp $
EAPI="3"
inherit autotools
DESCRIPTION="dbus-c++ attempts to provide a C++ API for D-BUS."
HOMEPAGE="http://www.freedesktop.org/wiki/Software/dbus-c++"
SRC_URI="http://www.elvanor.net/files/gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="debug"
RDEPEND="sys-apps/dbus"
DEPEND="${RDEPEND}
dev-util/cppunit
virtual/pkgconfig"
src_prepare() {
eautoreconf
}
src_configure() {
econf $(use_enable debug ) || die
}
src_compile() {
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
}
|