Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/libnss-mysql/
Date: Thu, 26 Mar 2020 21:34:02
Message-Id: 1585258425.d0d35457a7ec44cfd8c7fbf84b59c983f6f539c7.whissi@gentoo
1 commit: d0d35457a7ec44cfd8c7fbf84b59c983f6f539c7
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 26 21:33:35 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 26 21:33:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d35457
7
8 sys-auth/libnss-mysql: drop old
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 .../libnss-mysql-1.5_p20060915-r4.ebuild | 52 ----------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r4.ebuild b/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r4.ebuild
17 deleted file mode 100644
18 index 4857774aea7..00000000000
19 --- a/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r4.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools
28 -
29 -KEYWORDS="amd64 ppc ~sparc x86"
30 -
31 -DESCRIPTION="NSS MySQL Library"
32 -HOMEPAGE="http://libnss-mysql.sourceforge.net/"
33 -SRC_URI="http://libnss-mysql.sourceforge.net/snapshot/${PN}-${PV/1.5_p/}.tgz"
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -IUSE="debug"
37 -
38 -DEPEND="dev-db/mysql-connector-c:="
39 -RDEPEND="${DEPEND}"
40 -S="${WORKDIR}/${PN}"
41 -
42 -DOCS=( AUTHORS DEBUGGING FAQ INSTALL NEWS README THANKS
43 - TODO UPGRADING ChangeLog
44 -)
45 -PATCHES=( "${FILESDIR}"/${P}-no-automagic-debug.diff )
46 -
47 -src_prepare() {
48 - default
49 - eautoconf
50 -}
51 -
52 -src_configure() {
53 - # Usually, authentication libraries don't belong into usr.
54 - # But here, it's required that the lib is in the same dir
55 - # as libmysql, because else failures may occur on boot if
56 - # udev tries to access a user / group that doesn't exist
57 - # on the system before /usr is mounted.
58 - econf --libdir="/usr/$(get_libdir)" \
59 - $(use_enable debug)
60 -}
61 -
62 -src_install() {
63 - default
64 -
65 - find "${D}" -name '*.la' -delete
66 -
67 - newdoc sample/README README.sample
68 -
69 - for subdir in sample/{linux,freebsd,complex,minimal} ; do
70 - docinto "${subdir}"
71 - dodoc "${subdir}/"{*.sql,*.cfg}
72 - done
73 -}