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-libs/dvutil: ChangeLog dvutil-1.0.10-r1.ebuild
Date: Sat, 25 Feb 2012 12:42:18
Message-Id: 20120225124209.BE4752004C@flycatcher.gentoo.org
1 ssuominen 12/02/25 12:42:09
2
3 Modified: ChangeLog
4 Added: dvutil-1.0.10-r1.ebuild
5 Log:
6 USE="static-libs" and remove libtool archive when it's disabled. Remove --all-static and -all-static LDFLAGS from dvutil/Makefile.am for bugs #273334 and #362669. Thanks to Diego Elio Pettenò for reporting.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.41 dev-libs/dvutil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dvutil/ChangeLog?rev=1.41&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dvutil/ChangeLog?rev=1.41&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dvutil/ChangeLog?r1=1.40&r2=1.41
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/dvutil/ChangeLog,v
20 retrieving revision 1.40
21 retrieving revision 1.41
22 diff -u -r1.40 -r1.41
23 --- ChangeLog 16 Apr 2010 15:01:02 -0000 1.40
24 +++ ChangeLog 25 Feb 2012 12:42:09 -0000 1.41
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/dvutil
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/ChangeLog,v 1.40 2010/04/16 15:01:02 ranger Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/ChangeLog,v 1.41 2012/02/25 12:42:09 ssuominen Exp $
31 +
32 +*dvutil-1.0.10-r1 (25 Feb 2012)
33 +
34 + 25 Feb 2012; Samuli Suominen <ssuominen@g.o> +dvutil-1.0.10-r1.ebuild:
35 + USE="static-libs" and remove libtool archive when it's disabled. Remove
36 + --all-static and -all-static LDFLAGS from dvutil/Makefile.am for bugs #273334
37 + and #362669. Thanks to Diego Elio Pettenò for reporting.
38
39 16 Apr 2010; Brent Baude <ranger@g.o> dvutil-1.0.10.ebuild:
40 stable ppc, bug 309169
41
42
43
44 1.1 dev-libs/dvutil/dvutil-1.0.10-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dvutil/dvutil-1.0.10-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dvutil/dvutil-1.0.10-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: dvutil-1.0.10-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/dvutil-1.0.10-r1.ebuild,v 1.1 2012/02/25 12:42:09 ssuominen Exp $
54
55 EAPI=4
56 inherit autotools eutils
57
58 DESCRIPTION="C++ classes for files, dates, property lists, reference counted pointers, number conversion etc."
59 HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvutil/html/"
60 SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz
61 mirror://gentoo/${P}-asneeded.patch.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
66 IUSE="doc ssl static-libs"
67
68 RDEPEND="ssl? ( dev-libs/openssl:0 )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 DOCS="AUTHORS ChangeLog NEWS README"
73
74 src_prepare() {
75 epatch "${WORKDIR}"/${P}-asneeded.patch
76 sed -i -e '/LDFLAGS.*all-static/d' dvutil/Makefile.am || die #362669
77 eautoreconf
78 }
79
80 src_configure() {
81 econf \
82 $(use_enable static-libs static) \
83 $(use_with ssl)
84 }
85
86 src_install() {
87 default
88 use static-libs || rm -f "${ED}"usr/lib*/lib*.la
89 use doc && dohtml -r doc/html/*
90 }