mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
d16f7bfb92
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
35 lines
705 B
Makefile
35 lines
705 B
Makefile
# New ports collection makefile for: senso
|
|
# Date created: 2002-01-09
|
|
# Whom: trevor
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= senso
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.v-i-t.de/mirkos_hp/pub/
|
|
EXTRACT_SUFX= .py
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Game to challenge short-term memory
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
|
|
|
|
USE_PYTHON= yes
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKDIR}
|
|
|
|
do-build:
|
|
${SED} -e "s:/usr/bin:${PREFIX}/bin:" < ${_DISTDIR}/${DISTFILES} \
|
|
> ${WRKDIR}/senso
|
|
${ECHO_CMD} "bin/senso" > ${PLIST}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/senso ${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|