c86e9d9724
Approved by: portmgr blanket
120 lines
3.4 KiB
Makefile
120 lines
3.4 KiB
Makefile
# Created by: Henry Hu <henry.hu.sh@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ibus
|
|
PORTVERSION= 1.5.11
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${PORTVERSION}/ \
|
|
http://github.com/${PORTNAME}/${PORTNAME}/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= henry.hu.sh@gmail.com
|
|
COMMENT= Intelligent Input Bus for Linux / Unix OS
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.83.0:devel/py-dbus \
|
|
${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.83.0:devel/py-dbus \
|
|
${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/__init__.py:devel/py-notify \
|
|
${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg \
|
|
${LOCALBASE}/share/xml/iso-codes/iso_639.xml:misc/iso-codes \
|
|
setxkbmap:x11/setxkbmap
|
|
LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib
|
|
|
|
USES= compiler cpe gmake libtool pathfix pkgconfig python:2
|
|
USE_GNOME= glib20 intltool librsvg2 pygobject3
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
OPTIONS_SUB= yes
|
|
INSTALL_TARGET= install-strip
|
|
CONFIGURE_ARGS= --disable-tests --with-html-dir=${PREFIX}/share/doc
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= NLS GTK2 GTK3 VALA GINTRO PYTHON_LIB DOCS XIM ENGINE
|
|
OPTIONS_RADIO= CONFIG
|
|
OPTIONS_RADIO_CONFIG= GCONF DCONF
|
|
OPTIONS_DEFAULT= GTK2 GTK3 VALA GINTRO PYTHON_LIB DCONF XIM ENGINE
|
|
|
|
GTK2_DESC= Install GTK2 client
|
|
GTK3_DESC= Install GTK3 client and panel
|
|
VALA_DESC= Install vala binding
|
|
GINTRO_DESC= Install GObject Introspection data
|
|
PYTHON_LIB_DESC= Install ibus Python libraries
|
|
GCONF_DESC= Use GConf for configuration
|
|
DCONF_DESC= Use dconf for configuration
|
|
XIM_DESC= Install XIM server
|
|
ENGINE_DESC= Install ibus simple engine
|
|
CPE_VENDOR= ibus_project
|
|
|
|
NLS_USES= gettext
|
|
NLS_USES_OFF= gettext-tools
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
GTK2_USE= GNOME=gtk20
|
|
GTK2_CONFIGURE_ENABLE= gtk2
|
|
|
|
GTK3_USE= GNOME=gtk30 XORG=x11
|
|
GTK3_CONFIGURE_ENABLE= gtk3 libnotify
|
|
GTK3_LIB_DEPENDS= libnotify.so:devel/libnotify
|
|
GTK3_LIBS= -lX11
|
|
|
|
VALA_BUILD_DEPENDS= vala>=0.20:lang/vala
|
|
VALA_CONFIGURE_ENABLE= vala
|
|
|
|
GINTRO_BUILD_DEPENDS= gobject-introspection>=0.6.8:devel/gobject-introspection
|
|
GINTRO_RUN_DEPENDS= gobject-introspection>=0.6.8:devel/gobject-introspection
|
|
GINTRO_CONFIGURE_ON= --enable-introspection=yes
|
|
GINTRO_CONFIGURE_OFF= --enable-introspection=no
|
|
|
|
PYTHON_LIB_USE= GNOME=pygtk2
|
|
PYTHON_LIB_CONFIGURE_ENABLE= python-library
|
|
|
|
GCONF_USE= GNOME=gconf2
|
|
GCONF_CONFIGURE_ENABLE= gconf
|
|
|
|
DCONF_USE= GNOME=dconf,gconf2
|
|
DCONF_CONFIGURE_ENABLE= dconf
|
|
|
|
DOCS_CONFIGURE_ENABLE= gtk-doc-html
|
|
|
|
XIM_CONFIGURE_ENABLE= xim
|
|
|
|
ENGINE_CONFIGURE_ENABLE= engine
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if empty(PORT_OPTIONS:MGINTRO) && !empty(PORT_OPTIONS:MVALA)
|
|
BROKEN= Vala bindings require GObject Introspection
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} < 46
|
|
USE_GCC= yes
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGCONF}
|
|
GCONF_SCHEMAS= ibus.schemas
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDCONF}
|
|
GLIB_SCHEMAS= org.freedesktop.ibus.gschema.xml
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MENGINE} || ${PORT_OPTIONS:MGTK3} || ${PORT_OPTIONS:MGCONF} || ${PORT_OPTIONS:MDCONF}
|
|
PLIST_SUB+= COMPDIR=""
|
|
.else
|
|
PLIST_SUB+= COMPDIR="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|/var/lib/dbus|/var/db/dbus|g' ${WRKSRC}/src/ibusshare.c
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/xdg/autostart
|
|
${INSTALL_DATA} ${PATCHDIR}/ibus.desktop ${STAGEDIR}${PREFIX}/etc/xdg/autostart
|
|
|
|
.include <bsd.port.post.mk>
|