blob: 43c7aedc959d8f615240e934a0c5978179b10c97 (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/dancer-ircd/dancer-ircd-1.0.31_p8-r1.ebuild,v 1.12 2005/01/23 22:07:46 swegener Exp $
inherit eutils
DESCRIPTION="An ircd used by the freenode network"
HOMEPAGE="http://freenode.net/dancer_ircd.shtml"
SRC_URI="http://www.doc.ic.ac.uk/~aps100/dancer/dancer-ircd/stable/releases/dancer-ircd-${PV/_p/+maint}.tar.gz
ipv6? ( http://freenode.net/dancer-maint5+IPv6.diff )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~hppa ~ppc ~sparc x86"
IUSE="ipv6 doc"
DEPEND="doc? ( app-text/openjade
dev-perl/SGMLSpm
app-text/docbook-sgml-dtd
app-text/docbook-sgml-utils )"
S=${WORKDIR}/${PN}-${PV/_p/+maint}
export SMALLNET="${SMALLNET:-y}"
src_unpack() {
unpack dancer-ircd-${PV/_p/+maint}.tar.gz
cd ${S}
use ipv6 && epatch ${DISTDIR}/dancer-maint5+IPv6.diff
cp ${S}/include/config.h ${S}/include/config.h.orig
cat ${S}/include/config.h.orig | grep -v "#define KPATH" | grep -v "#define DLPATH" > ${S}/include/config.h
echo "#define KPATH \"etc/dancer-ircd/kline.conf\"" >> ${S}/include/config.h
echo "#define DLPATH \"etc/dancer-ircd/dline.conf\"" >> ${S}/include/config.h
if [ "${SMALLNET}" = "y" ] ; then
cp ${S}/include/config.h ${S}/include/config.h.tmp
sed s/"#define NO_CHANOPS_ON_SPLIT"/"\/\/#define NO_CHANOPS_ON_SPLIT"/ ${S}/include/config.h.tmp > ${S}/include/config.h
rm ${S}/include/config.h.tmp
fi
sed -i \
-e "s:mkpasswd:${PN}-mkpasswd:" \
doc/hybrid/simple.conf \
tools/README || die "sed failed"
}
src_compile() {
old_CFLAGS="${CFLAGS}" \
CFLAGS="${CFLAGS}" \
econf \
--enable-optimise \
--disable-errors \
--disable-debug-syms \
|| die "econf failed"
emake || die
}
src_install() {
if use doc ; then
docbook2html -u doc/sgml/dancer-oper-guide/dancer-oper-guide.sgml
dohtml dancer-oper-guide.html
docbook2html -u doc/sgml/dancer-user-guide/dancer-user-guide.sgml
dohtml dancer-user-guide.html
fi
dodoc doc/README doc/README.TSora doc/RELNOTES.hybrid-6 \
doc/Tao-of-IRC.940110 doc/README.umodes \
doc/rfc1459.txt doc/example.conf doc/README.small_nets
dobin src/dancer-ircd
newbin tools/mkpasswd ${PN}-mkpasswd
dobin tools/viconf
dodir /etc/dancer-ircd/
insinto /etc/dancer-ircd/
doins doc/example.conf
mv ${D}/etc/dancer-ircd/example.conf ${D}/etc/dancer-ircd/ircd.conf
exeinto /etc/init.d/
doexe ${FILESDIR}/dancer-ircd
keepdir /var/log/dancer-ircd
}
pkg_postinst() {
if [ "${SMALLNET}" = "y" ]
then
einfo If you intend to have more than one irc server
einfo in your network, please reemerge with
einfo "SMALLNET=\"n\" emerge dancer-ircd"
fi
if ! use doc
then
einfo If you need the dancer-oper-guide or the
einfo dancer-user-guide, please reemerge with
einfo "USE=\"doc\" emerge dancer-ircd"
fi
}
|