blob: 0009a84ccb7a859e9f85bff92aad3f63e5b8cdd0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/capiisdnmon/capiisdnmon-0.42.ebuild,v 1.2 2005/08/06 16:19:13 swegener Exp $
inherit eutils
DESCRIPTION="A Capi 2.0 Isdn CallMonitor with ldap name resolution"
HOMEPAGE="http://capiisdnmon.sourceforge.net/"
SRC_URI="mirror://sourceforge/capiisdnmon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="net-dialup/capi4k-utils
net-nds/openldap
x11-libs/xosd
>=x11-libs/gtk+-2"
src_unpack() {
unpack ${A}
cd "${S}"
# apply CAPI V3 patch conditionally
grep 2>/dev/null -q CAPI_LIBRARY_V2 /usr/include/capiutils.h \
&& epatch "${FILESDIR}"/${P}-capiv3.patch
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
}
|