either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
69 lines
2.3 KiB
Makefile
69 lines
2.3 KiB
Makefile
# $NetBSD: Makefile,v 1.35 2014/01/25 10:30:11 wiz Exp $
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of 1.5.4
|
|
|
|
.include "Makefile.common"
|
|
|
|
COMMENT= Intelligent Input Bus
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config intltool msgfmt gmake
|
|
USE_LANGUAGES= c c++
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
GCONF_SCHEMAS+= ibus.schemas
|
|
PKGCONFIG_OVERRIDE+= ibus-1.0.pc.in
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
|
|
CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale
|
|
CONFIGURE_ARGS+= --enable-dconf
|
|
CONFIGURE_ARGS+= --enable-gconf
|
|
CONFIGURE_ARGS+= --enable-gtk2
|
|
CONFIGURE_ARGS+= --enable-gtk3
|
|
CONFIGURE_ARGS+= --enable-surrounding-text
|
|
CONFIGURE_ARGS+= --enable-introspection=yes
|
|
|
|
SUBST_CLASSES+= dbus
|
|
SUBST_STAGE.dbus= post-configure
|
|
SUBST_FILES.dbus= src/ibusshare.c
|
|
SUBST_SED.dbus= -e 's,/var/lib/dbus/machine-id,${VARBASE}/db/dbus/machine-id,g'
|
|
|
|
BUILD_DEFS+= PKG_SYSCONFBASE VARBASE
|
|
MANCOMPRESSED= yes
|
|
|
|
INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples/ibus
|
|
MAKE_DIRS+= ${PKG_SYSCONFDIR}/dconf/db/ibus.d
|
|
MAKE_DIRS+= ${PKG_SYSCONFDIR}/dconf/profile
|
|
CONF_FILES+= ${PREFIX}/share/examples/ibus/dconf/db/ibus.d/00-upstream-settings \
|
|
${PKG_SYSCONFDIR}/dconf/db/ibus.d/00-upstream-settings
|
|
CONF_FILES+= ${PREFIX}/share/examples/ibus/dconf/profile/ibus \
|
|
${PKG_SYSCONFDIR}/dconf/profile/ibus
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(CC_VERSION:Mgcc-4.1.[0-9]*)
|
|
BUILDLINK_TRANSFORM+= rm:-Wno-unused-but-set-variable
|
|
.endif
|
|
|
|
BUILDLINK_API_DEPENDS.GConf+= GConf>=2.12
|
|
.include "../../devel/GConf/schemas.mk"
|
|
.include "../../devel/glib2/schemas.mk"
|
|
.include "../../devel/dconf/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.9.6
|
|
BUILDLINK_DEPMETHOD.gobject-introspection+= build
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.26.0
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
PY_PATCHPLIST= yes
|
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
|
.include "../../textproc/iso-codes/buildlink3.mk"
|
|
GTK2_IMMODULES= yes
|
|
.include "../../x11/gtk2/modules.mk"
|
|
.include "../../x11/gtk3/modules.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|