mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
d5464ff49c
PR: 23387 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp> Approved by: maintainer
39 lines
970 B
Makefile
39 lines
970 B
Makefile
# New ports collection makefile for: Ng
|
|
# Date created: 18 November 1998
|
|
# Whom: Kawaguti Ginga <ginga@athena.club.ne.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ng
|
|
PORTVERSION= 1.4.2.1
|
|
CATEGORIES= japanese editors
|
|
MASTER_SITES= http://ha3.seikyou.ne.jp/home/amura/archives/ng/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:R}
|
|
|
|
PATCH_SITES= ${MASTER_SITES}
|
|
PATCHFILES= ${PORTNAME}-${PORTVERSION:R}-line.patch
|
|
|
|
MAINTAINER= ginga@athena.club.ne.jp
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LIBS="-ltermcap"
|
|
ALL_TARGET= ng
|
|
|
|
PORTDOCS= CHANGES.doc CHANGES.new Ng.FAQ Ng.doc Ng.ref Ng.tut \
|
|
README.Ng README.SKG
|
|
|
|
post-patch:
|
|
@(cd ${WRKSRC}; ${LN} -sf sys/bsd/Makefile . )
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ng ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/ja/ng
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/${file} ${PREFIX}/share/doc/ja/ng/${file}.euc-jp
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|