mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
- Update Geany and plugins to 1.23
- 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
This commit is contained in:
parent
ecd489ff2a
commit
644aa2a709
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=314846
1
MOVED
1
MOVED
@ -4178,3 +4178,4 @@ www/nspluginwrapper-devel||2013-03-19|Removed: superceded by www/nspluginwrapper
|
||||
french/eficas_doc||2013-03-19|Removed: eficas is now able to open the documentation through a web browser so the pdf files are no longer included
|
||||
editors/openoffice.org-vcltesttool||2013-03-21|Removed
|
||||
editors/openoffice-3-devel|editors/openoffice-devel|2013-03-21|Renamed to match current version number
|
||||
devel/geany-plugin-gdb||2013-03-21|Removed from geany plugins distribution
|
||||
|
@ -493,11 +493,11 @@
|
||||
SUBDIR += geany
|
||||
SUBDIR += geany-plugin-addons
|
||||
SUBDIR += geany-plugin-codenav
|
||||
SUBDIR += geany-plugin-commander
|
||||
SUBDIR += geany-plugin-debugger
|
||||
SUBDIR += geany-plugin-devhelp
|
||||
SUBDIR += geany-plugin-doc
|
||||
SUBDIR += geany-plugin-extrasel
|
||||
SUBDIR += geany-plugin-gdb
|
||||
SUBDIR += geany-plugin-gendoc
|
||||
SUBDIR += geany-plugin-geniuspaste
|
||||
SUBDIR += geany-plugin-gproject
|
||||
@ -512,6 +512,7 @@
|
||||
SUBDIR += geany-plugin-pg
|
||||
SUBDIR += geany-plugin-pretty-printer
|
||||
SUBDIR += geany-plugin-prj
|
||||
SUBDIR += geany-plugin-scope
|
||||
SUBDIR += geany-plugin-sendmail
|
||||
SUBDIR += geany-plugin-shiftcolumn
|
||||
SUBDIR += geany-plugin-spellcheck
|
||||
@ -522,6 +523,7 @@
|
||||
SUBDIR += geany-plugin-webhelper
|
||||
SUBDIR += geany-plugin-xmlsnippets
|
||||
SUBDIR += geany-plugins
|
||||
SUBDIR += geany-plugins-l10n
|
||||
SUBDIR += gearmand
|
||||
SUBDIR += gecode
|
||||
SUBDIR += generate
|
||||
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-addons
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= addons
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-codenav
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= codenav
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
11
devel/geany-plugin-commander/Makefile
Normal file
11
devel/geany-plugin-commander/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin-commander
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
4
devel/geany-plugin-commander/pkg-descr
Normal file
4
devel/geany-plugin-commander/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
Commander is a plugin for Geany that provides a command panel for
|
||||
rapid access to any action.
|
||||
|
||||
WWW: http://plugins.geany.org/commander.html
|
10
devel/geany-plugin-commander/pkg-plist
Normal file
10
devel/geany-plugin-commander/pkg-plist
Normal file
@ -0,0 +1,10 @@
|
||||
lib/geany/commander.a
|
||||
lib/geany/commander.la
|
||||
lib/geany/commander.so
|
||||
%%DOCSDIR%%/commander/AUTHORS
|
||||
%%DOCSDIR%%/commander/COPYING
|
||||
%%DOCSDIR%%/commander/ChangeLog
|
||||
%%DOCSDIR%%/commander/NEWS
|
||||
%%DOCSDIR%%/commander/README
|
||||
@dirrm %%DOCSDIR%%/commander
|
||||
@dirrmtry %%DOCSDIR%%
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-debugger
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= debugger
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-devhelp
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -12,7 +12,5 @@ LIB_DEPENDS= wnck-1:${PORTSDIR}/x11-toolkits/libwnck \
|
||||
|
||||
USE_GNOME= gconf2
|
||||
|
||||
GEANY_PLUGIN= devhelp
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-doc
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= doc
|
||||
GEANY_PLUGIN_DIR= geanydoc
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-extrasel
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= extrasel
|
||||
GEANY_PLUGIN_DIR= geanyextrasel
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-gendoc
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -10,8 +10,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
LIB_DEPENDS= ctpl:${PORTSDIR}/textproc/ctpl
|
||||
RUN_DEPENDS= ${LOCALBASE}/bin/rst2html:${PORTSDIR}/textproc/py-docutils
|
||||
|
||||
GEANY_PLUGIN= gendoc
|
||||
GEANY_PLUGIN_DIR= geanygendoc
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-geniuspaste
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -9,7 +9,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= soup-2.4:${PORTSDIR}/devel/libsoup
|
||||
|
||||
GEANY_PLUGIN= geniuspaste
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-gproject
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= gproject
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-insertnum
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= insertnum
|
||||
GEANY_PLUGIN_DIR= geanyinsertnum
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-latex
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= latex
|
||||
GEANY_PLUGIN_DIR= geanylatex
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,25 +1,25 @@
|
||||
lib/geany/geanylatex.a
|
||||
lib/geany/geanylatex.la
|
||||
lib/geany/geanylatex.so
|
||||
%%DOCSDIR%%/bibtex_reference.png
|
||||
%%DOCSDIR%%/geanylatex.css
|
||||
%%DOCSDIR%%/geanylatex.html
|
||||
%%DOCSDIR%%/geanylatex.pdf
|
||||
%%DOCSDIR%%/geanylatex.tex
|
||||
%%DOCSDIR%%/geanylatex/AUTHORS
|
||||
%%DOCSDIR%%/geanylatex/COPYING
|
||||
%%DOCSDIR%%/geanylatex/ChangeLog
|
||||
%%DOCSDIR%%/geanylatex/NEWS
|
||||
%%DOCSDIR%%/geanylatex/README
|
||||
%%DOCSDIR%%/geanylatex2.html
|
||||
%%DOCSDIR%%/geanylatex3.html
|
||||
%%DOCSDIR%%/geanylatex4.html
|
||||
%%DOCSDIR%%/insert_environment.png
|
||||
%%DOCSDIR%%/insert_label.png
|
||||
%%DOCSDIR%%/insert_reference.png
|
||||
%%DOCSDIR%%/insert_usepackage.png
|
||||
%%DOCSDIR%%/latexwizard.png
|
||||
%%DOCSDIR%%/plugin_manager.png
|
||||
%%DOCSDIR%%/toolbar.png
|
||||
%%DOCSDIR%%/geanylatex/bibtex_reference.png
|
||||
%%DOCSDIR%%/geanylatex/geanylatex.css
|
||||
%%DOCSDIR%%/geanylatex/geanylatex.html
|
||||
%%DOCSDIR%%/geanylatex/geanylatex.pdf
|
||||
%%DOCSDIR%%/geanylatex/geanylatex.tex
|
||||
%%DOCSDIR%%/geanylatex/geanylatex2.html
|
||||
%%DOCSDIR%%/geanylatex/geanylatex3.html
|
||||
%%DOCSDIR%%/geanylatex/geanylatex4.html
|
||||
%%DOCSDIR%%/geanylatex/insert_environment.png
|
||||
%%DOCSDIR%%/geanylatex/insert_label.png
|
||||
%%DOCSDIR%%/geanylatex/insert_reference.png
|
||||
%%DOCSDIR%%/geanylatex/insert_usepackage.png
|
||||
%%DOCSDIR%%/geanylatex/latexwizard.png
|
||||
%%DOCSDIR%%/geanylatex/plugin_manager.png
|
||||
%%DOCSDIR%%/geanylatex/toolbar.png
|
||||
@dirrm %%DOCSDIR%%/geanylatex
|
||||
@dirrmtry %%DOCSDIR%%
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-lipsum
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= lipsum
|
||||
GEANY_PLUGIN_DIR= geanylipsum
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-lua
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -9,8 +9,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
USE_LUA= 5.1
|
||||
|
||||
GEANY_PLUGIN= lua
|
||||
GEANY_PLUGIN_DIR= geanylua
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-macro
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= macro
|
||||
GEANY_PLUGIN_DIR= geanymacro
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-miniscript
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= miniscript
|
||||
GEANY_PLUGIN_DIR= geanyminiscript
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-multiterm
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -10,7 +10,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala
|
||||
USE_GNOME= vte
|
||||
|
||||
GEANY_PLUGIN= multiterm
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-numberedbookmarks
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= numberedbookmarks
|
||||
GEANY_PLUGIN_DIR= geanynumberedbookmarks
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-pg
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -10,8 +10,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
LIB_DEPENDS= gpgme.19:${PORTSDIR}/security/gpgme
|
||||
RUN_DEPENDS= gpg2:${PORTSDIR}/security/gnupg
|
||||
|
||||
GEANY_PLUGIN= pg
|
||||
GEANY_PLUGIN_DIR= geanypg
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-pretty-printer
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= pretty-printer
|
||||
GEANY_PLUGIN_SWITCH= --enable-pretty_printer
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-prj
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= prj
|
||||
GEANY_PLUGIN_DIR= geanyprj
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
13
devel/geany-plugin-scope/Makefile
Normal file
13
devel/geany-plugin-scope/Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin-scope
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
USE_GNOME= vte
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
3
devel/geany-plugin-scope/pkg-descr
Normal file
3
devel/geany-plugin-scope/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
Scope is a graphical GDB front-end.
|
||||
|
||||
WWW: http://plugins.geany.org/scope.html
|
42
devel/geany-plugin-scope/pkg-plist
Normal file
42
devel/geany-plugin-scope/pkg-plist
Normal file
@ -0,0 +1,42 @@
|
||||
lib/geany/scope.a
|
||||
lib/geany/scope.la
|
||||
lib/geany/scope.so
|
||||
%%DOCSDIR%%/scope/AUTHORS
|
||||
%%DOCSDIR%%/scope/COPYING
|
||||
%%DOCSDIR%%/scope/ChangeLog
|
||||
%%DOCSDIR%%/scope/NEWS
|
||||
%%DOCSDIR%%/scope/README
|
||||
%%DOCSDIR%%/scope/html/codes.html
|
||||
%%DOCSDIR%%/scope/html/scope.html
|
||||
share/geany-plugins/scope/BreakPoint.png
|
||||
share/geany-plugins/scope/BreakPoint22.png
|
||||
share/geany-plugins/scope/Continue.png
|
||||
share/geany-plugins/scope/Continue22.png
|
||||
share/geany-plugins/scope/Continue24.png
|
||||
share/geany-plugins/scope/Kill.png
|
||||
share/geany-plugins/scope/Kill22.png
|
||||
share/geany-plugins/scope/Kill24.png
|
||||
share/geany-plugins/scope/Pause.png
|
||||
share/geany-plugins/scope/Pause22.png
|
||||
share/geany-plugins/scope/Pause24.png
|
||||
share/geany-plugins/scope/RunToCursor.png
|
||||
share/geany-plugins/scope/RunToCursor22.png
|
||||
share/geany-plugins/scope/RunToCursor24.png
|
||||
share/geany-plugins/scope/RunToMethod.png
|
||||
share/geany-plugins/scope/RunToMethod22.png
|
||||
share/geany-plugins/scope/RunToMethod24.png
|
||||
share/geany-plugins/scope/StepInto.png
|
||||
share/geany-plugins/scope/StepInto22.png
|
||||
share/geany-plugins/scope/StepInto24.png
|
||||
share/geany-plugins/scope/StepOut.png
|
||||
share/geany-plugins/scope/StepOut22.png
|
||||
share/geany-plugins/scope/StepOut24.png
|
||||
share/geany-plugins/scope/StepOver.png
|
||||
share/geany-plugins/scope/StepOver22.png
|
||||
share/geany-plugins/scope/StepOver24.png
|
||||
share/geany-plugins/scope/scope.glade
|
||||
@dirrm share/geany-plugins/scope
|
||||
@dirrmtry share/geany-plugins
|
||||
@dirrm %%DOCSDIR%%/scope/html
|
||||
@dirrm %%DOCSDIR%%/scope
|
||||
@dirrm %%DOCSDIR%%
|
@ -1,14 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-sendmail
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= sendmail
|
||||
GEANY_PLUGIN_DIR= geanysendmail
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-shiftcolumn
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= shiftcolumn
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-spellcheck
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -9,7 +9,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= enchant.1:${PORTSDIR}/textproc/enchant
|
||||
|
||||
GEANY_PLUGIN= spellcheck
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-tableconvert
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= tableconvert
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-treebrowser
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= treebrowser
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-updatechecker
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -9,7 +9,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= soup-2.4:${PORTSDIR}/devel/libsoup
|
||||
|
||||
GEANY_PLUGIN= updatechecker
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,15 +1,12 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-vc
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= vc
|
||||
GEANY_PLUGIN_DIR= geanyvc
|
||||
|
||||
OPTIONS_DEFINE= GTKSPELL
|
||||
OPTIONS_DEFAULT= GTKSPELL
|
||||
GTKSPELL_DESC= Spell checking support via GtkSpell
|
||||
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-webhelper
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
@ -9,7 +9,5 @@ COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2
|
||||
|
||||
GEANY_PLUGIN= webhelper
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,13 +1,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugin
|
||||
PORTNAME= geany-plugin-xmlsnippets
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
GEANY_PLUGIN= xmlsnippets
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
||||
|
13
devel/geany-plugins-l10n/Makefile
Normal file
13
devel/geany-plugins-l10n/Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany-plugins-l10n
|
||||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
COMMENT= Localization messages for Geany plugins
|
||||
|
||||
USES= pathfix
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
.include <bsd.port.mk>
|
3
devel/geany-plugins-l10n/pkg-descr
Normal file
3
devel/geany-plugins-l10n/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
Localization messages for Geany plugins.
|
||||
|
||||
WWW: http://plugins.geany.org
|
14
devel/geany-plugins-l10n/pkg-plist
Normal file
14
devel/geany-plugins-l10n/pkg-plist
Normal file
@ -0,0 +1,14 @@
|
||||
share/locale/be/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/ca/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/da/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/de/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/es/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/fr/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/gl/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/ja/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/nl/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/pt/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/ru/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/tr/LC_MESSAGES/geany-plugins.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/geany-plugins.mo
|
@ -13,14 +13,20 @@ NO_BUILD= yes
|
||||
|
||||
.include "${.CURDIR}/files/bsd.geany-plugins.mk"
|
||||
|
||||
OPTIONS_DEFINE= NLS
|
||||
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
|
||||
|
||||
# NLS option first, then plugins sorted in GEANY_PLUGINS_ALL
|
||||
NO_OPTIONS_SORT= yes
|
||||
|
||||
.for plugin in ${GEANY_PLUGINS_ALL}
|
||||
OPTIONS_DEFINE+= ${plugin:U}
|
||||
${plugin:U}_DESC= ${${plugin}_DESC}
|
||||
${plugin:U}_DEP= geany-plugin-${plugin}>=0:${PORTSDIR}/devel/geany-plugin-${plugin}
|
||||
.endfor
|
||||
|
||||
NLS_DEP= geany-plugins-l10n>=0:${PORTSDIR}/devel/geany-plugins-l10n
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.for opt in ${OPTIONS_DEFINE}
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (geany-plugins-1.22.tar.bz2) = a0dcf0cb00ac260670ef8fae682aade60c7c3075c88121fd21f3aecdff84e1ce
|
||||
SIZE (geany-plugins-1.22.tar.bz2) = 2088130
|
||||
SHA256 (geany-plugins-1.23.tar.bz2) = ff26860edd1cbaea88c73bd8c2bd02f9ba04046674f05d3696baf66582e2bf58
|
||||
SIZE (geany-plugins-1.23.tar.bz2) = 2811640
|
||||
|
@ -3,30 +3,37 @@
|
||||
.include "${.CURDIR}/../../devel/geany-plugins/files/bsd.geany-plugins.mk"
|
||||
|
||||
MASTER_SITES= http://plugins.geany.org/geany-plugins/
|
||||
PKGNAMESUFFIX?= -${GEANY_PLUGIN}
|
||||
DISTNAME= geany-plugins-${PORTVERSION}
|
||||
DISTINFO_FILE= ${.CURDIR}/../../devel/geany-plugins/distinfo
|
||||
|
||||
BUILD_DEPENDS+= ${LOCALBASE}/bin/geany:${PORTSDIR}/devel/geany \
|
||||
${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash
|
||||
BUILD_DEPENDS+= ${LOCALBASE}/bin/geany:${PORTSDIR}/devel/geany
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/geany:${PORTSDIR}/devel/geany
|
||||
|
||||
CONFLICTS_INSTALL= geany-plugins-0.*
|
||||
|
||||
EXTRA_PATCHES= ${.CURDIR}/../../devel/geany-plugins/files/extrapatch-configure
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_AUTOTOOLS+= libtool
|
||||
USE_PKGCONFIG= build
|
||||
USE_GETTEXT= yes
|
||||
USE_GNOME+= gtk20
|
||||
|
||||
GEANY_PLUGIN_DIR?= ${GEANY_PLUGIN}
|
||||
GEANY_PLUGIN_SWITCH?= --enable-${GEANY_PLUGIN_DIR}
|
||||
# geany-plugins-l10n is not a plugin, thus special treatment
|
||||
.if ${PORTNAME} == "geany-plugins-l10n"
|
||||
GEANY_PLUGIN= NLS
|
||||
NLS_DIR= po
|
||||
NLS_SWITCH= --enable-nls
|
||||
.endif
|
||||
|
||||
CONFIGURE_ARGS+= ${GEANY_PLUGIN_SWITCH}
|
||||
GEANY_PLUGIN?= ${PORTNAME:S,geany-plugin-,,}
|
||||
${GEANY_PLUGIN}_DIR?= ${GEANY_PLUGIN}
|
||||
${GEANY_PLUGIN}_SWITCH?= --enable-${${GEANY_PLUGIN}_DIR}
|
||||
|
||||
BUILD_WRKSRC= ${WRKSRC}/${GEANY_PLUGIN_DIR}
|
||||
CONFIGURE_ARGS+= ${${GEANY_PLUGIN}_SWITCH}
|
||||
|
||||
BUILD_WRKSRC= ${WRKSRC}/${${GEANY_PLUGIN}_DIR}
|
||||
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
||||
|
||||
DATADIR= share/geany-plugins
|
||||
@ -34,15 +41,16 @@ DOCSDIR= share/doc/geany-plugins
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MNLS}
|
||||
.if ${PORTNAME} != "geany-plugins-l10n"
|
||||
. if ${PORT_OPTIONS:MNLS}
|
||||
USE_GETTEXT= yes
|
||||
.else
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-nls
|
||||
. endif
|
||||
.endif
|
||||
|
||||
pre-configure:
|
||||
${REINPLACE_CMD} -e 's,/bin/sh,${LOCALBASE}/bin/bash,g' \
|
||||
-e 's,zlib,,g' \
|
||||
${REINPLACE_CMD} -e 's,zlib,,g' \
|
||||
${WRKSRC}/configure
|
||||
|
||||
post-configure:
|
||||
|
@ -1,13 +1,13 @@
|
||||
# $FreeBSD$
|
||||
|
||||
GEANY_VER= 1.22
|
||||
GEANY_VER= 1.23
|
||||
GEANY_PLUGINS_ALL= addons \
|
||||
codenav \
|
||||
commander \
|
||||
debugger \
|
||||
devhelp \
|
||||
doc \
|
||||
extrasel \
|
||||
gdb \
|
||||
gendoc \
|
||||
geniuspaste \
|
||||
gproject \
|
||||
@ -22,6 +22,7 @@ GEANY_PLUGINS_ALL= addons \
|
||||
pg \
|
||||
pretty-printer \
|
||||
prj \
|
||||
scope \
|
||||
sendmail \
|
||||
shiftcolumn \
|
||||
spellcheck \
|
||||
@ -32,13 +33,15 @@ GEANY_PLUGINS_ALL= addons \
|
||||
webhelper \
|
||||
xmlsnippets
|
||||
|
||||
# markdown plugin is excluded, requires peg-markdown
|
||||
|
||||
addons_DESC= various small addons
|
||||
codenav_DESC= some facilities for navigating in the code
|
||||
commander_DESC= command panel for rapid access to any action
|
||||
debugger_DESC= debugging support (via GDB currently)
|
||||
devhelp_DESC= API documentation browser
|
||||
doc_DESC= execute command on the word at cursor position
|
||||
extrasel_DESC= additional selection tools
|
||||
gdb_DESC= debugging support via the GNU Debugger
|
||||
gendoc_DESC= generate documentation from the sources comments
|
||||
geniuspaste_DESC= pastebins support
|
||||
gproject_DESC= extension of Geany's project management
|
||||
@ -47,12 +50,14 @@ latex_DESC= LaTeX support
|
||||
lipsum_DESC= Lorem Ipsum generator
|
||||
lua_DESC= Lua scripting
|
||||
macro_DESC= user defined macros
|
||||
# markdown_DESC= real-time preview of rendered Markdown
|
||||
miniscript_DESC= pipe text/documents via script (shell, perl, awk, etc.)
|
||||
multiterm_DESC= multi-tabbed virtual terminals emulator
|
||||
numberedbookmarks_DESC= additional numbered bookmarks
|
||||
pg_DESC= encrypt, decrypt and verify signatures with GnuPG
|
||||
pretty-printer_DESC= formats XML and make it human-readable
|
||||
prj_DESC= alternative project manager
|
||||
scope_DESC= graphical GDB front-end
|
||||
sendmail_DESC= send a document as attachment
|
||||
shiftcolumn_DESC= move blocks of text horizontally
|
||||
spellcheck_DESC= spell check via Enchant
|
||||
@ -62,3 +67,20 @@ updatechecker_DESC= check for new version of Geany
|
||||
vc_DESC= access to different version-control systems
|
||||
webhelper_DESC= web development facilities
|
||||
xmlsnippets_DESC= XML/HTML tag autocompletion
|
||||
|
||||
doc_DIR= geanydoc
|
||||
extrasel_DIR= geanyextrasel
|
||||
gendoc_DIR= geanygendoc
|
||||
insertnum_DIR= geanyinsertnum
|
||||
latex_DIR= geanylatex
|
||||
lipsum_DIR= geanylipsum
|
||||
lua_DIR= geanylua
|
||||
macro_DIR= geanymacro
|
||||
miniscript_DIR= geanyminiscript
|
||||
numberedbookmarks_DIR= geanynumberedbookmarks
|
||||
pg_DIR= geanypg
|
||||
prj_DIR= geanyprj
|
||||
sendmail_DIR= geanysendmail
|
||||
vc_DIR= geanyvc
|
||||
|
||||
pretty-printer_SWITCH= --enable-pretty_printer
|
||||
|
72
devel/geany-plugins/files/extrapatch-configure
Normal file
72
devel/geany-plugins/files/extrapatch-configure
Normal file
@ -0,0 +1,72 @@
|
||||
--- ./configure.orig 2013-03-10 17:01:27.000000000 +0000
|
||||
+++ ./configure 2013-03-21 00:22:04.580741068 +0000
|
||||
@@ -21101,69 +21101,3 @@
|
||||
expanded_docdir=$(eval echo $expanded_docdir)
|
||||
|
||||
|
||||
- cat <<GPEOF
|
||||
-
|
||||
-${PACKAGE}-${VERSION}
|
||||
-
|
||||
- Build Environment:
|
||||
- Geany version: ${GEANY_VERSION}
|
||||
- Install prefix: ${prefix}
|
||||
- Datadir: ${expanded_datadir}/${PACKAGE_TARNAME}
|
||||
- Libdir: ${expanded_libdir}/${PACKAGE_TARNAME}
|
||||
- Docdir: ${expanded_docdir}
|
||||
- Plugins path: ${geanypluginsdir}
|
||||
-
|
||||
- Build Features:
|
||||
-GPEOF
|
||||
-
|
||||
-
|
||||
- while read line; do
|
||||
- test -z "$line" && break;
|
||||
- plugin=" ${line%:*}:"
|
||||
- status=${line#*:}
|
||||
- let extracols=34-${#plugin}
|
||||
- echo -n "$plugin"
|
||||
- for (( i=0; $i<$extracols; i++ )); do
|
||||
- echo -n ' '
|
||||
- done
|
||||
- echo $status
|
||||
- done << GPEOF
|
||||
-$build_feature_statusmsg
|
||||
-GPEOF
|
||||
-
|
||||
- echo
|
||||
- echo " Plugins:"
|
||||
-
|
||||
- while read line; do
|
||||
- test -z "$line" && break;
|
||||
- plugin=" ${line%:*}:"
|
||||
- status=${line#*:}
|
||||
- let extracols=34-${#plugin}
|
||||
- echo -n "$plugin"
|
||||
- for (( i=0; $i<$extracols; i++ )); do
|
||||
- echo -n ' '
|
||||
- done
|
||||
- echo $status
|
||||
- done << GPEOF
|
||||
-$plugins_statusmsg
|
||||
-GPEOF
|
||||
-
|
||||
- echo
|
||||
- echo " Features:"
|
||||
-
|
||||
- while read line; do
|
||||
- test -z "$line" && break;
|
||||
- plugin=" ${line%:*}:"
|
||||
- status=${line#*:}
|
||||
- let extracols=34-${#plugin}
|
||||
- echo -n "$plugin"
|
||||
- for (( i=0; $i<$extracols; i++ )); do
|
||||
- echo -n ' '
|
||||
- done
|
||||
- echo $status
|
||||
- done << GPEOF
|
||||
-$feature_statusmsg
|
||||
-GPEOF
|
||||
-
|
||||
- echo
|
||||
-
|
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= geany
|
||||
PORTVERSION= 1.22
|
||||
PORTVERSION= 1.23
|
||||
CATEGORIES= devel editors
|
||||
MASTER_SITES= http://download.geany.org/ SF
|
||||
|
||||
@ -15,13 +15,14 @@ GNU_CONFIGURE= yes
|
||||
INSTALLS_ICONS= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomehack gtk20
|
||||
USE_GNOME= gtk20
|
||||
USE_PKGCONFIG= build
|
||||
USES= pathfix
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
MAKE_JOBS_SAFE= yes
|
||||
|
||||
OPTIONS_DEFINE= VTE NLS
|
||||
OPTIONS_DEFINE= VTE NLS DOCS
|
||||
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
|
||||
VTE_DESC= Embedded virtual terminal
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (geany-1.22.tar.bz2) = 901a35a7395ef10a80fb10b3ab63bae3871693a4e82d56388e9521a27877577e
|
||||
SIZE (geany-1.22.tar.bz2) = 3198289
|
||||
SHA256 (geany-1.23.tar.bz2) = cdd4a772694803c837ae59e56f7bdc2faba174509317211f522e7d25dfcbe8b0
|
||||
SIZE (geany-1.23.tar.bz2) = 3622917
|
||||
|
@ -83,10 +83,13 @@ share/applications/geany.desktop
|
||||
%%DATADIR%%/filetype_extensions.conf
|
||||
%%DATADIR%%/filetypes.Cython.conf
|
||||
%%DATADIR%%/filetypes.Genie.conf
|
||||
%%DATADIR%%/filetypes.Go.conf
|
||||
%%DATADIR%%/filetypes.Scala.conf
|
||||
%%DATADIR%%/filetypes.abaqus
|
||||
%%DATADIR%%/filetypes.abc
|
||||
%%DATADIR%%/filetypes.actionscript
|
||||
%%DATADIR%%/filetypes.ada
|
||||
%%DATADIR%%/filetypes.asciidoc
|
||||
%%DATADIR%%/filetypes.asm
|
||||
%%DATADIR%%/filetypes.c
|
||||
%%DATADIR%%/filetypes.caml
|
||||
@ -138,6 +141,7 @@ share/applications/geany.desktop
|
||||
%%DATADIR%%/filetypes.xml
|
||||
%%DATADIR%%/filetypes.yaml
|
||||
%%DATADIR%%/geany.glade
|
||||
%%DATADIR%%/geany.gtkrc
|
||||
%%DATADIR%%/html_entities.tags
|
||||
%%DATADIR%%/pascal.tags
|
||||
%%DATADIR%%/php.tags
|
||||
@ -160,6 +164,15 @@ share/applications/geany.desktop
|
||||
%%DATADIR%%/templates/function
|
||||
%%DATADIR%%/templates/gpl
|
||||
%%DATADIR%%/ui_toolbar.xml
|
||||
share/icons/Tango/16x16/actions/geany-save-all.png
|
||||
share/icons/Tango/24x24/actions/geany-save-all.png
|
||||
share/icons/Tango/32x32/actions/geany-save-all.png
|
||||
share/icons/Tango/48x48/actions/geany-save-all.png
|
||||
share/icons/Tango/icon-theme.cache
|
||||
share/icons/Tango/scalable/actions/geany-save-all.svg
|
||||
share/icons/hicolor/16x16/actions/geany-build.png
|
||||
share/icons/hicolor/16x16/actions/geany-close-all.png
|
||||
share/icons/hicolor/16x16/actions/geany-save-all.png
|
||||
share/icons/hicolor/16x16/apps/classviewer-class.png
|
||||
share/icons/hicolor/16x16/apps/classviewer-macro.png
|
||||
share/icons/hicolor/16x16/apps/classviewer-member.png
|
||||
@ -169,7 +182,19 @@ share/icons/hicolor/16x16/apps/classviewer-other.png
|
||||
share/icons/hicolor/16x16/apps/classviewer-struct.png
|
||||
share/icons/hicolor/16x16/apps/classviewer-var.png
|
||||
share/icons/hicolor/16x16/apps/geany.png
|
||||
share/icons/hicolor/24x24/actions/geany-build.png
|
||||
share/icons/hicolor/24x24/actions/geany-close-all.png
|
||||
share/icons/hicolor/24x24/actions/geany-save-all.png
|
||||
share/icons/hicolor/32x32/actions/geany-build.png
|
||||
share/icons/hicolor/32x32/actions/geany-close-all.png
|
||||
share/icons/hicolor/32x32/actions/geany-save-all.png
|
||||
share/icons/hicolor/48x48/actions/geany-build.png
|
||||
share/icons/hicolor/48x48/actions/geany-close-all.png
|
||||
share/icons/hicolor/48x48/actions/geany-save-all.png
|
||||
share/icons/hicolor/48x48/apps/geany.png
|
||||
share/icons/hicolor/scalable/actions/geany-build.svg
|
||||
share/icons/hicolor/scalable/actions/geany-close-all.svg
|
||||
share/icons/hicolor/scalable/actions/geany-save-all.svg
|
||||
share/icons/hicolor/scalable/apps/geany.svg
|
||||
%%NLS%%share/locale/ar/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/ast/LC_MESSAGES/geany.mo
|
||||
@ -181,10 +206,14 @@ share/icons/hicolor/scalable/apps/geany.svg
|
||||
%%NLS%%share/locale/el/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/en_GB/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/et/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/eu/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/fa/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/fi/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/gl/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/he/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/hi/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/hu/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/id/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/it/LC_MESSAGES/geany.mo
|
||||
@ -203,6 +232,7 @@ share/icons/hicolor/scalable/apps/geany.svg
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/sk/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/sl/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/sr/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/sv/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/tr/LC_MESSAGES/geany.mo
|
||||
%%NLS%%share/locale/uk/LC_MESSAGES/geany.mo
|
||||
@ -215,6 +245,32 @@ share/icons/hicolor/scalable/apps/geany.svg
|
||||
%%NLS%%@dirrmtry share/locale/kk
|
||||
%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES
|
||||
%%NLS%%@dirrmtry share/locale/ast
|
||||
@dirrmtry share/icons/hicolor/scalable/apps
|
||||
@dirrmtry share/icons/hicolor/scalable/actions
|
||||
@dirrmtry share/icons/hicolor/scalable
|
||||
@dirrmtry share/icons/hicolor/48x48/apps
|
||||
@dirrmtry share/icons/hicolor/48x48/actions
|
||||
@dirrmtry share/icons/hicolor/48x48
|
||||
@dirrmtry share/icons/hicolor/32x32/actions
|
||||
@dirrmtry share/icons/hicolor/32x32
|
||||
@dirrmtry share/icons/hicolor/24x24/actions
|
||||
@dirrmtry share/icons/hicolor/24x24
|
||||
@dirrmtry share/icons/hicolor/16x16/apps
|
||||
@dirrmtry share/icons/hicolor/16x16/actions
|
||||
@dirrmtry share/icons/hicolor/16x16
|
||||
@dirrmtry share/icons/hicolor
|
||||
@dirrmtry share/icons/Tango/scalable/actions
|
||||
@dirrmtry share/icons/Tango/scalable
|
||||
@dirrmtry share/icons/Tango/48x48/actions
|
||||
@dirrmtry share/icons/Tango/48x48
|
||||
@dirrmtry share/icons/Tango/32x32/actions
|
||||
@dirrmtry share/icons/Tango/32x32
|
||||
@dirrmtry share/icons/Tango/24x24/actions
|
||||
@dirrmtry share/icons/Tango/24x24
|
||||
@dirrmtry share/icons/Tango/16x16/actions
|
||||
@dirrmtry share/icons/Tango/16x16
|
||||
@dirrmtry share/icons/Tango
|
||||
@dirrmtry share/icons
|
||||
@dirrm %%DATADIR%%/templates/files
|
||||
@dirrm %%DATADIR%%/templates
|
||||
@dirrm %%DATADIR%%/colorschemes
|
||||
|
Loading…
Reference in New Issue
Block a user