blob: 5fd7208e0af63115e18a73ee6baee8367f41134e (
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
34
|
# Created by: CHOI Junho <cjh@kr.freebsd.org>
# $FreeBSD$
PORTNAME= imhangul
PORTVERSION= 2.1.0
PORTREVISION= 1
CATEGORIES= korean
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= jkim@FreeBSD.org
COMMENT= GTK+-2.0 Hangul input module
LICENSE= GPLv2
LIB_DEPENDS= hangul.1:${PORTSDIR}/korean/libhangul
USE_AUTOTOOLS= libtool
USE_BZIP2= yes
USE_GMAKE= yes
USE_GNOME= gtk20
GNU_CONFIGURE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
LDFLAGS+= -L${LOCALBASE}/lib
CPPFLAGS+= -I${LOCALBASE}/include
PLIST_SUB+= NLS=""
.else
PLIST_SUB+= NLS="@comment "
.endif
.include <bsd.port.mk>
|