Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/libbinio: ChangeLog libbinio-1.4.ebuild
Date: Fri, 23 Dec 2011 00:48:27
Message-Id: 20111223004816.679A02004B@flycatcher.gentoo.org
1 ssuominen 11/12/23 00:48:16
2
3 Modified: ChangeLog libbinio-1.4.ebuild
4 Log:
5 USE="static-libs" and remove unnecessary libbinio.la libtool archive.
6
7 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.30 dev-cpp/libbinio/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libbinio/ChangeLog?rev=1.30&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libbinio/ChangeLog?rev=1.30&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libbinio/ChangeLog?r1=1.29&r2=1.30
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/ChangeLog,v
19 retrieving revision 1.29
20 retrieving revision 1.30
21 diff -u -r1.29 -r1.30
22 --- ChangeLog 26 Mar 2011 13:03:29 -0000 1.29
23 +++ ChangeLog 23 Dec 2011 00:48:16 -0000 1.30
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-cpp/libbinio
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/ChangeLog,v 1.29 2011/03/26 13:03:29 spock Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/ChangeLog,v 1.30 2011/12/23 00:48:16 ssuominen Exp $
29 +
30 + 23 Dec 2011; Samuli Suominen <ssuominen@g.o> libbinio-1.4.ebuild:
31 + USE="static-libs" and remove unnecessary libbinio.la libtool archive.
32
33 26 Mar 2011; MichaƂ Januszewski <spock@g.o> libbinio-1.4.ebuild,
34 +files/libbinio-1.4-texi.patch:
35
36
37
38 1.20 dev-cpp/libbinio/libbinio-1.4.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libbinio/libbinio-1.4.ebuild?rev=1.20&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libbinio/libbinio-1.4.ebuild?rev=1.20&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libbinio/libbinio-1.4.ebuild?r1=1.19&r2=1.20
43
44 Index: libbinio-1.4.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/libbinio-1.4.ebuild,v
47 retrieving revision 1.19
48 retrieving revision 1.20
49 diff -u -r1.19 -r1.20
50 --- libbinio-1.4.ebuild 26 Mar 2011 13:03:29 -0000 1.19
51 +++ libbinio-1.4.ebuild 23 Dec 2011 00:48:16 -0000 1.20
52 @@ -1,28 +1,32 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/libbinio-1.4.ebuild,v 1.19 2011/03/26 13:03:29 spock Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/libbinio-1.4.ebuild,v 1.20 2011/12/23 00:48:16 ssuominen Exp $
57
58 +EAPI=4
59 inherit eutils
60
61 -KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd"
62 -
63 DESCRIPTION="Binary I/O stream class library"
64 HOMEPAGE="http://libbinio.sourceforge.net/"
65 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
66 +
67 LICENSE="LGPL-2.1"
68 SLOT="0"
69 -IUSE=""
70 +KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd"
71 +IUSE="static-libs"
72 +
73 +DOCS=( AUTHORS NEWS README )
74
75 -DEPEND=""
76 -RDEPEND=""
77 +src_prepare() {
78 + epatch \
79 + "${FILESDIR}"/${P}-cstdio.patch \
80 + "${FILESDIR}"/${P}-texi.patch
81 +}
82
83 -src_unpack() {
84 - unpack ${A}
85 - cd "${S}"
86 - epatch "${FILESDIR}/${P}-cstdio.patch"
87 - epatch "${FILESDIR}/${P}-texi.patch"
88 +src_configure() {
89 + econf $(use_enable static-libs static)
90 }
91
92 src_install() {
93 - emake DESTDIR="${D}" install || die "emake install failed"
94 + default
95 + rm -f "${ED}"usr/lib*/${PN}.la
96 }