Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/xcowsay/
Date: Thu, 21 May 2020 22:28:31
Message-Id: 1590099906.c356be24f100dece68a1fc0a963fb45d12ef4cac.conikost@gentoo
1 commit: c356be24f100dece68a1fc0a963fb45d12ef4cac
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 22:25:06 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 22:25:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c356be24
7
8 games-misc/xcowsay: drop old version
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 games-misc/xcowsay/Manifest | 1 -
14 games-misc/xcowsay/xcowsay-1.4.ebuild | 55 -----------------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/games-misc/xcowsay/Manifest b/games-misc/xcowsay/Manifest
18 index 2b7155b4d9f..97327886f75 100644
19 --- a/games-misc/xcowsay/Manifest
20 +++ b/games-misc/xcowsay/Manifest
21 @@ -1,2 +1 @@
22 -DIST xcowsay-1.4.tar.gz 100014 BLAKE2B 59a82449bdefcfdb9f1fcf159e21374e36fb1e5af7db5bc61eb10166e5746bb0ce13f4321c904354f8e5b3bc8ae4625b0b12b339dd8013016e644c908f4b6ef0 SHA512 53370ba287ed2bf7d41cbf1bb8631e8da6933575956b38ee02f5aedae5bb49aede7e5e641fa7f93241f078a1a044920b387288ffbe2a10dd04fbe02932c67ca9
23 DIST xcowsay-1.5.tar.gz 100878 BLAKE2B 0763648cb808c44cf519c1e77506e8c35f8a71584f81eee406736e52322b7317937f558b4a6931ec293ea334ca45c8085a51dfc49803754bb734d96d7df04dbe SHA512 13b297a675ec02af6f5617db19abe05979be7137ff37437a64cb079749a69551d453f1a584cf3ca2be62ed0dc6363ebac4986b1f93807bba66b21d0e2ba8cf2c
24
25 diff --git a/games-misc/xcowsay/xcowsay-1.4.ebuild b/games-misc/xcowsay/xcowsay-1.4.ebuild
26 deleted file mode 100644
27 index 373471250a7..00000000000
28 --- a/games-misc/xcowsay/xcowsay-1.4.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Displays a cute cow and message on your desktop"
39 -HOMEPAGE="
40 - https://github.com/nickg/xcowsay
41 - https://www.doof.me.uk/xcowsay/
42 -"
43 -SRC_URI="https://github.com/nickg/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="GPL-3+"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="dbus fortune nls"
49 -
50 -RDEPEND="
51 - dev-libs/glib:2
52 - virtual/awk
53 - x11-libs/gdk-pixbuf:2
54 - x11-libs/gtk+:2
55 - x11-libs/pango
56 - dbus? ( dev-libs/dbus-glib )
57 - fortune? ( games-misc/fortune-mod )
58 -"
59 -
60 -DEPEND="${RDEPEND}"
61 -
62 -BDEPEND="
63 - sys-devel/gettext
64 - virtual/pkgconfig
65 -"
66 -
67 -src_prepare() {
68 - default
69 -
70 - if ! use fortune; then
71 - sed -e 's/xcowfortune//g' -i src/Makefile.am || die
72 - fi
73 -
74 - eautoreconf
75 -}
76 -
77 -src_configure() {
78 - local myeconfargs=(
79 - --disable-rpath
80 - $(use_enable dbus)
81 - $(use_enable nls)
82 - )
83 -
84 - econf ${myeconfargs[@]}
85 -}