Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pimpd/
Date: Fri, 28 Aug 2020 22:52:06
Message-Id: 1598655109.c426de5292604c5bb3d1e8158d2a9a986caae2f0.dilfridge@gentoo
1 commit: c426de5292604c5bb3d1e8158d2a9a986caae2f0
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 28 22:45:58 2020 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 28 22:51:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c426de52
7
8 net-misc/pimpd: EAPI bump
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 net-misc/pimpd/pimpd-0.8-r1.ebuild | 24 ++++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/net-misc/pimpd/pimpd-0.8-r1.ebuild b/net-misc/pimpd/pimpd-0.8-r1.ebuild
17 new file mode 100644
18 index 00000000000..8fca8381c8f
19 --- /dev/null
20 +++ b/net-misc/pimpd/pimpd-0.8-r1.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="RFC1413-compliant identd server supporting masqueraded connections"
30 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
31 +SRC_URI="http://cats.meow.at/~peter/pimpd_${PV}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
36 +IUSE=""
37 +
38 +src_compile() {
39 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
40 +}
41 +
42 +src_install() {
43 + dosbin pimpd
44 + dodoc README
45 +}