blob: 65fd6d466e36c5e07df9fe07347664c79164eca0 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/asuka/asuka-1.2.1.ebuild,v 1.8 2014/01/08 06:34:55 vapier Exp $
inherit eutils flag-o-matic user
DESCRIPTION="The QuakeNet IRC Server"
HOMEPAGE="http://dev-com.quakenet.org/"
SRC_URI="http://dev-com.quakenet.org/releases/${PN}/${PV}/${P}.tar.bz2"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="x86 sparc"
IUSE="debug"
src_compile() {
# configure fails with this flag, bug 171780
filter-flags -ggdb
econf \
--with-symlink=asuka-ircd \
--with-dpath=/etc/asuka \
--with-cpath=/etc/asuka/ircd.conf \
--with-lpath=/var/log/asuka/asuka.log \
$(use_enable debug) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
newbin ircd/ircd asuka-ircd || die "newbin failed"
newman doc/ircd.8 asuka-ircd.8 || die "newman failed"
insinto /etc/asuka
doins doc/ircd.conf.sample || die "doins failed"
newinitd ${FILESDIR}/asuka.init.d asuka || die "newinitd failed"
newconfd ${FILESDIR}/asuka.conf.d asuka || die "newconfd failed"
keepdir /var/log/asuka
dodoc \
INSTALL* LICENSE README* RELEASE.NOTES TODO* \
doc/readme.* doc/p10.html doc/features.txt doc/Authors \
|| die "dodoc failed"
}
pkg_postinst() {
enewuser asuka
chown asuka ${ROOT}/var/log/asuka
elog
elog "A sample config file can be found at /etc/asuka/ircd.conf.sample"
elog
}
|