diff options
Diffstat (limited to 'games/robotfindskitten/Makefile')
-rw-r--r-- | games/robotfindskitten/Makefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/games/robotfindskitten/Makefile b/games/robotfindskitten/Makefile index 1bcd54a99393..712d4ac96f83 100644 --- a/games/robotfindskitten/Makefile +++ b/games/robotfindskitten/Makefile @@ -1,13 +1,8 @@ -# Ports collection makefile for: robotfindskitten -# Date created: Wed Dec 3, 2003 -# Whom: Ceri Davies (ceri@FreeBSD.org) -# +# Created by: Ceri Davies (ceri@FreeBSD.org) # $FreeBSD$ -# PORTNAME= robotfindskitten -PORTVERSION= 1.7320508.406 -PORTREVISION= 1 +PORTVERSION= 2.7182818.701 PORTEPOCH= 1 CATEGORIES= games MASTER_SITES= http://robotfindskitten.org/download/POSIX/ @@ -15,14 +10,21 @@ MASTER_SITES= http://robotfindskitten.org/download/POSIX/ MAINTAINER= skreuzer@FreeBSD.org COMMENT= Yet another zen simulation +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + GNU_CONFIGURE= YES -USE_GNOME= glib12 -INFO= ${PORTNAME} -PLIST_FILES= bin/robotfindskitten MAN6= robotfindskitten.6 -post-extract: - ${RM} ${WRKSRC}/doc/robotfindskitten.info +post-patch: + @${REINPLACE_CMD} -e 's,/usr/share/games/robotfindskitten,${DATADIR},' \ + ${WRKSRC}/doc/robotfindskitten.6 + +do-install: + ${MKDIR} ${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/src/robotfindskitten ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/nki/vanilla.nki ${DATADIR} + ${INSTALL_MAN} ${WRKSRC}/doc/robotfindskitten.6 ${MANPREFIX}/man/man6 .include <bsd.port.mk> |