Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libast/
Date: Mon, 01 Oct 2018 20:55:36
Message-Id: 1538427286.0702d88d56fcbb6ca360ac798865890cfd73a742.asturm@gentoo
1 commit: 0702d88d56fcbb6ca360ac798865890cfd73a742
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 1 20:37:09 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 1 20:54:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0702d88d
7
8 x11-libs/libast: Drop outdated 9999 ebuild
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 x11-libs/libast/libast-9999.ebuild | 53 --------------------------------------
14 1 file changed, 53 deletions(-)
15
16 diff --git a/x11-libs/libast/libast-9999.ebuild b/x11-libs/libast/libast-9999.ebuild
17 deleted file mode 100644
18 index 94feeb7a119..00000000000
19 --- a/x11-libs/libast/libast-9999.ebuild
20 +++ /dev/null
21 @@ -1,53 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=0
26 -
27 -#ECVS_SERVER="cvs.sourceforge.net:/cvsroot/enlightenment"
28 -ECVS_SERVER="anoncvs.enlightenment.org:/var/cvs/e"
29 -ECVS_MODULE="eterm/libast"
30 -inherit eutils cvs autotools
31 -
32 -DESCRIPTION="LIBrary of Assorted Spiffy Things"
33 -HOMEPAGE="http://www.eterm.org/download/"
34 -SRC_URI=""
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS=""
39 -IUSE="imlib cpu_flags_x86_mmx pcre"
40 -
41 -RDEPEND="!sci-astronomy/ast
42 - x11-base/xorg-proto
43 - x11-libs/libXt
44 - x11-libs/libICE
45 - x11-libs/libSM
46 - x11-libs/libX11
47 - =media-libs/freetype-2*
48 - imlib? ( media-libs/imlib2 )
49 - pcre? ( dev-libs/libpcre )"
50 -DEPEND="${RDEPEND}"
51 -
52 -S=${WORKDIR}/${ECVS_MODULE}
53 -
54 -src_unpack() {
55 - cvs_src_unpack
56 - cd "${S}"
57 - eautoreconf
58 -}
59 -
60 -src_compile() {
61 - local myregexp="posix"
62 - use pcre && myregexp="pcre"
63 - econf \
64 - $(use_with imlib) \
65 - $(use_enable cpu_flags_x86_mmx mmx) \
66 - --with-regexp=${myregexp} \
67 - || die
68 - emake || die
69 -}
70 -
71 -src_install() {
72 - make DESTDIR="${D}" install || die
73 - dodoc README DESIGN ChangeLog
74 -}