mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
04e5f714fd
PR: ports/146249 Submitted by: Nikola Lecic <nikola.lecic@anthesphoria.net>
40 lines
943 B
Makefile
40 lines
943 B
Makefile
# New ports collection makefile for: uim-m17nlib
|
|
# Date created: 31 August 2003
|
|
# Whom: MANTANI Nobutaka <nobutaka@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.if defined(WITHOUT_X11)
|
|
PKGNAMESUFFIX= -m17nlib-nox11
|
|
.else
|
|
PKGNAMESUFFIX= -m17nlib
|
|
.endif
|
|
|
|
COMMENT= Uim plugin using m17n library input method
|
|
|
|
BUILD_DEPENDS= m17n-db:${PORTSDIR}/devel/m17n-db
|
|
LIB_DEPENDS= m17n.4:${PORTSDIR}/devel/m17n-lib \
|
|
uim.6:${PORTSDIR}/textproc/uim
|
|
RUN_DEPENDS= m17n-db:${PORTSDIR}/devel/m17n-db
|
|
|
|
MASTERDIR= ${.CURDIR}/../../textproc/uim
|
|
PKGDIR= ${.CURDIR}
|
|
CONFIGURE_ARGS= --with-m17nlib
|
|
|
|
UIM_SLAVE= yes
|
|
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-uim_Makefile.in
|
|
|
|
do-build:
|
|
(cd ${WRKSRC}/uim && ${GMAKE} libuim-m17nlib.la)
|
|
|
|
do-install:
|
|
(cd ${WRKSRC}/uim && \
|
|
${GMAKE} uim_plugin_LTLIBRARIES=libuim-m17nlib.la install-uim_pluginLTLIBRARIES)
|
|
|
|
post-install:
|
|
${LOCALBASE}/bin/uim-module-manager --register m17nlib
|
|
|
|
.include "${MASTERDIR}/Makefile"
|