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/libexif: libexif-0.6.17.ebuild
Date: Wed, 30 Sep 2009 09:44:57
Message-Id: E1Msvk0-00024L-68@stork.gentoo.org
1 ssuominen 09/09/30 09:44:56
2
3 Modified: libexif-0.6.17.ebuild
4 Log:
5 Remove old revdep-rebuild suggestion
6 (Portage version: 2.2_rc42/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.8 media-libs/libexif/libexif-0.6.17.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libexif/libexif-0.6.17.ebuild?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libexif/libexif-0.6.17.ebuild?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libexif/libexif-0.6.17.ebuild?r1=1.7&r2=1.8
14
15 Index: libexif-0.6.17.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.17.ebuild,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- libexif-0.6.17.ebuild 6 Feb 2009 20:10:42 -0000 1.7
22 +++ libexif-0.6.17.ebuild 30 Sep 2009 09:44:55 -0000 1.8
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.17.ebuild,v 1.7 2009/02/06 20:10:42 jer Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.17.ebuild,v 1.8 2009/09/30 09:44:55 ssuominen Exp $
28
29 inherit eutils libtool
30
31 @@ -16,12 +16,10 @@
32 DEPEND="dev-util/pkgconfig
33 doc? ( app-doc/doxygen )
34 nls? ( sys-devel/gettext )"
35 -
36 RDEPEND="nls? ( virtual/libintl )"
37
38 src_unpack() {
39 unpack ${A}
40 -
41 cd "${S}"
42 epatch "${FILESDIR}/${PN}-0.6.13-pkgconfig.patch"
43
44 @@ -44,27 +42,10 @@
45 use doc && dodir /usr/share/doc/${PF}
46 dodir /usr/$(get_libdir)/pkgconfig
47
48 - make DESTDIR="${D}" install || die
49 + emake DESTDIR="${D}" install || die
50
51 dodoc ChangeLog README
52
53 # installs a blank directory for whatever broken reason
54 use nls || rm -rf "${D}usr/share/locale"
55 }
56 -
57 -pkg_preinst() {
58 - has_version "<${CATEGORY}/${PN}-0.6.13-r2"
59 - previous_less_than_0_6_13_r2=$?
60 -}
61 -
62 -pkg_postinst() {
63 - if [[ $previous_less_than_0_6_13_r2 = 0 ]] ; then
64 - elog "If you are upgrading from a version of libexif older than 0.6.13-r2,"
65 - elog "you will need to do the following to rebuild dependencies:"
66 - elog "# revdep-rebuild --soname libexif.so.9"
67 - elog "# revdep-rebuild --soname libexif.so.10"
68 - elog ""
69 - elog "Note, it is actually safe to create a symlink from libexif.so.10 to"
70 - elog "libexif.so.12 if you need to during the update."
71 - fi
72 -}