summaryrefslogtreecommitdiff
path: root/games/smiley/Makefile
diff options
context:
space:
mode:
authorLars Koeller <lkoeller@FreeBSD.org>2001-12-15 12:29:15 +0000
committerLars Koeller <lkoeller@FreeBSD.org>2001-12-15 12:29:15 +0000
commitb367a57c84547f34b89f18cabfc2101af408239c (patch)
treeb60af7de5204cb9ec7386a82f4f3124073510364 /games/smiley/Makefile
parentUpdate to 2.0.4 (diff)
New port of smiley, a "smiley server" which generates or explains any
kind of known smiley.
Notes
Notes: svn path=/head/; revision=51568
Diffstat (limited to 'games/smiley/Makefile')
-rw-r--r--games/smiley/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/games/smiley/Makefile b/games/smiley/Makefile
new file mode 100644
index 000000000000..d22d025e792b
--- /dev/null
+++ b/games/smiley/Makefile
@@ -0,0 +1,32 @@
+# New ports collection makefile for: smiley
+# Date created: 15.12.2001
+# Whom: Lars Köller <Lars.Koeller@Uni-Bielefeld.DE>
+#
+# $FreeBSD$
+#
+
+PORTNAME= smiley
+PORTVERSION= 4.0
+CATEGORIES= games
+MASTER_SITES= ftp://ftp.fu-berlin.de/pub/unix/misc/smiley/
+
+MAINTAINER= Lars.Koeller@Uni-Bielefeld.de
+
+WRKSRC= ${WRKDIR}/${PORTNAME}
+
+MAN1= "smiley.1"
+
+post-patch:
+ ${CP} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.input
+ ${SED} "s/%CFLAGS%/${CFLAGS}/" ${WRKSRC}/Makefile.input > ${WRKSRC}/Makefile
+ ${RM} -f ${WRKSRC}/Makefile.input
+
+do-install:
+ ${MKDIR} ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${MANPREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
+.endif
+
+.include <bsd.port.mk>