blob: e2832bce18dfb9cc1fe713e6abfc749cf9ad7227 (
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
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit optfeature perl-functions python-single-r1 systemd verify-sig
DESCRIPTION="InterNetNews -- the Internet meets Netnews"
HOMEPAGE="https://www.eyrie.org/~eagle/software/inn/"
SRC_URI="https://archives.eyrie.org/software/${PN}/${P}.tar.gz
verify-sig? ( https://archives.eyrie.org/software/${PN}/${P}.tar.gz.sha256.asc )"
LICENSE="BSD BSD-2 BSD-4 GPL-2+ ISC MIT RSA powell public-domain"
SLOT="0"
KEYWORDS="~amd64"
IUSE="berkdb gzip kerberos keywords largefile low-memory +perl +python sasl ssl systemd zlib"
REQUIRED_USE="
python? ( ${PYTHON_REQUIRED_USE} )
?? ( low-memory largefile )
" # ?? ( bzip2 gzip )
DEPEND="
app-crypt/gnupg
sys-libs/pam
virtual/libcrypt:=
!berkdb? ( sys-libs/gdbm:= )
berkdb? ( sys-libs/db:* )
kerberos? ( app-crypt/mit-krb5 )
perl? ( dev-lang/perl:= )
python? ( ${PYTHON_DEPS} )
sasl? ( dev-libs/cyrus-sasl:2 )
ssl? ( dev-libs/openssl:= )
systemd? ( sys-apps/systemd:= )
zlib? ( sys-libs/zlib:= )
"
RDEPEND="${DEPEND}
virtual/sendmail
"
BDEPEND="
sys-devel/flex
app-alternatives/yacc
verify-sig? ( sec-keys/openpgp-keys-russallbery )
"
DOCS=( ChangeLog CONTRIBUTORS HACKING INSTALL NEWS README TODO )
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/russallbery.asc"
src_unpack() {
if use verify-sig; then
pushd "${DISTDIR}" || die
verify-sig_verify_signed_checksums \
${P}.tar.gz.sha256.asc sha256 ${P}.tar.gz
popd || die
fi
unpack ${P}.tar.gz
}
src_configure() {
econf_args=(
--prefix="${EPREFIX}"/opt/${PN}
--libdir="${EPREFIX}"/usr/$(get_libdir)/${PN}
--includedir="${EPREFIX}"/usr/include
--sysconfdir="${EPREFIX}"/etc/news
--with-db-dir="${EPREFIX}"/var/db/news
--with-doc-dir="${EPREFIX}"/usr/share/doc/${PF}
--with-http-dir="${EPREFIX}"/usr/share/${PN}/http
--with-libperl-dir=$(perl_get_vendorlib)
--with-log-dir="${EPREFIX}"/var/log/${PN}
--with-run-dir="${EPREFIX}"/run/news
--with-spool-dir="${EPREFIX}"/var/spool/news
--with-tmp-dir="${EPREFIX}"/var/tmp/news
$(use_enable keywords)
$(use_enable largefile largefiles)
$(use_enable low-memory tagged-hash)
$(use_with berkdb bdb)
$(use_with kerberos krb5)
$(use_with perl)
$(use_with python)
$(use_with sasl)
$(use_with ssl openssl)
$(use_with zlib)
)
if use gzip; then
econf_args+=( --with-log-compress=gzip )
# elif use bzip2; then
# econf_args+=( --with-log-compress=bzip2 )
else
econf_args+=( --with-log-compress=cat )
fi
econf "${econf_args[@]}"
}
src_compile() {
emake -j1
}
src_test() {
emake -j1 check
}
src_install() {
default
keepdir /var/log/inn/OLD
keepdir /var/tmp/news
keepdir /var/spool/news/{archive,articles,incoming/bad,innfeed,outgoing,overview}
find "${ED}" -name '*.la' -delete || die
rm "${ED}"/usr/share/doc/${PF}/{GPL,LICENSE} || die
rm -r "${ED}"/run || die
# collision with sys-apps/man-pages
mv "${ED}"/usr/share/man/man3/{list,inn-list}.3 || die
doenvd "${FILESDIR}"/30inn
newinitd "${FILESDIR}"/ovdb.initd ovdb
for svc in cnfsstat innd innwatch; do
newinitd "${FILESDIR}"/${svc}.initd ${svc}
newconfd "${FILESDIR}"/${svc}.confd ${svc}
done
systemd_dounit "${FILESDIR}"/innd.service
}
pkg_postinst() {
if use perl; then
optfeature "controlchan program" dev-perl/MIME-tools
optfeature "innreport script" dev-perl/GD
optfeature "send-uucp backend" net-misc/taylor-uucp
fi
}
|