mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
edcf8b3594
Now try to use those variables everywhere around DIST* and PATCH* definitions as far as possible, for ease of the future updates and the neatness. Okay, 60% of `japanese' ports have been done. :)
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# New ports collection makefile for: LambdaMOO
|
|
# Date created: Jul 3 1999
|
|
# Whom: Seiichirou Hiraoka
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lambdamoo
|
|
PORTVERSION= 1.8.0r8
|
|
CATEGORIES= japanese net
|
|
MASTER_SITES= ftp://ftp.place.org/pub/moo/unofficial/ \
|
|
ftp://ftp.leo.chubu.ac.jp/pub/network/mnews/
|
|
DISTNAME= LambdaMOO-${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
mnews122.tar.gz
|
|
|
|
PATCH_SITES= http://people.FreeBSD.org/~flathill/distfiles/
|
|
PATCHFILES= ja-lambdamoo-19990704.patch.gz
|
|
|
|
MAINTAINER= flathill@FreeBSD.ORG
|
|
|
|
WRKSRC= ${WRKDIR}/MOO-${PORTVERSION}
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET=
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/moo ${PREFIX}/sbin
|
|
|
|
pre-build:
|
|
.for i in kanjilib.c kanjilib.h
|
|
${CP} ${WRKDIR}/mnews-1.22/kanjilib/$i ${WRKSRC}
|
|
.endfor
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/LambdaMOO
|
|
@(cd ${WRKSRC};\
|
|
${INSTALL_MAN} Minimal.db README README.Minimal \
|
|
${PREFIX}/share/doc/LambdaMOO; \
|
|
)
|
|
@${INSTALL_DATA} ${FILESDIR}/README.FreeBSD \
|
|
${PREFIX}/share/doc/LambdaMOO
|
|
.endif
|
|
|
|
|
|
.include <bsd.port.mk>
|