9c84193d39
- Project moved to GitLab - Add dependency to create man page Reported by: portscout
45 lines
976 B
Makefile
45 lines
976 B
Makefile
# Created by: janos.mohacsi@bsd.hu
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ski
|
|
PORTVERSION= 6.13
|
|
CATEGORIES= games python
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Skiing simulation with curses interface in python
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= xmlto:textproc/xmlto
|
|
|
|
USES= python:3.2+,run
|
|
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= esr
|
|
GL_COMMIT= 0b50570a28a99de2ea797f703b104ec03835d24d
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man6/${PORTNAME}.6.gz \
|
|
share/applications/${PORTNAME}.desktop \
|
|
share/appdata/${PORTNAME}.xml \
|
|
share/pixmaps/${PORTNAME}.png
|
|
|
|
PORTDOCS= NEWS README
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/bin|${PREFIX}/bin|; \
|
|
s|/usr/share/man|${PREFIX}/man|; \
|
|
s|/usr/share|${PREFIX}/share|' \
|
|
${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's|/usr/bin/env python|${PYTHON_CMD}|' \
|
|
${WRKSRC}/${PORTNAME}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|