1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/lang/dice/Makefile
Dirk Meyer 95dc5b97dc flynn@energyhq.homeip.net wrote:
Dice is Matt Dillon's (yes, our FreeBSD guru :) portable 68000 C
Compiler. Found it odd that there's not a port for this, considering that the
author of the compiler is a FreeBSD commiter.

PR:		34449
Submitted by:	flynn@energyhq.homeip.net
2002-02-22 14:06:04 +00:00

35 lines
703 B
Makefile

# New ports collection makefile for: dice
# Date created: Wed Jan 30 13:26:52 CET 2002
# Whom: Miguel Mendez <flynn@energyhq.homeip.net>
#
# $FreeBSD$
#
PORTNAME= dice
PORTVERSION= 3.15
CATEGORIES= lang devel
MASTER_SITES= http://www.obviously.com/dice/
DISTNAME= ${PORTNAME}-rel-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= flynn@energyhq.homeip.net
post-patch:
@${CP} ${FILESDIR}/Makefile ${WRKSRC}
do-install:
@for i in ${WRKSRC}/ubin/*; \
do \
${INSTALL_PROGRAM} $$i ${PREFIX}/bin; \
done
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/dice
@for i in ${WRKSRC}/doc/* ; \
do \
${INSTALL_DATA} $$i ${PREFIX}/share/doc/dice; \
done
.endif
.include <bsd.port.mk>