blob: e073af44a604eda26308c0357ec6d589839adb87 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils toolchain-funcs
DESCRIPTION="NX compression technology core libraries"
HOMEPAGE="http://www.x2go.org/doku.php/wiki:libs:nx-libs"
SRC_URI="http://code.x2go.org/releases/source/nx-libs/nx-libs-${PV}-full.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="elibc_glibc"
RDEPEND="
dev-libs/libxml2
>=media-libs/libpng-1.2.8:0=
>=sys-libs/zlib-1.2.3
virtual/jpeg:*
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXdamage
x11-libs/libXdmcp
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXfont2
x11-libs/libXinerama
x11-libs/libXpm
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXtst
x11-libs/pixman
"
DEPEND="${RDEPEND}
virtual/pkgconfig
x11-libs/libfontenc
x11-misc/gccmakedep
x11-misc/imake
x11-proto/inputproto
x11-proto/xextproto"
S="${WORKDIR}/nx-libs-${PV}"
src_prepare() {
default
# We want predictable behavior. So let's assume we never
# have quilt installed.
sed 's@which quilt@false@' -i mesa-quilt || die
# run autoreconf in all needed folders
local subdir
for subdir in nxcomp nx-X11/lib nxcompshad nxproxy ; do
pushd ${subdir} || die
eautoreconf
popd || die
done
# From xorg-x11-6.9.0-r3.ebuild
pushd nx-X11 || die
HOSTCONF="config/cf/host.def"
echo "#define CcCmd $(tc-getCC)" >> ${HOSTCONF}
echo "#define OptimizedCDebugFlags ${CFLAGS} GccAliasingArgs" >> ${HOSTCONF}
echo "#define OptimizedCplusplusDebugFlags ${CXXFLAGS} GccAliasingArgs" >> ${HOSTCONF}
# Respect LDFLAGS
echo "#define ExtraLoadFlags ${LDFLAGS}" >> ${HOSTCONF}
echo "#define SharedLibraryLoadFlags -shared ${LDFLAGS}" >> ${HOSTCONF}
# Disable SunRPC, #370767
echo "#define HasSecureRPC NO" >> ${HOSTCONF}
}
src_configure() {
local subdir
for subdir in nxcomp nxcompshad nxproxy ; do
pushd ${subdir} || die
econf
popd || die
done
pushd "nx-X11/lib" || die
econf --disable-poll
popd || die
}
src_compile() {
# First set up the build environment
emake build-env
# We replicate the "build-full" make target here because
# we cannot call "make build-full" as it
# - calls autoreconf several times
# - invokes make directly but we prefer our emake
emake -C nxcomp
emake -C nx-X11/lib
mkdir -p nx-X11/exports/lib/ || die
local nxlib
for nxlib in libNX_X11.so{,.6{,.3.0}} ; do
ln -s ../../lib/src/.libs/${nxlib} nx-X11/exports/lib/${nxlib} || die
done
emake -C nxcompshad
./mesa-quilt push -a || die
emake -C nx-X11 BuildDependsOnly FONT_DEFINES="-DHAS_XFONT2"
emake -C nx-X11 World USRLIBDIR="/usr/$(get_libdir)/${PN}/X11" SHLIBDIR="/usr/$(get_libdir)" FONT_DEFINES="-DHAS_XFONT2" XFONTLIB="-lXfont2"
emake -C nxproxy
}
src_install() {
emake \
DESTDIR="${D}" \
PREFIX="/usr" \
NXLIBDIR="/usr/$(get_libdir)/${PN}" \
SHLIBDIR="/usr/$(get_libdir)" \
USRLIBDIR="/usr/$(get_libdir)/${PN}/X11" \
install
# Already provided by mesa & related packages
rm -r "${ED%/}"/usr/include/GL || die
# Get rid of libtool files and static libs.
find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
}
|