Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libvpd: libvpd-2.2.4.ebuild ChangeLog libvpd-2.2.0.ebuild
Date: Sun, 31 May 2015 09:05:11
Message-Id: 20150531090505.94826A11@oystercatcher.gentoo.org
1 jer 15/05/31 09:05:05
2
3 Modified: ChangeLog
4 Added: libvpd-2.2.4.ebuild
5 Removed: libvpd-2.2.0.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.4 sys-libs/libvpd/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libvpd/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libvpd/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libvpd/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libvpd/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 21 Jul 2013 08:28:28 -0000 1.3
25 +++ ChangeLog 31 May 2015 09:05:05 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-libs/libvpd
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libvpd/ChangeLog,v 1.3 2013/07/21 08:28:28 pacho Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libvpd/ChangeLog,v 1.4 2015/05/31 09:05:05 jer Exp $
32 +
33 +*libvpd-2.2.4 (31 May 2015)
34 +
35 + 31 May 2015; Jeroen Roovers <jer@g.o> -libvpd-2.2.0.ebuild,
36 + +libvpd-2.2.4.ebuild:
37 + Version bump.
38
39 21 Jul 2013; Pacho Ramos <pacho@g.o> metadata.xml:
40 Cleanup due #88306
41
42
43
44 1.1 sys-libs/libvpd/libvpd-2.2.4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libvpd/libvpd-2.2.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libvpd/libvpd-2.2.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libvpd-2.2.4.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libvpd/libvpd-2.2.4.ebuild,v 1.1 2015/05/31 09:05:05 jer Exp $
54
55 EAPI=5
56 inherit eutils udev
57
58 DESCRIPTION="Library implementation for listing vpds"
59 HOMEPAGE="http://sourceforge.net/projects/linux-diag/"
60 SRC_URI="http://sourceforge.net/projects/linux-diag/files/libvpd/${PV}/libvpd-${PV}.tar.gz"
61
62 LICENSE="IBM"
63 SLOT="0"
64 KEYWORDS="~ppc ~ppc64"
65 IUSE="static-libs"
66
67 DEPEND="
68 >=dev-db/sqlite-3.7.8
69 sys-libs/zlib
70 "
71 RDEPEND="${DEPEND}"
72
73 src_configure() {
74 # sysconfdir is used only to establish where the udev rules file should go
75 # unfortunately it also adds the subdirs on its own so we strip it down to
76 # dirname
77 econf \
78 $(use_enable static-libs static) \
79 --sysconfdir="$( dirname $(get_udevdir) )"
80 }
81
82 src_install(){
83 emake DESTDIR="${D}" install
84 prune_libtool_files
85
86 }