Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/lib-compat: lib-compat-1.4.2-r1.ebuild ChangeLog
Date: Thu, 26 Jun 2014 08:33:53
Message-Id: 20140626083347.EC6DD2004E@flycatcher.gentoo.org
1 mgorny 14/06/26 08:33:47
2
3 Modified: ChangeLog
4 Added: lib-compat-1.4.2-r1.ebuild
5 Log:
6 Support being installed on amd64. Since app-emulation/emul-linux-x86-compat installs fundamentally the same files, there is no point having both. Bug #506226.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.35 sys-libs/lib-compat/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/lib-compat/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/lib-compat/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/lib-compat/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 20 May 2012 12:22:03 -0000 1.34
24 +++ ChangeLog 26 Jun 2014 08:33:47 -0000 1.35
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-libs/lib-compat
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/ChangeLog,v 1.34 2012/05/20 12:22:03 ferringb Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/ChangeLog,v 1.35 2014/06/26 08:33:47 mgorny Exp $
31 +
32 +*lib-compat-1.4.2-r1 (26 Jun 2014)
33 +
34 + 26 Jun 2014; Michał Górny <mgorny@g.o> +lib-compat-1.4.2-r1.ebuild:
35 + Support being installed on amd64. Since app-emulation/emul-linux-x86-compat
36 + installs fundamentally the same files, there is no point having both. Bug
37 + #506226.
38
39 20 May 2012; Brian Harring <ferringb@g.o> lib-compat-1.4.ebuild,
40 lib-compat-1.4.1.ebuild:
41
42
43
44 1.1 sys-libs/lib-compat/lib-compat-1.4.2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/lib-compat/lib-compat-1.4.2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/lib-compat/lib-compat-1.4.2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: lib-compat-1.4.2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/lib-compat-1.4.2-r1.ebuild,v 1.1 2014/06/26 08:33:47 mgorny Exp $
54
55 EAPI=5
56
57 DESCRIPTION="Compatibility C++ and libc5 and libc6 libraries for very old programs"
58 HOMEPAGE="http://www.gentoo.org/"
59 SRC_URI="mirror://gentoo/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="!<=app-emulation/emul-linux-x86-compat-20140508"
67
68 src_install() {
69 if use alpha ; then
70 cd alpha || die
71 else
72 cd x86 || die
73 ABI=x86
74
75 into /
76 dolib.so ld-linux.so.1*
77 rm -f ld-linux.so.1*
78 fi
79 into /usr
80 dolib.so *.so*
81 }