summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-07-22 11:53:45 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-07-22 11:53:45 +0000
commit0b81fff89c062bf254c4f6491edcf6c9993b3382 (patch)
tree8703a4e21bad8d39f4a8a81ca7c6d35ac9f26159 /sys-libs/nss-db
parentRemove old. (diff)
downloadgentoo-2-0b81fff89c062bf254c4f6491edcf6c9993b3382.tar.gz
gentoo-2-0b81fff89c062bf254c4f6491edcf6c9993b3382.tar.bz2
gentoo-2-0b81fff89c062bf254c4f6491edcf6c9993b3382.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sys-libs/nss-db')
-rw-r--r--sys-libs/nss-db/ChangeLog5
-rw-r--r--sys-libs/nss-db/nss-db-2.2-r1.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/sys-libs/nss-db/ChangeLog b/sys-libs/nss-db/ChangeLog
index 55e7ff21b417..d8a91a1e3028 100644
--- a/sys-libs/nss-db/ChangeLog
+++ b/sys-libs/nss-db/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/nss-db
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/nss-db/ChangeLog,v 1.26 2015/03/21 22:02:57 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/nss-db/ChangeLog,v 1.27 2015/07/22 11:53:45 mrueg Exp $
+
+ 22 Jul 2015; Manuel Rüger <mrueg@gentoo.org> -nss-db-2.2-r1.ebuild:
+ Remove old.
21 Mar 2015; Justin Lecher <jlec@gentoo.org> nss-db-2.2.3_pre1-r2.ebuild,
nss-db-2.2.3_pre1-r3.ebuild, nss-db-2.2.3_pre1-r4.ebuild:
diff --git a/sys-libs/nss-db/nss-db-2.2-r1.ebuild b/sys-libs/nss-db/nss-db-2.2-r1.ebuild
deleted file mode 100644
index 521112ee6f86..000000000000
--- a/sys-libs/nss-db/nss-db-2.2-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/nss-db/nss-db-2.2-r1.ebuild,v 1.20 2012/05/03 19:52:55 robbat2 Exp $
-
-inherit libtool eutils
-
-DESCRIPTION="Allows important system files to be stored in a fast database file rather than plain text"
-HOMEPAGE="http://www.gnu.org/"
-SRC_URI="mirror://gnu/glibc/nss_db-${PV}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="x86 -ppc"
-
-RDEPEND=">=sys-libs/db-3.2.3-r1"
-DEPEND="${RDEPEND}
- sys-devel/gettext
- !>=sys-libs/glibc-2.3"
-IUSE=""
-
-S=${WORKDIR}/nss_db-${PV}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/db3.patch
- autoconf
-}
-
-src_compile() {
- elibtoolize
- ./configure --with-db=/usr/include/db3 --prefix=/usr --libdir=/usr/lib || die
- make ${MAKEOPTS} || die
-}
-
-src_install() {
- make DESTDIR=${D} install
-
- rm -rf ${D}/usr/lib
- cd ${D}/lib
- ln -s libnss_db-${PV}.so libnss_db.so
-
- cd ${S}
- dodoc AUTHORS COPYING* ChangeLog NEWS README THANKS
-}