Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libreplaygain: ChangeLog libreplaygain-458.ebuild
Date: Wed, 03 Feb 2010 10:14:54
Message-Id: E1NccG4-0005sr-5T@stork.gentoo.org
1 grobian 10/02/03 10:14:52
2
3 Modified: ChangeLog libreplaygain-458.ebuild
4 Log:
5 Drop install_name_tool hack, I managed to fix the issue sort of with cmake
6 (Portage version: 2.2.00.15187-prefix/cvs/SunOS i386)
7
8 Revision Changes Path
9 1.18 media-libs/libreplaygain/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libreplaygain/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libreplaygain/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libreplaygain/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- ChangeLog 3 Feb 2010 10:07:09 -0000 1.17
22 +++ ChangeLog 3 Feb 2010 10:14:51 -0000 1.18
23 @@ -1,6 +1,9 @@
24 # ChangeLog for media-libs/libreplaygain
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/ChangeLog,v 1.17 2010/02/03 10:07:09 grobian Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/ChangeLog,v 1.18 2010/02/03 10:14:51 grobian Exp $
28 +
29 + 03 Feb 2010; Fabian Groffen <grobian@g.o> libreplaygain-458.ebuild:
30 + Drop install_name_tool hack, I managed to fix the issue sort of with cmake
31
32 03 Feb 2010; Fabian Groffen <grobian@g.o> libreplaygain-458.ebuild:
33 Marked ~x86-macos
34
35
36
37 1.6 media-libs/libreplaygain/libreplaygain-458.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libreplaygain/libreplaygain-458.ebuild?rev=1.6&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libreplaygain/libreplaygain-458.ebuild?rev=1.6&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libreplaygain/libreplaygain-458.ebuild?r1=1.5&r2=1.6
42
43 Index: libreplaygain-458.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/libreplaygain-458.ebuild,v
46 retrieving revision 1.5
47 retrieving revision 1.6
48 diff -u -r1.5 -r1.6
49 --- libreplaygain-458.ebuild 3 Feb 2010 10:07:09 -0000 1.5
50 +++ libreplaygain-458.ebuild 3 Feb 2010 10:14:51 -0000 1.6
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/libreplaygain-458.ebuild,v 1.5 2010/02/03 10:07:09 grobian Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/libreplaygain-458.ebuild,v 1.6 2010/02/03 10:14:51 grobian Exp $
56
57 inherit cmake-utils
58
59 @@ -21,13 +21,4 @@
60 cmake-utils_src_install
61 insinto /usr/include
62 doins -r include/replaygain || die
63 -
64 - # cmake seems to think it is installing an application bundle, which is
65 - # wrong, but I can't seem to figure out how to fix it, so I use a laymans
66 - # approach instead
67 - if [[ ${CHOST} == *-darwin* ]] ; then
68 - install_name_tool \
69 - -id "${EPREFIX}"/usr/$(get_libdir)/libreplaygain.1.dylib \
70 - "${D%/}${EPREFIX}"/usr/$(get_libdir)/libreplaygain.1.0.0.dylib || die
71 - fi
72 }