diff options
author | wxs <wxs@FreeBSD.org> | 2011-03-18 22:27:54 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2011-03-18 22:27:54 +0800 |
commit | cf3a2a9e32bf37a2720322e76d198be62aa6dae5 (patch) | |
tree | 959c5fb64a03055b066941cc1717a8a82a2e7119 | |
parent | 0885ba6e812e10f031c60e6a31e3b509a5c90382 (diff) | |
download | freebsd-ports-gnome-cf3a2a9e32bf37a2720322e76d198be62aa6dae5.tar.gz freebsd-ports-gnome-cf3a2a9e32bf37a2720322e76d198be62aa6dae5.tar.zst freebsd-ports-gnome-cf3a2a9e32bf37a2720322e76d198be62aa6dae5.zip |
Fix freshports sanity test failure.
http://www.freshports.org/sanity_test_failures.php?message_id=201103172328.p2HNS
9Rk065443@repoman.freebsd.org
Approved by: rene@
Noticed by: dvl@
-rw-r--r-- | astro/boinc-astropulse/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/astro/boinc-astropulse/Makefile b/astro/boinc-astropulse/Makefile index 504ed0f0e9bf..ca6ff18965d0 100644 --- a/astro/boinc-astropulse/Makefile +++ b/astro/boinc-astropulse/Makefile @@ -19,11 +19,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:${PORTSDIR}/math/fftw3 \ ${NONEXISTENT}:${PORTSDIR}/astro/boinc-setiathome-enhanced:patch -# stolen and adapted from bsd.port.mk -.if (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) || ${OSVERSION} < 800505 -BUILD_DEPENDS+= ${LOCALBASE}/bin/xz:${PORTSDIR}/archivers/xz -.endif - RUN_DEPENDS= boinc_client:${PORTSDIR}/net/boinc-client LIB_DEPENDS= fftw3f:${PORTSDIR}/math/fftw3-float @@ -48,6 +43,10 @@ BOINC_HOME?= /var/db/boinc #OPTIONS= X11 "Build screensaver (requires net/boinc-client with X11)" on .include <bsd.port.pre.mk> +# stolen and adapted from bsd.port.mk +.if (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) || ${OSVERSION} < 800505 +BUILD_DEPENDS+= ${LOCALBASE}/bin/xz:${PORTSDIR}/archivers/xz +.endif # TODO fix upstream .if defined(WITHOUT_X11) |