Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libast/
Date: Sat, 25 Feb 2017 15:00:21
Message-Id: 1488034791.342dd44472d0c0f9f99a3af077e0fe44771cca36.monsieurp@gentoo
1 commit: 342dd44472d0c0f9f99a3af077e0fe44771cca36
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 25 14:59:51 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 25 14:59:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=342dd444
7
8 x11-libs/libast: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 x11-libs/libast/libast-0.7-r1.ebuild | 44 ++++++++++++++++++++++++++++++++++++
13 1 file changed, 44 insertions(+)
14
15 diff --git a/x11-libs/libast/libast-0.7-r1.ebuild b/x11-libs/libast/libast-0.7-r1.ebuild
16 new file mode 100644
17 index 0000000000..ca8be40d6d
18 --- /dev/null
19 +++ b/x11-libs/libast/libast-0.7-r1.ebuild
20 @@ -0,0 +1,44 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="LIBrary of Assorted Spiffy Things"
28 +HOMEPAGE="http://www.eterm.org/download/"
29 +SRC_URI="http://www.eterm.org/download/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
34 +IUSE="imlib cpu_flags_x86_mmx pcre"
35 +
36 +RDEPEND="
37 + !sci-astronomy/ast
38 + x11-libs/libXt
39 + x11-proto/xproto
40 + x11-libs/libICE
41 + x11-libs/libSM
42 + x11-libs/libX11
43 + media-libs/freetype
44 + imlib? ( media-libs/imlib2 )
45 + pcre? ( dev-libs/libpcre )"
46 +
47 +DEPEND="${RDEPEND}"
48 +
49 +DOCS=( README DESIGN ChangeLog )
50 +
51 +src_prepare() {
52 + default
53 + local myregexp="posix"
54 + use pcre && myregexp="pcre"
55 + econf \
56 + $(use_with imlib) \
57 + $(use_enable cpu_flags_x86_mmx mmx) \
58 + --with-regexp="${myregexp}"
59 +}
60 +
61 +src_install() {
62 + default
63 + emake DESTDIR="${D}" install
64 +}