Gentoo Archives: gentoo-commits

From: Eray Aslan <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/cdb/
Date: Fri, 30 Sep 2016 05:09:19
Message-Id: 1475212137.9e2cdf793d97e3d40611205e12b9adde80a1d1c4.eras@gentoo
1 commit: 9e2cdf793d97e3d40611205e12b9adde80a1d1c4
2 Author: Eray Aslan <eras <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 05:08:57 2016 +0000
4 Commit: Eray Aslan <eras <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 05:08:57 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2cdf79
7
8 dev-db/cdb: remove old
9
10 Package-Manager: portage-2.3.1
11
12 dev-db/cdb/cdb-0.75-r3.ebuild | 53 -------------------------------------------
13 1 file changed, 53 deletions(-)
14
15 diff --git a/dev-db/cdb/cdb-0.75-r3.ebuild b/dev-db/cdb/cdb-0.75-r3.ebuild
16 deleted file mode 100644
17 index aa073cc..00000000
18 --- a/dev-db/cdb/cdb-0.75-r3.ebuild
19 +++ /dev/null
20 @@ -1,53 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=3
26 -inherit eutils multilib toolchain-funcs
27 -
28 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
29 -
30 -DESCRIPTION="Fast, reliable, simple package for creating and reading constant databases"
31 -HOMEPAGE="http://cr.yp.to/cdb.html"
32 -SRC_URI="http://cr.yp.to/cdb/${P}.tar.gz"
33 -LICENSE="public-domain"
34 -SLOT="0"
35 -IUSE=""
36 -
37 -DEPEND=">=sys-apps/sed-4
38 - !dev-db/tinycdb"
39 -RDEPEND="${DEPEND}"
40 -
41 -src_prepare() {
42 - epatch "${FILESDIR}"/${P}-errno.diff
43 - epatch "${FILESDIR}"/${P}-stdint.diff
44 -
45 - sed -i -e 's/head -1/head -n 1/g' Makefile \
46 - || die "sed Makefile failed"
47 -}
48 -
49 -src_configure() {
50 - echo "$(tc-getCC) ${CFLAGS}" > conf-cc
51 - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
52 - echo "${EPREFIX}/usr" > conf-home
53 -}
54 -
55 -src_install() {
56 - dobin cdbdump cdbget cdbmake cdbmake-12 cdbmake-sv cdbstats cdbtest \
57 - || die "dobin failed"
58 -
59 - # ok so ... first off, some automakes fail at finding
60 - # cdb.a, so install that now
61 - dolib *.a || die "dolib failed"
62 -
63 - # then do this pretty little symlinking to solve the somewhat
64 - # cosmetic library issue at hand
65 - dosym cdb.a /usr/$(get_libdir)/libcdb.a || die "dosym failed"
66 -
67 - # uint32.h needs installation too, otherwise compiles depending
68 - # on it will fail
69 - insinto /usr/include/cdb
70 - doins cdb*.h buffer.h alloc.h uint32.h || die "doins failed"
71 -
72 - dodoc CHANGES FILES README SYSDEPS TODO VERSION
73 -}