View | Details | Raw Unified | Return to bug 160385
Collapse All | Expand All

(-)zim/Makefile (-64 / +43 lines)
Lines 6-86 Link Here
6
#
6
#
7
7
8
PORTNAME=	zim
8
PORTNAME=	zim
9
PORTVERSION=	0.29
9
PORTVERSION=	0.52
10
CATEGORIES=	editors perl5
10
CATEGORIES=	editors python
11
MASTER_SITES=	http://www.zim-wiki.org/downloads/perl-zim/
11
MASTER_SITES=	http://www.zim-wiki.org/downloads/
12
DISTNAME=	Zim-${PORTVERSION}
13
12
14
MAINTAINER=	acm@FreeBSD.org
13
MAINTAINER=	acm@FreeBSD.org
15
COMMENT=	WYSIWYG text editor written in Gtk2-Perl
14
COMMENT=	A Desktop Wiki Editor
16
15
17
BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Gtk2.pm:${PORTSDIR}/x11-toolkits/p5-Gtk2 \
16
LICENSE=	GPLv2
18
		${SITE_PERL}/File/MimeInfo.pm:${PORTSDIR}/devel/p5-File-MimeInfo \
17
19
		${SITE_PERL}/File/DesktopEntry.pm:${PORTSDIR}/devel/p5-File-DesktopEntry
18
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}xdg>=0:${PORTSDIR}/devel/py-xdg \
20
RUN_DEPENDS:=	${BUILD_DEPENDS} \
19
		${LOCALBASE}/bin/xdg-open:${PORTSDIR}/devel/xdg-utils \
21
		update-mime-database:${PORTSDIR}/misc/shared-mime-info \
20
		${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3
22
		xdg-icon-resource:${PORTSDIR}/devel/xdg-utils
21
22
INSTALLS_ICONS=	yes
23
USE_GETTEXT=	yes
24
USE_GNOME=	desktopfileutils gtk20 pygtk2 pygobject
25
USE_PYTHON=	2.5-2.7
26
USE_PYDISTUTILS=	yes
23
27
24
USE_GNOME=	gtk20 desktopfileutils
25
PERL_CONFIGURE=	yes
26
MAN1=		zim.1
28
MAN1=		zim.1
27
MAN3=		Gtk2::Ex::DesktopEntryMenu.3 \
28
		Gtk2::Ex::HyperTextBuffer.3 \
29
		Gtk2::Ex::HyperTextView.3 \
30
		Gtk2::Ex::PathBar.3 \
31
		Zim.3 \
32
		Zim::Events.3 \
33
		Zim::FS.3 \
34
		Zim::FS::Bazaar.3 \
35
		Zim::FS::Subversion.3 \
36
		Zim::Formats.3 \
37
		Zim::Formats::Html.3 \
38
		Zim::Formats::Pod.3 \
39
		Zim::Formats::Txt2tags.3 \
40
		Zim::Formats::Wiki.3 \
41
		Zim::GUI.3 \
42
		Zim::GUI::Automount.3 \
43
		Zim::GUI::Calendar.3 \
44
		Zim::GUI::Component.3 \
45
		Zim::GUI::Daemon.3 \
46
		Zim::GUI::DiagramEditor.3 \
47
		Zim::GUI::EquationEditor.3 \
48
		Zim::GUI::ExportDialog.3 \
49
		Zim::GUI::FindReplaceDialog.3 \
50
		Zim::GUI::NotebookDialog.3 \
51
		Zim::GUI::PageView.3 \
52
		Zim::GUI::PathBar.3 \
53
		Zim::GUI::PreferencesDialog.3 \
54
		Zim::GUI::PropertiesDialog.3 \
55
		Zim::GUI::SearchDialog.3 \
56
		Zim::GUI::Spell.3 \
57
		Zim::GUI::TODOListDialog.3 \
58
		Zim::GUI::TrayIcon.3 \
59
		Zim::GUI::TreeView.3 \
60
		Zim::GUI::VersionsDialog.3 \
61
		Zim::History.3 \
62
		Zim::OS::Win32.3 \
63
		Zim::Page.3 \
64
		Zim::Selection.3 \
65
		Zim::Store.3 \
66
		Zim::Store::Cached.3 \
67
		Zim::Store::Files.3 \
68
		Zim::Store::Gjots.3 \
69
		Zim::Store::Man.3 \
70
		Zim::Template.3 \
71
		Zim::Utils.3
72
29
73
OPTIONS=	TRAYICON	"Support trayicon"	on \
30
OPTIONS=	GNUR "Add support of plot editor based on GNU R" Off \
74
		SPELL	"Support spell"	on
31
		LATEX "Add equation editor support" Off \
32
		GRAPHVIZ "Add diagram editor support" Off \
33
		SCROT "Add screenshot taking and inserting support" Off \
34
		GNUPLOT "Add plot editor support" Off \
35
		BZR "Add version control for notebooks support" Off
75
36
76
.include <bsd.port.pre.mk>
37
.include <bsd.port.pre.mk>
77
38
78
.if !defined(WITHOUT_TRAYICON)
39
.if defined(WITH_GNUR)
79
BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Gtk2/TrayIcon.pm:${PORTSDIR}/x11-toolkits/p5-Gtk2-TrayIcon
40
RUN_DEPENDS+=	R:${PORTSDIR}/math/R
41
.endif
42
.if defined(WITH_LATEX)
43
RUN_DEPENDS+=	latex:${PORTSDIR}/print/teTeX-base
44
.endif
45
.if defined(WITH_GRAPHVIZ)
46
RUN_DEPENDS+=	fdp:${PORTSDIR}/graphics/graphviz
47
.endif
48
.if defined(WITH_SCROT)
49
RUN_DEPENDS+=	scrot:${PORTSDIR}/graphics/scrot
50
.endif
51
.if defined(WITH_GNUPLOT)
52
RUN_DEPENDS+=	gnuplot:${PORTSDIR}/math/gnuplot
53
.endif
54
.if defined(WITH_BZR)
55
RUN_DEPENDS+=	bzr:${PORTSDIR}/devel/bazaar-ng
80
.endif
56
.endif
81
57
82
.if !defined(WITHOUT_SPELL)
58
.if ${PYTHON_REL} < 260
83
BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Gtk2/Spell.pm:${PORTSDIR}/devel/p5-Gtk2-Spell
59
RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}simplejson>=2.0.9:${PORTSDIR}/devel/py-simplejson
84
.endif
60
.endif
85
61
62
post-patch:
63
	@${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/setup.py
64
86
.include <bsd.port.post.mk>
65
.include <bsd.port.post.mk>
(-)zim/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (Zim-0.29.tar.gz) = cdfbde62d130d63b69a1fb830d8180d738a1fa62cfeaf3778b463a1582eb723a
1
SHA256 (zim-0.52.tar.gz) = 30fb65d5ff54c29d9d36fa499ffc93f277b0a2a575578226b8402c1c4ecbbbdb
2
SIZE (Zim-0.29.tar.gz) = 985528
2
SIZE (zim-0.52.tar.gz) = 1195768
(-)zim/files/patch-Build.PL (-10 lines)
Lines 1-10 Link Here
1
--- Build.PL.orig	2010-02-06 19:56:18.143663089 +0900
2
+++ Build.PL	2010-02-06 19:56:30.643953463 +0900
3
@@ -337,7 +337,6 @@
4
 	script_files => ['bin/zim'],
5
 	data_files => { share => 'share' },
6
 	requires => {
7
-		'perl'           => '5.8.0',
8
 		'Gtk2'           => '1.040',
9
 		# Older doesn't support Gtk2::UIManager I think
10
 		'POSIX'          => 0,
(-)zim/pkg-descr (-7 / +14 lines)
Lines 1-11 Link Here
1
Zim is a WYSIWYG text editor written in Gtk2-Perl which aims to bring the
1
Zim - A Desktop Wiki Editor
2
concept of a wiki to your desktop. Every page is saved as a text file with
3
wiki markup.
4
2
5
Pages can contain links to other pages, and are saved automatically. Creating
3
Zim is a graphical text editor used to maintain a collection of wiki pages.
6
a new page is as easy as linking to a non-existing page.
4
Each page can contain links to other pages, simple formatting and images.
5
Pages are stored in a folder structure, like in an outliner, and can have
6
attachments. Creating a new page is as easy as linking to a nonexistent page.
7
All data is stored in plain text files with wiki formatting. Various plugins
8
provide additional functionality, like a task list manager, an equation
9
editor, a tray icon, and support for version control.
7
10
8
Pages are ordered in a hierarchical structure that gives it the look and feel
11
Zim can be used to:
9
of an outliner.
12
* Keep an archive of notes
13
* Take notes during meetings or lectures
14
* Organize task lists
15
* Draft blog entries and emails
16
* Do brainstorming
10
17
11
WWW:	http://www.zim-wiki.org
18
WWW:	http://www.zim-wiki.org
(-)zim/pkg-plist (-183 / +366 lines)
Lines 1-188 Link Here
1
bin/zim
1
bin/zim
2
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Zim/.packlist
2
%%PYTHON_SITELIBDIR%%/zim/__init__.py
3
%%SITE_PERL%%/Gtk2/Ex/HyperTextBuffer.pm
3
%%PYTHON_SITELIBDIR%%/zim/__init__.pyc
4
%%SITE_PERL%%/Gtk2/Ex/HyperTextView.pm
4
%%PYTHON_SITELIBDIR%%/zim/__init__.pyo
5
%%SITE_PERL%%/Gtk2/Ex/DesktopEntryMenu.pm
5
%%PYTHON_SITELIBDIR%%/zim/_lib/__init__.py
6
%%SITE_PERL%%/Gtk2/Ex/PathBar.pm
6
%%PYTHON_SITELIBDIR%%/zim/_lib/__init__.pyc
7
%%SITE_PERL%%/Zim/FS/Bazaar.pm
7
%%PYTHON_SITELIBDIR%%/zim/_lib/__init__.pyo
8
%%SITE_PERL%%/Zim/FS/Subversion.pm
8
%%PYTHON_SITELIBDIR%%/zim/_lib/xdot.py
9
%%SITE_PERL%%/Zim/Formats/Pod.pm
9
%%PYTHON_SITELIBDIR%%/zim/_lib/xdot.pyc
10
%%SITE_PERL%%/Zim/Formats/Wiki.pm
10
%%PYTHON_SITELIBDIR%%/zim/_lib/xdot.pyo
11
%%SITE_PERL%%/Zim/Formats/Txt2tags.pm
11
%%PYTHON_SITELIBDIR%%/zim/_version.py
12
%%SITE_PERL%%/Zim/Formats/Html.pm
12
%%PYTHON_SITELIBDIR%%/zim/_version.pyc
13
%%SITE_PERL%%/Zim/GUI/Spell.pm
13
%%PYTHON_SITELIBDIR%%/zim/_version.pyo
14
%%SITE_PERL%%/Zim/GUI/PathBar.pm
14
%%PYTHON_SITELIBDIR%%/zim/applications.py
15
%%SITE_PERL%%/Zim/GUI/TODOListDialog.pm
15
%%PYTHON_SITELIBDIR%%/zim/applications.pyc
16
%%SITE_PERL%%/Zim/GUI/Automount.pm
16
%%PYTHON_SITELIBDIR%%/zim/applications.pyo
17
%%SITE_PERL%%/Zim/GUI/PageView.pm
17
%%PYTHON_SITELIBDIR%%/zim/async.py
18
%%SITE_PERL%%/Zim/GUI/TreeView.pm
18
%%PYTHON_SITELIBDIR%%/zim/async.pyc
19
%%SITE_PERL%%/Zim/GUI/NotebookDialog.pm
19
%%PYTHON_SITELIBDIR%%/zim/async.pyo
20
%%SITE_PERL%%/Zim/GUI/ExportDialog.pm
20
%%PYTHON_SITELIBDIR%%/zim/config.py
21
%%SITE_PERL%%/Zim/GUI/DiagramEditor.pm
21
%%PYTHON_SITELIBDIR%%/zim/config.pyc
22
%%SITE_PERL%%/Zim/GUI/Component.pm
22
%%PYTHON_SITELIBDIR%%/zim/config.pyo
23
%%SITE_PERL%%/Zim/GUI/Daemon.pm
23
%%PYTHON_SITELIBDIR%%/zim/daemon.py
24
%%SITE_PERL%%/Zim/GUI/SearchDialog.pm
24
%%PYTHON_SITELIBDIR%%/zim/daemon.pyc
25
%%SITE_PERL%%/Zim/GUI/TrayIcon.pm
25
%%PYTHON_SITELIBDIR%%/zim/daemon.pyo
26
%%SITE_PERL%%/Zim/GUI/PropertiesDialog.pm
26
%%PYTHON_SITELIBDIR%%/zim/datetimetz.py
27
%%SITE_PERL%%/Zim/GUI/FindReplaceDialog.pm
27
%%PYTHON_SITELIBDIR%%/zim/datetimetz.pyc
28
%%SITE_PERL%%/Zim/GUI/PreferencesDialog.pm
28
%%PYTHON_SITELIBDIR%%/zim/datetimetz.pyo
29
%%SITE_PERL%%/Zim/GUI/VersionsDialog.pm
29
%%PYTHON_SITELIBDIR%%/zim/errors.py
30
%%SITE_PERL%%/Zim/GUI/EquationEditor.pm
30
%%PYTHON_SITELIBDIR%%/zim/errors.pyc
31
%%SITE_PERL%%/Zim/GUI/Calendar.pm
31
%%PYTHON_SITELIBDIR%%/zim/errors.pyo
32
%%SITE_PERL%%/Zim/OS/Win32.pm
32
%%PYTHON_SITELIBDIR%%/zim/exporter.py
33
%%SITE_PERL%%/Zim/Store/Gjots.pm
33
%%PYTHON_SITELIBDIR%%/zim/exporter.pyc
34
%%SITE_PERL%%/Zim/Store/Cached.pm
34
%%PYTHON_SITELIBDIR%%/zim/exporter.pyo
35
%%SITE_PERL%%/Zim/Store/Man.pm
35
%%PYTHON_SITELIBDIR%%/zim/formats/__init__.py
36
%%SITE_PERL%%/Zim/Store/Files.pm
36
%%PYTHON_SITELIBDIR%%/zim/formats/__init__.pyc
37
%%SITE_PERL%%/Zim/Events.pm
37
%%PYTHON_SITELIBDIR%%/zim/formats/__init__.pyo
38
%%SITE_PERL%%/Zim/Formats.pm
38
%%PYTHON_SITELIBDIR%%/zim/formats/html.py
39
%%SITE_PERL%%/Zim/GUI.pm
39
%%PYTHON_SITELIBDIR%%/zim/formats/html.pyc
40
%%SITE_PERL%%/Zim/FS.pm
40
%%PYTHON_SITELIBDIR%%/zim/formats/html.pyo
41
%%SITE_PERL%%/Zim/Utils.pm
41
%%PYTHON_SITELIBDIR%%/zim/formats/latex.py
42
%%SITE_PERL%%/Zim/Page.pm
42
%%PYTHON_SITELIBDIR%%/zim/formats/latex.pyc
43
%%SITE_PERL%%/Zim/Store.pm
43
%%PYTHON_SITELIBDIR%%/zim/formats/latex.pyo
44
%%SITE_PERL%%/Zim/Template.pm
44
%%PYTHON_SITELIBDIR%%/zim/formats/plain.py
45
%%SITE_PERL%%/Zim/History.pm
45
%%PYTHON_SITELIBDIR%%/zim/formats/plain.pyc
46
%%SITE_PERL%%/Zim/Selection.pm
46
%%PYTHON_SITELIBDIR%%/zim/formats/plain.pyo
47
%%SITE_PERL%%/Zim.pm
47
%%PYTHON_SITELIBDIR%%/zim/formats/wiki.py
48
share/pixmaps/zim/stock_calendar-view-month.png
48
%%PYTHON_SITELIBDIR%%/zim/formats/wiki.pyc
49
share/pixmaps/zim/mail-attachment.png
49
%%PYTHON_SITELIBDIR%%/zim/formats/wiki.pyo
50
share/pixmaps/zim/gtk-connect.png
50
%%PYTHON_SITELIBDIR%%/zim/fs.py
51
share/pixmaps/zim/stock_todo.png
51
%%PYTHON_SITELIBDIR%%/zim/fs.pyc
52
share/pixmaps/zim/xchecked-box.png
52
%%PYTHON_SITELIBDIR%%/zim/fs.pyo
53
share/pixmaps/zim/unchecked-box.png
53
%%PYTHON_SITELIBDIR%%/zim/gui/__init__.py
54
share/pixmaps/zim/checked-box.png
54
%%PYTHON_SITELIBDIR%%/zim/gui/__init__.pyc
55
share/pixmaps/zim.png
55
%%PYTHON_SITELIBDIR%%/zim/gui/__init__.pyo
56
%%PYTHON_SITELIBDIR%%/zim/gui/applications.py
57
%%PYTHON_SITELIBDIR%%/zim/gui/applications.pyc
58
%%PYTHON_SITELIBDIR%%/zim/gui/applications.pyo
59
%%PYTHON_SITELIBDIR%%/zim/gui/cleannotebookdialog.py
60
%%PYTHON_SITELIBDIR%%/zim/gui/cleannotebookdialog.pyc
61
%%PYTHON_SITELIBDIR%%/zim/gui/cleannotebookdialog.pyo
62
%%PYTHON_SITELIBDIR%%/zim/gui/clipboard.py
63
%%PYTHON_SITELIBDIR%%/zim/gui/clipboard.pyc
64
%%PYTHON_SITELIBDIR%%/zim/gui/clipboard.pyo
65
%%PYTHON_SITELIBDIR%%/zim/gui/customtools.py
66
%%PYTHON_SITELIBDIR%%/zim/gui/customtools.pyc
67
%%PYTHON_SITELIBDIR%%/zim/gui/customtools.pyo
68
%%PYTHON_SITELIBDIR%%/zim/gui/exportdialog.py
69
%%PYTHON_SITELIBDIR%%/zim/gui/exportdialog.pyc
70
%%PYTHON_SITELIBDIR%%/zim/gui/exportdialog.pyo
71
%%PYTHON_SITELIBDIR%%/zim/gui/imagegeneratordialog.py
72
%%PYTHON_SITELIBDIR%%/zim/gui/imagegeneratordialog.pyc
73
%%PYTHON_SITELIBDIR%%/zim/gui/imagegeneratordialog.pyo
74
%%PYTHON_SITELIBDIR%%/zim/gui/notebookdialog.py
75
%%PYTHON_SITELIBDIR%%/zim/gui/notebookdialog.pyc
76
%%PYTHON_SITELIBDIR%%/zim/gui/notebookdialog.pyo
77
%%PYTHON_SITELIBDIR%%/zim/gui/pageindex.py
78
%%PYTHON_SITELIBDIR%%/zim/gui/pageindex.pyc
79
%%PYTHON_SITELIBDIR%%/zim/gui/pageindex.pyo
80
%%PYTHON_SITELIBDIR%%/zim/gui/pageview.py
81
%%PYTHON_SITELIBDIR%%/zim/gui/pageview.pyc
82
%%PYTHON_SITELIBDIR%%/zim/gui/pageview.pyo
83
%%PYTHON_SITELIBDIR%%/zim/gui/pathbar.py
84
%%PYTHON_SITELIBDIR%%/zim/gui/pathbar.pyc
85
%%PYTHON_SITELIBDIR%%/zim/gui/pathbar.pyo
86
%%PYTHON_SITELIBDIR%%/zim/gui/preferencesdialog.py
87
%%PYTHON_SITELIBDIR%%/zim/gui/preferencesdialog.pyc
88
%%PYTHON_SITELIBDIR%%/zim/gui/preferencesdialog.pyo
89
%%PYTHON_SITELIBDIR%%/zim/gui/propertiesdialog.py
90
%%PYTHON_SITELIBDIR%%/zim/gui/propertiesdialog.pyc
91
%%PYTHON_SITELIBDIR%%/zim/gui/propertiesdialog.pyo
92
%%PYTHON_SITELIBDIR%%/zim/gui/searchdialog.py
93
%%PYTHON_SITELIBDIR%%/zim/gui/searchdialog.pyc
94
%%PYTHON_SITELIBDIR%%/zim/gui/searchdialog.pyo
95
%%PYTHON_SITELIBDIR%%/zim/gui/server.py
96
%%PYTHON_SITELIBDIR%%/zim/gui/server.pyc
97
%%PYTHON_SITELIBDIR%%/zim/gui/server.pyo
98
%%PYTHON_SITELIBDIR%%/zim/gui/widgets.py
99
%%PYTHON_SITELIBDIR%%/zim/gui/widgets.pyc
100
%%PYTHON_SITELIBDIR%%/zim/gui/widgets.pyo
101
%%PYTHON_SITELIBDIR%%/zim/history.py
102
%%PYTHON_SITELIBDIR%%/zim/history.pyc
103
%%PYTHON_SITELIBDIR%%/zim/history.pyo
104
%%PYTHON_SITELIBDIR%%/zim/index.py
105
%%PYTHON_SITELIBDIR%%/zim/index.pyc
106
%%PYTHON_SITELIBDIR%%/zim/index.pyo
107
%%PYTHON_SITELIBDIR%%/zim/notebook.py
108
%%PYTHON_SITELIBDIR%%/zim/notebook.pyc
109
%%PYTHON_SITELIBDIR%%/zim/notebook.pyo
110
%%PYTHON_SITELIBDIR%%/zim/parsing.py
111
%%PYTHON_SITELIBDIR%%/zim/parsing.pyc
112
%%PYTHON_SITELIBDIR%%/zim/parsing.pyo
113
%%PYTHON_SITELIBDIR%%/zim/plugins/__init__.py
114
%%PYTHON_SITELIBDIR%%/zim/plugins/__init__.pyc
115
%%PYTHON_SITELIBDIR%%/zim/plugins/__init__.pyo
116
%%PYTHON_SITELIBDIR%%/zim/plugins/attachmentbrowser.py
117
%%PYTHON_SITELIBDIR%%/zim/plugins/attachmentbrowser.pyc
118
%%PYTHON_SITELIBDIR%%/zim/plugins/attachmentbrowser.pyo
119
%%PYTHON_SITELIBDIR%%/zim/plugins/calendar.py
120
%%PYTHON_SITELIBDIR%%/zim/plugins/calendar.pyc
121
%%PYTHON_SITELIBDIR%%/zim/plugins/calendar.pyo
122
%%PYTHON_SITELIBDIR%%/zim/plugins/diagrameditor.py
123
%%PYTHON_SITELIBDIR%%/zim/plugins/diagrameditor.pyc
124
%%PYTHON_SITELIBDIR%%/zim/plugins/diagrameditor.pyo
125
%%PYTHON_SITELIBDIR%%/zim/plugins/equationeditor.py
126
%%PYTHON_SITELIBDIR%%/zim/plugins/equationeditor.pyc
127
%%PYTHON_SITELIBDIR%%/zim/plugins/equationeditor.pyo
128
%%PYTHON_SITELIBDIR%%/zim/plugins/gnu_r_ploteditor.py
129
%%PYTHON_SITELIBDIR%%/zim/plugins/gnu_r_ploteditor.pyc
130
%%PYTHON_SITELIBDIR%%/zim/plugins/gnu_r_ploteditor.pyo
131
%%PYTHON_SITELIBDIR%%/zim/plugins/gnuplot_ploteditor.py
132
%%PYTHON_SITELIBDIR%%/zim/plugins/gnuplot_ploteditor.pyc
133
%%PYTHON_SITELIBDIR%%/zim/plugins/gnuplot_ploteditor.pyo
134
%%PYTHON_SITELIBDIR%%/zim/plugins/inlinecalculator.py
135
%%PYTHON_SITELIBDIR%%/zim/plugins/inlinecalculator.pyc
136
%%PYTHON_SITELIBDIR%%/zim/plugins/inlinecalculator.pyo
137
%%PYTHON_SITELIBDIR%%/zim/plugins/insertsymbol.py
138
%%PYTHON_SITELIBDIR%%/zim/plugins/insertsymbol.pyc
139
%%PYTHON_SITELIBDIR%%/zim/plugins/insertsymbol.pyo
140
%%PYTHON_SITELIBDIR%%/zim/plugins/linesorter.py
141
%%PYTHON_SITELIBDIR%%/zim/plugins/linesorter.pyc
142
%%PYTHON_SITELIBDIR%%/zim/plugins/linesorter.pyo
143
%%PYTHON_SITELIBDIR%%/zim/plugins/linkmap/__init__.py
144
%%PYTHON_SITELIBDIR%%/zim/plugins/linkmap/__init__.pyc
145
%%PYTHON_SITELIBDIR%%/zim/plugins/linkmap/__init__.pyo
146
%%PYTHON_SITELIBDIR%%/zim/plugins/linkmap/gui.py
147
%%PYTHON_SITELIBDIR%%/zim/plugins/linkmap/gui.pyc
148
%%PYTHON_SITELIBDIR%%/zim/plugins/linkmap/gui.pyo
149
%%PYTHON_SITELIBDIR%%/zim/plugins/printtobrowser.py
150
%%PYTHON_SITELIBDIR%%/zim/plugins/printtobrowser.pyc
151
%%PYTHON_SITELIBDIR%%/zim/plugins/printtobrowser.pyo
152
%%PYTHON_SITELIBDIR%%/zim/plugins/quicknote.py
153
%%PYTHON_SITELIBDIR%%/zim/plugins/quicknote.pyc
154
%%PYTHON_SITELIBDIR%%/zim/plugins/quicknote.pyo
155
%%PYTHON_SITELIBDIR%%/zim/plugins/screenshot.py
156
%%PYTHON_SITELIBDIR%%/zim/plugins/screenshot.pyc
157
%%PYTHON_SITELIBDIR%%/zim/plugins/screenshot.pyo
158
%%PYTHON_SITELIBDIR%%/zim/plugins/spell.py
159
%%PYTHON_SITELIBDIR%%/zim/plugins/spell.pyc
160
%%PYTHON_SITELIBDIR%%/zim/plugins/spell.pyo
161
%%PYTHON_SITELIBDIR%%/zim/plugins/tags.py
162
%%PYTHON_SITELIBDIR%%/zim/plugins/tags.pyc
163
%%PYTHON_SITELIBDIR%%/zim/plugins/tags.pyo
164
%%PYTHON_SITELIBDIR%%/zim/plugins/tasklist.py
165
%%PYTHON_SITELIBDIR%%/zim/plugins/tasklist.pyc
166
%%PYTHON_SITELIBDIR%%/zim/plugins/tasklist.pyo
167
%%PYTHON_SITELIBDIR%%/zim/plugins/trayicon.py
168
%%PYTHON_SITELIBDIR%%/zim/plugins/trayicon.pyc
169
%%PYTHON_SITELIBDIR%%/zim/plugins/trayicon.pyo
170
%%PYTHON_SITELIBDIR%%/zim/plugins/versioncontrol/__init__.py
171
%%PYTHON_SITELIBDIR%%/zim/plugins/versioncontrol/__init__.pyc
172
%%PYTHON_SITELIBDIR%%/zim/plugins/versioncontrol/__init__.pyo
173
%%PYTHON_SITELIBDIR%%/zim/plugins/versioncontrol/bzr.py
174
%%PYTHON_SITELIBDIR%%/zim/plugins/versioncontrol/bzr.pyc
175
%%PYTHON_SITELIBDIR%%/zim/plugins/versioncontrol/bzr.pyo
176
%%PYTHON_SITELIBDIR%%/zim/search.py
177
%%PYTHON_SITELIBDIR%%/zim/search.pyc
178
%%PYTHON_SITELIBDIR%%/zim/search.pyo
179
%%PYTHON_SITELIBDIR%%/zim/stores/__init__.py
180
%%PYTHON_SITELIBDIR%%/zim/stores/__init__.pyc
181
%%PYTHON_SITELIBDIR%%/zim/stores/__init__.pyo
182
%%PYTHON_SITELIBDIR%%/zim/stores/files.py
183
%%PYTHON_SITELIBDIR%%/zim/stores/files.pyc
184
%%PYTHON_SITELIBDIR%%/zim/stores/files.pyo
185
%%PYTHON_SITELIBDIR%%/zim/stores/gjots.py
186
%%PYTHON_SITELIBDIR%%/zim/stores/gjots.pyc
187
%%PYTHON_SITELIBDIR%%/zim/stores/gjots.pyo
188
%%PYTHON_SITELIBDIR%%/zim/stores/memory.py
189
%%PYTHON_SITELIBDIR%%/zim/stores/memory.pyc
190
%%PYTHON_SITELIBDIR%%/zim/stores/memory.pyo
191
%%PYTHON_SITELIBDIR%%/zim/stores/xml.py
192
%%PYTHON_SITELIBDIR%%/zim/stores/xml.pyc
193
%%PYTHON_SITELIBDIR%%/zim/stores/xml.pyo
194
%%PYTHON_SITELIBDIR%%/zim/templates.py
195
%%PYTHON_SITELIBDIR%%/zim/templates.pyc
196
%%PYTHON_SITELIBDIR%%/zim/templates.pyo
197
%%PYTHON_SITELIBDIR%%/zim/www.py
198
%%PYTHON_SITELIBDIR%%/zim/www.pyc
199
%%PYTHON_SITELIBDIR%%/zim/www.pyo
56
share/applications/zim.desktop
200
share/applications/zim.desktop
57
share/icons/hicolor/64x64/mimetypes/application-x-zim-notebook.png
201
share/icons/hicolor/16x16/apps/zim.png
58
share/icons/hicolor/64x64/mimetypes/gnome-mime-application-x-zim-notebook.png
202
share/icons/hicolor/16x16/mimetypes/application-x-zim-notebook.png
203
share/icons/hicolor/16x16/mimetypes/gnome-mime-application-x-zim-notebook.png
204
share/icons/hicolor/22x22/apps/zim.png
205
share/icons/hicolor/22x22/mimetypes/application-x-zim-notebook.png
206
share/icons/hicolor/22x22/mimetypes/gnome-mime-application-x-zim-notebook.png
207
share/icons/hicolor/24x24/apps/zim.png
208
share/icons/hicolor/24x24/mimetypes/application-x-zim-notebook.png
209
share/icons/hicolor/24x24/mimetypes/gnome-mime-application-x-zim-notebook.png
210
share/icons/hicolor/32x32/apps/zim.png
211
share/icons/hicolor/32x32/mimetypes/application-x-zim-notebook.png
212
share/icons/hicolor/32x32/mimetypes/gnome-mime-application-x-zim-notebook.png
213
share/icons/hicolor/48x48/apps/zim.png
214
share/icons/hicolor/48x48/mimetypes/application-x-zim-notebook.png
215
share/icons/hicolor/48x48/mimetypes/gnome-mime-application-x-zim-notebook.png
216
share/icons/hicolor/scalable/apps/zim.svg
217
share/icons/hicolor/scalable/mimetypes/application-x-zim-notebook.svg
218
share/icons/hicolor/scalable/mimetypes/gnome-mime-application-x-zim-notebook.svg
219
share/locale/ca/LC_MESSAGES/zim.mo
220
share/locale/cs/LC_MESSAGES/zim.mo
221
share/locale/da/LC_MESSAGES/zim.mo
222
share/locale/de/LC_MESSAGES/zim.mo
223
share/locale/el/LC_MESSAGES/zim.mo
224
share/locale/en_GB/LC_MESSAGES/zim.mo
225
share/locale/es/LC_MESSAGES/zim.mo
226
share/locale/et/LC_MESSAGES/zim.mo
227
share/locale/fr/LC_MESSAGES/zim.mo
228
share/locale/he/LC_MESSAGES/zim.mo
229
share/locale/hr/LC_MESSAGES/zim.mo
230
share/locale/hu/LC_MESSAGES/zim.mo
231
share/locale/it/LC_MESSAGES/zim.mo
232
share/locale/ja/LC_MESSAGES/zim.mo
233
share/locale/ko/LC_MESSAGES/zim.mo
234
share/locale/nl/LC_MESSAGES/zim.mo
235
share/locale/pl/LC_MESSAGES/zim.mo
236
share/locale/ru/LC_MESSAGES/zim.mo
237
share/locale/sk/LC_MESSAGES/zim.mo
238
share/locale/sl/LC_MESSAGES/zim.mo
239
share/locale/sv/LC_MESSAGES/zim.mo
240
share/locale/tr/LC_MESSAGES/zim.mo
241
share/locale/uk/LC_MESSAGES/zim.mo
242
share/locale/zh_CN/LC_MESSAGES/zim.mo
243
share/locale/zh_TW/LC_MESSAGES/zim.mo
244
share/mime/application/x-gjots.xml
245
share/mime/application/x-zim-notebook.xml
59
share/mime/packages/zim.xml
246
share/mime/packages/zim.xml
60
share/mime/text/x-zim-wiki.xml
247
share/mime/text/x-zim-wiki.xml
61
share/mime/application/x-zim-notebook.xml
248
share/pixmaps/zim.png
62
share/mime/application/x-gjots.xml
249
share/zim/applications/firefox.desktop
63
%%DATADIR%%/doc/Install/OS_X.txt
250
share/zim/applications/open.desktop
64
%%DATADIR%%/doc/Install/Unix.txt
251
share/zim/applications/thunderbird.desktop
65
%%DATADIR%%/doc/Install/Windows.txt
252
share/zim/applications/xdg-email.desktop
66
%%DATADIR%%/doc/Usage/plugins/DiagramEditor/diagram_01.dot
253
share/zim/applications/xdg-open.desktop
67
%%DATADIR%%/doc/Usage/plugins/DiagramEditor/diagram_01.png
254
share/zim/dates.list
68
%%DATADIR%%/doc/Usage/plugins/equation_01.png
255
share/zim/globe.svg
69
%%DATADIR%%/doc/Usage/plugins/TODOList.txt
256
share/zim/globe_banner.svg
70
%%DATADIR%%/doc/Usage/plugins/EquationEditor.txt
257
share/zim/globe_banner_small.png
71
%%DATADIR%%/doc/Usage/plugins/DiagramEditor.txt
258
share/zim/manual/About.txt
72
%%DATADIR%%/doc/Usage/Encryption.txt
259
share/zim/manual/Bugs.txt
73
%%DATADIR%%/doc/Usage/VersionControl.txt
260
share/zim/manual/FAQ.txt
74
%%DATADIR%%/doc/Usage/searching.txt
261
share/zim/manual/Help.txt
75
%%DATADIR%%/doc/Usage/getting_started.txt
262
share/zim/manual/Help/Auto_Formatting.txt
76
%%DATADIR%%/doc/Usage/syntax.txt
263
share/zim/manual/Help/Check_Boxes.txt
77
%%DATADIR%%/doc/Usage/strategies.txt
264
share/zim/manual/Help/Config_Files.txt
78
%%DATADIR%%/doc/Usage/checkboxes.txt
265
share/zim/manual/Help/Custom_Tools.txt
79
%%DATADIR%%/doc/Usage/notebooks.txt
266
share/zim/manual/Help/Export.txt
80
%%DATADIR%%/doc/Usage/plugins.txt
267
share/zim/manual/Help/Export/HTML.txt
81
%%DATADIR%%/doc/Usage/linking.txt
268
share/zim/manual/Help/Export/LaTeX.txt
82
%%DATADIR%%/doc/Usage/preferences.txt
269
share/zim/manual/Help/Importing_external_files.txt
83
%%DATADIR%%/doc/Usage/styles.txt
270
share/zim/manual/Help/Key_Bindings.txt
84
%%DATADIR%%/doc/Usage/templates.txt
271
share/zim/manual/Help/Links.txt
85
%%DATADIR%%/doc/Usage/profiles.txt
272
share/zim/manual/Help/Menu_Items.txt
86
%%DATADIR%%/doc/Usage/Attaching_Files.txt
273
share/zim/manual/Help/Notebooks.txt
87
%%DATADIR%%/doc/Usage/autoformat.txt
274
share/zim/manual/Help/Pages.txt
88
%%DATADIR%%/doc/Usage/commandline.txt
275
share/zim/manual/Help/Preferences.txt
89
%%DATADIR%%/doc/Usage/exporting.txt
276
share/zim/manual/Help/Properties.txt
90
%%DATADIR%%/doc/Usage/html_entities.txt
277
share/zim/manual/Help/Searching.txt
91
%%DATADIR%%/doc/Usage/keybindings.txt
278
share/zim/manual/Help/Tags.txt
92
%%DATADIR%%/doc/Usage/config.txt
279
share/zim/manual/Help/Templates.txt
93
%%DATADIR%%/doc/Usage/properties.txt
280
share/zim/manual/Help/Wiki_Syntax.txt
94
%%DATADIR%%/doc/About.txt
281
share/zim/manual/Plugins.txt
95
%%DATADIR%%/doc/Usage.txt
282
share/zim/manual/Plugins/Calendar.txt
96
%%DATADIR%%/doc/globe_banner.png
283
share/zim/manual/Plugins/Diagram_Editor.txt
97
%%DATADIR%%/doc/FAQ.txt
284
share/zim/manual/Plugins/Diagram_Editor/diagram.png
98
%%DATADIR%%/doc/Help.txt
285
share/zim/manual/Plugins/Equation_Editor.txt
99
%%DATADIR%%/doc/Translations.txt
286
share/zim/manual/Plugins/Equation_Editor/equation_01.png
100
%%DATADIR%%/doc/Contributing.txt
287
share/zim/manual/Plugins/GNU_R_Plot_Editor.txt
101
%%DATADIR%%/doc/notebook.zim
288
share/zim/manual/Plugins/GNU_R_Plot_Editor/gnu_r_plot.png
102
%%DATADIR%%/doc/Install.txt
289
share/zim/manual/Plugins/GNU_R_Plot_Editor/gnu_r_plot.r
103
%%DATADIR%%/doc/start-zim.sh
290
share/zim/manual/Plugins/GNU_R_Plot_Editor/gnu_r_plot001.png
104
%%DATADIR%%/doc/Bugs.txt
291
share/zim/manual/Plugins/GNU_R_Plot_Editor/gnu_r_plot001.r
105
%%DATADIR%%/doc/changelog.txt
292
share/zim/manual/Plugins/Gnuplot_Editor.txt
106
%%DATADIR%%/lingua/cs.pl
293
share/zim/manual/Plugins/Gnuplot_Editor/gnuplot.gnu
107
%%DATADIR%%/lingua/da.pl
294
share/zim/manual/Plugins/Gnuplot_Editor/gnuplot.png
108
%%DATADIR%%/lingua/de.pl
295
share/zim/manual/Plugins/Inline_Calculator.txt
109
%%DATADIR%%/lingua/el.pl
296
share/zim/manual/Plugins/Insert_Screenshot.txt
110
%%DATADIR%%/lingua/en_GB.pl
297
share/zim/manual/Plugins/Insert_Symbol.txt
111
%%DATADIR%%/lingua/es.pl
298
share/zim/manual/Plugins/Link_Map.txt
112
%%DATADIR%%/lingua/fi.pl
299
share/zim/manual/Plugins/Quick_Note.txt
113
%%DATADIR%%/lingua/fr.pl
300
share/zim/manual/Plugins/Spell_Checker.txt
114
%%DATADIR%%/lingua/gl.pl
301
share/zim/manual/Plugins/Tags.txt
115
%%DATADIR%%/lingua/he.pl
302
share/zim/manual/Plugins/Task_List.txt
116
%%DATADIR%%/lingua/hu.pl
303
share/zim/manual/Plugins/Tray_Icon.txt
117
%%DATADIR%%/lingua/it.pl
304
share/zim/manual/Plugins/Version_Control.txt
118
%%DATADIR%%/lingua/ja.pl
305
share/zim/manual/Start.txt
119
%%DATADIR%%/lingua/nb.pl
306
share/zim/manual/Usage.txt
120
%%DATADIR%%/lingua/nl.pl
307
share/zim/manual/Usage/Daily_Journal.txt
121
%%DATADIR%%/lingua/pl.pl
308
share/zim/manual/Usage/GTD_flowchart.png
122
%%DATADIR%%/lingua/pt.pl
309
share/zim/manual/Usage/GTD_flowchart.svg
123
%%DATADIR%%/lingua/pt_BR.pl
310
share/zim/manual/Usage/Getting_Started.txt
124
%%DATADIR%%/lingua/ru.pl
311
share/zim/manual/Usage/Getting_Things_Done.txt
125
%%DATADIR%%/lingua/sv.pl
312
share/zim/manual/notebook.zim
126
%%DATADIR%%/lingua/tr.pl
313
share/zim/menubar-maemo4.xml
127
%%DATADIR%%/lingua/uk.pl
314
share/zim/menubar-maemo5.xml
128
%%DATADIR%%/lingua/zh_CN.pl
315
share/zim/menubar.xml
129
%%DATADIR%%/lingua/zh_TW.pl
316
share/zim/pixmaps/attachment.png
130
%%DATADIR%%/plugins/VersionControl/Subversion.pl
317
share/zim/pixmaps/calendar.png
131
%%DATADIR%%/plugins/VersionControl/Bazaar.pl
318
share/zim/pixmaps/checked-box.png
132
%%DATADIR%%/plugins/InsertScreenshot.pl
319
share/zim/pixmaps/favicon.ico
133
%%DATADIR%%/plugins/DiagramEditor.pl
320
share/zim/pixmaps/link.png
134
%%DATADIR%%/plugins/Spell.pl
321
share/zim/pixmaps/linkmap.png
135
%%DATADIR%%/plugins/SortSelection.pl
322
share/zim/pixmaps/linkmap.svg
136
%%DATADIR%%/plugins/EquationEditor.pl
323
share/zim/pixmaps/task-list.png
137
%%DATADIR%%/plugins/TODOList.pl
324
share/zim/pixmaps/unchecked-box.png
138
%%DATADIR%%/plugins/Calendar.pl
325
share/zim/pixmaps/xchecked-box.png
139
%%DATADIR%%/plugins/VersionControl.pl
326
share/zim/style.conf
140
%%DATADIR%%/plugins/PrintToBrowser.pl
327
share/zim/symbols.list
141
%%DATADIR%%/plugins/ToggleReadOnly.pl
328
share/zim/templates/_Equation.tex
142
%%DATADIR%%/plugins/TrayIcon.pl
329
share/zim/templates/_GNU_R_Plot.r
143
%%DATADIR%%/templates/html/Print.html
330
share/zim/templates/_gnuplot.gnu
144
%%DATADIR%%/templates/html/Default.html
331
share/zim/templates/_quicknote.txt
145
%%DATADIR%%/templates/html/Presentation.html
332
share/zim/templates/html/Default.html
146
%%DATADIR%%/templates/html/SlideShow_(S5).html
333
share/zim/templates/html/Presentation.html
147
%%DATADIR%%/templates/latex/Default.tex
334
share/zim/templates/html/Print.html
148
%%DATADIR%%/templates/latex/_Equation.tex
335
share/zim/templates/html/SlideShow_(S5).html
149
%%DATADIR%%/templates/txt2tags/Default.t2t
336
share/zim/templates/latex/Article.tex
150
%%DATADIR%%/templates/wiki/_New.txt
337
share/zim/templates/latex/Part.tex
151
%%DATADIR%%/templates/wiki/_Date.txt
338
share/zim/templates/latex/Report.tex
152
%%DATADIR%%/default.conf
339
share/zim/templates/wiki/Calendar.txt
153
%%DATADIR%%/dates.list
340
share/zim/templates/wiki/Default.txt
154
%%DATADIR%%/default.style
341
share/zim/urls.list
155
%%DATADIR%%/reader.conf
342
share/zim/zim.png
156
%%DATADIR%%/urls.list
343
@dirrm share/zim/templates/wiki
157
%%DATADIR%%/entities.list
344
@dirrm share/zim/templates/latex
158
%%DATADIR%%/zim.svg
345
@dirrm share/zim/templates/html
159
%%DATADIR%%/globe_banner_small.png
346
@dirrm share/zim/templates
160
@dirrm %%DATADIR%%/templates/wiki
347
@dirrm share/zim/pixmaps
161
@dirrm %%DATADIR%%/templates/txt2tags
348
@dirrm share/zim/manual/Usage
162
@dirrm %%DATADIR%%/templates/latex
349
@dirrm share/zim/manual/Plugins/Gnuplot_Editor
163
@dirrm %%DATADIR%%/templates/html
350
@dirrm share/zim/manual/Plugins/GNU_R_Plot_Editor
164
@dirrm %%DATADIR%%/templates
351
@dirrm share/zim/manual/Plugins/Equation_Editor
165
@dirrm %%DATADIR%%/plugins/VersionControl
352
@dirrm share/zim/manual/Plugins/Diagram_Editor
166
@dirrm %%DATADIR%%/plugins
353
@dirrm share/zim/manual/Plugins
167
@dirrm %%DATADIR%%/lingua
354
@dirrm share/zim/manual/Help/Export
168
@dirrm %%DATADIR%%/doc/Usage/plugins/DiagramEditor
355
@dirrm share/zim/manual/Help
169
@dirrm %%DATADIR%%/doc/Usage/plugins
356
@dirrm share/zim/manual
170
@dirrm %%DATADIR%%/doc/Usage
357
@dirrm share/zim/applications
171
@dirrm %%DATADIR%%/doc/Install
358
@dirrm share/zim
172
@dirrm %%DATADIR%%/doc
359
@dirrmtry share/mime/text
173
@dirrm %%DATADIR%%
360
@dirrmtry share/mime/packages
361
@dirrmtry share/mime/application
362
@dirrmtry share/mime
174
@dirrmtry share/applications
363
@dirrmtry share/applications
175
@dirrmtry share/icons/hicolor/64x64/mimetypes
364
@dirrm %%PYTHON_SITELIBDIR%%/zim/stores
176
@dirrmtry share/icons/hicolor/64x64
365
@dirrm %%PYTHON_SITELIBDIR%%/zim/plugins/versioncontrol
177
@dirrmtry share/icons/hicolor
366
@dirrm %%PYTHON_SITELIBDIR%%/zim/plugins/linkmap
178
@dirrmtry share/icons
367
@dirrm %%PYTHON_SITELIBDIR%%/zim/plugins
179
@dirrm share/pixmaps/zim
368
@dirrm %%PYTHON_SITELIBDIR%%/zim/gui
180
@dirrm %%SITE_PERL%%/Zim/Store
369
@dirrm %%PYTHON_SITELIBDIR%%/zim/formats
181
@dirrm %%SITE_PERL%%/Zim/OS
370
@dirrm %%PYTHON_SITELIBDIR%%/zim/_lib
182
@dirrm %%SITE_PERL%%/Zim/GUI
371
@dirrm %%PYTHON_SITELIBDIR%%/zim
183
@dirrm %%SITE_PERL%%/Zim/Formats
184
@dirrm %%SITE_PERL%%/Zim/FS
185
@dirrm %%SITE_PERL%%/Zim
186
@dirrmtry %%SITE_PERL%%/Gtk2/Ex
187
@dirrmtry %%SITE_PERL%%/Gtk2
188
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Zim

Return to bug 160385