mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
36 lines
800 B
Makefile
36 lines
800 B
Makefile
# New ports collection makefile for: word
|
|
# Date created: 30 August 1999
|
|
# Whom: sada
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= word
|
|
PORTVERSION= 0.99.12
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= http://www.linet.gr.jp/~mituiwa/
|
|
|
|
MAINTAINER= sada@FreeBSD.ORG
|
|
|
|
USE_GTK= yes
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/ja-word
|
|
EXAMPLEDIR= ${PREFIX}/share/examples/ja-word
|
|
|
|
do-build:
|
|
(cd ${WRKSRC}; \
|
|
${CC} -o word `${GTK_CONFIG} --cflags` `${GTK_CONFIG} --libs` word.c )
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/word ${PREFIX}/bin
|
|
${MKDIR} ${DOCDIR}
|
|
.for i in Changes LICENSE README
|
|
${INSTALL_DATA} ${WRKSRC}/$i ${DOCDIR}
|
|
.endfor
|
|
${MKDIR} ${EXAMPLEDIR}
|
|
.for i in default-wordfontrc ricoh-VFlib.ps ricoh-wordfontrc vine-VFlib.ps vine-wordfontrc
|
|
${INSTALL_DATA} ${WRKSRC}/config/$i ${EXAMPLEDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|