142 lines
3.7 KiB
Bash
142 lines
3.7 KiB
Bash
# Template file for 'boinc'
|
|
pkgname=boinc
|
|
version=8.0.2
|
|
revision=1
|
|
_majorver=${version%.*}
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool pkg-config xorgproto shared-mime-info"
|
|
makedepends="glu-devel libfreeglut-devel libcurl-devel
|
|
libjpeg-turbo-devel libnotify-devel sqlite-devel libxcb-devel
|
|
libXmu-devel libXi-devel wxWidgets-gtk3-devel"
|
|
depends="curl ca-certificates"
|
|
conf_files="/etc/default/boinc-client"
|
|
short_desc="Berkely Infrastructure for Network Computing"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="LGPL-3.0-or-later"
|
|
homepage="https://boinc.berkeley.edu/"
|
|
distfiles="https://github.com/BOINC/boinc/archive/client_release/${_majorver}/${version}.tar.gz>boinc-${version}.tar.gz"
|
|
checksum=c593f157aacbd61bf814f44ed6e4dbb38145336d5c018c756206bdfc0c6df33e
|
|
system_accounts="boinc"
|
|
boinc_homedir="/var/lib/boinc"
|
|
boinc_shell="/bin/bash"
|
|
conflicts="boinc-nox>=0"
|
|
|
|
CXXFLAGS="-Wno-redundant-decls -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
|
|
|
pre_configure() {
|
|
autoreconf -if
|
|
}
|
|
|
|
do_configure() {
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
# XXX: cross building used to be a lot easier
|
|
# Set include paths for configure to find dependencies.
|
|
CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/glib-2.0"
|
|
CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/lib/glib-2.0/include"
|
|
CXXFLAGS+=" ${CFLAGS}"
|
|
echo "CFLAGS: $CFLAGS"
|
|
echo "CXXFLAGS: $CXXFLAGS"
|
|
export LIBNOTIFY_CFLAGS="${CFLAGS}"
|
|
export LIBNOTIFY_LIBS="-L${XBPS_CROSS_BASE}/usr/lib -lnotify"
|
|
fi
|
|
mkdir /tmp/x11
|
|
mv * /tmp/x11
|
|
mv /tmp/x11 .
|
|
mkdir nox
|
|
cp -ar x11/* nox
|
|
|
|
cd ${wrksrc}/x11
|
|
PKG_CONFIG=pkg-config \
|
|
PKG_CONFIG_PATH=${XBPS_CROSS_BASE}/usr/lib/pkgconfig \
|
|
LDFLAGS="${LDFLAGS} -lX11" \
|
|
./configure \
|
|
${configure_args} \
|
|
--enable-libraries \
|
|
--enable-unicode \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--enable-dynamic-client-linkage \
|
|
--enable-client \
|
|
--enable-manager \
|
|
--disable-server \
|
|
--with-ssl=${XBPS_CROSS_BASE}/usr \
|
|
--with-x=${XBPS_CROSS_BASE}/usr \
|
|
--with-wx-config=${XBPS_CROSS_BASE}/usr/bin/wx-config-gtk3 \
|
|
--with-wx-prefix=${XBPS_CROSS_BASE}/usr
|
|
|
|
cd ${wrksrc}/nox
|
|
PKG_CONFIG=pkg-config \
|
|
PKG_CONFIG_PATH=${XBPS_CROSS_BASE}/usr/lib/pkgconfig \
|
|
./configure \
|
|
${configure_args} \
|
|
--enable-libraries \
|
|
--enable-unicode \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--enable-dynamic-client-linkage \
|
|
--enable-client \
|
|
--disable-manager \
|
|
--disable-server \
|
|
--disable-server \
|
|
--with-ssl=${XBPS_CROSS_BASE}/usr \
|
|
--without-x \
|
|
--without-wxdir
|
|
}
|
|
|
|
do_build() {
|
|
cd ${wrksrc}/x11
|
|
make ${makejobs}
|
|
cd ${wrksrc}/nox
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
cd ${wrksrc}/x11
|
|
make ${makejobs} DESTDIR="${DESTDIR}" install
|
|
|
|
if [ -f "${DESTDIR}/etc/boinc-client.conf" ]; then
|
|
vmkdir etc/default
|
|
mv "${DESTDIR}"/etc/boinc-client.conf \
|
|
"${DESTDIR}"/etc/default/boinc-client
|
|
fi
|
|
|
|
vinstall client/scripts/boinc.bash 644 usr/share/bash-completion/completions boinc
|
|
vsv boinc
|
|
}
|
|
|
|
boinc-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
boinc-nox_package() {
|
|
short_desc+=" - no X"
|
|
conflicts="boinc>=0"
|
|
system_accounts="boinc"
|
|
boinc_homedir="/var/lib/boinc"
|
|
boinc_shell="/bin/bash"
|
|
pkg_install() {
|
|
cd ${wrksrc}/nox
|
|
make ${makejobs} DESTDIR=${PKGDESTDIR} install
|
|
|
|
if [ -f "${PKGDESTDIR}/etc/boinc-client.conf" ]; then
|
|
vmkdir etc/default
|
|
mv "${PKGDESTDIR}"/etc/boinc-client.conf \
|
|
"${PKGDESTDIR}"/etc/default/boinc-client
|
|
fi
|
|
|
|
# no devel package - no includes, *.a and *.so
|
|
rm -rf ${PKGDESTDIR}/usr/include
|
|
rm -f ${PKGDESTDIR}/usr/lib/*.a
|
|
rm -f ${PKGDESTDIR}/usr/lib/*.so
|
|
|
|
vinstall client/scripts/boinc.bash 644 usr/share/bash-completion/completions boinc
|
|
vsv boinc
|
|
}
|
|
}
|