Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libcddb: libcddb-1.3.2.ebuild ChangeLog
Date: Fri, 02 Mar 2012 09:57:42
Message-Id: 20120302095730.D1EEF2004B@flycatcher.gentoo.org
1 ssuominen 12/03/02 09:57:30
2
3 Modified: libcddb-1.3.2.ebuild ChangeLog
4 Log:
5 USE="static-libs" and punt useless libcddb.la libtool archive in favour of libcddb.pc pkg-config file wrt #385127 by "Hans"
6
7 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 media-libs/libcddb/libcddb-1.3.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild?r1=1.10&r2=1.11
15
16 Index: libcddb-1.3.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- libcddb-1.3.2.ebuild 15 Jan 2010 09:28:07 -0000 1.10
23 +++ libcddb-1.3.2.ebuild 2 Mar 2012 09:57:30 -0000 1.11
24 @@ -1,47 +1,49 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild,v 1.10 2010/01/15 09:28:07 fauli Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild,v 1.11 2012/03/02 09:57:30 ssuominen Exp $
30
31 -EAPI=2
32 +EAPI=4
33 inherit libtool
34
35 DESCRIPTION="A library for accessing a CDDB server"
36 -HOMEPAGE="http://libcddb.sourceforge.net"
37 +HOMEPAGE="http://libcddb.sourceforge.net/"
38 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
39
40 LICENSE="LGPL-2"
41 SLOT="0"
42 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
43 -IUSE="doc"
44 +IUSE="doc static-libs"
45
46 RDEPEND="virtual/libiconv"
47 DEPEND="doc? ( app-doc/doxygen )"
48
49 RESTRICT="test"
50
51 +DOCS="AUTHORS ChangeLog NEWS README THANKS TODO"
52 +
53 src_prepare() {
54 - # needed for sane .so versionning on FreeBSD
55 - elibtoolize
56 + elibtoolize # Sanitizing .so version for FreeBSD
57 }
58
59 src_configure() {
60 - econf --without-cdio
61 + econf \
62 + $(use_enable static-libs static) \
63 + --without-cdio
64 }
65
66 src_compile() {
67 - emake || die "emake failed."
68 + default
69
70 - # Create API docs if needed and possible
71 if use doc; then
72 cd doc
73 - doxygen doxygen.conf || die "doxygen failed"
74 + doxygen doxygen.conf || die
75 fi
76 }
77
78 src_install() {
79 - emake DESTDIR="${D}" install || die "emake install failed"
80 - dodoc AUTHORS ChangeLog NEWS README THANKS TODO
81 + default
82 +
83 + rm -f "${ED}"/usr/lib*/libcddb.la
84
85 - # Create API docs if needed and possible
86 use doc && dohtml doc/html/*
87 }
88
89
90
91 1.59 media-libs/libcddb/ChangeLog
92
93 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcddb/ChangeLog?rev=1.59&view=markup
94 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcddb/ChangeLog?rev=1.59&content-type=text/plain
95 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcddb/ChangeLog?r1=1.58&r2=1.59
96
97 Index: ChangeLog
98 ===================================================================
99 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcddb/ChangeLog,v
100 retrieving revision 1.58
101 retrieving revision 1.59
102 diff -u -r1.58 -r1.59
103 --- ChangeLog 15 Jan 2010 09:28:07 -0000 1.58
104 +++ ChangeLog 2 Mar 2012 09:57:30 -0000 1.59
105 @@ -1,6 +1,10 @@
106 # ChangeLog for media-libs/libcddb
107 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
108 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/ChangeLog,v 1.58 2010/01/15 09:28:07 fauli Exp $
109 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
110 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/ChangeLog,v 1.59 2012/03/02 09:57:30 ssuominen Exp $
111 +
112 + 02 Mar 2012; Samuli Suominen <ssuominen@g.o> libcddb-1.3.2.ebuild:
113 + USE="static-libs" and punt useless libcddb.la libtool archive in favour of
114 + libcddb.pc pkg-config file wrt #385127 by "Hans"
115
116 15 Jan 2010; Christian Faulhammer <fauli@g.o> libcddb-1.3.2.ebuild:
117 Transfer Prefix keywords