1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/japanese/skkinput3/Makefile
Alexandre C. Guimarães d0fc635f72 Mk/bsd.sites.mk: Update URL of MASTER_SITE_OSDN to one that supports geographical load balancing
- update all affected ports

PR:		244164
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Differential Revision:	https://reviews.freebsd.org/D24955
2020-07-24 06:28:59 +00:00

59 lines
1.4 KiB
Makefile

# Created by: KOMATSU Shinichiro <koma2@jiro.c.u-tokyo.ac.jp>
# $FreeBSD$
PORTNAME= skkinput3
PORTVERSION= 3.0.6
PORTREVISION= 9
CATEGORIES= japanese x11
MASTER_SITES= OSDN/${PORTNAME}
DISTNAME= skkinput-${PORTVERSION}
MAINTAINER= koma2@lovepeers.org
COMMENT= SKK-like Japanese input method for X11
USES= imake xorg
USE_GCC= any
USE_CSTD= gnu89
USE_XORG= ice sm x11 xext xmu xt
MAKE_JOBS_UNSAFE= yes
PORTDOCS= *.jis dot.skkinput ChangeLog
OPTIONS_DEFINE= SKK10 DOCS
OPTIONS_RADIO= SKKSERVER
OPTIONS_RADIO_SKKSERVER= DBSKKD RSKKSERV
SKKSERVER_DESC= Skkserver selection
DBSKKD_DESC= Use ja-dbskkd-cdb as skkserver
RSKKSERV_DESC= Use ja-rskkserv as skkserver
SKK10_DESC= Install SKK10 elisp files
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSKK10}
PLIST_SUB+= SKK8="@comment " SKK10=""
.else
PLIST_SUB+= SKK8="" SKK10="@comment "
.endif
.if ${PORT_OPTIONS:MDBSKKD}
RUN_DEPENDS= ${LOCALBASE}/libexec/dbskkd-cdb:japanese/dbskkd-cdb
.elif ${PORT_OPTIONS:MRSKKSERV}
RUN_DEPENDS= ${LOCALBASE}/libexec/rskkserv:japanese/rskkserv
.else
RUN_DEPENDS= ${LOCALBASE}/sbin/skkserv:japanese/skkserv
.endif
post-patch:
.if ${PORT_OPTIONS:MSKK10}
@${REINPLACE_CMD} -e '/\(#define.*UseSkk8\)/ s/^/XCOMM /' \
-e '/XCOMM.*#define.*UseSkk10/ s/XCOMM[[:space:]]*//' \
${WRKSRC}/Skkinput.conf
.endif
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>