diff options
author | pav <pav@FreeBSD.org> | 2009-01-06 05:05:49 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-01-06 05:05:49 +0800 |
commit | fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb (patch) | |
tree | 1f6b633bd7844aa504f407e530e6892e38d0b9c5 /misc/kdeedu3 | |
parent | 54aa386a510858774daf943c9ab8069883f977c7 (diff) | |
download | freebsd-ports-gnome-fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb.tar.gz freebsd-ports-gnome-fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb.tar.zst freebsd-ports-gnome-fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb.zip |
- Remove conditional checks for FreeBSD 5.x and older
Diffstat (limited to 'misc/kdeedu3')
-rw-r--r-- | misc/kdeedu3/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/misc/kdeedu3/Makefile b/misc/kdeedu3/Makefile index 9d5125a8c915..65c648d7541d 100644 --- a/misc/kdeedu3/Makefile +++ b/misc/kdeedu3/Makefile @@ -15,7 +15,8 @@ DIST_SUBDIR= KDE MAINTAINER?= kde@FreeBSD.org COMMENT= Collection of entertaining, educational programs for KDE -LIB_DEPENDS= usb-0.1:${PORTSDIR}/devel/libusb +LIB_DEPENDS= usb-0.1:${PORTSDIR}/devel/libusb \ + boost_python:${PORTSDIR}/devel/boost-python CONFLICTS+= kwordquiz-[0-9]* kgeography-[0-9]* @@ -34,19 +35,10 @@ USE_LDCONFIG= yes LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 .include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -.if ${OSVERSION} > 500035 -LIB_DEPENDS+= boost_python:${PORTSDIR}/devel/boost-python -PLIST_SUB+= BOOST_PYTHON="" -.else -CONFIGURE_ARGS+=--disable-kig-python-scripting -PLIST_SUB+= BOOST_PYTHON="@comment " -.endif pre-configure: ${REINPLACE_CMD} \ -e 's|pylibdir in.*|pylibdir in "${LOCALBASE}/lib" \\|g' \ ${WRKSRC}/configure -.include <bsd.port.post.mk> +.include <bsd.port.mk> |