blob: 9f6deef735bf2efa299f2aa2f1423a516966f975 (
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{3_3,3_4} )
inherit base python-single-r1 systemd user
MY_PV=${PV/_/-}
DESCRIPTION="An advanced IRC Bouncer"
if [[ ${PV} == *9999* ]]; then
inherit git-2
EGIT_REPO_URI=${EGIT_REPO_URI:-"git://github.com/znc/znc.git"}
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://znc.in/releases/${PN}-${MY_PV}.tar.gz"
KEYWORDS="amd64 ~arm x86"
fi
HOMEPAGE="http://znc.in"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="daemon debug ipv6 perl python ssl sasl tcl"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
perl? ( >=dev-lang/perl-5.10 )
python? ( ${PYTHON_DEPS} )
sasl? ( >=dev-libs/cyrus-sasl-2 )
ssl? ( >=dev-libs/openssl-0.9.7d:0 )
tcl? ( dev-lang/tcl:0= )
"
DEPEND="
virtual/pkgconfig
perl? (
>=dev-lang/swig-2.0.12
)
python? (
>=dev-lang/swig-2.0.12
)
${RDEPEND}
"
S=${WORKDIR}/${PN}-${MY_PV}
PATCHES=(
"${FILESDIR}/${PN}-1.0-systemwideconfig.patch"
)
CONFDIR="/var/lib/znc"
pkg_setup() {
if use python; then
python-single-r1_pkg_setup
fi
if use daemon; then
enewgroup ${PN}
enewuser ${PN} -1 -1 /dev/null ${PN}
fi
}
src_prepare() {
if [[ ${PV} == *9999* ]]; then
./autogen.sh
fi
base_src_prepare
}
src_configure() {
econf \
--with-systemdsystemunitdir=$(systemd_get_unitdir) \
$(use_enable debug) \
$(use_enable ipv6) \
$(use_enable perl) \
$(use python && echo "--enable-python=python3") \
$(use_enable sasl cyrus) \
$(use_enable ssl openssl) \
$(use_enable tcl tcl)
}
src_install() {
emake install DESTDIR="${D}"
dodoc NOTICE README.md
if use daemon; then
newinitd "${FILESDIR}"/znc.initd znc
newconfd "${FILESDIR}"/znc.confd znc
fi
}
pkg_postinst() {
if use !daemon; then
elog
elog "Run 'znc --makeconf' as the user you want to run ZNC as"
elog "to make a configuration file"
elog
else
elog
elog "An init-script was installed in /etc/init.d"
elog "A config file was installed in /etc/conf.d"
if [[ ! -d "${EROOT}${CONFDIR}" ]]; then
elog
elog "Run 'emerge --config znc' to configure ZNC"
elog "as a system-wide daemon."
elog
elog "To generate a new SSL certificate, run:"
elog " znc --system-wide-config-as znc --makepem -d ${CONFDIR}"
elog "as root"
elog
elog "If migrating from a user-based install"
elog "you can use your existing config files:"
elog " mkdir ${CONFDIR}"
elog " mv /home/\$USER/.znc/* ${CONFDIR}"
elog " rm -rf /home/\$USER/.znc"
elog " chown -R znc:znc ${CONFDIR}"
elog
elog "If you already have znc set up and want take advantage of the"
elog "init script but skip of all the above, you can also edit"
elog " /etc/conf.d/znc"
elog "and adjust the variables to your current znc user and config"
elog "location."
if [[ -d "${EROOT}"/etc/znc ]]; then
elog
ewarn "/etc/znc exists on your system."
ewarn "Due to the nature of the contents of that folder,"
ewarn "we have changed the default configuration to use"
ewarn " /var/lib/znc"
ewarn "please move /etc/znc to /var/lib/znc"
ewarn "or adjust /etc/conf.d/znc"
fi
else
elog "Existing config detected in ${CONFDIR}"
elog "You're good to go :)"
fi
elog
fi
}
pkg_config() {
if use daemon && ! [[ -d "${EROOT}${CONFDIR}" ]]; then
einfo "Press ENTER to interactively create a new configuration file for znc."
einfo "To abort, press Control-C"
read
mkdir -p "${EROOT}${CONFDIR}" || die
chown -R ${PN}:${PN} "${EROOT}${CONFDIR}" ||
die "Setting permissions failed"
"${EROOT}"/usr/bin/znc --system-wide-config-as znc -c -r -d "${EROOT}${CONFDIR}" ||
die "Config failed"
echo
einfo "To start znc, run '/etc/init.d/znc start'"
einfo "or add znc to a runlevel:"
einfo " rc-update add znc default"
else
if use daemon; then
ewarn "${CONFDIR} already exists, aborting to avoid damaging"
ewarn "any existing configuration. If you are sure you want"
ewarn "to generate a new configuration, remove the folder"
ewarn "and try again."
else
ewarn "To configure znc as a system-wide daemon you have to"
ewarn "enable the 'daemon' use flag."
fi
fi
}
|