blob: a44e31dd817a79a1d524aad4752c664cd4929abd (
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/dev-libs/libsynce/libsynce-0.15.1.ebuild,v 1.2 2011/02/25 14:58:55 ssuominen Exp $
EAPI=2
DESCRIPTION="A library for SynCE"
HOMEPAGE="http://www.synce.org/"
SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus static-libs"
RDEPEND="dbus? ( >=dev-libs/dbus-glib-0.88 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable static-libs static) \
--enable-dccm-file-support \
$(use_enable dbus odccm-support) \
--disable-hal-support \
$(use_enable dbus udev-support)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc ChangeLog README TODO
find "${D}" -name '*.la' -exec rm -f {} +
}
|