dbfd750590
While here, also update some PLISTs, fix PREFIX use, etc. ok landry@
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.12 2011/06/23 22:50:27 naddy Exp $
|
|
|
|
COMMENT= bluetooth network libraries
|
|
DISTNAME= bluetooth-libs-20081122
|
|
REVISION = 0
|
|
SHARED_LIBS= bluetooth 2.0 \
|
|
sdp 2.1
|
|
|
|
CATEGORIES= devel net
|
|
MAINTAINER= Uwe Stuehler <uwe@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.bsdx.de/openbsd/distfiles/
|
|
|
|
MAKE_ENV= LIBDIR=${TRUEPREFIX}/lib \
|
|
LIBbluetooth_VERSION=${LIBbluetooth_VERSION} \
|
|
LIBsdp_VERSION=${LIBsdp_VERSION}
|
|
FAKE_FLAGS= DEBUGLIBS=No \
|
|
MANDIR=${PREFIX}/man/man
|
|
NO_REGRESS= Yes
|
|
|
|
# See bsd.lib.mk:162
|
|
.if ${MACHINE_ARCH:Mmips64*}
|
|
PKG_ARGS+= -Dno_mips64=0
|
|
.else
|
|
PKG_ARGS+= -Dno_mips64=1
|
|
.endif
|
|
|
|
pre-build:
|
|
@perl -pi -e "s,/etc,${SYSCONFDIR},g" \
|
|
${WRKSRC}/libbluetooth/*.[ch3] \
|
|
${WRKSRC}/libsdp/*.[ch3]
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/libbluetooth/bluetooth.h ${PREFIX}/include
|
|
${INSTALL_DATA} ${WRKSRC}/libsdp/sdp.h ${PREFIX}/include
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/bluetooth
|
|
${INSTALL_DATA} ${WRKSRC}/examples/hosts \
|
|
${PREFIX}/share/examples/bluetooth
|
|
${INSTALL_DATA} ${WRKSRC}/examples/protocols \
|
|
${PREFIX}/share/examples/bluetooth
|
|
|
|
.include <bsd.port.mk>
|