mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# Created by: Florent Thoumie <flz@xbsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bnbt
|
|
PORTVERSION= 8.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= http://opensource.depthstrike.com/${PORTNAME}/
|
|
DISTNAME= ${SNAPSHOT}-${PORTNAME}${PORTVERSION:C/\.//}-src
|
|
SNAPSHOT= 20060727
|
|
|
|
MAINTAINER= flz@FreeBSD.org
|
|
COMMENT= A C++ BitTorrent Tracker
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_DOS2UNIX= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
USE_RC_SUBR= bnbt
|
|
|
|
PORTDOCS= footer.html header.html
|
|
|
|
.if defined(WITH_MYSQL)
|
|
ALL_TARGET= bnbtmysql
|
|
PKGNAMESUFFIX= -mysql
|
|
USE_MYSQL= yes
|
|
.else
|
|
ALL_TARGET= bnbt
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-O2|${CFLAGS} -I${PREFIX}/include| ; \
|
|
s|LFLAGS =|LFLAGS = -L${PREFIX}/lib/mysql|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's|\([a-z]*\.bnbt\)|${PREFIX}/etc/${PORTNAME}/\1|' \
|
|
${WRKSRC}/config.cpp
|
|
@${REINPLACE_CMD} -e 's|bnbt.cfg|${PREFIX}/etc/${PORTNAME}/bnbt.cfg|' \
|
|
${WRKSRC}/config.h ${WRKSRC}/config.cpp ${WRKSRC}/tracker.cpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${ALL_TARGET} ${PREFIX}/bin/bnbt
|
|
${MKDIR} ${PREFIX}/etc/${PORTNAME}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} /var/log/${PORTNAME}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|