diff options
author | knu <knu@FreeBSD.org> | 2002-09-21 07:30:38 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-09-21 07:30:38 +0800 |
commit | b607c568ca3c30f6f0c5afef188858154908df3b (patch) | |
tree | 786dfddd81f8903a759dd8b20f06b01c20b53e6e /japanese/skkinput/Makefile | |
parent | 5c829cc630266fa2f509eeadee0088d6ef2fa3f9 (diff) | |
download | freebsd-ports-gnome-b607c568ca3c30f6f0c5afef188858154908df3b.tar.gz freebsd-ports-gnome-b607c568ca3c30f6f0c5afef188858154908df3b.tar.zst freebsd-ports-gnome-b607c568ca3c30f6f0c5afef188858154908df3b.zip |
- Update to 2.05.
- Install English manpage and more documents, and do not install a
copy of GPL.
- Support NOPORTDOCS properly.
- Add WWW.
- Hand maintainership over to the submitter. (MAINTAINER timeout)
Diffstat (limited to 'japanese/skkinput/Makefile')
-rw-r--r-- | japanese/skkinput/Makefile | 36 |
1 files changed, 25 insertions, 11 deletions
diff --git a/japanese/skkinput/Makefile b/japanese/skkinput/Makefile index 916b8cfbef8e..9ce1725b15cc 100644 --- a/japanese/skkinput/Makefile +++ b/japanese/skkinput/Makefile @@ -6,26 +6,40 @@ # PORTNAME= skkinput -PORTVERSION= 2.03 +PORTVERSION= 2.05 CATEGORIES= japanese x11 -MASTER_SITES= http://member.nifty.ne.jp/Tatari_SAKAMOTO/ +MASTER_SITES= http://downloads.sourceforge.jp/skkinput2/864/ -MAINTAINER= yasuf@big.or.jp +MAINTAINER= koma2@jiro.c.u-tokyo.ac.jp +USE_IMAKE= yes + +.include <bsd.port.pre.mk> + +# sanity check +.if defined(WITH_DBSKKD) && defined(WITH_RSKKSERV) +.error Cannot define both WITH_DBSKKD and WITH_RSKKSERV simultaneously. +.endif + +.if defined(WITH_DBSKKD) || exists(${LOCALBASE}/libexec/dbskkd-cdb) && !defined(WITH_RSKKSERV) +RUN_DEPENDS= ${LOCALBASE}/libexec/dbskkd-cdb:${PORTSDIR}/japanese/dbskkd-cdb +.elif defined(WITH_RSKKSERV) || exists(${LOCALBASE}/libexec/rskkserv) && !defined(WITH_DBSKKD) +RUN_DEPENDS= ${LOCALBASE}/libexec/rskkserv:${PORTSDIR}/japanese/rskkserv +.else RUN_DEPENDS= ${LOCALBASE}/sbin/skkserv:${PORTSDIR}/japanese/skkserv +.endif -USE_IMAKE= yes -MANLANG= ja +MANLANG= "" ja MAN1= skkinput.1 MANCOMPRESSED= yes -DOCS= *.jis skkinput.doc myeval/skkinputlisp.doc dot.skkinput +DOCS= *.jis ChangeLog skkinput.doc \ + myeval/skkinputlisp.doc dot.skkinput -post-install: .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/skkinput - @( cd ${WRKSRC} ; \ - ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/skkinput ) +post-install: + @${MKDIR} ${DOCSDIR} + @( cd ${WRKSRC} ; ${INSTALL_DATA} ${DOCS} ${DOCSDIR}) .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |