mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
de78af3ac5
Reviewed by: exp8 run on pointyhat Supported by: miwi
94 lines
2.9 KiB
Makefile
94 lines
2.9 KiB
Makefile
# New ports collection makefile for: boinc-setiathome-enhanced
|
|
# Date created: 26 March 2006
|
|
# Whom: Rene Ladan <r.c.ladan@student.tue.nl>
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= boinc-setiathome-enhanced
|
|
PORTVERSION= 6.08
|
|
PORTREVISION= 2
|
|
CATEGORIES= astro
|
|
MASTER_SITES= ftp://rene-ladan.nl/pub/distfiles/
|
|
DISTNAME= setiathome-svn-412
|
|
|
|
MAINTAINER= rene@FreeBSD.org
|
|
COMMENT= Setiathome Enhanced for BOINC
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:${PORTSDIR}/math/fftw3 \
|
|
${LOCALBASE}/include/boinc/std_fixes.h:${PORTSDIR}/net/boinc-client \
|
|
${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash
|
|
RUN_DEPENDS= boinc_client:${PORTSDIR}/net/boinc-client
|
|
LIB_DEPENDS= fftw3f:${PORTSDIR}/math/fftw3-float
|
|
|
|
USE_BZIP2= yes
|
|
USE_AUTOTOOLS= autoconf:262:env automake:18:env
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= pkgconfig
|
|
|
|
CFLAGS+= -O2 -I${LOCALBASE}/include/boinc -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
.if defined(CPUTYPE)
|
|
CFLAGS+= -march=${CPUTYPE}
|
|
.endif
|
|
|
|
# these must match settings in ${PORTSDIR}/net/boinc-client/Makefile
|
|
BOINC_USER?= boinc
|
|
BOINC_GROUP?= nobody
|
|
BOINC_HOME?= /var/db/boinc
|
|
|
|
OPTIONS= X11 "Build screensaver" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
.if !exists(${LOCALBASE}/lib/libboinc_graphics2.a)
|
|
BROKEN=Reinstall net/boinc-client with X11 enabled for screensavers
|
|
.endif
|
|
LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg \
|
|
xcb.2:${PORTSDIR}/x11/libxcb
|
|
USE_GL= gl glu glut
|
|
USE_XORG= ice sm x11 xau xext xi xdamage xdmcp xfixes xmu xt xxf86vm
|
|
PLIST_SUB+= X11=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-graphics
|
|
PLIST_SUB+= X11="@comment "
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 700042 && (${ARCH} == i386 || ${ARCH} == amd64)
|
|
CFLAGS+= -mtune=native
|
|
.endif
|
|
|
|
CXXFLAGS+= ${CFLAGS}
|
|
|
|
CONFIGURE_ENV+= BOINCDIR="${LOCALBASE}"
|
|
|
|
CONFIGURE_ARGS+= --disable-static-client --with-boinc-platform=${ARCH}-portbld-freebsd --disable-server
|
|
|
|
SETI_SITE= setiathome.berkeley.edu
|
|
SETI_BINARY= setiathome-${PORTVERSION:S/.0/./}.${ARCH}-portbld-freebsd
|
|
|
|
SUB_FILES= app_info.xml pkg-message
|
|
SUB_LIST= SETI_BINARY=${SETI_BINARY} \
|
|
SETI_SITE=${SETI_SITE} \
|
|
SETI_VERSION=${PORTVERSION:S/.//}
|
|
PLIST_SUB+= SETI_BINARY=${SETI_BINARY} \
|
|
SETI_SITE=${SETI_SITE} \
|
|
BOINC_HOME=${BOINC_HOME}
|
|
|
|
pre-configure:
|
|
(cd ${WRKSRC}; ./_autosetup ; ${REINPLACE_CMD} -E -e "s|/bin/sh|${LOCALBASE}/bin/bash|" ./configure)
|
|
|
|
do-install:
|
|
${INSTALL} -d -o ${BOINC_USER} -g ${BOINC_GROUP} ${BOINC_HOME}/projects
|
|
${INSTALL} -d -o ${BOINC_USER} -g ${BOINC_GROUP} ${BOINC_HOME}/projects/${SETI_SITE}
|
|
${INSTALL_PROGRAM} -o ${BOINC_USER} -g ${BOINC_GROUP} ${WRKSRC}/client/${SETI_BINARY} ${BOINC_HOME}/projects/${SETI_SITE}/
|
|
.if !defined(WITHOUT_X11)
|
|
${INSTALL_PROGRAM} -o ${BOINC_USER} -g ${BOINC_GROUP} ${WRKSRC}/client/seti_graphics ${BOINC_HOME}/projects/${SETI_SITE}/
|
|
.endif
|
|
${INSTALL_DATA} -o ${BOINC_USER} -g ${BOINC_GROUP} ${WRKDIR}/app_info.xml ${BOINC_HOME}/projects/${SETI_SITE}/
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|