blob: d36272e16fcc0fdd1a118012b74f1630e54535b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Created by: Nikola Lecic <nikola.lecic@anthesphoria.net>
# $FreeBSD$
PORTNAME= m17n-contrib
PORTVERSION= 1.1.14
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= m17n
MAINTAINER= nikola.lecic@anthesphoria.net
COMMENT= User-contributed input methods for the m17n library
BUILD_DEPENDS= m17n-db>=1.6.4:${PORTSDIR}/devel/m17n-db
RUN_DEPENDS= m17n-db>=1.6.4:${PORTSDIR}/devel/m17n-db
USE_GMAKE= yes
GNU_CONFIGURE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e 's|^m17n_scriptdir = $${m17ndir}/scripts|m17n_scriptdir = ${LOCALBASE}/bin|'\
${WRKSRC}/Makefile.in
.include <bsd.port.mk>
|