mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
41 lines
907 B
Makefile
41 lines
907 B
Makefile
# New ports collection makefile for: ja-uim-prime
|
|
# Date created: 31 August 2003
|
|
# Whom: MANTANI Nobutaka <nobutaka@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTREVISION= 1
|
|
CATEGORIES= japanese
|
|
.if defined(WITHOUT_X11)
|
|
PKGNAMESUFFIX= -prime-nox11
|
|
.else
|
|
PKGNAMESUFFIX= -prime
|
|
.endif
|
|
|
|
COMMENT= Uim plugin using PRIME input method
|
|
|
|
BUILD_DEPENDS= prime:${PORTSDIR}/japanese/prime
|
|
LIB_DEPENDS= uim.6:${PORTSDIR}/textproc/uim
|
|
RUN_DEPENDS+= ${BUILD_DEPENDS}
|
|
|
|
MASTERDIR= ${.CURDIR}/../../textproc/uim
|
|
PKGDIR= ${.CURDIR}
|
|
CONFIGURE_ARGS= --with-prime
|
|
|
|
UIM_SLAVE= yes
|
|
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-uim_Makefile.in
|
|
|
|
do-build:
|
|
(cd ${WRKSRC}/uim && ${GMAKE} libuim-prime.la)
|
|
|
|
do-install:
|
|
(cd ${WRKSRC}/uim && \
|
|
${GMAKE} uim_plugin_LTLIBRARIES=libuim-prime.la install-uim_pluginLTLIBRARIES)
|
|
|
|
post-install:
|
|
${LOCALBASE}/bin/uim-module-manager --register prime
|
|
|
|
.include "${MASTERDIR}/Makefile"
|