Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/libnss-mysql: libnss-mysql-1.5_p20060915-r3.ebuild ChangeLog libnss-mysql-1.5_p20060915-r1.ebuild
Date: Thu, 31 Jul 2014 02:58:03
Message-Id: 20140731025756.C7A1C2004E@flycatcher.gentoo.org
1 grknight 14/07/31 02:57:55
2
3 Modified: ChangeLog
4 Added: libnss-mysql-1.5_p20060915-r3.ebuild
5 Removed: libnss-mysql-1.5_p20060915-r1.ebuild
6 Log:
7 Revbump for EAPI5. Drop oldest revision
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
10
11 Revision Changes Path
12 1.24 sys-auth/libnss-mysql/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libnss-mysql/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libnss-mysql/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libnss-mysql/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-auth/libnss-mysql/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 9 Jan 2012 19:45:13 -0000 1.23
25 +++ ChangeLog 31 Jul 2014 02:57:55 -0000 1.24
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-auth/libnss-mysql
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/libnss-mysql/ChangeLog,v 1.23 2012/01/09 19:45:13 ranger Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libnss-mysql/ChangeLog,v 1.24 2014/07/31 02:57:55 grknight Exp $
32 +
33 +*libnss-mysql-1.5_p20060915-r3 (31 Jul 2014)
34 +
35 + 31 Jul 2014; Brian Evans <grknight@g.o>
36 + +libnss-mysql-1.5_p20060915-r3.ebuild, -libnss-mysql-1.5_p20060915-r1.ebuild:
37 + Revbump for EAPI5. Drop oldest revision
38
39 09 Jan 2012; Brent Baude <ranger@g.o>
40 libnss-mysql-1.5_p20060915-r2.ebuild:
41 @@ -164,4 +170,3 @@
42
43 03 Jun 2003; Max Kalika <max@g.o> LSIT_libnss-mysql-0.8.ebuild:
44 Initial version.
45 -
46
47
48
49 1.1 sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r3.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r3.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r3.ebuild?rev=1.1&content-type=text/plain
53
54 Index: libnss-mysql-1.5_p20060915-r3.ebuild
55 ===================================================================
56 # Copyright 1999-2014 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r3.ebuild,v 1.1 2014/07/31 02:57:55 grknight Exp $
59
60 EAPI=5
61
62 inherit eutils multilib autotools
63
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
65
66 DESCRIPTION="NSS MySQL Library."
67 HOMEPAGE="http://libnss-mysql.sourceforge.net/"
68 SRC_URI="http://libnss-mysql.sourceforge.net/snapshot/${PN}-${PV/1.5_p/}.tgz"
69 LICENSE="GPL-2"
70 SLOT="0"
71 IUSE="debug"
72
73 DEPEND="virtual/mysql"
74 RDEPEND="${DEPEND}"
75 S="${WORKDIR}/${PN}"
76
77 DOCS=( AUTHORS DEBUGGING FAQ INSTALL NEWS README THANKS
78 TODO UPGRADING ChangeLog
79 )
80
81 src_prepare() {
82 epatch "${FILESDIR}"/${P}-no-automagic-debug.diff
83 eautoconf
84 }
85
86 src_configure() {
87 # Usually, authentication libraries don't belong into usr.
88 # But here, it's required that the lib is in the same dir
89 # as libmysql, because else failures may occur on boot if
90 # udev tries to access a user / group that doesn't exist
91 # on the system before /usr is mounted.
92 econf --libdir="/usr/$(get_libdir)" \
93 $(use_enable debug)
94 }
95
96 src_install() {
97 default
98
99 find "${D}" -name '*.la' -delete
100
101 newdoc sample/README README.sample
102
103 for subdir in sample/{linux,freebsd,complex,minimal} ; do
104 docinto "${subdir}"
105 dodoc "${subdir}/"{*.sql,*.cfg}
106 done
107 }