Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/sendpage/
Date: Sat, 17 Apr 2021 19:20:33
Message-Id: 1618687166.08e048738985e51444a38ebc5222e232c042c00c.conikost@gentoo
1 commit: 08e048738985e51444a38ebc5222e232c042c00c
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 18:06:59 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 19:19:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08e04873
7
8 net-dialup/sendpage: migrate to glep 81
9
10 Closes: https://bugs.gentoo.org/781371
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 net-dialup/sendpage/sendpage-1.1.0-r4.ebuild | 42 ++++++++++++++++++++++++++++
15 1 file changed, 42 insertions(+)
16
17 diff --git a/net-dialup/sendpage/sendpage-1.1.0-r4.ebuild b/net-dialup/sendpage/sendpage-1.1.0-r4.ebuild
18 new file mode 100644
19 index 00000000000..d64a0d18100
20 --- /dev/null
21 +++ b/net-dialup/sendpage/sendpage-1.1.0-r4.ebuild
22 @@ -0,0 +1,42 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit perl-module
29 +
30 +MY_P=${PN}-1.001
31 +
32 +DESCRIPTION="Dialup alphapaging software"
33 +HOMEPAGE="https://www.sendpage.org/"
34 +SRC_URI="https://www.sendpage.org/download/${MY_P}.tar.gz"
35 +S="${WORKDIR}/${MY_P}"
36 +
37 +LICENSE="GPL-2"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~ppc ~x86"
40 +
41 +DEPEND="
42 + acct-group/sms
43 + acct-user/sendpage
44 + dev-perl/DBI
45 + dev-perl/Device-SerialPort
46 + dev-perl/MailTools
47 + dev-perl/Net-SNPP
48 + virtual/perl-libnet
49 +"
50 +RDEPEND="${DEPEND}"
51 +
52 +PATCHES=( "${FILESDIR}"/${PV}-makefile.patch )
53 +
54 +src_install() {
55 + perl-module_src_install
56 + insinto /etc
57 + doins sendpage.cf
58 + newinitd "${FILESDIR}"/sendpage.initd sendpage
59 + diropts -o sendpage -g sms -m0770
60 + keepdir /var/spool/sendpage
61 + docompress -x /usr/share/doc/${PF}/text/
62 + docinto text/
63 + dodoc docs/*
64 +}