mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
8d6597e0bb
With hat: portmgr Sponsored by: Absolight
38 lines
892 B
Makefile
38 lines
892 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bitmessage
|
|
PORTVERSION= 0.4.4
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-p2p
|
|
|
|
MAINTAINER= yuri@rawbw.com
|
|
COMMENT= Secure P2P communications client
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \
|
|
${PYTHON_PKGNAMEPREFIX}qt4-core>=${PYQT4_VERSION}:devel/py-qt4-core \
|
|
${PYTHON_PKGNAMEPREFIX}qt4-gui>=${PYQT4_VERSION}:x11-toolkits/py-qt4-gui
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Bitmessage
|
|
GH_PROJECT= PyBitmessage
|
|
|
|
USES= python
|
|
USE_OPENSSL= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|python2|${PYTHON_CMD}| ; s|share/man|man|' ${WRKSRC}/Makefile
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC} && \
|
|
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \
|
|
-d ${WRKSRC} -f ${WRKSRC} && \
|
|
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \
|
|
-d ${WRKSRC} -f ${WRKSRC})
|
|
|
|
.include <bsd.port.mk>
|