644aa2a709
- Add ports for new plugins (commander, scope) and localization forgotten after splitting (geany-plugins-l10n). geanyGDB plugin has been removed upstream. markdown plugin excluded from ports as it requires currently missing port for libmarkdown. - Patch configure script and remove build dependence on shells/bash
24 lines
559 B
Makefile
24 lines
559 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= geany-plugin-vc
|
|
PORTVERSION= ${GEANY_VER}
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= makc@FreeBSD.org
|
|
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
|
|
|
OPTIONS_DEFINE= GTKSPELL
|
|
OPTIONS_DEFAULT= GTKSPELL
|
|
GTKSPELL_DESC= Spell checking support via GtkSpell
|
|
|
|
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
|
# bsd.port.options.mk is already included
|
|
|
|
.if ${PORT_OPTIONS:MGTKSPELL}
|
|
LIB_DEPENDS+= gtkspell:${PORTSDIR}/textproc/gtkspell
|
|
CONFIGURE_ARGS+= --enable-gtkspell
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gtkspell
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|