blob: f6c7c1ca5c9f94b777b7cbcf64187515e83a0d36 (
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
|
inherit eutils
DESCRIPTION="AICCU Client to configure an IPv6 tunnel to SixXS"
HOMEPAGE="http://www.sixxs.net/"
SRC_URI="http://www.sixxs.net/archive/sixxs/aiccu/unix/${PN}_${PV//\./}.tar.gz"
LICENSE="SixXS"
SLOT="0"
KEYWORDS="~amd64 ~arm hppa ~ppc x86"
IUSE=""
DEPEND="net-libs/gnutls
sys-apps/iproute2"
S=${WORKDIR}/aiccu
src_unpack () {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/init-after-ntp-client.patch
}
src_compile() {
cd ${S}
export RPM_OPT_FLAGS=${CFLAGS}
make || die "Build Failed"
}
src_install() {
dosbin unix-console/aiccu
insopts -m 600
insinto /etc
doins doc/aiccu.conf
dodoc doc/{HOWTO,LICENSE,README,changelog}
exeinto /etc/init.d
newexe doc/aiccu.init.gentoo aiccu
}
pkg_postinst() {
einfo "The aiccu ebuild installs an init script named 'aiccu'"
einfo "To add support for a SixXS connection at startup, do"
einfo "edit your /etc/aiccu.conf and do"
einfo "# rc-update add aiccu default"
}
|