Merge branch 'master' of github.com:pisilinux/main

This commit is contained in:
Ertuğrul Erata
2015-07-05 14:09:53 +03:00
128 changed files with 37294 additions and 792 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/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.autoreconf("-vif")
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
@@ -0,0 +1,13 @@
Index: xdg-utils-1.0.2.20100618/scripts/Makefile.in
===================================================================
--- xdg-utils-1.0.2.20100618.orig/scripts/Makefile.in
+++ xdg-utils-1.0.2.20100618/scripts/Makefile.in
@@ -5,7 +5,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(IN
INSTALL_LIBRARY = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
-XMLTO = @XMLTO@
+XMLTO = @XMLTO@ --skip-validation
prefix = @prefix@
exec_prefix = @exec_prefix@
@@ -0,0 +1,20 @@
diff -Nur xdg-utils-1.0.2.20100618-old//scripts/Makefile.in xdg-utils-1.0.2.20100618//scripts/Makefile.in
--- xdg-utils-1.0.2.20100618-old//scripts/Makefile.in 2010-10-27 10:39:56.381000014 +0300
+++ xdg-utils-1.0.2.20100618//scripts/Makefile.in 2010-10-27 10:41:44.799000093 +0300
@@ -20,11 +20,11 @@
xdg-open \
xdg-email \
xdg-screensaver \
- xdg-settings
-# xdg-su
-# xdg-copy \
-# xdg-file-dialog
-# xdg-terminal
+ xdg-settings \
+ xdg-su \
+ xdg-copy \
+ xdg-file-dialog \
+ xdg-terminal
MANPAGES= $(SCRIPTS:%=man/%.1)
WEBPAGES= $(SCRIPTS:%=%.html)
+42
View File
@@ -0,0 +1,42 @@
Index: xdg-utils-1.0.2/scripts/xdg-su
===================================================================
--- xdg-utils-1.0.2.orig/scripts/xdg-su
+++ xdg-utils-1.0.2/scripts/xdg-su
@@ -351,6 +351,26 @@ su_gnome()
exit_failure_operation_failed
fi
else
+ su_gk
+ fi
+}
+
+su_gk()
+{
+ GKSU=`which gksu 2>/dev/null`
+ if [ $? -eq 0 ] ; then
+ if [ -z "$user" ] ; then
+ $GKSU "$cmd"
+ else
+ $GKSU -u "$user" "$cmd"
+ fi
+
+ if [ $? -eq 0 ]; then
+ exit_success
+ else
+ exit_failure_operation_failed
+ fi
+ else
su_generic
fi
}
@@ -427,6 +447,10 @@ case "$DE" in
su_gnome
;;
+ xfce)
+ su_gk
+ ;;
+
generic)
su_generic
;;
@@ -0,0 +1,11 @@
--- scripts/xdg-utils-common.in.OSmanOS 2012-10-08 18:26:46.000000000 +0300
+++ scripts/xdg-utils-common.in 2013-04-05 18:22:55.816631216 +0300
@@ -280,7 +280,7 @@
elif [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ]; then DE=gnome;
elif [ x"$MATE_DESKTOP_SESSION_ID" != x"" ]; then DE=mate;
elif `dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager > /dev/null 2>&1` ; then DE=gnome;
- elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce;
+ elif xprop -root | grep -qw XFCE_DESKTOP_WINDOW 2>&1; then DE=xfce;
elif xprop -root 2> /dev/null | grep -i '^xfce_desktop_window' >/dev/null 2>&1; then DE=xfce
fi
fi
+68
View File
@@ -0,0 +1,68 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xdg-utils</Name>
<Homepage>http://portland.freedesktop.org/wiki/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>app:console</IsA>
<Summary>Common desktop utilities</Summary>
<Description>Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running.</Description>
<Archive sha1sum="c72dde66a056aebcc376aae3be6f91e8d76ae2b5" type="tarxz">http://source.pisilinux.org/1.0/xdg-utils.tar.xz</Archive>
<BuildDependencies>
<Dependency>xmlto</Dependency>
<Dependency>docbook-xsl</Dependency>
<Dependency>lynx</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1">gksu.patch</Patch> -->
<Patch level="1">enable-other-xdg.patch</Patch>
<Patch level="0">xfce-detection.patch</Patch>
<!--<Patch level="1">fix-terminal-detection.patch</Patch>--> <!--Fixed-->
<Patch level="1">drop-xmlto-stuff.patch</Patch>
</Patches>
</Source>
<Package>
<Name>xdg-utils</Name>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-02-16</Date>
<Version>1.1.0_20140207</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-10-23</Date>
<Version>20131006</Version>
<Comment>Release bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-26</Date>
<Version>1.1.0_rc1</Version>
<Comment>Release bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-04-05</Date>
<Version>1.1.0_rc1</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xdg-utils</Name>
<Summary xml:lang="tr">Ortak masaüstü komutları</Summary>
<Summary xml:lang="fr">Utilitaires de bureaux communs.</Summary>
</Source>
</PISI>
@@ -0,0 +1,60 @@
#!/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 perlmodules
from pisi.actionsapi import get
# .la files needed to load modules
KeepSpecial = ["libtool"]
def setup():
# ghostscript is better than dps
# unstable fpx support disabled
# trio is for old systems not providing vsnprintf
autotools.configure("--enable-openmp \
--enable-shared \
--disable-static \
--with-threads \
--with-modules \
--with-magick-plus-plus \
--with-perl \
--with-bzlib \
--without-dps \
--without-fpx \
--with-gslib \
--with-jbig \
--with-jpeg \
--with-jp2 \
--with-lcms \
--with-png \
--with-tiff \
--without-trio \
--with-ttf \
--with-wmf \
--with-fontpath=/usr/share/fonts \
--with-gs-font-dir=/usr/share/fonts/default/ghostscript \
--with-xml \
--with-zlib \
--with-x \
--with-quantum-depth=16")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
autotools.make("perl-build")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
autotools.rawInstall("DESTDIR=%s -C PerlMagick" % get.installDIR())
for d in ("demo/", "Changelog", "README.txt"):
pisitools.insinto("/usr/share/doc/PerlMagick", "PerlMagick/%s" % d)
pisitools.remove("/usr/lib/*.la")
perlmodules.removePacklist()
perlmodules.removePodfiles()
@@ -0,0 +1,12 @@
diff -up GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in.perl_linkage GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in
--- GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in.perl_linkage 2012-02-25 14:43:38.000000000 -0600
+++ GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in 2012-02-26 07:35:38.542731280 -0600
@@ -78,7 +78,7 @@ WriteMakefile
'INSTALLBIN' => $magick_BIN_DIR,
# Library specification
- 'LIBS' => ["-L$magick_LIB_DIR -lGraphicsMagick $magick_LDFLAGS $magick_DEP_LIBS"],
+ 'LIBS' => ["-L$magick_LIB_DIR -L../magick/.libs -lGraphicsMagick $magick_LDFLAGS $magick_DEP_LIBS"],
# Perl binary name (if a Perl binary is built)
'MAP_TARGET' => 'PerlMagick',
@@ -0,0 +1,43 @@
diff -up GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in.multilib GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in
--- GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in.multilib 2011-11-12 14:39:22.000000000 -0600
+++ GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in 2012-06-24 11:25:12.603862643 -0500
@@ -33,13 +33,13 @@ while test $# -gt 0; do
echo '@MAGICK_API_CPPFLAGS@'
;;
--cxxflags)
- echo '@CXXFLAGS@'
+ echo ''
;;
--ldflags)
- echo '@MAGICK_API_LDFLAGS@'
+ echo ''
;;
--libs)
- echo '-lGraphicsMagick++ @MAGICK_API_LIBS@'
+ echo '-lGraphicsMagick++'
;;
*)
echo "${usage}" 1>&2
diff -up GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in.multilib GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in
--- GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in.multilib 2011-11-12 14:39:26.000000000 -0600
+++ GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in 2012-06-24 11:14:55.947571850 -0500
@@ -30,16 +30,16 @@ while test $# -gt 0; do
echo @PACKAGE_VERSION@
;;
--cflags)
- echo '@CFLAGS@'
+ echo ''
;;
--cppflags)
echo '@MAGICK_API_CPPFLAGS@'
;;
--ldflags)
- echo '@MAGICK_API_LDFLAGS@'
+ echo ''
;;
--libs)
- echo '@MAGICK_API_LIBS@'
+ echo '-lGraphicsMagick'
;;
*)
echo "${usage}" 1>&2
@@ -0,0 +1,139 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>GraphicsMagick</Name>
<Homepage>http://www.graphicsmagick.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>GraphicsMagick Image Processing System</Summary>
<Description>GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software.</Description>
<Archive sha1sum="73042eee48e17d074f68f6f70fc81b221481255a" type="tarxz">mirrors://sourceforge/graphicsmagick/GraphicsMagick-1.3.20.tar.xz</Archive>
<BuildDependencies>
<Dependency>tiff-devel</Dependency>
<Dependency>webp-devel</Dependency>
<Dependency>lcms2-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libwmf-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>jasper-devel</Dependency>
<Dependency>jbigkit-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>ghostscript-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">GraphicsMagick-1.3.14-perl_linkage.patch</Patch>
<Patch level="1">GraphicsMagick-1.3.16-multilib.patch</Patch>
</Patches>
</Source>
<Package>
<Name>GraphicsMagick</Name>
<IsA>app:console</IsA>
<RuntimeDependencies>
<Dependency>tiff</Dependency>
<Dependency>webp</Dependency>
<Dependency>lcms2</Dependency>
<Dependency>libwmf</Dependency>
<Dependency>jasper</Dependency>
<Dependency>libXext</Dependency>
<Dependency>jbigkit</Dependency>
<Dependency>libgomp</Dependency>
<Dependency>ghostscript</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin/gm</Path>
<Path fileType="library">/usr/lib/GraphicsMagick-*</Path>
<Path fileType="library">/usr/lib/lib*</Path>
<Path fileType="data">/usr/share/GraphicsMagick-*</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>GraphicsMagick-devel</Name>
<Summary>Development files for GraphicsMagick</Summary>
<RuntimeDependencies>
<Dependency release="current">GraphicsMagick</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/*-config</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc/GraphicsMagick/www</Path>
<Path fileType="man">/usr/share/man/man1/*-config.*</Path>
</Files>
</Package>
<Package>
<Name>PerlMagick</Name>
<Summary>GraphicsMagick perl bindings</Summary>
<RuntimeDependencies>
<Dependency release="current">GraphicsMagick</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/perl5</Path>
<Path fileType="doc">/usr/share/doc/PerlMagick</Path>
</Files>
</Package>
<History>
<Update release="7">
<Date>2014-09-13</Date>
<Version>1.3.20</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-19</Date>
<Version>1.3.19</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-04-23</Date>
<Version>1.3.19</Version>
<Comment>Rebuild</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-02-07</Date>
<Version>1.3.19</Version>
<Comment>Rebuild Unused</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-01-04</Date>
<Version>1.3.19</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-29</Date>
<Version>1.3.17</Version>
<Comment>Dep fixed</Comment>
<Name>Fatih Turgel</Name>
<Email>hitaf@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-22</Date>
<Version>1.3.17</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>GraphicsMagick</Name>
<Summary xml:lang="tr">GraphicsMagick Resim İşleme Sistemi</Summary>
<Description xml:lang="tr">GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır.</Description>
</Source>
</PISI>
+26
View File
@@ -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 get
def setup():
autotools.autoreconf("-vfi")
autotools.configure("--with-slang-driver \
--with-x11-driver \
--disable-static")
def build():
autotools.make("CC=%s" % get.CC())
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "AUTHORS", "NEWS", "README*", "COPYING", "ANNOUNCE")
+9
View File
@@ -0,0 +1,9 @@
Get rid of aclocal warning:
/usr/share/aclocal/aalib.m4:12: warning: underquoted definition of AM_PATH_AALIB
--- aalib-1.4.0/aalib.m4
+++ aalib-1.4.0/aalib.m4
@@ -11,3 +11,3 @@
dnl
-AC_DEFUN(AM_PATH_AALIB,
+AC_DEFUN([AM_PATH_AALIB],
[dnl
+74
View File
@@ -0,0 +1,74 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>aalib</Name>
<Homepage>http://aa-project.sourceforge.net/aalib/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>An ASCII-graphics Library</Summary>
<Description>Aalib is an ASCII-graphics library generating ASCII character outputs.</Description>
<Archive sha1sum="a23269e950a249d2ef93625837cace45ddbce03b" type="targz">mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz</Archive>
<BuildDependencies>
<Dependency>gpm</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">m4.patch</Patch>
</Patches>
</Source>
<Package>
<Name>aalib</Name>
<RuntimeDependencies>
<Dependency>gpm</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="info">/usr/share/info</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>aalib-devel</Name>
<Summary>Development files for aalib</Summary>
<RuntimeDependencies>
<Dependency release="current">aalib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/aclocal</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="man">/usr/share/man/man3</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-20</Date>
<Version>1.4_rc5</Version>
<Comment>Rebuild, cleanup, fix gpm linking.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-16</Date>
<Version>1.4_rc5</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-12-20</Date>
<Version>1.4_rc5</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>aalib</Name>
<Summary xml:lang="tr">Bir ASCII-grafik Kitaplığı</Summary>
<Description xml:lang="tr">AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir.</Description>
<Description xml:lang="fr">Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII.</Description>
<Description xml:lang="es">Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII.</Description>
</Source>
<Package>
<Name>aalib-devel</Name>
<Summary xml:lang="tr">aalib için geliştirme dosyaları</Summary>
</Package>
</PISI>
+21
View File
@@ -0,0 +1,21 @@
#!/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
def setup():
autotools.configure("--enable-mmx \
--enable-sse \
--disable-altivec")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
+74
View File
@@ -0,0 +1,74 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>babl</Name>
<Homepage>http://gegl.org/babl</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<License>LGPLv3</License>
<IsA>library</IsA>
<Summary>A dynamic, any to any, pixel format translation library</Summary>
<Description>babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations.</Description>
<Archive sha1sum="b9a811d9d05717d66bc107a18447fbd74cff7eea" type="tarbz2">http://download.gimp.org/pub/babl/0.1/babl-0.1.12.tar.bz2</Archive>
<BuildDependencies>
<!-- For rsvg utility -->
<Dependency>librsvg</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>babl</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>babl-devel</Name>
<Summary>Development files for babl</Summary>
<RuntimeDependencies>
<Dependency release="current">babl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2015-02-07</Date>
<Version>0.1.12</Version>
<Comment>Version bump.</Comment>
<Name>Hakan Yıldız</Name>
<Email>hknyldz93@gmail.com</Email>
</Update>
<Update release="3">
<Date>2014-06-19</Date>
<Version>0.1.10</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-18</Date>
<Version>0.1.10</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-28</Date>
<Version>0.1.10</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>babl</Name>
<Summary xml:lang="tr">Dinamik piksel biçimi dönüştürme kütüphanesi</Summary>
<Description xml:lang="tr">babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir.</Description>
</Source>
<Package>
<Name>babl-devel</Name>
<Summary xml:lang="tr">babl için geliştirme dosyaları</Summary>
</Package>
</PISI>
+59
View File
@@ -0,0 +1,59 @@
#!/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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fi")
autotools.configure("--enable-mmx \
--enable-sse \
--includedir=/usr/include \
--datadir=/usr/share \
--with-pic \
--with-gio \
--with-gtk \
--with-cairo \
--with-pango \
--with-pangocairo \
--with-gdk-pixbuf \
--with-lensfun \
--with-libjpeg \
--with-libpng \
--with-librsvg \
--with-openexr \
--with-sdl \
--with-libopenraw \
--with-jasper \
--with-graphviz \
--with-lua \
--without-libavformat \
--with-libv4l \
--with-libspiro \
--with-exiv2 \
--with-umfpack \
--disable-static \
--disable-gtk-doc \
--enable-gtk-doc-html=no \
--disable-docs \
--disable-workshop")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
# disabled due sandbox violations
#def check():
# autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "COPYING.LESSER", "NEWS", "README")
@@ -0,0 +1,68 @@
From 1e92e5235ded0415d555aa86066b8e4041ee5a53 Mon Sep 17 00:00:00 2001
From: Nils Philippsen <nils@redhat.com>
Date: Tue, 16 Oct 2012 14:58:27 +0000
Subject: ppm-load: CVE-2012-4433: don't overflow memory allocation
Carefully selected width/height values could cause the size of a later
allocation to overflow, resulting in a buffer much too small to store
the data which would then written beyond its end.
---
diff --git a/operations/external/ppm-load.c b/operations/external/ppm-load.c
index efe6d56..3d6bce7 100644
--- a/operations/external/ppm-load.c
+++ b/operations/external/ppm-load.c
@@ -84,7 +84,6 @@ ppm_load_read_header(FILE *fp,
/* Get Width and Height */
img->width = strtol (header,&ptr,0);
img->height = atoi (ptr);
- img->numsamples = img->width * img->height * CHANNEL_COUNT;
fgets (header,MAX_CHARS_IN_ROW,fp);
maxval = strtol (header,&ptr,0);
@@ -109,6 +108,16 @@ ppm_load_read_header(FILE *fp,
g_warning ("%s: Programmer stupidity error", G_STRLOC);
}
+ /* Later on, img->numsamples is multiplied with img->bpc to allocate
+ * memory. Ensure it doesn't overflow. */
+ if (!img->width || !img->height ||
+ G_MAXSIZE / img->width / img->height / CHANNEL_COUNT < img->bpc)
+ {
+ g_warning ("Illegal width/height: %ld/%ld", img->width, img->height);
+ return FALSE;
+ }
+ img->numsamples = img->width * img->height * CHANNEL_COUNT;
+
return TRUE;
}
@@ -229,12 +238,24 @@ process (GeglOperation *operation,
if (!ppm_load_read_header (fp, &img))
goto out;
- rect.height = img.height;
- rect.width = img.width;
-
/* Allocating Array Size */
+
+ /* Should use g_try_malloc(), but this causes crashes elsewhere because the
+ * error signalled by returning FALSE isn't properly acted upon. Therefore
+ * g_malloc() is used here which aborts if the requested memory size can't be
+ * allocated causing a controlled crash. */
img.data = (guchar*) g_malloc (img.numsamples * img.bpc);
+ /* No-op without g_try_malloc(), see above. */
+ if (! img.data)
+ {
+ g_warning ("Couldn't allocate %" G_GSIZE_FORMAT " bytes, giving up.", ((gsize)img.numsamples * img.bpc));
+ goto out;
+ }
+
+ rect.height = img.height;
+ rect.width = img.width;
+
switch (img.bpc)
{
case 1:
--
cgit v0.9.0.2
@@ -0,0 +1,70 @@
From 4757cdf73d3675478d645a3ec8250ba02168a230 Mon Sep 17 00:00:00 2001
From: Nils Philippsen <nils@redhat.com>
Date: Tue, 16 Oct 2012 14:56:40 +0000
Subject: ppm-load: CVE-2012-4433: add plausibility checks for header fields
Refuse values that are non-decimal, negative or overflow the target
type.
---
diff --git a/operations/external/ppm-load.c b/operations/external/ppm-load.c
index 3d6bce7..465096d 100644
--- a/operations/external/ppm-load.c
+++ b/operations/external/ppm-load.c
@@ -36,6 +36,7 @@ gegl_chant_file_path (path, _("File"), "", _("Path of file to load."))
#include "gegl-chant.h"
#include <stdio.h>
#include <stdlib.h>
+#include <errno.h>
typedef enum {
PIXMAP_ASCII = 51,
@@ -44,8 +45,8 @@ typedef enum {
typedef struct {
map_type type;
- gint width;
- gint height;
+ glong width;
+ glong height;
gsize numsamples; /* width * height * channels */
gsize bpc; /* bytes per channel */
guchar *data;
@@ -82,11 +83,33 @@ ppm_load_read_header(FILE *fp,
}
/* Get Width and Height */
- img->width = strtol (header,&ptr,0);
- img->height = atoi (ptr);
+ errno = 0;
+ img->width = strtol (header,&ptr,10);
+ if (errno)
+ {
+ g_warning ("Error reading width: %s", strerror(errno));
+ return FALSE;
+ }
+ else if (img->width < 0)
+ {
+ g_warning ("Error: width is negative");
+ return FALSE;
+ }
+
+ img->height = strtol (ptr,&ptr,10);
+ if (errno)
+ {
+ g_warning ("Error reading height: %s", strerror(errno));
+ return FALSE;
+ }
+ else if (img->width < 0)
+ {
+ g_warning ("Error: height is negative");
+ return FALSE;
+ }
fgets (header,MAX_CHARS_IN_ROW,fp);
- maxval = strtol (header,&ptr,0);
+ maxval = strtol (header,&ptr,10);
if ((maxval != 255) && (maxval != 65535))
{
--
cgit v0.9.0.2
@@ -0,0 +1,11 @@
--- operations/external/ff-load.c.orig 2012-04-01 13:17:57.000000000 +0200
+++ operations/external/ff-load.c 2012-07-11 12:42:05.174756560 +0200
@@ -271,7 +271,7 @@
gint err;
ff_cleanup (o);
- err = av_open_input_file (&p->ic, o->path, NULL, 0, NULL);
+err = avformat_open_input (&p->ic, o->path, NULL, NULL);
if (err < 0)
{
print_error (o->path, err);
+144
View File
@@ -0,0 +1,144 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gegl</Name>
<Homepage>http://gegl.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3+</License>
<License>LGPLv3+</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>A graph based image processing framework</Summary>
<Description>gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output.</Description>
<Archive sha1sum="764cc66cb3c7b261b8fc18a6268a0e264a91d573" type="tarbz2">http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>SuiteSparse-devel</Dependency>
<Dependency>libopenraw-devel</Dependency>
<Dependency>libspiro-devel</Dependency>
<Dependency>librsvg-devel</Dependency>
<Dependency>openexr-devel</Dependency>
<Dependency>ffmpeg-devel</Dependency>
<Dependency>libsdl-devel</Dependency>
<Dependency>libv4l-devel</Dependency>
<Dependency>jasper-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>exiv2-devel</Dependency>
<Dependency>babl-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>lua-devel</Dependency>
<Dependency>asciidoc</Dependency>
<Dependency>graphviz</Dependency>
<Dependency>enscript</Dependency>
<Dependency>ruby</Dependency>
<Dependency>ilmbase-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">gegl-0.2.0-cve-2012-4433-1e92e523.patch</Patch>
<Patch level="1">gegl-0.2.0-cve-2012-4433-4757cdf7.patch</Patch>
<Patch level="0">gegl-0.2.0-ffmpeg-0.11.patch</Patch>
</Patches>
</Source>
<Package>
<Name>gegl</Name>
<RuntimeDependencies>
<Dependency>openexr-libs</Dependency>
<Dependency>SuiteSparse</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libopenraw</Dependency>
<Dependency>libspiro</Dependency>
<Dependency>graphviz</Dependency>
<Dependency>librsvg</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>jasper</Dependency>
<Dependency>libsdl</Dependency>
<Dependency>libv4l</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>ruby</Dependency>
<Dependency>babl</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>lua</Dependency>
<Dependency>ilmbase</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale/</Path>
</Files>
</Package>
<Package>
<Name>gegl-devel</Name>
<Summary>Development files for gegl</Summary>
<RuntimeDependencies>
<Dependency release="current">gegl</Dependency>
<Dependency>babl-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/gtk-doc/html</Path>
</Files>
</Package>
<History>
<Update release="7">
<Date>2014-12-20</Date>
<Version>0.2.0</Version>
<Comment>Rebuild for lua</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-19</Date>
<Version>0.2.0</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-01-31</Date>
<Version>0.2.0</Version>
<Comment>Rebuild Unused</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-11-29</Date>
<Version>0.2.0</Version>
<Comment>rebuild for ffmpeg</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="3">
<Date>2013-08-23</Date>
<Version>0.2.0</Version>
<Comment>Release bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-05-20</Date>
<Version>0.2.0</Version>
<Comment>Configure parameter fixed</Comment>
<Name>Ertan Güven</Name>
<Email>ertan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-08</Date>
<Version>0.2.0</Version>
<Comment>First release</Comment>
<Name>marcin bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gegl</Name>
<Summary xml:lang="tr">Graf tabanlı resim işleme altyapısı</Summary>
<Description xml:lang="tr">gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir.</Description>
</Source>
<Package>
<Name>gegl-devel</Name>
<Summary xml:lang="tr">gegl için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,22 @@
#!/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
from pisi.actionsapi import get
WorkDir="colorize-gimp"
def setup():
#pisitools.dosed("Makefile", "pardus_cflags", "%s" % get.CFLAGS())
pisitools.dosed("Makefile", "^CC=.*", "CC=%s" % get.CC())
def build():
autotools.make()
def install():
pisitools.insinto("/usr/lib/gimp/2.0/plug-ins", "colorize")
@@ -0,0 +1,340 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.
@@ -0,0 +1,70 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>colorize-gimp</Name>
<Homepage>http://zenthought.org/content/project/colorize</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<Icon>gimp</Icon>
<IsA>library</IsA>
<Summary>Colorization plugin for GIMP</Summary>
<Description>colorize-gimp is an implementation of colorization using optimization for GIMP.</Description>
<Archive sha1sum="b759b5e6f6db60cdf404df60721bce33b73d3062" type="targz">http://zenthought.org/system/files/asset/2/colorize-gimp-20070930.tar.gz</Archive>
<BuildDependencies>
<Dependency>gimp-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>atlas-devel</Dependency>
<Dependency>SuiteSparse-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>colorize-gimp</Name>
<RuntimeDependencies>
<Dependency>gimp</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>atlas</Dependency>
<Dependency>SuiteSparse</Dependency>
<Dependency>atk</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>fontconfig</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/gimp/2.0/plug-ins</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/share/doc/colorize-gimp/COPYING">COPYING</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>2.6.0</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-29</Date>
<Version>2.6.0</Version>
<Comment>Dep fixed</Comment>
<Name>Fatih Turgel</Name>
<Email>hitaf@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-01-30</Date>
<Version>2.6.0</Version>
<Comment>First release</Comment>
<Name>Anıl Özbek</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>colorize-gimp</Name>
<Summary xml:lang="tr">GIMP için renklendirme eklentisi</Summary>
<Description xml:lang="tr">colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir.</Description>
</Source>
</PISI>
@@ -0,0 +1,3 @@
<PISI>
<Name>multimedia.graphics.gimp.addon</Name>
</PISI>
@@ -0,0 +1,20 @@
#!/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()
def build():
autotools.make()
def install():
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
pisitools.dodoc("README", "COPYING", "ChangeLog", "AUTHORS")
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-data-extras</Name>
<Homepage>http//www.gimp.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>gimp</Icon>
<IsA>data</IsA>
<Summary>Gimp extras</Summary>
<Description>Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment.</Description>
<Archive sha1sum="1e9a8e3bf687a5df5eed004976b25ddf507362f4" type="tarbz2">ftp://ftp.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.2.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gimp-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gimp-data-extras</Name>
<RuntimeDependencies>
<Dependency>gimp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/gimp</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>2.0.2</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>2.0.2</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2009-09-07</Date>
<Version>2.0.2</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gimp-data-extras</Name>
<Summary xml:lang="tr">Gimp ekleri</Summary>
<Description xml:lang="tr">Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir.</Description>
</Source>
</PISI>
@@ -0,0 +1,17 @@
#!/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
def build():
pisitools.dosed("Makefile", "CFLAGS=.*\$\(", "CFLAGS+=$(")
autotools.make()
def install():
pisitools.doexe("dds", "/usr/lib/gimp/2.0/plug-ins")
pisitools.dodoc("doc/gimp-dds.pdf", "COPYING", "LICENSE", "README*", "TODO")
# By PiSiDo 2.0.0
@@ -0,0 +1,62 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-dds-plugin</Name>
<Homepage>http://code.google.com/p/gimp-dds/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<IsA>library</IsA>
<Summary>DirectDraw Surface (DDS) format plugin for Gimp</Summary>
<Description>This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format.</Description>
<BuildDependencies>
<Dependency>gimp-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="f142a6f0794c6ece16047e25a5ed75930cf33cc8" type="tarbz2">http://gimp-dds.googlecode.com/files/gimp-dds-3.0.1.tar.bz2</Archive>
</Source>
<Package>
<Name>gimp-dds-plugin</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>cairo</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gimp</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libgomp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/lib/gimp/2.0/plug-ins/dds</Path>
<Path fileType="doc">/usr/share/doc/gimp-dds-plugin</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>3.0.1</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>3.0.1</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-07-07</Date>
<Version>2.2.1</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
#fix error "Only <glib.h> can be included directly."
for f in shelltools.ls("src/*"):
pisitools.dosed(f, "(#include\s<glib)\/[^\.]+(\.h>)", r"\1\2")
autotools.configure("LIBS=-lm")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-focusblur-plugin</Name>
<Homepage>http://registry.gimp.org/node/1444</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<IsA>library</IsA>
<License>GPLv2</License>
<Summary>Makes out of focus with luminosity and depth.</Summary>
<Description>Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur.</Description>
<BuildDependencies>
<Dependency>fftw3-devel</Dependency>
<Dependency>gimp-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="bcf1325e7e7bbd583f938a75d366d4c5fb696145" type="tarbz2">http://registry.gimp.org/files/focusblur-3.2.6.tar.bz2</Archive>
</Source>
<Package>
<Name>gimp-focusblur-plugin</Name>
<RuntimeDependencies>
<Dependency>fftw3</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gimp</Dependency>
<Dependency>gtk2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/lib/gimp/2.0/plug-ins</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>3.2.6</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>3.2.6</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-10</Date>
<Version>3.2.6</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,31 @@
#!/usr/bin/python
# -*- actions.pycoding: 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 shelltools
from pisi.actionsapi import get
#def setup():
def build():
#pisitools.dosed("src/Makefile", "^(FFMPEG_LDFLAGS\s=.*)", r"\1 -lavutil")
autotools.make("-C src gimp custom lib -j1")
def install():
pisitools.doman("man/gmic.1.gz")
pisitools.dodoc("COPYING", "README")
pisitools.insinto("/usr/share/doc/gimp-gmic-plugin", "COPYING")
pisitools.insinto("/etc/bash_completion.d/", "resources/gmic_bashcompletion.sh", destinationFile = "gmic")
shelltools.cd("src")
pisitools.dobin("gmic")
pisitools.doexe("gmic_gimp", "/usr/lib/gimp/2.0/plug-ins/")
pisitools.insinto("/usr/include", "gmic.h")
pisitools.dolib("libgmic.so")
ver = ".%s" % get.srcVERSION()
while ver:
pisitools.dosym("libgmic.so", "/usr/lib/libgmic.so%s" % ver)
ver = ver[:ver.rfind('.')]
@@ -0,0 +1,101 @@
--- gmic-1.5.2.2/src/Makefile
+++ gmic-1.5.2.2/src/Makefile
@@ -77,7 +77,7 @@
# Flags that are mandatory to compile 'gmic'.
MANDATORY_CFLAGS += -Dgmic_build -I$(USR)/include
-MANDATORY_LDFLAGS += -L$(USR)/lib
+MANDATORY_LDFLAGS +=
ifeq ($(IS_GCC),yes)
MANDATORY_CFLAGS += -Wall -W
MANDATORY_LDFLAGS += -lm
@@ -85,28 +85,20 @@
MANDATORY_CFLAGS+=$(IS_BETA_CFLAGS)
# Flags to enable debugging.
-DEBUG_CFLAGS = -Dcimg_use_vt100 -Dcimg_verbosity=3 -g
-
-# Flags to enable optimizations.
-ifeq ($(IS_GCC),yes)
-OPT_CFLAGS = -O3 # -fno-tree-pre # -ffast-math
-endif
-ifeq ($(CC),icc)
-OPT_CFLAGS = -O3 -ipo -no-prec-div -override-limits
-endif
+DEBUG_CFLAGS = -Dcimg_use_vt100 -Dcimg_verbosity=3
# Flags to enable image display, using X11
# (keep /usr/ dirname here since X11 is located in /usr/ on Mac too).
# This requires the presence of the X11 include and library files.
# (package 'libx11-dev' on Debian).
-X11_CFLAGS = -Dcimg_display=1 -Dcimg_appname=\\\"gmic\\\" -I/usr/X11R6/include #-Dcimg_use_xrandr
-X11_LDFLAGS = -L/usr/X11R6/lib -lX11 -lpthread #-lXrandr
+X11_CFLAGS = -Dcimg_display=1 -Dcimg_appname=\\\"gmic\\\" #-Dcimg_use_xrandr
+X11_LDFLAGS = -lX11 -lpthread #-lXrandr
# Flags to enable fast display, using XShm.
# This requires the presence of the X11 extension include and library files.
# (package 'libx11-dev' on Debian).
XSHM_CFLAGS = -Dcimg_use_xshm
-XSHM_LDFLAGS = -L$(USR)/X11R6/lib -lXext
+XSHM_LDFLAGS = -lXext
# Flags to enable image display, using GDI32.
# This requires the presence of the GDI32 include and library files.
@@ -152,14 +144,8 @@
# Flags to enable native support of webcams, using the OpenCV library.
# This requires the presence of the OpenCV include and library files.
# (package 'libcv3-2-dev' on Debian).
-ifeq ($(OS),Darwin)
OPENCV_CFLAGS = -Dcimg_use_opencv -I$(USR)/include -I$(USR)/include/opencv
OPENCV_LDFLAGS = `pkg-config opencv --libs` #-> Use this for OpenCV 2.2.0 !
-else
-OPENCV_CFLAGS = -Dcimg_use_opencv -I$(USR)/include -I$(USR)/include/opencv
-# OPENCV_LDFLAGS = -lcv -lhighgui
-OPENCV_LDFLAGS = -lopencv_core -lopencv_highgui #-> Use this for OpenCV >= 2.2.0 !
-endif
# Flags to enable native support of most classical image file formats, using the GraphicsMagick++ library.
# This requires the presence of the GraphicsMagick++ include and library files.
@@ -287,10 +273,10 @@
endif
gimp:
- $(MAKE) "CFLAGS=$(STD_GIMP_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_GIMP_LDFLAGS) $(OPT_LDFLAGS)" "STRIP_EXE=1" gmic_gimp
+ $(MAKE) "CFLAGS+=$(STD_GIMP_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_GIMP_LDFLAGS) $(OPT_LDFLAGS)" gmic_gimp
lib:
- $(MAKE) "CFLAGS=$(STD_LIB_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_LIB_LDFLAGS) $(OPT_LDFLAGS)" gmic_lib
+ $(MAKE) "CFLAGS+=$(STD_LIB_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_LIB_LDFLAGS) $(OPT_LDFLAGS)" gmic_lib
zart: lib
ifneq ($(OS),Darwin)
@@ -313,10 +299,10 @@
$(MAKE) "CFLAGS+=$(DEBUG_UNIX_CFLAGS)" "LDFLAGS+=$(DEBUG_UNIX_LDFLAGS)" gmic_minimal
linux:
- $(MAKE) "CFLAGS=$(STD_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS=$(STD_UNIX_LDFLAGS)" "STRIP_EXE=1" gmic_gmic
+ $(MAKE) "CFLAGS+=$(STD_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_UNIX_LDFLAGS)" gmic_gmic
custom:
- $(MAKE) "CFLAGS=$(CUST_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS=$(CUST_UNIX_LDFLAGS)" "STRIP_EXE=1" gmic_gmic
+ $(MAKE) "CFLAGS+=$(CUST_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(CUST_UNIX_LDFLAGS)" gmic_gmic
solaris:
$(MAKE) "CFLAGS=$(STD_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS=$(STD_UNIX_LDFLAGS) -R$(USR)/X11R6/lib -lrt -lnsl -lsocket" "STRIP_EXE=1" gmic_gmic
@@ -346,7 +332,6 @@
$(CC) -o gmic_gimp.o -c gmic.cpp $(CFLAGS) -Dgmic_gimp -Dgmic_float_only
gmic_gimp : gmic_gimp.o gmic_gimp.cpp
$(CC) -o gmic_gimp gmic_gimp.cpp gmic_gimp.o `gimptool-2.0$(EXE) --cflags` $(CFLAGS) `gimptool-2.0$(EXE) --libs` $(LDFLAGS)
- strip gmic_gimp$(EXE)
gmic_minimal: gmic.cpp
$(CC) -o gmic gmic.cpp $(CFLAGS) -Dgmic_float_only -Dgmic_main $(LDFLAGS)
@@ -371,7 +356,6 @@
$(CC) -o gmic_double.o -c gmic.cpp $(CFLAGS) -Dgmic_split_compilation -Dgmic_double
gmic_gmic: gmic_bool.o gmic_uchar.o gmic_char.o gmic_ushort.o gmic_short.o gmic_uint.o gmic_int.o gmic_float.o gmic_double.o gmic_def.h
$(CC) -o gmic gmic_bool.o gmic_uchar.o gmic_char.o gmic_ushort.o gmic_short.o gmic_uint.o gmic_int.o gmic_float.o gmic_double.o $(LDFLAGS)
- strip gmic$(EXE)
def:
@echo "#ifndef gmic_gimp" > gmic_def.h
@@ -0,0 +1,123 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-gmic-plugin</Name>
<Homepage>http://gmic.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>CeCILL-2</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>Image procession framework.</Summary>
<Description>G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets.</Description>
<Archive sha1sum="ffac4ed3b883bc6fe49e06cfc12549f6e18da87a" type="targz">mirrors://sourceforge/gmic/gmic_1.6.0.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>ffmpeg-devel</Dependency>
<Dependency>fftw3-devel</Dependency>
<Dependency>gimp-devel</Dependency>
<Dependency>GraphicsMagick-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>lapack-devel</Dependency>
<Dependency>opencv-devel</Dependency>
<Dependency>openexr-devel</Dependency>
<Dependency>tiff-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1">gentoo/gmic-1.5.2.2-makefile.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>gmic</Name>
<RuntimeDependencies>
<Dependency>tiff</Dependency>
<Dependency>fftw3</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>opencv</Dependency>
<Dependency>libgomp</Dependency>
<Dependency>ilmbase</Dependency>
<Dependency>libXext</Dependency>
<Dependency>openexr-libs</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>GraphicsMagick</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/bash_completion.d</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/gmic</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>gmic-devel</Name>
<Summary>Development files for gmic</Summary>
<RuntimeDependencies>
<Dependency release="current">gmic</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<Package>
<Name>gimp-gmic-plugin</Name>
<Summary>Gimp plugin for the GMIC image procession framework.</Summary>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>gimp</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>fftw3</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/gimp</Path>
<Path fileType="doc">/usr/share/doc/gimp-gmic-plugin</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2014-12-25</Date>
<Version>1.6.0.3</Version>
<Comment>version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-06-19</Date>
<Version>1.5.5.0</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-12-01</Date>
<Version>1.5.5.0</Version>
<Comment>Rebuild for ffmpeg.</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-03-27</Date>
<Version>1.5.5.0</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-13</Date>
<Version>1.5.1.7</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gmic</Name>
<Summary xml:lang="en">Image procession framework.</Summary>
<Description xml:lang="en">G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets.</Description>
</Source>
<Package>
<Name>gmic-devel</Name>
<Summary xml:lang="en">Development files for gmic</Summary>
</Package>
<Package>
<Name>gimp-gmic-plugin</Name>
<Summary xml:lang="en">Gimp plugin for the GMIC image procession framework.</Summary>
</Package>
</PISI>
@@ -0,0 +1,12 @@
#!/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 pisitools
WorkDir="layer-effects"
def install():
pisitools.insinto("/usr/lib/gimp/2.0/plug-ins", "layerfx.py")
@@ -0,0 +1,674 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-layer-effects</Name>
<Homepage>http://registry.gimp.org/node/186</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3+</License>
<Icon>gimp</Icon>
<IsA>library</IsA>
<Summary>Layer effects for GIMP</Summary>
<Description>Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects.</Description>
<Archive sha1sum="9bf9657edc38908fb7fca2a428ed123ae7f05dff" type="targz">http://ozbekanil.googlepages.com/layer-effects.tar.gz</Archive>
</Source>
<Package>
<Name>gimp-layer-effects</Name>
<RuntimeDependencies>
<Dependency>gimp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/gimp/2.0/plug-ins</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/share/doc/gimp-layer-effects/COPYING">COPYING</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>2.6.0</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>2.6.0</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-01-30</Date>
<Version>2.6.0</Version>
<Comment>First release</Comment>
<Name>Anıl Özbek</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gimp-layer-effects</Name>
<Summary xml:lang="tr">GIMP için katman efektleri</Summary>
<Description xml:lang="tr">Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir.</Description>
</Source>
</PISI>
@@ -0,0 +1,20 @@
#!/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 get
from pisi.actionsapi import pisitools
def setup():
autotools.autoreconf("-fi")
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-lqr-plugin</Name>
<Homepage>http://liquidrescale.wikidot.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<IsA>library</IsA>
<License>GPLv2</License>
<Summary>Plugin for The GIMP providing Liquid Rescale.</Summary>
<Description>Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way.</Description>
<BuildDependencies>
<Dependency>gimp-devel</Dependency>
<Dependency>liblqr-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="40b27bde5e8c6d1e41300ea3fc291cf5470880f6" type="tarbz2">http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2</Archive>
</Source>
<Package>
<Name>gimp-lqr-plugin</Name>
<RuntimeDependencies>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gimp</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>liblqr</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/lib/gimp/2.0/plug-ins/*</Path>
<Path fileType="doc">/usr/share/doc/gimp-lqr-plugin/*</Path>
<Path fileType="data">/usr/share/gimp-lqr-plugin/*</Path>
<Path fileType="data">/usr/share/gimp/2.0/scripts/*</Path>
<Path fileType="localedata">/usr/share/locale/*</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>0.7.2</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>0.7.2</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-14</Date>
<Version>0.7.1</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,19 @@
#!/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()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-refocus-it-plugin</Name>
<Homepage>http://sourceforge.net/projects/refocus-it</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<IsA>library</IsA>
<License>GPLv2</License>
<Summary>Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these.</Summary>
<Description>Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect.</Description>
<Archive sha1sum="746adb97da84cde10d9f8cd1925652164306dd95" type="targz">mirrors://sourceforge/refocus-it/refocus-it-2.0.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>gimp-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gimp-refocus-it-plugin</Name>
<RuntimeDependencies>
<Dependency>gimp</Dependency>
<Dependency>gtk2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="libraru">/usr/lib/gimp/2.0/plug-ins</Path>
<Path fileType="doc">/usr/share/doc/gimp-refocus-it-plugin</Path>
<Path fileType="data">/usr/share/help</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>2.0.0</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>2.0.0</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-03-28</Date>
<Version>2.0.0</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gimp-refocus-it-plugin</Name>
<Summary xml:lang="en">Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these.</Summary>
<Description xml:lang="en">Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect.</Description>
</Source>
</PISI>
@@ -0,0 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
WorkDir = "resynthesizer-0.16"
def build():
autotools.make()
def install():
pisitools.insinto("/usr/share/gimp/2.0/scripts","smart-enlarge.scm")
pisitools.insinto("/usr/share/gimp/2.0/scripts","smart-remove.scm")
pisitools.insinto("/usr/lib/gimp/2.0/plug-ins","resynth")
pisitools.dodoc("COPYING","README")
@@ -0,0 +1,61 @@
<?xml version="1.0"?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-resynthesizer</Name>
<Homepage>http://www.logarithmic.net/pfh/resynthesizer</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>addon</IsA>
<Summary>Resynthesizer is a Gimp plug-in for texture synthesis</Summary>
<Description>Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture.</Description>
<Archive sha1sum="9a7a6318b18d9546d712441594041c4ca47952d7" type="targz">http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz</Archive>
<BuildDependencies>
<Dependency>gimp-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gimp-resynthesizer</Name>
<RuntimeDependencies>
<Dependency>gimp</Dependency>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/gimp/2.0/plug-ins</Path>
<Path fileType="header">/usr/share/gimp/2.0/scripts</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>0.16</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-29</Date>
<Version>0.16</Version>
<Comment>Dep fixed</Comment>
<Name>Fatih Turgel</Name>
<Email>hitaf@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-02-20</Date>
<Version>0.16</Version>
<Comment>First release</Comment>
<Email>erdem.artan@linux.org.tr</Email>
<Name>Erdem Artan</Name>
</Update>
</History>
</PISI>
@@ -0,0 +1,19 @@
#!/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()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "HACKING", "README", "TODO")
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimp-save-for-web</Name>
<Homepage>http://registry.gimp.org/node/33</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>GIMP Save for Web</Summary>
<Description>GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc.</Description>
<Archive sha1sum="c5e5f146eebb4c4d538031325978c9f7590fa7e8" type="tarbz2">http://registry.gimp.org/files/gimp-save-for-web-0.29.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gimp-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gimp-save-for-web</Name>
<RuntimeDependencies>
<Dependency>gimp</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/gimp/2.0/plug-ins</Path>
<Path fileType="data">/usr/share/gimp-save-for-web</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>0.29.3</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-03-30</Date>
<Version>0.29.3</Version>
<Comment>V.bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-01-30</Date>
<Version>0.29.0</Version>
<Comment>First release</Comment>
<Name>Anıl Özbek</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gimp-save-for-web</Name>
<Summary xml:lang="tr">GIMP Save for Web</Summary>
<Description xml:lang="tr">GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır.</Description>
</Source>
</PISI>
@@ -0,0 +1,13 @@
#!/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 pisitools
WorkDir = "."
def install():
pisitools.insinto("/usr/share/gimp/2.0/scripts/", "*.scm")
pisitools.dodoc("release-notes.txt")
@@ -0,0 +1,54 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gimpfx-foundry</Name>
<Homepage>http://gimpfx-foundry.sourceforge.net</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>GPLv3</License>
<License>public-domain</License>
<IsA>data</IsA>
<Summary>A scripts collection for GIMP</Summary>
<Description>FX-Foundry project is constantly updating custom scripts for each major GIMP release.</Description>
<Archive sha1sum="ee4aa98c60bbf6a70ef1404c50cbd27530bf9597" type="targz">mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz</Archive>
</Source>
<Package>
<Name>gimpfx-foundry</Name>
<RuntimeDependencies>
<Dependency>gimp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/gimp/2.0/scripts</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-06-19</Date>
<Version>2.6.1</Version>
<Comment>Rebuild for gcc</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>2.6.1</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2009-07-24</Date>
<Version>2.6.1</Version>
<Comment>First release</Comment>
<Name>Anıl Özbek</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gimpfx-foundry</Name>
<Summary xml:lang="tr">GIMP için zengin bir betik paketi</Summary>
<Description xml:lang="tr">FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir.</Description>
</Source>
</PISI>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>multimedia.graphics.gimp</Name>
</PISI>
+52
View File
@@ -0,0 +1,52 @@
#!/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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.dosed("app/text/gimpfont.c", "freetype/tttables.h", "freetype2/tttables.h")
autotools.autoreconf("-fi")
autotools.configure("--without-webkit \
--disable-gtk-doc \
--disable-altivec \
--disable-alsatest \
--enable-python \
--enable-default-binary \
--enable-mmx \
--enable-sse \
--enable-mp \
--with-linux-input \
--with-poppler \
--with-libjpeg \
--with-libexif \
--with-librsvg \
--with-libtiff \
--with-libmng \
--with-libpng \
--with-webkit \
--with-lcms \
--with-alsa \
--with-dbus \
--with-aa \
--with-x")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
# Add illustrator and other mime types
pisitools.dosed("desktop/gimp.desktop.in", "^MimeType=application/postscript;application/pdf;(.*)$",
"MimeType=\\1;image/x-sun-raster;image/x-gray;image/x-pcx;image/jpg;image/x-bmp;image/pjpeg;image/x-png;application/illustrator;")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog*", "HACKING", "NEWS", "README", "INSTALL", "LICENSE")
Binary file not shown.

After

Width:  |  Height:  |  Size: 334 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 KiB

File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,317 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gimp</Name>
<Summary xml:lang="tr">Bir resim işleme programı</Summary>
<Description xml:lang="tr">Piksel düzeyinde işlem yapılabilen gelişmiş bir grafik düzenleme programı</Description>
<Description xml:lang="fr">Programme de Manipulation d'Image GNU.</Description>
</Source>
<Package>
<Name>gimp-devel</Name>
<Summary xml:lang="tr">GIMP için geliştirme belgeleri ve başlık dosyaları</Summary>
<Summary xml:lang="fr">Documents et entêtes de développement pour GIMP.</Summary>
</Package>
<Package>
<Name>gimp-i18n-tr</Name>
<Summary xml:lang="tr">Türkçe için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ast</Name>
<Summary xml:lang="tr">Asturya dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-my</Name>
<Summary xml:lang="tr">Burmese dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-nds</Name>
<Summary xml:lang="tr">Aşağı Saxon dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-el</Name>
<Summary xml:lang="tr">Yunanca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-gu</Name>
<Summary xml:lang="tr">Gujarati dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-be</Name>
<Summary xml:lang="tr">Belarusça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-vi</Name>
<Summary xml:lang="tr">Viyetnamca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ca</Name>
<Summary xml:lang="tr">Katalanca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-eo</Name>
<Summary xml:lang="tr">Esperanto için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-cs</Name>
<Summary xml:lang="tr">Çekçe için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ca_valencia</Name>
<Summary xml:lang="tr">Valensiya Katalancası için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ar</Name>
<Summary xml:lang="tr">Arapça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-km</Name>
<Summary xml:lang="tr">Khmer dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ga</Name>
<Summary xml:lang="tr">Gaelik İrlandacası için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-fi</Name>
<Summary xml:lang="tr">Fince için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-eu</Name>
<Summary xml:lang="tr">Baskça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-et</Name>
<Summary xml:lang="tr">Estonyaca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-xh</Name>
<Summary xml:lang="tr">Xhosa dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-gl</Name>
<Summary xml:lang="tr">Galiçya dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-id</Name>
<Summary xml:lang="tr">Endonezyaca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-es</Name>
<Summary xml:lang="tr">İspanyolca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ru</Name>
<Summary xml:lang="tr">Rusça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-rw</Name>
<Summary xml:lang="tr">Kinyarwanda dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-nl</Name>
<Summary xml:lang="tr">Hollandaca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-nn</Name>
<Summary xml:lang="tr">Norveç Nynorsk dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-nb</Name>
<Summary xml:lang="tr">Norveç Bookmal dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ne</Name>
<Summary xml:lang="tr">Nepali dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-lt</Name>
<Summary xml:lang="tr">Litvanyaca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-pa</Name>
<Summary xml:lang="tr">Punjabi dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ro</Name>
<Summary xml:lang="tr">Rumence için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-en_GB</Name>
<Summary xml:lang="tr">İngiliz İngilizcesi için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-yi</Name>
<Summary xml:lang="tr">Yi dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-en_CA</Name>
<Summary xml:lang="tr">Katalanca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-fr</Name>
<Summary xml:lang="tr">Fransızca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-bg</Name>
<Summary xml:lang="tr">Bulgarca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ms</Name>
<Summary xml:lang="tr">Malay dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-pt_BR</Name>
<Summary xml:lang="tr">Brezilya Portekizcesi için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-hr</Name>
<Summary xml:lang="tr">Hırvatça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-zh_TW</Name>
<Summary xml:lang="tr">Geleneksel Çince için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ko</Name>
<Summary xml:lang="tr">Korece için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-it</Name>
<Summary xml:lang="tr">İtalyanca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-fa</Name>
<Summary xml:lang="tr">Farsça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-dz</Name>
<Summary xml:lang="tr">Dzongkha dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-sr_Latn</Name>
<Summary xml:lang="tr">Latin sırpça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-da</Name>
<Summary xml:lang="tr">Danimarkaca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ja</Name>
<Summary xml:lang="tr">Japonca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-he</Name>
<Summary xml:lang="tr">İbranice için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-pt</Name>
<Summary xml:lang="tr">Portekizce için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-zh_CN</Name>
<Summary xml:lang="tr">Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-sr</Name>
<Summary xml:lang="tr">Sırpça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-oc</Name>
<Summary xml:lang="tr">Occitan dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-sv</Name>
<Summary xml:lang="tr">İsveççe için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-mk</Name>
<Summary xml:lang="tr">Makedonyaca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-sk</Name>
<Summary xml:lang="tr">Slovakça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-de</Name>
<Summary xml:lang="tr">Almanca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-pl</Name>
<Summary xml:lang="tr">Lehçe için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-uk</Name>
<Summary xml:lang="tr">Ukraynaca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-sl</Name>
<Summary xml:lang="tr">Slovence için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-hu</Name>
<Summary xml:lang="tr">Macarca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-tt</Name>
<Summary xml:lang="tr">Tatarca için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-az</Name>
<Summary xml:lang="tr">Azerice için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-am</Name>
<Summary xml:lang="tr">Amharic dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-is</Name>
<Summary xml:lang="tr">İzlanda dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-lv</Name>
<Summary xml:lang="tr">Latvia dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-th</Name>
<Summary xml:lang="tr">Thai dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ka</Name>
<Summary xml:lang="tr">Gürcüce için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-hi</Name>
<Summary xml:lang="tr">Hindi dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-zh_HK</Name>
<Summary xml:lang="tr">Hong Kong Çincesi için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ml</Name>
<Summary xml:lang="tr">Malayalam dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-ta</Name>
<Summary xml:lang="tr">Tamil dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-kn</Name>
<Summary xml:lang="tr">Kannada dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-si</Name>
<Summary xml:lang="tr">Sinhala dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-kk</Name>
<Summary xml:lang="tr">Kazakça için GIMP yerelleştirme dosyaları</Summary>
</Package>
<Package>
<Name>gimp-i18n-br</Name>
<Summary xml:lang="tr">Breton dili için GIMP yerelleştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,3 @@
<PISI>
<Name>multimedia.graphics.gimp.l10n</Name>
</PISI>
+42
View File
@@ -0,0 +1,42 @@
#!/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
from pisi.actionsapi import get
def setup():
#needed by mozilla patch
autotools.autoreconf("-vfi")
options = "--disable-dependency-tracking \
--disable-static \
--with-jpeg \
--with-tiff \
--with-zlib \
--with-python"
if get.buildTYPE() == "emul32":
options += " --without-python"
autotools.configure(options)
def build():
#needed by mozilla patch, swig must be run again
shelltools.cd("python")
shelltools.system("./swig_lcms")
shelltools.cd("..")
autotools.make()
def install():
autotools.rawInstall('DESTDIR=%s \
BINDIR=%s/usr/bin \
includedir=/usr/include' % (get.installDIR(), get.installDIR()))
pisitools.insinto("/usr/share/lcms/profiles", "testbed/*.icm")
pisitools.dodoc("AUTHORS", "README*", "NEWS", "doc/*")
@@ -0,0 +1,22 @@
--- src/cmsxform.c~ 2009-03-26 17:53:27.000000000 +0000
+++ src/cmsxform.c 2009-03-26 18:31:41.000000000 +0000
@@ -689,6 +689,9 @@
GrayTRC = cmsReadICCGamma(hProfile, icSigGrayTRCTag);
FromLstarToXYZ(GrayTRC, Shapes1);
+ if (GrayTRC == NULL)
+ return NULL;
+
// Reversing must be done after curve translation
Shapes[0] = cmsReverseGamma(Shapes1[0]->nEntries, Shapes1[0]);
@@ -704,6 +707,9 @@
GrayTRC = cmsReadICCGammaReversed(hProfile, icSigGrayTRCTag); // Y
+ if (GrayTRC == NULL)
+ return NULL;
+
Shapes[0] = cmsDupGamma(GrayTRC);
Shapes[1] = cmsDupGamma(GrayTRC);
Shapes[2] = cmsDupGamma(GrayTRC);
+91
View File
@@ -0,0 +1,91 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>lcms</Name>
<Homepage>http://www.littlecms.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>A lightweight, speed optimized color management engine</Summary>
<Description>LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form.</Description>
<!-- sourceforge keeps old files too
<Archive sha1sum="d5b075ccffc0068015f74f78e4bc39138bcfe2d4" type="targz">http://www.littlecms.com/lcms-1.19.tar.gz</Archive>
-->
<Archive sha1sum="d5b075ccffc0068015f74f78e4bc39138bcfe2d4" type="targz">mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz</Archive>
<BuildDependencies>
<Dependency>tiff-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>CVE-2009-0793.patch</Patch>
</Patches>
</Source>
<Package>
<Name>lcms</Name>
<RuntimeDependencies>
<Dependency>tiff</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/lcms</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>lcms-devel</Name>
<RuntimeDependencies>
<Dependency release="current">lcms</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="library">/usr/lib32/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<Package>
<Name>lcms-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for lcms</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>tiff-32bit</Dependency>
<Dependency>libjpeg-turbo-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">lcms</Dependency>
<Dependency>tiff-32bit</Dependency>
<Dependency>libjpeg-turbo-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2014-05-19</Date>
<Version>1.19</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-05-04</Date>
<Version>1.19</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>lcms</Name>
<Summary xml:lang="tr">Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru</Summary>
<Summary xml:lang="fr">Moteur de gestion de couleurs léger et optimisé pour la vitesse.</Summary>
</Source>
<Package>
<Name>lcms-devel</Name>
<Summary xml:lang="tr">lcms için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>lcms-32bit</Name>
<Summary xml:lang="tr">lcms için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>
+46
View File
@@ -0,0 +1,46 @@
#!/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 get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
def setup():
shelltools.unlink("configure.ac")
shelltools.sym("patches/acconfig.h", "acconfig.h")
autotools.autoreconf("-fi")
pisitools.dosed("src/Makefile.in", "@LIBWMF_GDK_PIXBUF_TRUE@", "#")
autotools.configure("--without-expat \
--with-libxml2 \
--with-jpeg \
--with-x \
--with-gsfontdir=/usr/share/fonts/default/ghostscript \
--with-fontdir=/usr/share/libwmf/fonts \
--with-docdir=/usr/share/doc/%s \
--disable-static" % get.srcNAME() )
def build():
autotools.make("LIBTOOL=/usr/bin/libtool")
def install():
pisitools.dosed("fonts/fontmap", "libwmf/fonts", "fonts/default/ghostscript")
autotools.rawInstall("DESTDIR=%s \
fontdir=/usr/share/libwmf/fonts \
wmfonedocdir=/usr/share/doc/%s/caolan \
wmfdocdir=/usr/share/doc/%s" %
( get.installDIR(), get.srcNAME(), get.srcNAME() ) )
if shelltools.isDirectory("%s/usr/lib/gtk-2.0" % get.installDIR()):
# seems "/usr/lib/gtk-2.0" no longer exists, so need check
pisitools.removeDir("/usr/lib/gtk-2.0")
# These fonts included in gnu-gs-fonts-std package.
pisitools.remove("/usr/share/libwmf/fonts/*afm")
pisitools.remove("/usr/share/libwmf/fonts/*pfb")
pisitools.dodoc("README", "AUTHORS", "CREDITS", "ChangeLog", "NEWS", "TODO")
+72
View File
@@ -0,0 +1,72 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libwmf</Name>
<Homepage>http://wvware.sourceforge.net/libwmf.html</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>Library for reading and converting WMF files</Summary>
<Description>A library for reading and converting Windows MetaFile vector graphics (WMF).</Description>
<Archive sha1sum="822ab3bd0f5e8f39ad732f2774a8e9f18fc91e89" type="targz">mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz</Archive>
<BuildDependencies>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>harfbuzz-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libwmf</Name>
<RuntimeDependencies>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>harfbuzz</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/libwmf</Path>
</Files>
</Package>
<Package>
<Name>libwmf-devel</Name>
<Summary>Development files for libwmf</Summary>
<RuntimeDependencies>
<Dependency release="current">libwmf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/libwmf-config</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-24</Date>
<Version>0.2.8.4</Version>
<Comment>Rebuild.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-02-01</Date>
<Version>0.2.8.4</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-12</Date>
<Version>0.2.8.4</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libwmf</Name>
<Summary xml:lang="tr">WMF (Windows metafile) okuma ve dönüştürme kitaplığı</Summary>
<Description xml:lang="tr">Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir.</Description>
<Description xml:lang="fr">Librairie pour convertir les fichiers WMF.</Description>
</Source>
<Package>
<Name>libwmf-devel</Name>
<Summary xml:lang="tr">libwmf için geliştirme dosyaları</Summary>
</Package>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
#!/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
def setup():
autotools.configure("--enable-nls \
--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("ChangeLog", "README")
@@ -0,0 +1,11 @@
--- libexif.pc.in
+++ libexif.pc.in
@@ -1,7 +1,7 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
-includedir=@includedir@
+includedir=@includedir@/libexif
Name: libexif
Description: Library for easy access to EXIF data
+69
View File
@@ -0,0 +1,69 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libexif</Name>
<Homepage>http://libexif.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>Library for parsing, editing, and saving EXIF data</Summary>
<Description>Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags.</Description>
<Archive sha1sum="a52219b12dbc8d33fc096468591170fda71316c0" type="tarbz2">mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2</Archive>
<BuildDependencies>
<Dependency>doxygen</Dependency>
</BuildDependencies>
<Patches>
<Patch>libexif-0.6.13-pkgconfig.patch</Patch>
</Patches>
</Source>
<Package>
<Name>libexif</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<Package>
<Name>libexif-devel</Name>
<Summary>Development files for libexif</Summary>
<RuntimeDependencies>
<Dependency release="current">libexif</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc/libexif/libexif-api.html</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-24</Date>
<Version>0.6.21</Version>
<Comment>Rebuild</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-30</Date>
<Version>0.6.21</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-29</Date>
<Version>0.6.21</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libexif</Name>
<Summary xml:lang="tr">EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane</Summary>
<Summary xml:lang="fr">Librairie pour analyser, éditer et sauvegarder des données EXIF.</Summary>
</Source>
<Package>
<Name>libexif-devel</Name>
<Summary xml:lang="tr">libexif için geliştirme dosyaları</Summary>
</Package>
</PISI>
+24
View File
@@ -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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "%s-1-%s" % (get.srcNAME(), get.srcVERSION())
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.removeDir("/usr/share/man")
pisitools.dodoc("AUTHORS", "COPYING*", "ChangeLog", "README", "NEWS")
+62
View File
@@ -0,0 +1,62 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>liblqr</Name>
<Homepage>http://liblqr.wikidot.com</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<License>LGPLv3</License>
<IsA>library</IsA>
<Summary>An easy to use C/C++ seam carving library</Summary>
<Description>liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features.</Description>
<Archive sha1sum="69639f7dc56a084f59a3198f3a8d72e4a73ff927" type="tarbz2">http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2</Archive>
</Source>
<Package>
<Name>liblqr</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>liblqr-devel</Name>
<Summary>Development files for liblqr</Summary>
<RuntimeDependencies>
<Dependency release="current">liblqr</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-24</Date>
<Version>0.4.2</Version>
<Comment>Rebuild.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-31</Date>
<Version>0.4.2</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-12</Date>
<Version>0.4.1</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>liblqr</Name>
<Summary xml:lang="tr">Görüntü boyutlandırma kütüphanesi</Summary>
<Description xml:lang="tr">liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir.</Description>
</Source>
<Package>
<Name>liblqr-devel</Name>
<Summary xml:lang="tr">liblqr için geliştirme dosyaları</Summary>
</Package>
</PISI>
+28
View File
@@ -0,0 +1,28 @@
#!/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
from pisi.actionsapi import get
def setup():
pisitools.flags.add("-pthread -I/usr/include/OpenEXR -I/usr/include/libdrm")
pisitools.ldflags.add("-lImath -lHalf -lIex -lIexMath -lIlmThread -lpthread")
shelltools.system("./bootstrap")
autotools.configure("--enable-shared \
--disable-static")
def build():
autotools.make()
def install():
# documents and examples go to "/usr/share/OpenEXR" without these parameters
docdir = "/usr/share/doc/%s" % get.srcNAME()
examplesdir = "%s/examples" % docdir
autotools.rawInstall("DESTDIR=%s docdir=%s examplesdir=%s" % (get.installDIR(), docdir, examplesdir))
pisitools.dodoc("AUTHORS", "ChangeLog","NEWS", "README","LICENSE")
+90
View File
@@ -0,0 +1,90 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>openexr</Name>
<Homepage>http://www.openexr.com</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>as-is</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>A high dynamic-range (HDR) image file format library</Summary>
<Description>OpenEXR is a high dynamic-range (HDR) image file format for use in computer imaging applications. OpenEXR's features include: Higher dynamic range and color precision than existing 8- and 10-bit image file formats; support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels; multiple lossless image compression algorithms; extensibility.</Description>
<Archive sha1sum="4a3db5ea527856145844556e0ee349f45ed4cbc7" type="targz">http://download.savannah.nongnu.org/releases/openexr/openexr-2.1.0.tar.gz</Archive>
<BuildDependencies>
<Dependency versionFrom="2.0.1">ilmbase-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>openexr</Name>
<RuntimeDependencies>
<Dependency versionFrom="2.0.1">ilmbase</Dependency>
<Dependency>openexr-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
</Files>
</Package>
<Package>
<Name>openexr-libs</Name>
<Summary>OpenEXR runtime libraries</Summary>
<RuntimeDependencies>
<Dependency>ilmbase</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/lib*</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>openexr-docs</Name>
<Summary>OpenEXR example files</Summary>
<Files>
<Path fileType="doc">/usr/share/doc/openexr/examples</Path>
</Files>
</Package>
<Package>
<Name>openexr-devel</Name>
<Summary>Development files for openexr</Summary>
<RuntimeDependencies>
<Dependency release="current">openexr</Dependency>
<Dependency>ilmbase-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/aclocal</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-25</Date>
<Version>2.1.0</Version>
<Comment>Rebuild</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-16</Date>
<Version>2.1.0</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-12</Date>
<Version>1.7.0</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+24
View File
@@ -0,0 +1,24 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>openexr</Name>
<Description xml:lang="tr">OpenEXR, bilgisayar görüntüleme uygulamalarında kullanılan yüksek dinamik görüntü erimidir. OpenEXR özellikleri şunları içerir: Mevcut 8 ve 10 bitlik görüntü dosya formatlarından daha yüksek dinamik görüntü erişimi, 16 ya da 32 bit piksel desteği ve kayıpsız görüntü sıkıştırma algoritması</Description>
<Description xml:lang="fr">OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible.</Description>
<Description xml:lang="es">OpenEXR es un formato de archivo de imagen de alto fango dinámico (HDR) para uso en aplicaciones de computación de imágenes. OpenEXR contiene facilidades: rango dinámico y precisión de colores más alto que formatos existentes de 8- y 10-bit; soporta para punto flotante 16-bit, punto flotante 32-bit, y entero 32-bit pixels; algoritmos de compresión múltiple sin pérdida; extensible.</Description>
</Source>
<Package>
<Name>openexr-devel</Name>
<Summary xml:lang="tr">OpenEXR için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>openexr-libs</Name>
<Summary xml:lang="tr">OpenEXR çalışma zamanı kitaplıkları</Summary>
</Package>
<Package>
<Name>openexr-docs</Name>
<Summary xml:lang="tr">OpenEXR örnek dosyalar</Summary>
</Package>
</PISI>
+47
View File
@@ -0,0 +1,47 @@
#!/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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
shelltools.export("XDG_DATA_HOME", get.workDIR())
pisitools.flags.replace("-ggdb3", "-g")
paths = ["JavaScriptCore", "WebCore", "WebKit"]
docs = ["AUTHORS", "ChangeLog", "COPYING.LIB", "THANKS", \
"LICENSE-LGPL-2", "LICENSE-LGPL-2.1", "LICENSE"]
def setup():
autotools.configure("\
--disable-gtk-doc \
--disable-silent-rules \
--disable-webkit2 \
--enable-dependency-tracking \
--enable-introspection \
--enable-video \
--with-gnu-ld \
--with-gtk=2.0 \
")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("-j1 DESTDIR=%s" % get.installDIR())
pisitools.domove("/usr/share/gtk-doc/html", "/usr/share/doc/webkit-gtk2")
pisitools.dodoc("NEWS")
shelltools.cd("Source")
for path in paths:
for doc in docs:
if shelltools.isFile("%s/%s" % (path, doc)):
pisitools.insinto("%s/%s/%s" % (get.docDIR(), get.srcNAME(), path),
"%s/%s" % (path, doc))
@@ -0,0 +1,33 @@
diff -up webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4.gcc5 webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4
--- webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4.gcc5 2015-01-07 10:45:43.000000000 +0100
+++ webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4 2015-02-18 13:09:57.359888184 +0100
@@ -87,12 +87,12 @@ AC_SYS_LARGEFILE
c_compiler="unknown"
AC_LANG_PUSH([C])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
-#if !(defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 7)
+#if !(defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)))
#error Not a supported GCC compiler
#endif
])], [c_compiler="gcc"], [])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
-#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 3)
+#if !(defined(__clang__) && (__apple_build_version__ >= 4250024 || (!defined(__apple_build_version__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 3)))))
#error Not a supported Clang compiler
#endif
])], [c_compiler="clang"], [])
@@ -106,12 +106,12 @@ fi
cxx_compiler="unknown"
AC_LANG_PUSH([C++])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
-#if !(defined(__GNUG__) && defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 7)
+#if !(defined(__GNUG__) && defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)))
#error Not a supported G++ compiler
#endif
])], [cxx_compiler="g++"], [])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
-#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 3)
+#if !(defined(__clang__) && (__apple_build_version__ >= 4250024 || (!defined(__apple_build_version__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 3)))))
#error Not a supported Clang++ compiler
#endif
])], [cxx_compiler="clang++"], [])
@@ -0,0 +1,281 @@
diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
--- webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp.gmutexlocker 2015-02-18 15:40:21.851816374 +0100
+++ Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp 2015-02-18 15:45:58.560092191 +0100
@@ -316,7 +316,7 @@ void MediaPlayerPrivateGStreamerBase::mu
#if USE(ACCELERATED_COMPOSITING) && USE(TEXTURE_MAPPER_GL) && !USE(COORDINATED_GRAPHICS)
PassRefPtr<BitmapTexture> MediaPlayerPrivateGStreamerBase::updateTexture(TextureMapper* textureMapper)
{
- GMutexLocker lock(m_bufferMutex);
+ WebCore::GMutexLocker lock(m_bufferMutex);
if (!m_buffer)
return nullptr;
@@ -366,7 +366,7 @@ void MediaPlayerPrivateGStreamerBase::tr
g_return_if_fail(GST_IS_BUFFER(buffer));
{
- GMutexLocker lock(m_bufferMutex);
+ WebCore::GMutexLocker lock(m_bufferMutex);
gst_buffer_replace(&m_buffer, buffer);
}
@@ -398,7 +398,7 @@ void MediaPlayerPrivateGStreamerBase::pa
if (!m_player->visible())
return;
- GMutexLocker lock(m_bufferMutex);
+ WebCore::GMutexLocker lock(m_bufferMutex);
if (!m_buffer)
return;
diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp
--- webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp.gmutexlocker 2015-02-18 15:16:11.995228731 +0100
+++ Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp 2015-02-18 15:45:42.686843477 +0100
@@ -118,7 +118,7 @@ static gboolean webkitVideoSinkTimeoutCa
WebKitVideoSink* sink = reinterpret_cast<WebKitVideoSink*>(data);
WebKitVideoSinkPrivate* priv = sink->priv;
- GMutexLocker lock(priv->bufferMutex);
+ WebCore::GMutexLocker lock(priv->bufferMutex);
GstBuffer* buffer = priv->buffer;
priv->buffer = 0;
priv->timeoutId = 0;
@@ -140,7 +140,7 @@ static GstFlowReturn webkitVideoSinkRend
WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(baseSink);
WebKitVideoSinkPrivate* priv = sink->priv;
- GMutexLocker lock(priv->bufferMutex);
+ WebCore::GMutexLocker lock(priv->bufferMutex);
if (priv->unlocked)
return GST_FLOW_OK;
@@ -279,7 +279,7 @@ static void webkitVideoSinkGetProperty(G
static void unlockBufferMutex(WebKitVideoSinkPrivate* priv)
{
- GMutexLocker lock(priv->bufferMutex);
+ WebCore::GMutexLocker lock(priv->bufferMutex);
if (priv->buffer) {
gst_buffer_unref(priv->buffer);
@@ -305,7 +305,7 @@ static gboolean webkitVideoSinkUnlockSto
WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv;
{
- GMutexLocker lock(priv->bufferMutex);
+ WebCore::GMutexLocker lock(priv->bufferMutex);
priv->unlocked = false;
}
@@ -330,7 +330,7 @@ static gboolean webkitVideoSinkStart(Gst
{
WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv;
- GMutexLocker lock(priv->bufferMutex);
+ WebCore::GMutexLocker lock(priv->bufferMutex);
priv->unlocked = false;
return TRUE;
}
diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
--- webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp.gmutexlocker 2015-02-18 15:16:40.954678407 +0100
+++ Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp 2015-02-18 15:45:19.567481225 +0100
@@ -346,7 +346,7 @@ static void webKitWebSrcSetProperty(GObj
switch (propID) {
case PROP_IRADIO_MODE: {
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
priv->iradioMode = g_value_get_boolean(value);
break;
}
@@ -364,7 +364,7 @@ static void webKitWebSrcGetProperty(GObj
WebKitWebSrc* src = WEBKIT_WEB_SRC(object);
WebKitWebSrcPrivate* priv = src->priv;
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
switch (propID) {
case PROP_IRADIO_MODE:
g_value_set_boolean(value, priv->iradioMode);
@@ -417,7 +417,7 @@ static gboolean webKitWebSrcStop(WebKitW
ASSERT(isMainThread());
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
bool seeking = priv->seekID;
@@ -476,7 +476,7 @@ static gboolean webKitWebSrcStart(WebKit
ASSERT(isMainThread());
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
priv->startID = 0;
priv->corsAccessCheck = CORSNoCheck;
@@ -573,7 +573,7 @@ static GstStateChangeReturn webKitWebSrc
return ret;
}
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
switch (transition) {
case GST_STATE_CHANGE_READY_TO_PAUSED:
GST_DEBUG_OBJECT(src, "READY->PAUSED");
@@ -604,7 +604,7 @@ static gboolean webKitWebSrcQueryWithPar
gst_query_parse_duration(query, &format, NULL);
GST_DEBUG_OBJECT(src, "duration query in format %s", gst_format_get_name(format));
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
if (format == GST_FORMAT_BYTES && src->priv->size > 0) {
gst_query_set_duration(query, format, src->priv->size);
result = TRUE;
@@ -612,7 +612,7 @@ static gboolean webKitWebSrcQueryWithPar
break;
}
case GST_QUERY_URI: {
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
gst_query_set_uri(query, src->priv->uri);
result = TRUE;
break;
@@ -653,7 +653,7 @@ static gchar* webKitWebSrcGetUri(GstURIH
WebKitWebSrc* src = WEBKIT_WEB_SRC(handler);
gchar* ret;
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
ret = g_strdup(src->priv->uri);
return ret;
}
@@ -668,7 +668,7 @@ static gboolean webKitWebSrcSetUri(GstUR
return FALSE;
}
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
g_free(priv->uri);
priv->uri = 0;
@@ -704,7 +704,7 @@ static gboolean webKitWebSrcNeedDataMain
ASSERT(isMainThread());
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
// already stopped
if (!priv->needDataID)
return FALSE;
@@ -725,7 +725,7 @@ static void webKitWebSrcNeedDataCb(GstAp
GST_DEBUG_OBJECT(src, "Need more data: %u", length);
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
if (priv->needDataID || !priv->paused) {
return;
}
@@ -739,7 +739,7 @@ static gboolean webKitWebSrcEnoughDataMa
ASSERT(isMainThread());
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
// already stopped
if (!priv->enoughDataID)
return FALSE;
@@ -760,7 +760,7 @@ static void webKitWebSrcEnoughDataCb(Gst
GST_DEBUG_OBJECT(src, "Have enough data");
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
if (priv->enoughDataID || priv->paused) {
return;
}
@@ -774,7 +774,7 @@ static gboolean webKitWebSrcSeekMainCb(W
ASSERT(isMainThread());
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
// already stopped
if (!priv->seekID)
return FALSE;
@@ -792,7 +792,7 @@ static gboolean webKitWebSrcSeekDataCb(G
WebKitWebSrcPrivate* priv = src->priv;
GST_DEBUG_OBJECT(src, "Seeking to offset: %" G_GUINT64_FORMAT, offset);
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
if (offset == priv->offset && priv->requestedOffset == priv->offset)
return TRUE;
@@ -811,7 +811,7 @@ static gboolean webKitWebSrcSeekDataCb(G
void webKitWebSrcSetMediaPlayer(WebKitWebSrc* src, WebCore::MediaPlayer* player)
{
ASSERT(player);
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
src->priv->player = player;
}
@@ -841,7 +841,7 @@ char* StreamingClient::createReadBuffer(
mapGstBuffer(buffer);
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
priv->buffer = adoptGRef(buffer);
locker.unlock();
@@ -867,7 +867,7 @@ void StreamingClient::handleResponseRece
return;
}
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
priv->corsAccessCheck = corsAccessCheck;
@@ -966,7 +966,7 @@ void StreamingClient::handleDataReceived
WebKitWebSrc* src = WEBKIT_WEB_SRC(m_src);
WebKitWebSrcPrivate* priv = src->priv;
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
GST_LOG_OBJECT(src, "Have %lld bytes of data", priv->buffer ? static_cast<long long>(gst_buffer_get_size(priv->buffer.get())) : length);
@@ -1035,7 +1035,7 @@ void StreamingClient::handleNotifyFinish
GST_DEBUG_OBJECT(src, "Have EOS");
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
if (!priv->seekID) {
locker.unlock();
gst_app_src_end_of_stream(priv->appsrc);
@@ -1194,7 +1194,7 @@ void ResourceHandleStreamingClient::wasB
GST_ERROR_OBJECT(src, "Request was blocked");
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
uri.reset(g_strdup(src->priv->uri));
locker.unlock();
@@ -1208,7 +1208,7 @@ void ResourceHandleStreamingClient::cann
GST_ERROR_OBJECT(src, "Cannot show URL");
- GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
+ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
uri.reset(g_strdup(src->priv->uri));
locker.unlock();
diff -up webkitgtk-2.4.8/Source/WTF/wtf/gobject/GMutexLocker.h.gmutexlocker webkitgtk-2.4.8/Source/WTF/wtf/gobject/GMutexLocker.h
+174
View File
@@ -0,0 +1,174 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>webkit-gtk2</Name>
<Homepage>http://webkitgtk.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<License>LGPLv2.1</License>
<License>BSD</License>
<IsA>library</IsA>
<Summary>An opensource web browser engine for GTK+ applications</Summary>
<Description>The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux.</Description>
<Archive sha1sum="44c6bbe52108297126830525619c1df047886a6f" type="tarxz">http://www.webkitgtk.org/releases/webkitgtk-2.4.8.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="10.4.3">mesa-devel</Dependency>
<Dependency versionFrom="1.21">gtk-doc</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency versionFrom="2.36.0">glib2-devel</Dependency>
<Dependency versionFrom="2.24.23">gtk2-devel</Dependency>
<Dependency versionFrom="2.2.1">ruby-devel</Dependency>
<Dependency versionFrom="0.4.3">webp-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency versionFrom="54.1">icu4c-devel</Dependency>
<Dependency>libXt-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency versionFrom="1.6.0">enchant-devel</Dependency>
<Dependency versionFrom="3.8.8.3">sqlite-devel</Dependency>
<Dependency versionFrom="0.12.0">geoclue-devel</Dependency>
<Dependency versionFrom="2.49.1">libsoup-devel</Dependency>
<Dependency versionFrom="2.5">fontconfig-devel</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency versionFrom="0.9.40">harfbuzz-devel</Dependency>
<Dependency versionFrom="0.18">libsecret-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>gstreamer-next-devel</Dependency>
<Dependency versionFrom="1.40.0">gobject-introspection-devel</Dependency>
<Dependency>gst-plugins-base-next-devel</Dependency>
<Dependency versionFrom="2.21">which</Dependency>
<Dependency versionFrom="0.12">icon-theme-hicolor</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch>webkitgtk-2.4.8-gcc5.patch</Patch>-->
<Patch>webkitgtk-2.4.8-gmutexlocker.patch</Patch>
</Patches>
</Source>
<Package>
<Name>webkit-gtk2</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>mesa</Dependency>
<Dependency>webp</Dependency>
<Dependency>cairo</Dependency>
<Dependency>icu4c</Dependency>
<Dependency>libXt</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>pango</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>enchant</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>libxslt</Dependency>
<Dependency>harfbuzz</Dependency>
<Dependency>freetype</Dependency>
<Dependency>libsecret</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>gstreamer-next</Dependency>
<Dependency>gst-plugins-base-next</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>webkit-gtk2-devel</Name>
<IsA>library</IsA>
<IsA>data:doc</IsA>
<Summary>Development files for GTK+ port of WebKit</Summary>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency release="current">webkit-gtk2</Dependency>
<Dependency>libsoup-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc/webkit-gtk/Web*</Path>
<Path fileType="doc">/usr/share/doc/webkit-gtk2/html</Path>
<Path fileType="doc">/usr/share/doc/webkit-gtk/JavaScriptCore</Path>
</Files>
</Package>
<History>
<Update release="8">
<Date>2015-04-07</Date>
<Version>2.4.8</Version>
<Comment>Version Bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-01-16</Date>
<Version>2.4.8</Version>
<Comment>Version Bump + Rebuild.</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-24</Date>
<Version>2.4.1</Version>
<Comment>Rebuild.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="5">
<Date>2014-04-21</Date>
<Version>2.4.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-14</Date>
<Version>1.10.2</Version>
<Comment>Rebuild for icu4c</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-07-29</Date>
<Version>1.10.2</Version>
<Comment>Dep Fixed</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-02-25</Date>
<Version>1.10.2</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-23</Date>
<Version>1.10.1</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,32 @@
#!/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
from pisi.actionsapi import get
WorkDir = "pygtk-%s" % (get.srcVERSION())
def setup():
shelltools.unlink("py-compile" )
shelltools.sym("/bin/true", "%s/py-compile" % get.curDIR())
autotools.configure("--enable-thread \
--disable-docs")
shelltools.touch("%s/style.css" % get.curDIR())
pisitools.dosed("docs/Makefile", "CSS_FILES = .*", "CSS_FILES = %s/style.css" % get.curDIR())
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "MAPPING", "NEWS", "README", "THREADS", "TODO")
@@ -0,0 +1,112 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-gtk</Name>
<Homepage>http://www.pygtk.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>GTK+ bindings for Python</Summary>
<Description>python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library.</Description>
<Archive sha1sum="344e6a32a5e8c7e0aaeb807e0636a163095231c2" type="tarbz2">mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>cairo-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libglade-devel</Dependency>
<Dependency>python-pygobject-devel</Dependency>
<Dependency>python-cairo-devel</Dependency>
<Dependency>python-numpy</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-gtk</Name>
<RuntimeDependencies>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>libglade</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>python-pygobject</Dependency>
<Dependency>python-cairo</Dependency>
<Dependency>python-numpy</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>python-gtk-demo</Name>
<IsA>app:gui</IsA>
<Summary>Demo applications for python-gtk</Summary>
<RuntimeDependencies>
<Dependency releaseFrom="current">python-gtk</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/pygtk-demo</Path>
<Path fileType="library">/usr/lib/pygtk/2.0/pygtk-demo.py</Path>
<Path fileType="data">/usr/lib/pygtk/2.0/demos</Path>
</Files>
</Package>
<Package>
<Name>python-gtk-docs</Name>
<IsA>data:doc</IsA>
<Summary>Reference documents for python-gtk</Summary>
<RuntimeDependencies>
<Dependency releaseFrom="current">python-gtk</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<Package>
<Name>python-gtk-devel</Name>
<Summary>Development files for python-gtk</Summary>
<RuntimeDependencies>
<Dependency release="current">python-gtk</Dependency>
<Dependency>python-pygobject-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/pygtk-codegen-2.0</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/pygtk</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2013-08-17</Date>
<Version>2.24.0</Version>
<Comment>Dep Fixed</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-28</Date>
<Version>2.24.0</Version>
<Comment>Dep Fixed</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-11</Date>
<Version>2.24.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,24 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>python-gtk</Name>
<Summary xml:lang="tr">Python için GTK+ bağlayıcıları</Summary>
<Description xml:lang="tr">python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar.</Description>
<Description xml:lang="fr">Bindings (liens) GTK+2 pour Python.</Description>
</Source>
<Package>
<Name>python-gtk-demo</Name>
<Summary xml:lang="tr">python-gtk için demo uygulamalar</Summary>
</Package>
<Package>
<Name>python-gtk-docs</Name>
<Summary xml:lang="tr">python-gtk için referans belgeleri</Summary>
</Package>
<Package>
<Name>python-gtk-devel</Name>
<Summary xml:lang="tr">python-gtk için geliştirme dosyaları</Summary>
</Package>
</PISI>
+25
View File
@@ -0,0 +1,25 @@
#!/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
from pisi.actionsapi import get
def setup():
shelltools.system("./bootstrap")
autotools.configure("--disable-static")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "LICENSE", "README")
@@ -0,0 +1,8 @@
diff -up ilmbase-1.0.3/IlmBase.pc.in.pkgconfig ilmbase-1.0.3/IlmBase.pc.in
--- ilmbase-1.0.3/IlmBase.pc.in.pkgconfig 2012-07-17 18:27:25.000000000 -0500
+++ ilmbase-1.0.3/IlmBase.pc.in 2012-09-08 11:11:15.913468312 -0500
@@ -9,3 +9,4 @@ Description: Base math and exception lib
Version: @ILMBASE_VERSION@
Libs: -L${libdir} -lImath -lHalf -lIex -lIexMath -lIlmThread @PTHREAD_LIBS@
Cflags: @PTHREAD_CFLAGS@ -I${OpenEXR_includedir}
+Requires.private: gl glu
@@ -0,0 +1,24 @@
diff -up ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined ilmbase-2.0.1/IlmThread/Makefile.am
--- ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined 2013-06-18 14:51:38.000000000 -0500
+++ ilmbase-2.0.1/IlmThread/Makefile.am 2013-08-28 21:04:25.793391766 -0500
@@ -14,7 +14,7 @@ libIlmThread_la_LDFLAGS = -version-info
if LIB_SUFFIX_EXISTS
libIlmThread_la_LDFLAGS += -release @LIB_SUFFIX@
endif
-libIlmThread_la_LIBADD = ../Iex/libIex.la
+libIlmThread_la_LIBADD = ../Iex/libIex.la $(PTHREAD_LIBS)
libIlmThreadincludedir = $(includedir)/OpenEXR
diff -up ilmbase-2.0.1/IlmThread/Makefile.in.no_undefined ilmbase-2.0.1/IlmThread/Makefile.in
--- ilmbase-2.0.1/IlmThread/Makefile.in.no_undefined 2013-06-18 14:55:24.000000000 -0500
+++ ilmbase-2.0.1/IlmThread/Makefile.in 2013-08-28 21:04:55.395049371 -0500
@@ -253,7 +253,7 @@ libIlmThread_la_SOURCES = IlmThreadPool.
libIlmThread_la_LDFLAGS = -version-info @LIBTOOL_VERSION@ \
-no-undefined $(am__append_1)
-libIlmThread_la_LIBADD = ../Iex/libIex.la
+libIlmThread_la_LIBADD = ../Iex/libIex.la $(PTHREAD_LIBS)
libIlmThreadincludedir = $(includedir)/OpenEXR
libIlmThreadinclude_HEADERS = IlmThreadPool.h IlmThread.h \
IlmThreadSemaphore.h IlmThreadMutex.h \
@@ -0,0 +1,12 @@
--- IexMath/IexMathFpu.cpp.orig 2012-07-26 20:51:55.000000000 +0200
+++ IexMath/IexMathFpu.cpp 2012-10-04 15:30:47.000000000 +0200
@@ -27,8 +27,7 @@
#endif
-#ifdef HAVE_UCONTEXT_H
-
+#if defined(HAVE_UCONTEXT_H) && (defined(x86_64) || defined(i386_))
#include <ucontext.h>
#include <signal.h>
+68
View File
@@ -0,0 +1,68 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>ilmbase</Name>
<Homepage>http://www.openexr.com</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>Several utility libraries from ILM (Industrial Light &amp; Magic) used by OpenEXR</Summary>
<Description>IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library).</Description>
<Archive sha1sum="bfa62519094413f686c6f08c5923b47a10eea180" type="targz">http://download.savannah.nongnu.org/releases/openexr/ilmbase-2.0.1.tar.gz</Archive>
<Patches>
<Patch level="1">ilmbase-2.0.1-no_undefined.patch</Patch>
<Patch level="0">ilmbase-IexMath.patch</Patch>
<Patch level="1">ilmbase-1.0.3-pkgconfig.patch</Patch>
</Patches>
</Source>
<Package>
<Name>ilmbase</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>ilmbase-devel</Name>
<Summary>Development files for ilmbase</Summary>
<RuntimeDependencies>
<Dependency release="current">ilmbase</Dependency>
<Dependency>mesa-glu-devel</Dependency>
<Dependency>mesa-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-25</Date>
<Version>2.0.1</Version>
<Comment>Rebuild</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-16</Date>
<Version>2.0.1</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-13</Date>
<Version>1.0.2</Version>
<Comment>First release</Comment>
<Name>Gökcen Eraslan</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>ilmbase</Name>
<Summary xml:lang="tr">ILM (Industrial Light &amp; Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar</Summary>
<Description xml:lang="tr">IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf (&quot;yarım&quot; değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz.</Description>
</Source>
<Package>
<Name>ilmbase-devel</Name>
<Summary xml:lang="tr">ilmbase için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>ilmbase-devel</Name>
<Summary xml:lang="tr">ilmbase için geliştirme dosyaları</Summary>
</Package>
</PISI>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>science.robotics</Name>
</PISI>

Some files were not shown because too many files have changed in this diff Show More