mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
a8713d15f4
- Enable `long double` C99 math usage - Switch 9.x back to building with GCC Changes: http://www.boost.org/users/history/ PR: 199601 Submitted by: Chen Xu, bapt, amdmi3, truckman (based on) Reviewed by: rakuco (kde) (earlier version) Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions) Approved by: bapt (office)
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
# Created by: Thierry Thomas <thierry@pompo.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= twister-core
|
|
PORTVERSION= 0.9.34
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 5
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net-p2p
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= Experimental peer-to-peer microblogging software
|
|
|
|
LICENSE= BSD3CLAUSE MIT
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_powerpc64= Does not build
|
|
|
|
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
|
|
libleveldb.so:databases/leveldb
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= miguelfreitas
|
|
|
|
USES= bdb:48 autoreconf:build gmake iconv libtool ssl
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_WRKSRC=${WRKSRC}/libtorrent
|
|
CONFIGURE_ARGS= --with-libiconv \
|
|
--with-boost=${LOCALBASE} \
|
|
--with-boost-system=boost_system
|
|
MAKEFILE= makefile.freebsd
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
MAKE_ENV= BOOST_INCLUDE_PATH=${LOCALBASE}/include \
|
|
BOOST_LIB_PATH=${LOCALBASE}/lib \
|
|
BDB_INCLUDE_PATH=${BDB_INCLUDE_DIR} \
|
|
BDB_LIB_PATH=${BDB_LIB_DIR} \
|
|
ICONV_LIB="${ICONV_LIB}"
|
|
|
|
PLIST_FILES= bin/twisterd
|
|
PORTDOCS= README.md
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if (${OPSYS} == FreeBSD && ${OSVERSION} < 1000000)
|
|
WITH_OPENSSL_PORT= yes
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|%%PORTVERSION%%|${PORTVERSION}|' \
|
|
${WRKSRC}/share/genbuild.sh
|
|
|
|
pre-configure:
|
|
(cd ${CONFIGURE_WRKSRC} && ./autotool.sh)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/twisterd ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|