mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 08:10:31 -04:00
The markdown requires includes from webkit2-gtk3 which have redefine some typedefs. Typedef redefinitions are not supported by base GCC, so use ports GCC for this plugin on GCC architectures. PR: 234940 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
72 lines
1.9 KiB
Text
72 lines
1.9 KiB
Text
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../../devel/geany-plugins/files/bsd.geany-plugins.mk"
|
|
|
|
MASTER_SITES= http://plugins.geany.org/geany-plugins/
|
|
DISTNAME= geany-plugins-${PORTVERSION}
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/geany-plugins/distinfo
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES+= gettext-tools gmake gnome libtool pkgconfig tar:bzip2
|
|
USE_GNOME+= intltool
|
|
|
|
FLAVORS?= gtk3 gtk2
|
|
FLAVOR?= ${FLAVORS:[1]}
|
|
|
|
gtk2_CONFLICTS_INSTALL= geany-plugin-${GEANY_PLUGIN}
|
|
gtk2_PKGNAMESUFFIX= -gtk2
|
|
gtk2_LIB_DEPENDS+= libgeany.so:devel/geany@gtk2
|
|
|
|
gtk3_CONFLICTS_INSTALL= geany-plugin-${GEANY_PLUGIN}-gtk2
|
|
gtk3_LIB_DEPENDS+= libgeany.so:devel/geany@gtk3
|
|
|
|
# geany-plugins-l10n is not a plugin, thus special treatment
|
|
.if ${PORTNAME} == "geany-plugins-l10n"
|
|
GEANY_PLUGIN= po
|
|
po_SWITCH= --enable-nls
|
|
USES+= localbase
|
|
.else
|
|
.if ${PORTNAME} == "geany-plugin-markdown"
|
|
# required by this plugin on GCC only archs
|
|
USES+= compiler:c++11-lang
|
|
.endif
|
|
INSTALL_TARGET= install-strip
|
|
USE_GNOME+= cairo gdkpixbuf2
|
|
|
|
.if ${FLAVOR} == gtk3
|
|
CONFIGURE_ARGS+= --enable-gtk3
|
|
USE_GNOME+= gtk30
|
|
.else
|
|
LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
CONFIGURE_ARGS+= --disable-gtk3
|
|
USE_GNOME+= gtk20
|
|
.endif
|
|
.endif
|
|
|
|
GEANY_PLUGIN?= ${PORTNAME:S,geany-plugin-,,}
|
|
${GEANY_PLUGIN}_DIR?= ${GEANY_PLUGIN}
|
|
${GEANY_PLUGIN}_SWITCH?= --enable-${${GEANY_PLUGIN}_DIR}
|
|
|
|
CONFIGURE_ARGS+= ${${GEANY_PLUGIN}_SWITCH}
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/${${GEANY_PLUGIN}_DIR}
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
|
|
DATADIR= share/geany-plugins
|
|
DOCSDIR= share/doc/geany-plugins
|
|
|
|
.if ${GEANY_UTIL:M${GEANY_PLUGIN}}
|
|
|
|
gtk2_LIB_DEPENDS+= libgeanypluginutils.so:devel/geany-plugin-utilslib@gtk2
|
|
gtk3_LIB_DEPENDS+= libgeanypluginutils.so:devel/geany-plugin-utilslib@gtk3
|
|
CONFIGURE_ARGS+= --enable-utilslib
|
|
|
|
pre-build:
|
|
(cd ${WRKSRC}/utils; ${DO_MAKE_BUILD} ${ALL_TARGET})
|
|
|
|
.endif
|
|
|
|
post-configure:
|
|
${FIND} ${BUILD_WRKSRC} -name Makefile | ${XARGS} \
|
|
${REINPLACE_CMD} -e '/^geanypluginsdir/s,${LOCALBASE},${PREFIX},'
|