diff options
author | vs <vs@FreeBSD.org> | 2004-07-13 03:49:08 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2004-07-13 03:49:08 +0800 |
commit | 5b1d85810494c7ee9a6273ae25831454adfa636f (patch) | |
tree | 4226ad51e03292753cd2478bcfc587b1382c9ce6 /comms/obexapp/Makefile | |
parent | 74747bd741270d537d0b45bdb7108a4d18d1c226 (diff) | |
download | freebsd-ports-gnome-5b1d85810494c7ee9a6273ae25831454adfa636f.tar.gz freebsd-ports-gnome-5b1d85810494c7ee9a6273ae25831454adfa636f.tar.zst freebsd-ports-gnome-5b1d85810494c7ee9a6273ae25831454adfa636f.zip |
Enable this port on non-i386 architectures on -current after 9 July.
Testing of both the bluetooth stack and this port (and the related openobex one) on non i386 machines are encouraged. Please report any problems.
PR: ports/68912
Submitted by: Guido Falsi (maintainer)
Diffstat (limited to 'comms/obexapp/Makefile')
-rw-r--r-- | comms/obexapp/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/comms/obexapp/Makefile b/comms/obexapp/Makefile index 38cbf71b22bd..407b35971ce0 100644 --- a/comms/obexapp/Makefile +++ b/comms/obexapp/Makefile @@ -17,9 +17,6 @@ LIB_DEPENDS= openobex-1.0.1:${PORTSDIR}/comms/openobex WRKSRC= ${WRKDIR}/${PORTNAME} -# libbluetooth is only installed on i386 -ONLY_FOR_ARCHS= i386 - MAN1= obexapp.1 MANCOMPRESSED= yes PLIST_FILES= bin/obexapp @@ -30,4 +27,9 @@ PLIST_FILES= bin/obexapp IGNORE= Needs -CURRENT from 20 Jan 2004 or later (sdpd) .endif +.if ${OSVERSION} < 502121 +# libbluetooth is only installed on i386 before this version +ONLY_FOR_ARCHS= i386 +.endif + .include <bsd.port.post.mk> |