Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: games-misc/varlpenis/
Date: Wed, 02 Nov 2022 13:58:18
Message-Id: 1667348715.af90724d627e3c43da5883f8aff4eb632ab3cc5b.lanodan@gentoo
1 commit: af90724d627e3c43da5883f8aff4eb632ab3cc5b
2 Author: Seth Price <sprice623 <AT> aol <DOT> com>
3 AuthorDate: Wed Nov 2 00:01:35 2022 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Wed Nov 2 00:25:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=af90724d
7
8 games-misc/varlpenis: new package, add 3.0.2
9
10 Signed-off-by: Seth Price <sprice623 <AT> aol.com>
11
12 games-misc/varlpenis/varlpenis-3.0.2.ebuild | 36 +++++++++++++++++++++++++++++
13 1 file changed, 36 insertions(+)
14
15 diff --git a/games-misc/varlpenis/varlpenis-3.0.2.ebuild b/games-misc/varlpenis/varlpenis-3.0.2.ebuild
16 new file mode 100644
17 index 000000000..05ba2f782
18 --- /dev/null
19 +++ b/games-misc/varlpenis/varlpenis-3.0.2.ebuild
20 @@ -0,0 +1,36 @@
21 +# Copyright 2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +inherit git-r3
27 +
28 +DESCRIPTION="Generates ASCII-art penis of arbitrary length"
29 +HOMEPAGE="https://gitlab.com/ssterling/varlpenis"
30 +EGIT_REPO_URI="https://gitlab.com/ssterling/varlpenis.git https://github.com/ssterling/varlpenis.git"
31 +EGIT_COMMIT="v${PV}"
32 +
33 +LICENSE="MIT"
34 +SLOT="0"
35 +
36 +BDEPEND="sys-devel/bmake"
37 +
38 +src_configure() {
39 + local myconf
40 + econf --ignore-invalid-arguments \
41 + --use-color-ansi \
42 + --use-posixtime \
43 + --use-fullwidth \
44 + ${myconf}
45 +}
46 +
47 +src_compile() {
48 + bmake varlpenis
49 +}
50 +
51 +src_install() {
52 + bmake DESTDIR="${D}" install
53 + dodoc BUGS.md
54 + dodoc CHANGELOG.md
55 + dodoc README.md
56 +}