diff options
author | jkim <jkim@FreeBSD.org> | 2014-01-07 09:38:37 +0800 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2014-01-07 09:38:37 +0800 |
commit | 46c9f6e941b979dce92a41562169ed07b61aa9dc (patch) | |
tree | 64070149af4768a7319d29c0a2c7b9752d4d5c7a /korean | |
parent | 2e7013c0e4196ce2c8593742e8718747d831e02b (diff) | |
download | freebsd-ports-gnome-46c9f6e941b979dce92a41562169ed07b61aa9dc.tar.gz freebsd-ports-gnome-46c9f6e941b979dce92a41562169ed07b61aa9dc.tar.zst freebsd-ports-gnome-46c9f6e941b979dce92a41562169ed07b61aa9dc.zip |
Stagefy, convert to USES=gmake, and convert LIB_DEPENDS to new format.
Diffstat (limited to 'korean')
-rw-r--r-- | korean/scim-hangul/Makefile | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/korean/scim-hangul/Makefile b/korean/scim-hangul/Makefile index 4d611e450294..a26babb4e25a 100644 --- a/korean/scim-hangul/Makefile +++ b/korean/scim-hangul/Makefile @@ -11,30 +11,22 @@ COMMENT= SCIM IMEngine module for Korean(Hangul) input LICENSE= GPLv2 -LIB_DEPENDS= hangul:${PORTSDIR}/korean/libhangul \ - scim-1.0:${PORTSDIR}/textproc/scim +LIB_DEPENDS= libhangul.so:${PORTSDIR}/korean/libhangul \ + libscim-1.0.so:${PORTSDIR}/textproc/scim GNU_CONFIGURE= yes -USE_GMAKE= yes -USES= pkgconfig +USES= gmake pkgconfig OPTIONS_DEFINE= NLS +OPTIONS_SUB= NLS -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MNLS} USES+= gettext -PLIST_SUB+= NLS="" +CONFIGURE_ARGS+=--enable-nls .else CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " .endif -post-install: - @${CAT} ${PKGMESSAGE} - @${ECHO} - @${ECHO} To display this message again, type \`pkg_info -D ${PKGNAME}\' - @${ECHO} - .include <bsd.port.mk> |