blob: 893c237b2bcd7a42fadfa8277c9d26cfd665c178 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/capisuite-0.4.5.3.ebuild,v 1.1 2005/05/16 08:37:31 genstef Exp $
inherit eutils versionator
MY_PV="$(get_version_component_range 1-3)"
MY_PL="$(get_version_component_range 4)"
MY_PT="${PN}_${MY_PV}-${MY_PL}"
MY_P="${PN}-${MY_PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Python-scriptable ISDN telecommunication suite"
HOMEPAGE="http://www.capisuite.de"
SRC_URI="http://www.capisuite.de/${MY_P}.tar.gz
http://ftp.debian.org/debian/pool/main/c/capisuite/${MY_PT}.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE=""
DEPEND="dev-lang/python
virtual/libc
media-sound/sox
media-libs/tiff
media-gfx/jpeg2ps
media-gfx/sfftobmp
virtual/ghostscript"
RDEPEND="${DEPEND}
net-dialup/capi4k-utils
virtual/mta"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${WORKDIR}/${MY_PT}.diff
epatch ${FILESDIR}/${MY_P}-gentoo.patch
# apply CAPI V3 patch conditionally
grep 2>/dev/null -q CAPI_LIBRARY_V2 /usr/include/capiutils.h \
&& epatch ${FILESDIR}/${MY_P}-capiv3.patch
epatch ${FILESDIR}/${PN}-fax-compatibility.patch
}
src_compile() {
econf --localstatedir=/var \
--with-docdir=/usr/share/doc/${PF} || die "econf failed."
emake || die "parallel make failed."
}
src_install() {
make DESTDIR=${D} install || die "install failed."
dodir /etc/init.d
newinitd ${FILESDIR}/capisuite.initd capisuite
keepdir /var/spool/capisuite/{done,failed,sendq,users}
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
newdoc debian/changelog ChangeLog.debian
exeinto /etc/cron.daily
doexe capisuite.cron
insinto /etc/capisuite
doins cronjob.conf
insinto /etc/logrotate.d
newins debian/capisuite.logrotate capisuite
}
|