Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/astime/
Date: Sun, 02 Apr 2017 02:34:06
Message-Id: 1491100429.382bd326e5d6555698ee2ad1d124745216623932.mjo@gentoo
1 commit: 382bd326e5d6555698ee2ad1d124745216623932
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 2 02:33:49 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 2 02:33:49 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=382bd326
7
8 x11-plugins/astime: remove unused version 2.8-r1.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 x11-plugins/astime/astime-2.8-r1.ebuild | 38 ---------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/x11-plugins/astime/astime-2.8-r1.ebuild b/x11-plugins/astime/astime-2.8-r1.ebuild
16 deleted file mode 100644
17 index fdb91211e27..00000000000
18 --- a/x11-plugins/astime/astime-2.8-r1.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -inherit eutils toolchain-funcs
25 -
26 -DESCRIPTION="Analogue clock utility for X Windows"
27 -HOMEPAGE="http://www.tigr.net/"
28 -SRC_URI="http://www.tigr.net/afterstep/download/astime/${P}.tar.gz"
29 -LICENSE="GPL-2"
30 -SLOT="0"
31 -KEYWORDS="amd64 ppc ppc64 x86"
32 -IUSE="jpeg"
33 -
34 -RDEPEND="x11-libs/libXpm
35 - x11-libs/libSM
36 - jpeg? ( virtual/jpeg )"
37 -
38 -DEPEND="${RDEPEND}
39 - x11-proto/xproto"
40 -
41 -src_unpack() {
42 - unpack ${A}
43 - cd "${S}"
44 - epatch "${FILESDIR}"/${P}-gentoo.patch
45 -}
46 -
47 -src_compile() {
48 - econf $(use_enable jpeg) || die "econf failed"
49 - emake CC="$(tc-getCC)" || die "emake failed"
50 -}
51 -
52 -src_install () {
53 - dodir /usr/bin
54 - dodir /usr/share/man/man1
55 -
56 - emake DESTDIR="${D}" install || die
57 - dodoc CHANGES README
58 -}