mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
38 lines
993 B
Makefile
38 lines
993 B
Makefile
# Created by: MANTANI Nobutaka <nobutaka@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMESUFFIX= -gtk3
|
|
|
|
COMMENT= GTK+ 3.x modules of uim input method
|
|
|
|
USE_GNOME= gtk30
|
|
LIB_DEPENDS= uim:${PORTSDIR}/textproc/uim
|
|
|
|
MASTERDIR= ${.CURDIR}/../../textproc/uim
|
|
PKGDIR= ${.CURDIR}
|
|
CONFIGURE_ARGS= --with-gtk3 --enable-pref --enable-default-toolkit=gtk3
|
|
|
|
UIM_SLAVE= yes
|
|
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-gtk3_candwin_Makefile.in \
|
|
${PATCHDIR}/extra-patch-gtk3_dict_Makefile.in \
|
|
${PATCHDIR}/extra-patch-gtk3_immodule_Makefile.in \
|
|
${PATCHDIR}/extra-patch-gtk3_pad_Makefile.in \
|
|
${PATCHDIR}/extra-patch-gtk3_pref_Makefile.in \
|
|
${PATCHDIR}/extra-patch-gtk3_switcher_Makefile.in \
|
|
${PATCHDIR}/extra-patch-gtk3_toolbar_Makefile.in
|
|
|
|
.if defined(WITHOUT_X11)
|
|
IGNORE= requires X11
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
do-build:
|
|
(cd ${WRKSRC}/uim && ${GMAKE} libuim-x-util.la libuim-counted-init.la)
|
|
(cd ${WRKSRC}/gtk3 && ${GMAKE})
|
|
|
|
do-install:
|
|
(cd ${WRKSRC}/gtk3 && ${GMAKE} install)
|
|
|
|
.include "${MASTERDIR}/Makefile"
|