blob: 5d7ab796c71292e587b1b63885e06cf663b620e1 (
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
69
70
71
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/freenet6/freenet6-5.1.ebuild,v 1.2 2008/02/27 10:07:38 voyageur Exp $
inherit eutils versionator toolchain-funcs
MY_PV=$(replace_all_version_separators "_")
DESCRIPTION="Client to configure an IPv6 tunnel to freenet6"
HOMEPAGE="http://www.freenet6.net/"
SRC_URI="mirror://gentoo/gw6c-${MY_PV}-RELEASE-src.tar.gz"
LICENSE="VPL-1.0"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE=""
DEPEND="dev-libs/openssl"
RDEPEND="${DEPEND}"
S="${WORKDIR}/tspc-advanced"
src_unpack() {
unpack ${A}
cd "${WORKDIR}"
for i in gw6c-config gw6c-messaging ; do
sed -i -e "/ARCHIVER=/s:ar:$(tc-getAR):" \
-e "/COMPILER=/s:g++:$(tc-getCXX):" \
-e "/C_COMPILER=/s:gcc:$(tc-getCC):" \
-e "/CPP_FLAGS=/s:-I.:${CXXFLAGS} -I.:" \
-e "/C_FLAGS=/s:-I.:${CFLAGS} -I.:" \
-e "/C_LINKER=/s:gcc:$(tc-getCC):" \
-e "/LD_FLAGS=/s:-O2::" \
-e "/LD_FLAGS=/s:-L:${LDFLAGS} -L:" \
-e "/LINKER=/s:g++:$(tc-getCXX):" \
-e "/RANLIB=/s:ranlib:$(tc-getRANLIB):" \
${i}/Makefile || die "sed failed in ${i}"
done
cd "${S}"
for i in platform/linux platform/unix-common src/lib src/net src/tsp src/xml ; do
sed -i -e "/CC=/s:gcc:$(tc-getCC):" \
-e "/CFLAGS=/s:-O2:${CFLAGS}:" \
-e "/LDFLAGS=/s:-L..:${LDFLAGS} -L..:" \
${i}/Makefile || die "sed failed in ${i}"
done
}
src_compile() {
emake all configdir=/etc/freenet6 target=linux || die "Build Failed"
sed -i "s#tsp-#/tmp/tsp-#" bin/gw6c.conf.sample
}
src_install() {
dosbin bin/gw6c
insopts -m 600
insinto /etc/freenet6
newins bin/gw6c.conf.sample gw6c.conf
exeinto /etc/freenet6/template
doexe template/linux.sh
newinitd "${FILESDIR}"/gw6c.rc gw6c
doman man/{man5/gw6c.conf.5,man8/gw6c.8}
}
pkg_postinst() {
if has_version '=net-misc/freenet6-1*' ; then
ewarn "Warning: you are upgrading from an older version"
ewarn "The configuration file has been renamed to gw6c.conf"
ewarn "Remember to port your personal settings from tspc.conf to it"
ewarn "The init script has been renamed to 'gw6c',"
else
elog "The freenet6 ebuild installs an init script named 'gw6c'"
fi
elog "to coincide with the name of the client binary installed"
elog "To add support for a freenet6 connection at startup, do"
elog ""
elog "# rc-update add gw6c default"
}
|