diff --git a/pisi-index.xml b/pisi-index.xml index 230f9827e3..11b8608737 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 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index f9a5c5ef64..498f5db499 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -9fe52a8873a006184fa2dbe90307c4696a61f5d0 \ No newline at end of file +7fd1ddfb9b925105880469af22afb2d2d46dc234 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index c59139ca25..c3a3396abf 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 9c72aa615a..91c4c3a221 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -af271ab4918ccbf227ea1ad143b9c3a748ae95db \ No newline at end of file +84b97b1303c6f91929c811ef545870437404387b \ No newline at end of file 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ı + +