mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# New ports collection makefile for: tribler
|
|
# Date created: 2007-04-10
|
|
# Whom: alepulver
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tribler
|
|
PORTVERSION= 3.6.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= SF
|
|
DISTNAME= Tribler_${PORTVERSION}_src
|
|
|
|
MAINTAINER= alepulver@FreeBSD.org
|
|
COMMENT= Streaming capable P2P network client based on BitTorrent
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/M2Crypto/__init__.py:${PORTSDIR}/security/py-m2crypto \
|
|
${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb
|
|
|
|
USE_ZIP= yes
|
|
USE_PYTHON= 2.4+
|
|
USE_WX= 2.6+
|
|
WX_COMPS= python
|
|
WX_UNICODE= yes
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC} && \
|
|
${RM} -rf *.bat *.exe.* *.nsi *.sh *LICENSE.txt debian mac && \
|
|
${MV} lastest_version.txt protocol_v3.txt readme.txt \
|
|
tribler.xpm ..
|
|
|
|
do-build:
|
|
@(${ECHO_CMD} "#!${SH}"; ${ECHO_CMD} "cd ${DATADIR} || exit 1"; \
|
|
${ECHO_CMD} 'exec ${PYTHON_CMD} abc.py "$$@"') > ${WRKDIR}/${PORTNAME}
|
|
@${PYTHON_CMD} -Oc 'import compileall; \
|
|
compileall.compile_dir("${WRKSRC}", force=1)'
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin
|
|
${MKDIR} ${DATADIR}
|
|
${CP} -R ${WRKSRC}/* ${DATADIR}
|
|
@${FIND} ${DATADIR} -type d -print0 | ${XARGS} -0 ${CHMOD} ${BINMODE}
|
|
@${FIND} ${DATADIR} -type f -print0 | ${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
|
${MKDIR} ${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKDIR}/tribler.xpm ${PREFIX}/share/pixmaps
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/*.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|