inkscape SVG vector graphics application
This commit is contained in:
@@ -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")
|
||||
@@ -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; <b>Enter</b> 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);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,224 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>inkscape</Name>
|
||||
<Homepage>http://www.inkscape.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>SVG vector graphics application</Summary>
|
||||
<Description>Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files.</Description>
|
||||
<Archive sha1sum="9941ee467af570ac71a70f965cd9c48d4993b8f3" type="tarbz2">https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtkmm-devel</Dependency>
|
||||
<Dependency>atkmm-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gc-devel</Dependency>
|
||||
<Dependency>perl-XML-Parser</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>popt-devel</Dependency>
|
||||
<Dependency>poppler-glib-devel</Dependency>
|
||||
<Dependency>poppler-devel</Dependency>
|
||||
<Dependency>aspell-devel</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>gsl-devel</Dependency>
|
||||
<Dependency>libwpg-devel</Dependency>
|
||||
<Dependency>libwpd-devel</Dependency>
|
||||
<Dependency>imagemagick-devel</Dependency>
|
||||
<Dependency>glibmm-devel</Dependency>
|
||||
<Dependency>libXft-devel</Dependency>
|
||||
<Dependency>aalib-devel</Dependency>
|
||||
<Dependency>libart_lgpl-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>libsigc++-devel</Dependency>
|
||||
<Dependency>liblqr-devel</Dependency>
|
||||
<Dependency>cairomm-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>pangomm-devel</Dependency>
|
||||
<Dependency>libcdr-devel</Dependency>
|
||||
<Dependency>libvisio-devel</Dependency>
|
||||
<Dependency>librevenge-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>gtkspell-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>pkgconfig</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--<Patches>
|
||||
<Patch>ime-placement.patch</Patch>
|
||||
</Patches>-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>inkscape</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>dbus-glib</Dependency>
|
||||
<Dependency>popt</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>poppler-glib</Dependency>
|
||||
<Dependency>gsl</Dependency>
|
||||
<Dependency>aspell</Dependency>
|
||||
<Dependency>libwpg</Dependency>
|
||||
<Dependency>imagemagick</Dependency>
|
||||
<Dependency>glibmm</Dependency>
|
||||
<Dependency>gtkmm</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>libsigc++</Dependency>
|
||||
<Dependency>gtkspell</Dependency>
|
||||
<Dependency>cairomm</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>pangomm</Dependency>
|
||||
<Dependency>libwpd</Dependency>
|
||||
<Dependency>atkmm</Dependency>
|
||||
<Dependency>poppler</Dependency>
|
||||
<Dependency>libcdr</Dependency>
|
||||
<Dependency>libvisio</Dependency>
|
||||
<Dependency>librevenge</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="data">/usr/share/inkscape</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>inkscape-devel</Name>
|
||||
<Summary>Development files for Inkscape</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">inkscape</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2015-11-27</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>Rebuild for 2.0.</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2015-04-09</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>fixed problems.</Comment>
|
||||
<Name>Hakan Yıldız</Name>
|
||||
<Email>hknyldz93@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2015-03-07</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>rebuild for poppler.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2015-02-09</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2014-10-25</Date>
|
||||
<Version>0.48.5</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2014-09-14</Date>
|
||||
<Version>0.48.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-05-30</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>Rebuild, cleanup.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-01-28</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>New patch and some fixes</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-10-10</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>Rebuil for new poppler.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-07-01</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>Rebuild for poppler-0.22.5</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-03-26</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>bump</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-14</Date>
|
||||
<Version>0.48.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>inkscape</Name>
|
||||
<Summary xml:lang="tr">Vektörel çizim programı</Summary>
|
||||
<Description xml:lang="tr">SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>inkscape-devel</Name>
|
||||
<Summary xml:lang="tr">Inkscape için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+222
@@ -101299,6 +101299,228 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>inkscape</Name>
|
||||
<Homepage>http://www.inkscape.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>multimedia.graphics</PartOf>
|
||||
<Summary xml:lang="en">SVG vector graphics application</Summary>
|
||||
<Summary xml:lang="tr">Vektörel çizim programı</Summary>
|
||||
<Description xml:lang="en">Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files.</Description>
|
||||
<Description xml:lang="tr">SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır.</Description>
|
||||
<Archive type="tarbz2" sha1sum="9941ee467af570ac71a70f965cd9c48d4993b8f3">https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtkmm-devel</Dependency>
|
||||
<Dependency>atkmm-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gc-devel</Dependency>
|
||||
<Dependency>perl-XML-Parser</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>popt-devel</Dependency>
|
||||
<Dependency>poppler-glib-devel</Dependency>
|
||||
<Dependency>poppler-devel</Dependency>
|
||||
<Dependency>aspell-devel</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>gsl-devel</Dependency>
|
||||
<Dependency>libwpg-devel</Dependency>
|
||||
<Dependency>libwpd-devel</Dependency>
|
||||
<Dependency>imagemagick-devel</Dependency>
|
||||
<Dependency>glibmm-devel</Dependency>
|
||||
<Dependency>libXft-devel</Dependency>
|
||||
<Dependency>aalib-devel</Dependency>
|
||||
<Dependency>libart_lgpl-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>libsigc++-devel</Dependency>
|
||||
<Dependency>liblqr-devel</Dependency>
|
||||
<Dependency>cairomm-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>pangomm-devel</Dependency>
|
||||
<Dependency>libcdr-devel</Dependency>
|
||||
<Dependency>libvisio-devel</Dependency>
|
||||
<Dependency>librevenge-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>gtkspell-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>pkgconfig</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>multimedia/graphics/inkscape/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>inkscape</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>dbus-glib</Dependency>
|
||||
<Dependency>popt</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>poppler-glib</Dependency>
|
||||
<Dependency>gsl</Dependency>
|
||||
<Dependency>aspell</Dependency>
|
||||
<Dependency>libwpg</Dependency>
|
||||
<Dependency>imagemagick</Dependency>
|
||||
<Dependency>glibmm</Dependency>
|
||||
<Dependency>gtkmm</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>libsigc++</Dependency>
|
||||
<Dependency>gtkspell</Dependency>
|
||||
<Dependency>cairomm</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>pangomm</Dependency>
|
||||
<Dependency>libwpd</Dependency>
|
||||
<Dependency>atkmm</Dependency>
|
||||
<Dependency>poppler</Dependency>
|
||||
<Dependency>libcdr</Dependency>
|
||||
<Dependency>libvisio</Dependency>
|
||||
<Dependency>librevenge</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="data">/usr/share/inkscape</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>inkscape-devel</Name>
|
||||
<Summary xml:lang="en">Development files for Inkscape</Summary>
|
||||
<Summary xml:lang="tr">Inkscape için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="12">inkscape</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2015-11-27</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>Rebuild for 2.0.</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2015-04-09</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>fixed problems.</Comment>
|
||||
<Name>Hakan Yıldız</Name>
|
||||
<Email>hknyldz93@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2015-03-07</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>rebuild for poppler.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2015-02-09</Date>
|
||||
<Version>0.91</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2014-10-25</Date>
|
||||
<Version>0.48.5</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2014-09-14</Date>
|
||||
<Version>0.48.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-05-30</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>Rebuild, cleanup.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-01-28</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>New patch and some fixes</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-10-10</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>Rebuil for new poppler.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-07-01</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>Rebuild for poppler-0.22.5</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-03-26</Date>
|
||||
<Version>0.48.4</Version>
|
||||
<Comment>bump</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-14</Date>
|
||||
<Version>0.48.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>aalib</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
3c6dc9a0ea415895e790a9f3a9e2b824e14cd5c8
|
||||
83fa75cc5e31d6347a29842ce448f4c66d424f75
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
ca8c6b7b0b17a3010a3260c5cc10a8f015bc58c8
|
||||
da7eb68bc29c434e63b11c61c6b7a035969082c5
|
||||
Reference in New Issue
Block a user