2020-12-25 21:35:08 +00:00
|
|
|
# Template file for 'nx-libs'
|
|
|
|
pkgname=nx-libs
|
|
|
|
version=3.5.99.26
|
2021-05-11 12:51:09 +00:00
|
|
|
revision=2
|
2020-12-25 21:35:08 +00:00
|
|
|
build_style=gnu-configure
|
2021-05-11 12:51:09 +00:00
|
|
|
# The rpath for nxagent is USRLIBDIRPATH, which must be where this package
|
|
|
|
# provides a symlink to the custom libX11 with NX features
|
|
|
|
make_build_args='CONFIGURE=echo IMAKE_DEFINES=-DUseTIRPC=YES
|
|
|
|
USRLIBDIRPATH=\$$ORIGIN/../lib/nx/X11'
|
2020-12-25 21:35:08 +00:00
|
|
|
make_install_args="PREFIX=/usr"
|
|
|
|
hostmakedepends="autoconf automake libtool pkg-config which imake xkbcomp gccmakedep"
|
|
|
|
makedepends="xorgproto zlib-devel libjpeg-turbo-devel libpng-devel
|
|
|
|
libXext-devel libXdamage-devel libXrandr-devel libXtst-devel pixman-devel
|
|
|
|
libXfont2-devel libxml2-devel libXcomposite-devel libXinerama-devel
|
|
|
|
libtirpc-devel libXpm-devel font-util xkbcomp"
|
|
|
|
short_desc="NX X11 protocol compression libraries"
|
2021-05-11 12:51:09 +00:00
|
|
|
maintainer="eoli3n <jonathan.kirszling@runbox.com>"
|
2020-12-25 21:35:08 +00:00
|
|
|
license="GPL-2.0-or-later"
|
|
|
|
homepage="https://github.com/ArcticaProject/nx-libs"
|
2021-05-11 12:51:09 +00:00
|
|
|
distfiles="${homepage}/archive/$version/$pkgname-$version.tar.gz"
|
2020-12-25 21:35:08 +00:00
|
|
|
checksum=3ce7ca4e6b57b3a2d7588b2d0f4009036d2566a8925ca2c62f08a8dc0df50357
|
|
|
|
python_version=3
|
|
|
|
nocross="imake attempts to run target executables on host"
|
2021-05-11 12:51:09 +00:00
|
|
|
conf_files="/etc/nxagent/*"
|
2020-12-25 21:35:08 +00:00
|
|
|
|
|
|
|
post_patch() {
|
|
|
|
# Replace hard-coded /usr/local ProjectRoot
|
|
|
|
vsed -e '/ProjectRoot/s,/usr/local,/usr,' -i nx-X11/config/cf/site.def
|
|
|
|
# Manually run autoreconf in pre_configure, disable in Makefile
|
|
|
|
vsed -e 's/autoreconf/echo &-disabled/' -i Makefile
|
|
|
|
}
|
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
# Create configure scripts for all subprojects
|
|
|
|
local _subdir
|
|
|
|
for _subdir in nxcomp nx-X11/lib nxcompshad nxproxy nxdialog; do
|
|
|
|
( cd ${_subdir} && autoreconf -vfsi )
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
do_configure() {
|
|
|
|
# Configure all subprojects in advance of build
|
|
|
|
local _subdir
|
|
|
|
for _subdir in nxcomp nxcompshad nxproxy nxdialog; do
|
|
|
|
( cd ${_subdir} && ./configure ${configure_args} )
|
|
|
|
done
|
|
|
|
|
|
|
|
# nx-X11 configure has an extra argument
|
|
|
|
( cd nx-X11/lib && ./configure ${configure_args} --disable-poll )
|
|
|
|
}
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
# Remove conflicting GL headers
|
|
|
|
rm -rf ${DESTDIR}/usr/include/GL
|
|
|
|
}
|
|
|
|
|
2021-05-11 12:51:09 +00:00
|
|
|
nx-libs-devel_package() {
|
2020-12-25 21:35:08 +00:00
|
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
|
|
short_desc+=" - development files"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove "usr/lib/*.a"
|
|
|
|
vmove "usr/lib/*.so"
|
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
}
|
|
|
|
}
|