Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/fddl/
Date: Mon, 03 Apr 2017 17:57:20
Message-Id: 1491242219.cef022f1bc848c8687249352ba96dcad9c264407.johu@gentoo
1 commit: cef022f1bc848c8687249352ba96dcad9c264407
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 3 17:56:59 2017 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 3 17:56:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef022f1
7
8 dev-libs/fddl: Remove 20111124 (r0)
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 dev-libs/fddl/fddl-20111124.ebuild | 39 --------------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-libs/fddl/fddl-20111124.ebuild b/dev-libs/fddl/fddl-20111124.ebuild
16 deleted file mode 100644
17 index b72983f5435..00000000000
18 --- a/dev-libs/fddl/fddl-20111124.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=4
25 -
26 -CMAKE_IN_SOURCE_BUILD=1
27 -
28 -inherit cmake-utils multilib vcs-snapshot
29 -
30 -DESCRIPTION="Free Decision Diagram Library"
31 -HOMEPAGE="http://itval.sourceforge.net/ https://github.com/atomopawn/FDDL"
32 -SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="amd64 x86"
37 -IUSE=""
38 -
39 -DOCS=( AUTHORS ChangeLog INSTALL RELEASE )
40 -
41 -src_prepare() {
42 - # Remove references to files that were not shipped,
43 - # prefer dynamic linking
44 - sed -i \
45 - -e 's|unaryoperation.cpp||g' \
46 - -e 's|unaryoperation.h||g' \
47 - -e 's|binaryoperation.cpp||g' \
48 - -e 's|binaryoperation.h||g' \
49 - -e '/add_library/s/FDDL /FDDL SHARED /' \
50 - -e '/add_library/s/FDDL /FDDL SHARED /' \
51 - -e "/^install/s:DESTINATION lib:DESTINATION $(get_libdir):" \
52 - src/CMakeLists.txt || die
53 - # Do not build tests that depend on above files
54 - sed -i \
55 - {,tests/}CMakeLists.txt \
56 - -e '/test_unaryop/d' \
57 - -e '/test_binaryop/d' \
58 - || die
59 -}