Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/gaul-devel/
Date: Sun, 03 Jun 2018 02:59:17
Message-Id: 1527994718.39cdef2f9d86e51d300548a1cd2c17ea4cfde6b7.bman@gentoo
1 commit: 39cdef2f9d86e51d300548a1cd2c17ea4cfde6b7
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 00:07:58 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 02:58:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39cdef2f
7
8 sci-libs/gaul-devel: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild | 45 -------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild b/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild
16 deleted file mode 100644
17 index b65497b1ca9..00000000000
18 --- a/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -inherit eutils
27 -
28 -DESCRIPTION="Genetic Algorithm Utility Library"
29 -HOMEPAGE="http://GAUL.sourceforge.net/"
30 -SRC_URI="mirror://sourceforge/gaul/${P}-0.tar.bz2"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~x86 ~amd64"
35 -IUSE="debug slang"
36 -
37 -DEPEND="
38 - sys-apps/sed
39 - slang? ( sys-libs/slang )"
40 -RDEPEND="${DEPEND}"
41 -
42 -S=${WORKDIR}/${P}-0
43 -
44 -src_unpack() {
45 - unpack ${A}
46 - cd "${S}"
47 - epatch "${FILESDIR}"/${P}-slang2-error.patch
48 -}
49 -
50 -src_compile() {
51 - local myconf
52 - use slang || myconf="--enable-slang=no"
53 - if use debug ; then
54 - myconf="${myconf} --enable-debug=yes --enable-memory-debug=yes"
55 - else
56 - myconf="${myconf} --enable-g=no"
57 - fi
58 - econf ${myconf}
59 - emake || die "emake failed"
60 -}
61 -
62 -src_install() {
63 - emake -j1 DESTDIR="${D}" install || die "Install failed"
64 - dodoc README || die
65 -}