mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
6e381a9d53
using python PR: 201077 Reviewed by: mat With hat: portmgr Differential Revision: https://reviews.freebsd.org/D2955
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# Created by: Nicola Vitale <nivit@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xpn
|
|
PORTVERSION= 1.2.6
|
|
PORTREVISION= 5
|
|
CATEGORIES= news python
|
|
MASTER_SITES= http://xpn.altervista.org/codice/
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= X Python Newsreader
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gtk2>=2.24.0:${PORTSDIR}/x11-toolkits/py-gtk2 \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>=2.7.9:${PORTSDIR}/databases/py-sqlite3
|
|
|
|
NO_BUILD= yes
|
|
|
|
# we want a versioned python command
|
|
python_OLD_CMD= /usr/bin/env python
|
|
|
|
SHEBANG_FILES= ${XPN}
|
|
SUB_FILES= ${PORTNAME}
|
|
SUB_LIST= PYTHON_CMD=${PYTHON_CMD} XPN=${XPN}
|
|
|
|
USES= gettext python:2 shebangfix
|
|
|
|
XPN= ${PORTNAME}.py
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${XPN} ${STAGEDIR}${DATADIR}/${XPN}
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
(cd ${WRKSRC} && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} "-mindepth 2")
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|