mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
7854dcaffb
input methods of the m17n library (devel/m17n-lib and textproc/m17n-contrib). The following methods are customisable at the moment: Unicode, Vietnamese, Malayalam, Tibetan, Thai, Japanese and Chinese. WWW: http://www.m17n.org http://www.m17n.org/common/im-config/index.html PR: ports/127893 Submitted by: Nikola Lecic <nikola.lecic at anthesphoria.net>
38 lines
927 B
Makefile
38 lines
927 B
Makefile
# New ports collection makefile for: m17n-im-config
|
|
# Date created: 1 October 2008
|
|
# Whom: Nikola Lecic <nikola.lecic@anthesphoria.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= m17n-im-config
|
|
PORTVERSION= 0.9.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://anthesphoria.net/FreeBSD/ports/distfiles/ \
|
|
http://www.m17n.org/common/im-config/
|
|
|
|
MAINTAINER= nikola.lecic@anthesphoria.net
|
|
COMMENT= A GUI for per-user configuration of m17n-lib input methods
|
|
|
|
LIB_DEPENDS= m17n.3:${PORTSDIR}/devel/m17n-lib
|
|
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_GNOME= gtk20 intltool intlhack pkgconfig glib20
|
|
USE_GETTEXT= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^pkgconfigdir = $${libdir}/pkgconfig|pkgconfigdir = $${prefix}/libdata/pkgconfig|' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|