blob: 6d7bfd810fcfe3fea5287872c5a296096090abbc (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-module
HOMEPAGE="https://public-inbox.org"
SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${P}.tar.gz"
DESCRIPTION="An archives-first approach to mailing lists"
LICENSE="AGPL-3+"
SLOT="0"
KEYWORDS="~amd64"
# in order of mention in INSTALL.html, going more for feature completeness
# than for minimal footprint
RDEPEND="
dev-vcs/git
dev-perl/DBD-SQLite
virtual/mta
dev-perl/URI
dev-perl/Plack
dev-perl/TimeDate
dev-perl/Inline-C
dev-perl/Email-Address-XS
dev-perl/Search-Xapian
dev-perl/Parse-RecDescent
dev-perl/Mail-IMAPClient
dev-perl/BSD-Resource
net-misc/curl
dev-perl/Linux-Inotify2
dev-perl/Net-Server
"
BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"
|