forked from Lainports/freebsd-ports
The graphics/py-pillow6 port was removed in r559976 as it was for Python 2.7 only and no longer referenced in the default cases. However it was still defined in Mk/Uses/python.mk in PY_PILLOW, leaving a dangling reference. Remove it from Mk/Uses/python.mk, leaving only the Python 3 version of that port, graphics/py-pillow, defined and bump the minimal verion of Python to 3.6 for affected ports.
27 lines
472 B
Makefile
27 lines
472 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cs
|
|
PORTVERSION= 0.9.6
|
|
PORTREVISION= 2
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://njhurst.com/programming/cross-stitch/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Cross Stitch software
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
RUN_DEPENDS= ${PY_PILLOW}
|
|
|
|
NO_BUILD= yes
|
|
|
|
USES= python:run,3.6+ shebangfix tar:tgz
|
|
SHEBANG_FILES= xs.py
|
|
|
|
PLIST_FILES= bin/xs
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${INSTALL_SCRIPT} xs.py ${STAGEDIR}${PREFIX}/bin/xs)
|
|
|
|
.include <bsd.port.mk>
|