Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif-compat: metadata.xml ChangeLog openmotif-compat-2.2.3.ebuild Manifest
Date: Tue, 25 Mar 2008 15:23:32
Message-Id: E1JeAzp-0002wV-06@stork.gentoo.org
1 ulm 08/03/25 15:23:28
2
3 Added: metadata.xml ChangeLog
4 openmotif-compat-2.2.3.ebuild Manifest
5 Log:
6 Legacy Open Motif libraries for old binaries.
7 Moved here from x11-libs/openmotif:2.2, bug 210021.
8 (Portage version: 2.1.4.4)
9
10 Revision Changes Path
11 1.1 x11-libs/openmotif-compat/metadata.xml
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>no-herd</herd>
22 <maintainer>
23 <email>ulm@g.o</email>
24 </maintainer>
25 <maintainer>
26 <email>stefaan@g.o</email>
27 </maintainer>
28 </pkgmetadata>
29
30
31
32 1.1 x11-libs/openmotif-compat/ChangeLog
33
34 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/ChangeLog?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/ChangeLog?rev=1.1&content-type=text/plain
36
37 Index: ChangeLog
38 ===================================================================
39 # ChangeLog for x11-libs/openmotif-compat
40 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
41 # $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif-compat/ChangeLog,v 1.1 2008/03/25 15:23:28 ulm Exp $
42
43 *openmotif-compat-2.2.3 (25 Mar 2008)
44
45 25 Mar 2008; Ulrich Mueller <ulm@g.o> +metadata.xml,
46 +openmotif-compat-2.2.3.ebuild:
47 Legacy Open Motif libraries for old binaries. Moved here from
48 x11-libs/openmotif:2.2, bug 210021.
49
50
51
52
53 1.1 x11-libs/openmotif-compat/openmotif-compat-2.2.3.ebuild
54
55 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/openmotif-compat-2.2.3.ebuild?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/openmotif-compat-2.2.3.ebuild?rev=1.1&content-type=text/plain
57
58 Index: openmotif-compat-2.2.3.ebuild
59 ===================================================================
60 # Copyright 1999-2008 Gentoo Foundation
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif-compat/openmotif-compat-2.2.3.ebuild,v 1.1 2008/03/25 15:23:28 ulm Exp $
63
64 WANT_AUTOCONF="latest"
65 WANT_AUTOMAKE="1.6"
66
67 inherit eutils flag-o-matic multilib autotools
68
69 MY_P=openMotif-${PV}
70 DESCRIPTION="Legacy Open Motif libraries for old binaries"
71 HOMEPAGE="http://www.motifzone.org/"
72 SRC_URI="ftp://ftp.ics.com/openmotif/2.2/${PV}/src/${MY_P}.tar.gz
73 mirror://gentoo/openmotif-${PV}-patches-1.tar.bz2"
74
75 LICENSE="MOTIF"
76 SLOT="2.2"
77 KEYWORDS="~amd64 ~x86"
78 IUSE=""
79
80 RDEPEND="!x11-libs/motif-config
81 !x11-libs/lesstif
82 !=x11-libs/openmotif-2.2*
83 x11-libs/libXmu
84 x11-libs/libXaw
85 x11-libs/libXp"
86
87 DEPEND="${RDEPEND}
88 x11-misc/xbitmaps
89 x11-proto/printproto"
90
91 S=${WORKDIR}/${MY_P}
92
93 src_unpack() {
94 unpack ${A}
95 cd "${S}"
96
97 EPATCH_SUFFIX=patch epatch
98
99 # This replaces deprecated, obsoleted and now invalid AC_DEFINE
100 # with their proper alternatives.
101 sed -i -e 's:AC_DEFINE(\([^)]*\)):AC_DEFINE(\1, [], [\1]):g' \
102 configure.in acinclude.m4
103
104 # Build only the libraries
105 sed -i -e '/^SUBDIRS/{:x;/\\$/{N;bx;};s/=.*/= lib clients/;}' Makefile.am
106 sed -i -e '/^SUBDIRS/{:x;/\\$/{N;bx;};s/=.*/= uil/;}' clients/Makefile.am
107
108 eautoreconf
109 }
110
111 src_compile() {
112 # get around some LANG problems in make (#15119)
113 unset LANG
114
115 # bug #80421
116 filter-flags -ftracer
117
118 # multilib includes don't work right in this package...
119 has_multilib_profile && append-flags "-I$(get_ml_incdir)"
120
121 # feel free to fix properly if you care
122 append-flags -fno-strict-aliasing
123
124 econf --with-x || die "econf failed"
125 emake -j1 || die "emake failed"
126 }
127
128 src_install() {
129 emake -j1 DESTDIR="${D}" install-exec || die "emake install failed"
130
131 # cleanups
132 rm -Rf "${D}"/usr/bin
133 rm -f "${D}"/usr/$(get_libdir)/*.{so,la,a}
134
135 dodoc README RELEASE RELNOTES BUGREPORT TODO
136 }
137
138
139
140 1.1 x11-libs/openmotif-compat/Manifest
141
142 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/Manifest?rev=1.1&view=markup
143 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif-compat/Manifest?rev=1.1&content-type=text/plain
144
145 Index: Manifest
146 ===================================================================
147 DIST openMotif-2.2.3.tar.gz 5149785 RMD160 b99230d508da57bca72b6920d28fce4187bf5179 SHA1 c463653d9f8e24b35522c3ba6363ddf7a282eab4 SHA256 12fc0d1de53ff30307603e31826db9b63a442f6f743451aed2cb7cedb038d3d9
148 DIST openmotif-2.2.3-patches-1.tar.bz2 19960 RMD160 735931640dfb1d45f331e1015dce2886022c82c0 SHA1 f10752647af3ae3e1fc81b052b836c9db5df22e0 SHA256 9da77097b9960edf763d2b94948739acfecdd41e6959afeeef3799b0872c19d1
149 EBUILD openmotif-compat-2.2.3.ebuild 1778 RMD160 466a991576a5a5eb98abded8d15faf967f06f266 SHA1 b393c7e141ab1075b7eeb5fc93c5b39542c8ff33 SHA256 046d2c263032025fd2a7fb055f91ce25426f67ca34b3ceea3bf7a8fc7447ab80
150 MISC ChangeLog 364 RMD160 ea6069b00c791ec0f42225995b8279453629867b SHA1 d13659e8ae499a8a118c88b5fdb96bee69bc9769 SHA256 64b05194e6953692b2001ba5736fce082292fe4f2ccc337703fccd5cad2be7e4
151 MISC metadata.xml 282 RMD160 599456295c8abf663a160b3479e397c9f6c37fe5 SHA1 acb6a06ce7df0f39a80a02756ba034fc5e6abb89 SHA256 1636d28469ae830ccdba09a807a7b5e2473f8c5e9b3411b5b6a50ffc5bcbe18a
152
153
154
155 --
156 gentoo-commits@l.g.o mailing list