From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF3C9138330 for ; Fri, 30 Sep 2016 05:09:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65CB0E0804; Fri, 30 Sep 2016 05:09:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 495E9E0804 for ; Fri, 30 Sep 2016 05:09:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19DE534067D for ; Fri, 30 Sep 2016 05:09:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78EA3241F for ; Fri, 30 Sep 2016 05:09:12 +0000 (UTC) From: "Eray Aslan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eray Aslan" Message-ID: <1475212137.9e2cdf793d97e3d40611205e12b9adde80a1d1c4.eras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/cdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/cdb/cdb-0.75-r3.ebuild X-VCS-Directories: dev-db/cdb/ X-VCS-Committer: eras X-VCS-Committer-Name: Eray Aslan X-VCS-Revision: 9e2cdf793d97e3d40611205e12b9adde80a1d1c4 X-VCS-Branch: master Date: Fri, 30 Sep 2016 05:09:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 760c563a-3b0c-4656-a811-e849f2e3c62a X-Archives-Hash: 191baa38e9ec3164cafff639e2681f04 commit: 9e2cdf793d97e3d40611205e12b9adde80a1d1c4 Author: Eray Aslan gentoo org> AuthorDate: Fri Sep 30 05:08:57 2016 +0000 Commit: Eray Aslan gentoo org> CommitDate: Fri Sep 30 05:08:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2cdf79 dev-db/cdb: remove old Package-Manager: portage-2.3.1 dev-db/cdb/cdb-0.75-r3.ebuild | 53 ------------------------------------------- 1 file changed, 53 deletions(-) diff --git a/dev-db/cdb/cdb-0.75-r3.ebuild b/dev-db/cdb/cdb-0.75-r3.ebuild deleted file mode 100644 index aa073cc..00000000 --- a/dev-db/cdb/cdb-0.75-r3.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 -inherit eutils multilib toolchain-funcs - -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos" - -DESCRIPTION="Fast, reliable, simple package for creating and reading constant databases" -HOMEPAGE="http://cr.yp.to/cdb.html" -SRC_URI="http://cr.yp.to/cdb/${P}.tar.gz" -LICENSE="public-domain" -SLOT="0" -IUSE="" - -DEPEND=">=sys-apps/sed-4 - !dev-db/tinycdb" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-errno.diff - epatch "${FILESDIR}"/${P}-stdint.diff - - sed -i -e 's/head -1/head -n 1/g' Makefile \ - || die "sed Makefile failed" -} - -src_configure() { - echo "$(tc-getCC) ${CFLAGS}" > conf-cc - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld - echo "${EPREFIX}/usr" > conf-home -} - -src_install() { - dobin cdbdump cdbget cdbmake cdbmake-12 cdbmake-sv cdbstats cdbtest \ - || die "dobin failed" - - # ok so ... first off, some automakes fail at finding - # cdb.a, so install that now - dolib *.a || die "dolib failed" - - # then do this pretty little symlinking to solve the somewhat - # cosmetic library issue at hand - dosym cdb.a /usr/$(get_libdir)/libcdb.a || die "dosym failed" - - # uint32.h needs installation too, otherwise compiles depending - # on it will fail - insinto /usr/include/cdb - doins cdb*.h buffer.h alloc.h uint32.h || die "doins failed" - - dodoc CHANGES FILES README SYSDEPS TODO VERSION -}