blob: 6a3dbe3aaa11a0687c4a10abb15fb4f69b68ac05 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/itund/itund-0.3.1.ebuild,v 1.2 2006/05/28 22:57:24 sbriesen Exp $
inherit eutils toolchain-funcs
DESCRIPTION="ItunD (ISDN tunnel Daemon) provides a network tunnel over ISDN lines using CAPI"
HOMEPAGE="http://sourceforge.net/projects/itund/"
SRC_URI="mirror://sourceforge/itund/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="sys-libs/zlib
net-dialup/capi4k-utils"
src_unpack() {
unpack ${A}
cd "${S}"
# patch Makefile to use our CFLAGS
sed -i -e "s:^\(CFLAGS=.*\) -O2 :\1 ${CFLAGS} :g" Makefile
}
src_compile() {
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
dosbin itund
dodoc CHANGES README
}
|