diff --git a/desktop/toolkit/gtk/pangomm/pspec.xml b/desktop/toolkit/gtk/pangomm/pspec.xml
index 7a14bec931..af50b33ba8 100644
--- a/desktop/toolkit/gtk/pangomm/pspec.xml
+++ b/desktop/toolkit/gtk/pangomm/pspec.xml
@@ -16,7 +16,7 @@
mirrors://gnome/pangomm/2.34/pangomm-2.34.0.tar.xz
grep
- libtool-devel
+ libtool
doxygen
boost-devel
glib2-devel
diff --git a/multimedia/graphics/inkscape/actions.py b/multimedia/graphics/inkscape/actions.py
new file mode 100644
index 0000000000..e38bec0b62
--- /dev/null
+++ b/multimedia/graphics/inkscape/actions.py
@@ -0,0 +1,31 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.configure(" \
+ --enable-lcms \
+ --disable-static \
+ --enable-poppler-cairo \
+ --disable-dependency-tracking \
+ --without-gnome-vfs \
+ --without-inkjar \
+ --enable-dbusapi \
+ --enable-nls")
+
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "COPYING", "COPYING.LIB", "ChangeLog", "NEWS", "README")
diff --git a/multimedia/graphics/inkscape/files/ime-placement.patch b/multimedia/graphics/inkscape/files/ime-placement.patch
new file mode 100644
index 0000000000..7f2e13a5ef
--- /dev/null
+++ b/multimedia/graphics/inkscape/files/ime-placement.patch
@@ -0,0 +1,62 @@
+diff -aur old/src/text-context.cpp new/src/text-context.cpp
+--- old/src/text-context.cpp 2011-07-08 08:25:09.468790000 -1000
++++ new/src/text-context.cpp 2014-04-21 14:48:22.668759004 -1000
+@@ -684,6 +684,17 @@
+ // articifically here, for the text object does not exist yet:
+ double cursor_height = sp_desktop_get_font_size_tool(desktop);
+ sp_ctrlline_set_coords(SP_CTRLLINE(tc->cursor), dtp, dtp + Geom::Point(0, cursor_height));
++ if (tc->imc) {
++ GdkRectangle im_cursor;
++ Geom::Point const top_left = SP_EVENT_CONTEXT(tc)->desktop->get_display_area().corner(3);
++ Geom::Point const cursor_size(0, cursor_height);
++ Geom::Point const im_position = SP_EVENT_CONTEXT(tc)->desktop->d2w(dtp + cursor_size - top_left);
++ im_cursor.x = (int) floor(im_position[Geom::X]);
++ im_cursor.y = (int) floor(im_position[Geom::Y]);
++ im_cursor.width = 0;
++ im_cursor.height = (int) -floor(SP_EVENT_CONTEXT(tc)->desktop->d2w(cursor_size)[Geom::Y]);
++ gtk_im_context_set_cursor_location(tc->imc, &im_cursor);
++ }
+ event_context->_message_context->set(Inkscape::NORMAL_MESSAGE, _("Type text; Enter to start new line.")); // FIXME:: this is a copy of a string from _update_cursor below, do not desync
+
+ event_context->within_tolerance = false;
+@@ -1560,8 +1571,6 @@
+ static void
+ sp_text_context_update_cursor(SPTextContext *tc, bool scroll_to_see)
+ {
+- GdkRectangle im_cursor = { 0, 0, 1, 1 };
+-
+ // due to interruptible display, tc may already be destroyed during a display update before
+ // the cursor update (can't do both atomically, alas)
+ if (!tc->desktop) return;
+@@ -1586,10 +1595,17 @@
+ sp_ctrlline_set_coords(SP_CTRLLINE(tc->cursor), d0, d1);
+
+ /* fixme: ... need another transformation to get canvas widget coordinate space? */
+- im_cursor.x = (int) floor(d0[Geom::X]);
+- im_cursor.y = (int) floor(d0[Geom::Y]);
+- im_cursor.width = (int) floor(d1[Geom::X]) - im_cursor.x;
+- im_cursor.height = (int) floor(d1[Geom::Y]) - im_cursor.y;
++ if (tc->imc) {
++ GdkRectangle im_cursor = { 0, 0, 1, 1 };
++ Geom::Point const top_left = SP_EVENT_CONTEXT(tc)->desktop->get_display_area().corner(3);
++ Geom::Point const im_d0 = SP_EVENT_CONTEXT(tc)->desktop->d2w(d0 - top_left);
++ Geom::Point const im_d1 = SP_EVENT_CONTEXT(tc)->desktop->d2w(d1 - top_left);
++ im_cursor.x = (int) floor(im_d0[Geom::X]);
++ im_cursor.y = (int) floor(im_d1[Geom::Y]);
++ im_cursor.width = (int) floor(im_d1[Geom::X]) - im_cursor.x;
++ im_cursor.height = (int) floor(im_d0[Geom::Y]) - im_cursor.y;
++ gtk_im_context_set_cursor_location(tc->imc, &im_cursor);
++ }
+
+ tc->show = TRUE;
+ tc->phase = 1;
+@@ -1631,9 +1647,6 @@
+ }
+ }
+
+- if (tc->imc) {
+- gtk_im_context_set_cursor_location(tc->imc, &im_cursor);
+- }
+ SP_EVENT_CONTEXT(tc)->desktop->emitToolSubselectionChanged((gpointer)tc);
+ }
+
diff --git a/multimedia/graphics/inkscape/pspec.xml b/multimedia/graphics/inkscape/pspec.xml
new file mode 100644
index 0000000000..14d4535986
--- /dev/null
+++ b/multimedia/graphics/inkscape/pspec.xml
@@ -0,0 +1,224 @@
+
+
+
+
+ inkscape
+ http://www.inkscape.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ LGPLv2.1
+ app:gui
+ SVG vector graphics application
+ Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files.
+ https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2
+
+ gtk2-devel
+ gtkmm-devel
+ atkmm-devel
+ cairo-devel
+ lcms2-devel
+ boost-devel
+ atk-devel
+ gc-devel
+ perl-XML-Parser
+ pango-devel
+ popt-devel
+ poppler-glib-devel
+ poppler-devel
+ aspell-devel
+ glibc-devel
+ gsl-devel
+ libwpg-devel
+ libwpd-devel
+ imagemagick-devel
+ glibmm-devel
+ libXft-devel
+ aalib-devel
+ libart_lgpl-devel
+ fontconfig-devel
+ libsigc++-devel
+ liblqr-devel
+ cairomm-devel
+ gdk-pixbuf-devel
+ libxslt-devel
+ pangomm-devel
+ libcdr-devel
+ libvisio-devel
+ librevenge-devel
+ libjpeg-turbo-devel
+ gtkspell-devel
+ dbus-glib-devel
+ zlib-devel
+ glib2-devel
+ libX11-devel
+ libgcc
+ libpng-devel
+ libxml2-devel
+ freetype
+ libgomp
+ libxslt-devel
+ intltool
+ gettext-devel
+ pkgconfig
+ libX11-devel
+
+
+
+
+
+ inkscape
+
+ freetype
+ libxml2
+ libpng
+ libgcc
+ libX11
+ glib2
+ zlib
+ dbus-glib
+ popt
+ gtk2
+ pango
+ lcms2
+ cairo
+ poppler-glib
+ gsl
+ aspell
+ libwpg
+ imagemagick
+ glibmm
+ gtkmm
+ fontconfig
+ libsigc++
+ gtkspell
+ cairomm
+ gdk-pixbuf
+ libxslt
+ pangomm
+ libwpd
+ atkmm
+ poppler
+ libcdr
+ libvisio
+ librevenge
+ libjpeg-turbo
+ libgomp
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/locale
+ /usr/share/man
+ /usr/share/doc
+ /usr/share/icons
+ /usr/share/dbus-1
+ /usr/share/inkscape
+ /usr/share/applications
+
+
+
+ inkscape-devel
+ Development files for Inkscape
+
+ inkscape
+ glib2-devel
+ dbus-glib-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-11-27
+ 0.91
+ Rebuild for 2.0.
+ Stefan Gronewold (groni)
+ groni@pisilinux.org
+
+
+ 2015-04-09
+ 0.91
+ fixed problems.
+ Hakan Yıldız
+ hknyldz93@gmail.com
+
+
+ 2015-03-07
+ 0.91
+ rebuild for poppler.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2015-02-09
+ 0.91
+ Version bump.
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2014-10-25
+ 0.48.5
+ Rebuild.
+ Vedat Demir
+ vedat@pisilinux.org
+
+
+ 2014-09-14
+ 0.48.5
+ Version bump.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2014-05-30
+ 0.48.4
+ Rebuild, cleanup.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2014-01-28
+ 0.48.4
+ New patch and some fixes
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2013-10-10
+ 0.48.4
+ Rebuil for new poppler.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2013-07-01
+ 0.48.4
+ Rebuild for poppler-0.22.5
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-03-26
+ 0.48.4
+ bump
+ Erdinç Gültekin
+ erdincgultekin@pisilinux.org
+
+
+ 2012-11-14
+ 0.48.3.1
+ First release
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+
diff --git a/multimedia/graphics/inkscape/translations.xml b/multimedia/graphics/inkscape/translations.xml
new file mode 100644
index 0000000000..60d927c5a8
--- /dev/null
+++ b/multimedia/graphics/inkscape/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ inkscape
+ Vektörel çizim programı
+ SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır.
+
+
+
+ inkscape-devel
+ Inkscape için geliştirme dosyaları
+
+
diff --git a/multimedia/misc/libcdr/actions.py b/multimedia/misc/libcdr/actions.py
new file mode 100644
index 0000000000..c4cc8c4cd6
--- /dev/null
+++ b/multimedia/misc/libcdr/actions.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt.
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.configure("--disable-static \
+ --without-docs")
+
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "COPYING*", "ChangeLog", "README")
diff --git a/multimedia/misc/libcdr/pspec.xml b/multimedia/misc/libcdr/pspec.xml
new file mode 100644
index 0000000000..ae021633c3
--- /dev/null
+++ b/multimedia/misc/libcdr/pspec.xml
@@ -0,0 +1,124 @@
+
+
+
+
+ libcdr
+ http://www.freedesktop.org/wiki/Software/libcdr
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ GPLv2
+ MPLv1.1
+ library
+ Library parsing the Corel cdr documents
+ Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications.
+ http://dev-www.libreoffice.org/src/libcdr-0.1.0.tar.bz2
+
+ doxygen
+ lcms2-devel
+ icu4c-devel
+ libwpd-devel
+ librevenge-devel
+
+
+
+
+ libcdr
+
+ lcms2
+ icu4c
+ zlib
+ libgcc
+ librevenge
+
+
+ /usr/lib
+ /usr/bin
+ /usr/share/doc/libcdr
+
+
+
+
+ libcdr-devel
+ Development files for libcdr
+
+ icu4c-devel
+ zlib-devel
+ lcms2-devel
+ librevenge-devel
+ libcdr
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-01-02
+ 0.1.1
+ Dep Fixed.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-09-26
+ 0.1.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-05-24
+ 0.0.16
+ Version bump.
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2014-02-25
+ 0.0.11
+ Rebuild Unused
+ Varol Maksutoğlu
+ waroi@pisilinux.org
+
+
+ 2013-10-14
+ 0.0.11
+ Rebuild for icu4c
+ Erdinç Gültekin
+ erdincgultekin@pisilinux.org
+
+
+ 2013-07-31
+ 0.0.11
+ missing dep.
+ Erdinç Gültekin
+ erdincgultekin@pisilinux.org
+
+
+ 2013-03-14
+ 0.0.11
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-02-17
+ 0.0.10
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-01-20
+ 0.0.9
+ First Release.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/multimedia/misc/libcdr/translations.xml b/multimedia/misc/libcdr/translations.xml
new file mode 100644
index 0000000000..e14c3a0402
--- /dev/null
+++ b/multimedia/misc/libcdr/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ libcdr
+ Library parsing the Corel cdr documents
+ Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications.
+
+
+
+ libcdr-devel
+ libcdr için geliştirme dosyaları
+
+
diff --git a/office/misc/librevenge/actions.py b/office/misc/librevenge/actions.py
new file mode 100644
index 0000000000..c1cbda9800
--- /dev/null
+++ b/office/misc/librevenge/actions.py
@@ -0,0 +1,27 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.configure("--disable-silent-rules \
+ --disable-static \
+ --disable-werror")
+
+ pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def check():
+ autotools.make("check")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "COPYING*", "NEWS", "README")
\ No newline at end of file
diff --git a/office/misc/librevenge/pspec.xml b/office/misc/librevenge/pspec.xml
new file mode 100644
index 0000000000..6ed6fe1d49
--- /dev/null
+++ b/office/misc/librevenge/pspec.xml
@@ -0,0 +1,55 @@
+-
+
+
+
+ librevenge
+ http://dev-www.libreoffice.org/src/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MPL-1.0
+ library
+ A base library for writing document import filters
+ librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations.
+ http://dev-www.libreoffice.org/src/librevenge-0.0.1.tar.bz2
+
+ boost-devel
+ cppunit-devel
+
+
+
+
+ librevenge
+
+ zlib
+ libgcc
+
+
+ /usr/share
+ /usr/lib
+
+
+
+
+ librevenge-devel
+ Development files for librevenge
+
+ librevenge
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-01-06
+ 0.0.1
+ First Release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
diff --git a/office/misc/librevenge/translations.xml b/office/misc/librevenge/translations.xml
new file mode 100644
index 0000000000..b451edcd65
--- /dev/null
+++ b/office/misc/librevenge/translations.xml
@@ -0,0 +1,14 @@
+
+
+
+ librevenge
+ A base library for writing document import filters
+ librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations.
+
+
+
+ librevenge-devel
+ librevenge için geliştirme dosyaları
+ Development files for librevenge
+
+
\ No newline at end of file
diff --git a/office/misc/libvisio/actions.py b/office/misc/libvisio/actions.py
new file mode 100644
index 0000000000..9adbd5c754
--- /dev/null
+++ b/office/misc/libvisio/actions.py
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.configure("--disable-static \
+ --without-docs")
+
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "NEWS", "COPYING*", "README")
diff --git a/office/misc/libvisio/pspec.xml b/office/misc/libvisio/pspec.xml
new file mode 100644
index 0000000000..f3d515c0cf
--- /dev/null
+++ b/office/misc/libvisio/pspec.xml
@@ -0,0 +1,117 @@
+
+
+
+
+ libvisio
+ http://www.ohloh.net/p/libvisio
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ LGPLv2.1
+ app:console
+ A C++ library for parsing binary Microsoft Visio documents
+ A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files.
+ http://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.0.tar.xz
+
+ icu4c-devel
+ librevenge-devel
+ zlib-devel
+ libxml2-devel
+ boost-devel
+ grep
+ libtool
+ pkgconfig
+
+
+
+
+ libvisio
+
+ icu4c
+ librevenge
+ libgcc
+ libxml2
+
+
+ /usr/lib
+ /usr/bin
+ /usr/share/doc/libvisio
+
+
+
+
+ libvisio-devel
+
+ icu4c-devel
+ librevenge-devel
+ zlib-devel
+ libxml2-devel
+ libvisio
+
+
+ /usr/include/
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-01-03
+ 0.1.0
+ Dep Fixed.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-09-26
+ 0.1.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-02-20
+ 0.0.25
+ Rebuild Unused
+ Varol Maksutoğlu
+ waroi@pisilinux.org
+
+
+ 2013-08-17
+ 0.0.25
+ R.Bump
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2013-07-28
+ 0.0.25
+ Move pc files to devel pack, rebuild
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2013-03-14
+ 0.0.25
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-02-17
+ 0.0.24
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2012-08-15
+ 0.0.19
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/office/misc/libvisio/translations.xml b/office/misc/libvisio/translations.xml
new file mode 100644
index 0000000000..687aa50489
--- /dev/null
+++ b/office/misc/libvisio/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ libvisio
+ A C++ library for parsing binary Microsoft Visio documents.
+ A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files.
+
+
diff --git a/pisi-index.xml b/pisi-index.xml
index 33abc60c76..c7c2b255b6 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -3244,6 +3244,103 @@
+
+
+ libwpg
+ http://libwpg.sourceforge.net
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ programming.misc
+ A C++ library designed to help process WordPerfect Graphics documents
+ WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı
+ Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations.
+ Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır.
+ http://dev-www.libreoffice.org/src/libwpg-0.3.0.tar.bz2
+
+ doxygen
+ libwpd-devel
+ libtool
+ grep
+ pkgconfig
+
+ programming/misc/libwpg/pspec.xml
+
+
+ libwpg
+
+ libwpd
+ librevenge
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+ /usr/bin
+
+
+
+ libwpg-devel
+ Development files for libwpg
+ libwpg için geliştirme dosyaları
+
+ libwpd-devel
+ librevenge-devel
+ libwpg
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+ libwpg-docs
+ Documentation for libwpg
+
+ /usr/share/doc/libwpg/html
+
+
+
+
+ 2015-01-02
+ 0.3.0
+ Dep Fixed.
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2014-09-26
+ 0.3.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-05-24
+ 0.2.2
+ Rebuild.
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2013-10-29
+ 0.2.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2012-11-14
+ 0.2.1
+ First release
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+
boost
@@ -4769,6 +4866,102 @@
+
+
+ libwpd
+ http://libwpd.sourceforge.net
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ programming.misc
+ A C++ library designed to help process WordPerfect documents
+ WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı
+ Library that handles Word Perfect documents.
+ Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır.
+ mirrors://sourceforge/libwpd/libwpd-0.10.0.tar.gz
+
+ doxygen
+ libgsf-devel
+ librevenge-devel
+ libtool
+ grep
+ pkgconfig
+
+ programming/misc/libwpd/pspec.xml
+
+
+ libwpd
+
+ librevenge
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+ /usr/bin
+
+
+
+ libwpd-devel
+ Development files for libwpd
+ libwpd için geliştirme dosyaları
+
+ libwpd
+ librevenge-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+ libwpd-docs
+ Documentation for libwpd
+
+ /usr/share/doc/libwpd/html
+
+
+
+
+ 2015-01-06
+ 0.10.0
+ Dep Fixed.
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2014-09-26
+ 0.10.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-05-24
+ 0.9.9
+ Rebuild.
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2013-10-29
+ 0.9.9
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2012-11-14
+ 0.9.6
+ First release
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+
xerces-c
@@ -13112,6 +13305,67 @@
+
+
+ cppunit
+ http://www.freedesktop.org/wiki/Software/cppunit
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ programming.tool
+ C++ port of the famous JUnit framework for unit testing
+ Popüler JUnit test çatısının C++ sürümü
+ cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers.
+ cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır.
+ http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz
+
+ grep
+ libtool
+
+ programming/tool/cppunit/pspec.xml
+
+
+ cppunit
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+ cppunit-devel
+ Contains the headers and other files necessary for developing programs that use cppunit
+
+ cppunit
+ libgcc
+
+
+ /usr/bin
+ /usr/include
+ /usr/share/aclocal
+ /usr/lib/pkgconfig
+ /usr/share/man
+
+
+
+
+ 2014-01-21
+ 1.13.2
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2013-02-09
+ 1.13.1
+ First release.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+
signon
@@ -30156,6 +30410,59 @@
+
+
+ librevenge
+ http://dev-www.libreoffice.org/src/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MPL-1.0
+ library
+ office.misc
+ A base library for writing document import filters
+ librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations.
+ http://dev-www.libreoffice.org/src/librevenge-0.0.1.tar.bz2
+
+ boost-devel
+ cppunit-devel
+
+ office/misc/librevenge/pspec.xml
+
+
+ librevenge
+
+ zlib
+ libgcc
+
+
+ /usr/share
+ /usr/lib
+
+
+
+ librevenge-devel
+ Development files for librevenge
+ librevenge için geliştirme dosyaları
+
+ librevenge
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2015-01-06
+ 0.0.1
+ First Release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
iso-codes
@@ -30785,6 +31092,122 @@
+
+
+ libvisio
+ http://www.ohloh.net/p/libvisio
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ LGPLv2.1
+ app:console
+ office.misc
+ A C++ library for parsing binary Microsoft Visio documents
+ A C++ library for parsing binary Microsoft Visio documents.
+ A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files.
+ A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files.
+ http://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.0.tar.xz
+
+ icu4c-devel
+ librevenge-devel
+ zlib-devel
+ libxml2-devel
+ boost-devel
+ grep
+ libtool
+ pkgconfig
+
+ office/misc/libvisio/pspec.xml
+
+
+ libvisio
+
+ icu4c
+ librevenge
+ libgcc
+ libxml2
+
+
+ /usr/lib
+ /usr/bin
+ /usr/share/doc/libvisio
+
+
+
+ libvisio-devel
+
+ icu4c-devel
+ librevenge-devel
+ zlib-devel
+ libxml2-devel
+ libvisio
+
+
+ /usr/include/
+ /usr/lib/pkgconfig
+
+
+
+
+ 2015-01-03
+ 0.1.0
+ Dep Fixed.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-09-26
+ 0.1.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-02-20
+ 0.0.25
+ Rebuild Unused
+ Varol Maksutoğlu
+ waroi@pisilinux.org
+
+
+ 2013-08-17
+ 0.0.25
+ R.Bump
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2013-07-28
+ 0.0.25
+ Move pc files to devel pack, rebuild
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2013-03-14
+ 0.0.25
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-02-17
+ 0.0.24
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2012-08-15
+ 0.0.19
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
doxygen
@@ -41962,7 +42385,7 @@
mirrors://gnome/pangomm/2.34/pangomm-2.34.0.tar.xz
grep
- libtool-devel
+ libtool
doxygen
boost-devel
glib2-devel
@@ -94802,6 +95225,128 @@ Jabber and others
+
+
+ libcdr
+ http://www.freedesktop.org/wiki/Software/libcdr
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ GPLv2
+ MPLv1.1
+ library
+ multimedia.misc
+ Library parsing the Corel cdr documents
+ Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications.
+ http://dev-www.libreoffice.org/src/libcdr-0.1.0.tar.bz2
+
+ doxygen
+ lcms2-devel
+ icu4c-devel
+ libwpd-devel
+ librevenge-devel
+
+ multimedia/misc/libcdr/pspec.xml
+
+
+ libcdr
+
+ lcms2
+ icu4c
+ zlib
+ libgcc
+ librevenge
+
+
+ /usr/lib
+ /usr/bin
+ /usr/share/doc/libcdr
+
+
+
+ libcdr-devel
+ Development files for libcdr
+ libcdr için geliştirme dosyaları
+
+ icu4c-devel
+ zlib-devel
+ lcms2-devel
+ librevenge-devel
+ libcdr
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2015-01-02
+ 0.1.1
+ Dep Fixed.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-09-26
+ 0.1.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-05-24
+ 0.0.16
+ Version bump.
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2014-02-25
+ 0.0.11
+ Rebuild Unused
+ Varol Maksutoğlu
+ waroi@pisilinux.org
+
+
+ 2013-10-14
+ 0.0.11
+ Rebuild for icu4c
+ Erdinç Gültekin
+ erdincgultekin@pisilinux.org
+
+
+ 2013-07-31
+ 0.0.11
+ missing dep.
+ Erdinç Gültekin
+ erdincgultekin@pisilinux.org
+
+
+ 2013-03-14
+ 0.0.11
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-02-17
+ 0.0.10
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-01-20
+ 0.0.9
+ First Release.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
libopus
@@ -100754,6 +101299,228 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
+
+
+ inkscape
+ http://www.inkscape.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ LGPLv2.1
+ app:gui
+ multimedia.graphics
+ SVG vector graphics application
+ Vektörel çizim programı
+ Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files.
+ SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır.
+ https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2
+
+ gtk2-devel
+ gtkmm-devel
+ atkmm-devel
+ cairo-devel
+ lcms2-devel
+ boost-devel
+ atk-devel
+ gc-devel
+ perl-XML-Parser
+ pango-devel
+ popt-devel
+ poppler-glib-devel
+ poppler-devel
+ aspell-devel
+ glibc-devel
+ gsl-devel
+ libwpg-devel
+ libwpd-devel
+ imagemagick-devel
+ glibmm-devel
+ libXft-devel
+ aalib-devel
+ libart_lgpl-devel
+ fontconfig-devel
+ libsigc++-devel
+ liblqr-devel
+ cairomm-devel
+ gdk-pixbuf-devel
+ libxslt-devel
+ pangomm-devel
+ libcdr-devel
+ libvisio-devel
+ librevenge-devel
+ libjpeg-turbo-devel
+ gtkspell-devel
+ dbus-glib-devel
+ zlib-devel
+ glib2-devel
+ libX11-devel
+ libgcc
+ libpng-devel
+ libxml2-devel
+ freetype
+ libgomp
+ libxslt-devel
+ intltool
+ gettext-devel
+ pkgconfig
+ libX11-devel
+
+ multimedia/graphics/inkscape/pspec.xml
+
+
+ inkscape
+
+ freetype
+ libxml2
+ libpng
+ libgcc
+ libX11
+ glib2
+ zlib
+ dbus-glib
+ popt
+ gtk2
+ pango
+ lcms2
+ cairo
+ poppler-glib
+ gsl
+ aspell
+ libwpg
+ imagemagick
+ glibmm
+ gtkmm
+ fontconfig
+ libsigc++
+ gtkspell
+ cairomm
+ gdk-pixbuf
+ libxslt
+ pangomm
+ libwpd
+ atkmm
+ poppler
+ libcdr
+ libvisio
+ librevenge
+ libjpeg-turbo
+ libgomp
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/locale
+ /usr/share/man
+ /usr/share/doc
+ /usr/share/icons
+ /usr/share/dbus-1
+ /usr/share/inkscape
+ /usr/share/applications
+
+
+
+ inkscape-devel
+ Development files for Inkscape
+ Inkscape için geliştirme dosyaları
+
+ inkscape
+ glib2-devel
+ dbus-glib-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2015-11-27
+ 0.91
+ Rebuild for 2.0.
+ Stefan Gronewold (groni)
+ groni@pisilinux.org
+
+
+ 2015-04-09
+ 0.91
+ fixed problems.
+ Hakan Yıldız
+ hknyldz93@gmail.com
+
+
+ 2015-03-07
+ 0.91
+ rebuild for poppler.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2015-02-09
+ 0.91
+ Version bump.
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2014-10-25
+ 0.48.5
+ Rebuild.
+ Vedat Demir
+ vedat@pisilinux.org
+
+
+ 2014-09-14
+ 0.48.5
+ Version bump.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2014-05-30
+ 0.48.4
+ Rebuild, cleanup.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2014-01-28
+ 0.48.4
+ New patch and some fixes
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2013-10-10
+ 0.48.4
+ Rebuil for new poppler.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2013-07-01
+ 0.48.4
+ Rebuild for poppler-0.22.5
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-03-26
+ 0.48.4
+ bump
+ Erdinç Gültekin
+ erdincgultekin@pisilinux.org
+
+
+ 2012-11-14
+ 0.48.3.1
+ First release
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+
aalib
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index 54b1f85b71..680bbd47d1 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-86336e70c007d03dc180924bc5480a4dffe4ec5f
\ No newline at end of file
+83fa75cc5e31d6347a29842ce448f4c66d424f75
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index ec54424f71..af23e1fd54 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index 4391d15166..8aaf4329a3 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-55dd553557c9326caa84a137d239304db766df9b
\ No newline at end of file
+da7eb68bc29c434e63b11c61c6b7a035969082c5
\ No newline at end of file
diff --git a/programming/misc/libwpd/actions.py b/programming/misc/libwpd/actions.py
new file mode 100644
index 0000000000..8e81cfef82
--- /dev/null
+++ b/programming/misc/libwpd/actions.py
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ for f in ("AUTHORS", "NEWS", "ChangeLog"):
+ shelltools.touch(f)
+
+ autotools.autoreconf("-vfi")
+ autotools.configure("--disable-static")
+
+ # for fix unused dependency
+ pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
diff --git a/programming/misc/libwpd/pspec.xml b/programming/misc/libwpd/pspec.xml
new file mode 100644
index 0000000000..16b41199d8
--- /dev/null
+++ b/programming/misc/libwpd/pspec.xml
@@ -0,0 +1,97 @@
+
+
+
+
+ libwpd
+ http://libwpd.sourceforge.net
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ A C++ library designed to help process WordPerfect documents
+ Library that handles Word Perfect documents.
+ mirrors://sourceforge/libwpd/libwpd-0.10.0.tar.gz
+
+ doxygen
+ libgsf-devel
+ librevenge-devel
+ libtool
+ grep
+ pkgconfig
+
+
+
+
+ libwpd
+
+ librevenge
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+ /usr/bin
+
+
+
+
+ libwpd-devel
+ Development files for libwpd
+
+ libwpd
+ librevenge-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ libwpd-docs
+ Documentation for libwpd
+
+ /usr/share/doc/libwpd/html
+
+
+
+
+
+ 2015-01-06
+ 0.10.0
+ Dep Fixed.
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2014-09-26
+ 0.10.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-05-24
+ 0.9.9
+ Rebuild.
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2013-10-29
+ 0.9.9
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2012-11-14
+ 0.9.6
+ First release
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/programming/misc/libwpd/translations.xml b/programming/misc/libwpd/translations.xml
new file mode 100644
index 0000000000..c9a223a60d
--- /dev/null
+++ b/programming/misc/libwpd/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ libwpd
+ WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı
+ Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır.
+
+
+
+ libwpd-devel
+ libwpd için geliştirme dosyaları
+
+
diff --git a/programming/misc/libwpg/actions.py b/programming/misc/libwpg/actions.py
new file mode 100644
index 0000000000..9def7a1457
--- /dev/null
+++ b/programming/misc/libwpg/actions.py
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+def setup():
+ shelltools.touch("NEWS")
+
+ autotools.autoreconf("-fvi")
+ autotools.configure("--disable-static")
+
+ # for fix unused dependency
+ pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
+
+ pisitools.dodoc("README","ChangeLog")
diff --git a/programming/misc/libwpg/pspec.xml b/programming/misc/libwpg/pspec.xml
new file mode 100644
index 0000000000..10e86523ef
--- /dev/null
+++ b/programming/misc/libwpg/pspec.xml
@@ -0,0 +1,98 @@
+
+
+
+
+ libwpg
+ http://libwpg.sourceforge.net
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ A C++ library designed to help process WordPerfect Graphics documents
+ Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations.
+ http://dev-www.libreoffice.org/src/libwpg-0.3.0.tar.bz2
+
+ doxygen
+ libwpd-devel
+ libtool
+ grep
+ pkgconfig
+
+
+
+
+ libwpg
+
+ libwpd
+ librevenge
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+ /usr/bin
+
+
+
+
+ libwpg-devel
+ Development files for libwpg
+
+ libwpd-devel
+ librevenge-devel
+ libwpg
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ libwpg-docs
+ Documentation for libwpg
+
+ /usr/share/doc/libwpg/html
+
+
+
+
+
+ 2015-01-02
+ 0.3.0
+ Dep Fixed.
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2014-09-26
+ 0.3.0
+ Version bump.
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-05-24
+ 0.2.2
+ Rebuild.
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2013-10-29
+ 0.2.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2012-11-14
+ 0.2.1
+ First release
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/programming/misc/libwpg/translations.xml b/programming/misc/libwpg/translations.xml
new file mode 100644
index 0000000000..472eff4933
--- /dev/null
+++ b/programming/misc/libwpg/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ libwpg
+ WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı
+ Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır.
+
+
+
+ libwpg-devel
+ libwpg için geliştirme dosyaları
+
+
diff --git a/programming/tool/cppunit/actions.py b/programming/tool/cppunit/actions.py
new file mode 100644
index 0000000000..7e232ab035
--- /dev/null
+++ b/programming/tool/cppunit/actions.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.configure("--disable-static --disable-html-docs --disable-doxygen")
+
+def build():
+ autotools.make()
+
+def check():
+ autotools.make("check")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "THANKS", "TODO")
diff --git a/programming/tool/cppunit/pspec.xml b/programming/tool/cppunit/pspec.xml
new file mode 100644
index 0000000000..15df258485
--- /dev/null
+++ b/programming/tool/cppunit/pspec.xml
@@ -0,0 +1,62 @@
+
+
+
+
+ cppunit
+ http://www.freedesktop.org/wiki/Software/cppunit
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ C++ port of the famous JUnit framework for unit testing
+ cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers.
+ http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz
+
+ grep
+ libtool
+
+
+
+
+ cppunit
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ cppunit-devel
+ Contains the headers and other files necessary for developing programs that use cppunit
+
+ cppunit
+ libgcc
+
+
+ /usr/bin
+ /usr/include
+ /usr/share/aclocal
+ /usr/lib/pkgconfig
+ /usr/share/man
+
+
+
+
+
+ 2014-01-21
+ 1.13.2
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2013-02-09
+ 1.13.1
+ First release.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+
diff --git a/programming/tool/cppunit/translations.xml b/programming/tool/cppunit/translations.xml
new file mode 100644
index 0000000000..97278dd1f6
--- /dev/null
+++ b/programming/tool/cppunit/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ cppunit
+ Popüler JUnit test çatısının C++ sürümü
+ cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır.
+
+