blob: 2d534bb4179795f599bef5f92647cbef8ce3f934 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/motif/motif-2.2.3-r12.ebuild,v 1.7 2013/07/31 22:24:16 ulm Exp $
EAPI=5
inherit autotools eutils flag-o-matic multilib multilib-minimal
MY_P=openMotif-${PV}
DESCRIPTION="Legacy Open Motif libraries for old binaries"
HOMEPAGE="http://motif.ics.com/"
SRC_URI="ftp://ftp.ics.com/openmotif/2.2/${PV}/src/${MY_P}.tar.gz
mirror://gentoo/openmotif-${PV}-patches-5.tar.xz"
LICENSE="MOTIF MIT"
SLOT="2.2"
KEYWORDS="~amd64 ~x86"
RDEPEND="x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
x11-libs/libXmu[${MULTILIB_USEDEP}]
x11-libs/libXp[${MULTILIB_USEDEP}]
x11-libs/libXt[${MULTILIB_USEDEP}]
abi_x86_32? (
amd64? ( app-emulation/emul-linux-x86-baselibs )
!app-emulation/emul-linux-x86-motif[-abi_x86_32(-)]
)"
DEPEND="${RDEPEND}
x11-libs/libXaw
x11-misc/xbitmaps"
S="${WORKDIR}/${MY_P}"
src_prepare() {
EPATCH_SUFFIX=patch epatch
epatch_user
# This replaces deprecated, obsoleted and now invalid AC_DEFINE
# with their proper alternatives.
sed -i -e 's:AC_DEFINE(\([^)]*\)):AC_DEFINE(\1, [], [\1]):g' \
configure.in acinclude.m4
# Build only the libraries
sed -i -e '/^SUBDIRS/{:x;/\\$/{N;bx;};s/=.*/= lib clients/;}' Makefile.am
sed -i -e '/^SUBDIRS/{:x;/\\$/{N;bx;};s/=.*/= uil/;}' clients/Makefile.am
AM_OPTS="--force-missing" eautoreconf
# get around some LANG problems in make (#15119)
unset LANG
# bug #80421
filter-flags -ftracer
# feel free to fix properly if you care
append-flags -fno-strict-aliasing
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf --with-x --disable-static
}
multilib_src_compile() {
emake -j1
}
multilib_src_install() {
emake -j1 DESTDIR="${D}" install-exec
}
multilib_src_install_all() {
# cleanups
rm -Rf "${D}"/usr/bin
rm -f "${D}"/usr/lib*/*.{so,la,a}
dodoc README RELEASE RELNOTES BUGREPORT TODO
}
|