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/libcuefile: ChangeLog libcuefile-458.ebuild
Date: Wed, 03 Feb 2010 10:13:33
Message-Id: E1NccEk-0005oC-0f@stork.gentoo.org
1 grobian 10/02/03 10:13:30
2
3 Modified: ChangeLog libcuefile-458.ebuild
4 Log:
5 Marked ~x86-macos, 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.17 media-libs/libcuefile/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcuefile/ChangeLog?rev=1.17&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcuefile/ChangeLog?rev=1.17&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcuefile/ChangeLog?r1=1.16&r2=1.17
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcuefile/ChangeLog,v
18 retrieving revision 1.16
19 retrieving revision 1.17
20 diff -u -r1.16 -r1.17
21 --- ChangeLog 12 Jan 2010 00:46:24 -0000 1.16
22 +++ ChangeLog 3 Feb 2010 10:13:29 -0000 1.17
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/libcuefile
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcuefile/ChangeLog,v 1.16 2010/01/12 00:46:24 abcd Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcuefile/ChangeLog,v 1.17 2010/02/03 10:13:29 grobian Exp $
28 +
29 + 03 Feb 2010; Fabian Groffen <grobian@g.o> libcuefile-458.ebuild:
30 + Marked ~x86-macos, drop install_name_tool hack, I managed to fix the issue
31 + sort of with cmake
32
33 12 Jan 2010; Jonathan Callen <abcd@g.o> libcuefile-458.ebuild:
34 Add ~x86-linux keyword
35
36
37
38 1.5 media-libs/libcuefile/libcuefile-458.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcuefile/libcuefile-458.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcuefile/libcuefile-458.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcuefile/libcuefile-458.ebuild?r1=1.4&r2=1.5
43
44 Index: libcuefile-458.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcuefile/libcuefile-458.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- libcuefile-458.ebuild 12 Jan 2010 00:46:24 -0000 1.4
51 +++ libcuefile-458.ebuild 3 Feb 2010 10:13:29 -0000 1.5
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcuefile/libcuefile-458.ebuild,v 1.4 2010/01/12 00:46:24 abcd Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcuefile/libcuefile-458.ebuild,v 1.5 2010/02/03 10:13:29 grobian Exp $
57
58 inherit cmake-utils multilib
59
60 @@ -14,20 +14,11 @@
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
65 +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
66 IUSE=""
67
68 src_install() {
69 cmake-utils_src_install
70 insinto /usr/include
71 doins -r include/cuetools || die
72 -
73 - # cmake seems to think it is installing an application bundle, which is
74 - # wrong, but I can't seem to figure out how to fix it, so I use a laymans
75 - # approach instead
76 - if [[ ${CHOST} == *-darwin* ]] ; then
77 - install_name_tool \
78 - -id "${EPREFIX}"/usr/$(get_libdir)/libcuefile.0.dylib \
79 - "${D%/}${EPREFIX}"/usr/$(get_libdir)/libcuefile.0.0.0.dylib || die
80 - fi
81 }