summaryrefslogtreecommitdiff
path: root/japanese/word/Makefile
diff options
context:
space:
mode:
authorSADA Kenji <sada@FreeBSD.org>1999-09-02 16:16:35 +0000
committerSADA Kenji <sada@FreeBSD.org>1999-09-02 16:16:35 +0000
commit20e998732ac0cb4c8a22462d26fe742442618d42 (patch)
tree1209b4429a17ea34d6bb444caff78f5231bbf982 /japanese/word/Makefile
parentGNU Portable Threads (DEVELOPMENT VERSION): 1.1.x -> 1.2.x (diff)
A GPL2'ed draft Japanese word processor.
Notes
Notes: svn path=/head/; revision=21198
Diffstat (limited to 'japanese/word/Makefile')
-rw-r--r--japanese/word/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/japanese/word/Makefile b/japanese/word/Makefile
new file mode 100644
index 000000000000..47997f78bbac
--- /dev/null
+++ b/japanese/word/Makefile
@@ -0,0 +1,36 @@
+# New ports collection makefile for: word
+# Version required: 0.98
+# Date created: 30 August 1999
+# Whom: sada
+#
+# $Id$
+#
+
+DISTNAME= word-0.98
+PKGNAME= ja-${DISTNAME}
+CATEGORIES= japanese
+MASTER_SITES= http://www.linet.gr.jp/~mituiwa/
+
+MAINTAINER= sada@FreeBSD.ORG
+
+LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12
+
+DOCDIR= ${PREFIX}/share/doc/ja-word
+EXAMPLEDIR= ${PREFIX}/share/examples/ja-word
+
+do-build:
+ (cd ${WRKSRC}; \
+ ${CC} -o word `gtk12-config --cflags` `gtk12-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 .wordfontrc richo.wordfontrc
+ ${INSTALL_DATA} ${WRKSRC}/$i ${EXAMPLEDIR}
+.endfor
+
+.include <bsd.port.mk>