mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
dc84281c1a
- Use GTK+ 3 as default GUI toolkit. - textproc/uim-qt5 installs KDE Plasma 5 applet. - Bump PORTREVISION of ports that depends on textproc/uim
30 lines
674 B
Makefile
30 lines
674 B
Makefile
# Created by: MANTANI Nobutaka <nobutaka@FreeBSD.org>
|
|
|
|
PKGNAMESUFFIX= -gtk
|
|
|
|
COMMENT= GTK+ modules of uim input method
|
|
|
|
USE_GNOME= cairo gdkpixbuf2 gtk20
|
|
LIB_DEPENDS= libuim.so:textproc/uim \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
|
|
MASTERDIR= ${.CURDIR}/../../textproc/uim
|
|
PKGDIR= ${.CURDIR}
|
|
CONFIGURE_ARGS= --with-gtk2 --enable-pref
|
|
|
|
UIM_SLAVE= yes
|
|
|
|
.if defined(WITHOUT_X11)
|
|
IGNORE= requires X11
|
|
.endif
|
|
|
|
do-build:
|
|
(cd ${WRKSRC}/uim && ${MAKE_CMD} libuim-x-util.la libuim-counted-init.la)
|
|
(cd ${WRKSRC}/gtk2 && ${MAKE_CMD})
|
|
|
|
do-install:
|
|
(cd ${WRKSRC}/gtk2 && ${MAKE_CMD} DESTDIR=${STAGEDIR} install)
|
|
|
|
.include "${MASTERDIR}/Makefile"
|