Merge branch 'master' of github.com:pisilinux/main
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("test")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
@@ -0,0 +1,41 @@
|
||||
--- libcroco-0.6.1/croco-config.in.multilib 2006-03-05 16:57:01.000000000 -0500
|
||||
+++ libcroco-0.6.1/croco-config.in 2006-05-23 13:54:34.000000000 -0400
|
||||
@@ -1,10 +1,11 @@
|
||||
#! /bin/sh
|
||||
|
||||
-prefix=@prefix@
|
||||
-exec_prefix=@exec_prefix@
|
||||
+name=libcroco-0.6
|
||||
+prefix=`pkg-config --variable prefix $name`
|
||||
+exec_prefix=`pkg-config --variable exec_prefix $name`
|
||||
exec_prefix_set=no
|
||||
-includedir=@includedir@
|
||||
-libdir=@libdir@
|
||||
+includedir=`pkg-config --variable includedir $name`
|
||||
+libdir=`pkg-config --variable libdir $name`
|
||||
|
||||
usage()
|
||||
{
|
||||
@@ -59,7 +60,7 @@
|
||||
;;
|
||||
|
||||
--version)
|
||||
- echo @VERSION@
|
||||
+ pkg-config --modversion $name
|
||||
exit 0
|
||||
;;
|
||||
|
||||
@@ -68,11 +69,11 @@
|
||||
;;
|
||||
|
||||
--cflags)
|
||||
- echo @CROCO_CFLAGS@ @GLIB2_CFLAGS@ @LIBXML2_CFLAGS@
|
||||
+ pkg-config --cflags $name
|
||||
;;
|
||||
|
||||
--libs)
|
||||
- echo @CROCO_LIBS@ @GLIB2_LIBS@ @LIBXML2_LIBS@
|
||||
+ pkg-config --libs $name
|
||||
;;
|
||||
|
||||
*)
|
||||
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libcroco</Name>
|
||||
<Homepage>http://www.freespiders.org/projects/libcroco/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit</Summary>
|
||||
<Description>libcroco is an effort to build a generic Cascading Style Sheet (CSS) parsing and manipulation toolkit that can be used by GNOME applications in need of CSS support.</Description>
|
||||
<Archive sha1sum="23a5c33a2a86d5e46173234f5fa88ac1e15de035" type="tarxz">mirrors://gnome/libcroco/0.6/libcroco-0.6.8.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">multilib.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libcroco</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libcroco-devel</Name>
|
||||
<Summary>Development files for libcroco</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libcroco</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
<Path fileType="executable">/usr/bin/croco-*-config</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libcroco-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for libcroco</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>libxml2-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
<Dependency>libxml2-32bit</Dependency>
|
||||
<Dependency release="current">libcroco</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-06-14</Date>
|
||||
<Version>0.6.8</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-08-26</Date>
|
||||
<Version>0.6.8</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-12-22</Date>
|
||||
<Version>0.6.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libcroco</Name>
|
||||
<Summary xml:lang="tr">CSS ayıklama kitaplığı</Summary>
|
||||
<Description xml:lang="tr">libcroco GNOME uygulamaları tarafından CSS desteği için kullanılan genel bir CSS ayıklama kitaplığıdır.</Description>
|
||||
<Summary xml:lang="fr">Boîte à outils générique d'analyse et de manipulation de Cascading Style Sheet (CSS - feuilles de style).</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libcroco-devel</Name>
|
||||
<Summary xml:lang="tr">libcroco için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,33 @@
|
||||
#!/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():
|
||||
pisitools.dosed("configure", "gdk-pixbuf-query-loaders-[2346]+\s", "")
|
||||
if get.buildTYPE() == "emul32":
|
||||
pisitools.dosed("configure", "(gdk-pixbuf-query-loaders)([\s\]])", r"\1-32\2")
|
||||
|
||||
autotools.autoreconf("-if")
|
||||
autotools.configure("--disable-gtk-doc \
|
||||
--enable-pixbuf-loader=yes \
|
||||
--disable-static \
|
||||
--with-gtk=3")
|
||||
|
||||
pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
|
||||
pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "AUTHORS", "ChangeLog", "README")
|
||||
@@ -0,0 +1,176 @@
|
||||
diff -Nuar librsvg-2.39.0.orig/configure.in librsvg-2.39.0/configure.in
|
||||
--- librsvg-2.39.0.orig/configure.in 2013-08-16 15:45:23.000000000 +0300
|
||||
+++ librsvg-2.39.0/configure.in 2013-10-10 02:45:06.365034233 +0300
|
||||
@@ -284,9 +284,6 @@
|
||||
|
||||
GOBJECT_INTROSPECTION_CHECK([0.10.8])
|
||||
|
||||
-# Vala bindings
|
||||
-VAPIGEN_CHECK([0.17.1.26],,,[no])
|
||||
-
|
||||
dnl ===========================================================================
|
||||
|
||||
m4_copy([AC_DEFUN],[glib_DEFUN])
|
||||
diff -Nuar librsvg-2.39.0.orig/Makefile.am librsvg-2.39.0/Makefile.am
|
||||
--- librsvg-2.39.0.orig/Makefile.am 2012-08-30 21:04:49.000000000 +0300
|
||||
+++ librsvg-2.39.0/Makefile.am 2013-10-10 02:48:51.022040249 +0300
|
||||
@@ -252,24 +252,6 @@
|
||||
|
||||
CLEANFILES += $(nodist_gir_DATA) $(nodist_typelibs_DATA)
|
||||
|
||||
-if ENABLE_VAPIGEN
|
||||
-include $(VAPIGEN_MAKEFILE)
|
||||
-
|
||||
-librsvg-$(RSVG_API_VERSION).vapi: Rsvg-$(RSVG_API_VERSION).gir
|
||||
-
|
||||
-VAPIGEN_VAPIS = librsvg-$(RSVG_API_VERSION).vapi
|
||||
-
|
||||
-librsvg_@RSVG_API_VERSION_U@_vapi_DEPS = gio-2.0 cairo
|
||||
-librsvg_@RSVG_API_VERSION_U@_vapi_METADATADIRS = $(srcdir)
|
||||
-librsvg_@RSVG_API_VERSION_U@_vapi_FILES = Rsvg-$(RSVG_API_VERSION).gir Rsvg-$(RSVG_API_VERSION)-custom.vala
|
||||
-
|
||||
-vapidir = $(datadir)/vala/vapi
|
||||
-vapi_DATA = $(VAPIGEN_VAPIS)
|
||||
-
|
||||
-CLEANFILES += $(VAPIGEN_VAPIS)
|
||||
-
|
||||
-endif # ENABLE_VAPIGEN
|
||||
-
|
||||
endif # HAVE_INTROSPECTION
|
||||
|
||||
# ChangeLog generation
|
||||
diff -Nuar librsvg-2.39.0.orig/Makefile.in librsvg-2.39.0/Makefile.in
|
||||
--- librsvg-2.39.0.orig/Makefile.in 2013-08-16 15:45:57.000000000 +0300
|
||||
+++ librsvg-2.39.0/Makefile.in 2013-10-10 02:47:52.009038669 +0300
|
||||
@@ -86,7 +86,6 @@
|
||||
@HAVE_GTK_3_TRUE@am__append_2 = rsvg-view-3
|
||||
@OS_WIN32_TRUE@am__append_3 = -mwindows
|
||||
@HAVE_INTROSPECTION_TRUE@am__append_4 = $(nodist_gir_DATA) $(nodist_typelibs_DATA)
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@am__append_5 = $(VAPIGEN_VAPIS)
|
||||
subdir = .
|
||||
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
||||
$(top_srcdir)/configure $(am__configure_deps) \
|
||||
@@ -139,7 +138,6 @@
|
||||
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
|
||||
"$(DESTDIR)$(man1dir)" "$(DESTDIR)$(girdir)" \
|
||||
"$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(pkgconfigdir)" \
|
||||
- "$(DESTDIR)$(vapidir)" "$(DESTDIR)$(librsvgincdir)"
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
am__DEPENDENCIES_1 =
|
||||
librsvg_@RSVG_API_MAJOR_VERSION@_la_DEPENDENCIES = \
|
||||
@@ -259,8 +257,7 @@
|
||||
man1dir = $(mandir)/man1
|
||||
NROFF = nroff
|
||||
MANS = $(dist_man_MANS)
|
||||
-DATA = $(nodist_gir_DATA) $(nodist_typelibs_DATA) $(pkgconfig_DATA) \
|
||||
- $(vapi_DATA)
|
||||
+DATA = $(nodist_gir_DATA) $(nodist_typelibs_DATA) $(pkgconfig_DATA)
|
||||
HEADERS = $(librsvginc_HEADERS)
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
@@ -447,9 +444,6 @@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
-VAPIGEN = @VAPIGEN@
|
||||
-VAPIGEN_MAKEFILE = @VAPIGEN_MAKEFILE@
|
||||
-VAPIGEN_VAPIDIR = @VAPIGEN_VAPIDIR@
|
||||
VERSION = @VERSION@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
@@ -696,12 +690,6 @@
|
||||
@HAVE_INTROSPECTION_TRUE@nodist_gir_DATA = $(INTROSPECTION_GIRS)
|
||||
@HAVE_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0
|
||||
@HAVE_INTROSPECTION_TRUE@nodist_typelibs_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@VAPIGEN_VAPIS = librsvg-$(RSVG_API_VERSION).vapi
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@librsvg_@RSVG_API_VERSION_U@_vapi_DEPS = gio-2.0 cairo
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@librsvg_@RSVG_API_VERSION_U@_vapi_METADATADIRS = $(srcdir)
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@librsvg_@RSVG_API_VERSION_U@_vapi_FILES = Rsvg-$(RSVG_API_VERSION).gir Rsvg-$(RSVG_API_VERSION)-custom.vala
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@vapidir = $(datadir)/vala/vapi
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@vapi_DATA = $(VAPIGEN_VAPIS)
|
||||
all: $(BUILT_SOURCES) config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
@@ -1255,27 +1243,6 @@
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
|
||||
-install-vapiDATA: $(vapi_DATA)
|
||||
- @$(NORMAL_INSTALL)
|
||||
- @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
|
||||
- if test -n "$$list"; then \
|
||||
- echo " $(MKDIR_P) '$(DESTDIR)$(vapidir)'"; \
|
||||
- $(MKDIR_P) "$(DESTDIR)$(vapidir)" || exit 1; \
|
||||
- fi; \
|
||||
- for p in $$list; do \
|
||||
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
- echo "$$d$$p"; \
|
||||
- done | $(am__base_list) | \
|
||||
- while read files; do \
|
||||
- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(vapidir)'"; \
|
||||
- $(INSTALL_DATA) $$files "$(DESTDIR)$(vapidir)" || exit $$?; \
|
||||
- done
|
||||
-
|
||||
-uninstall-vapiDATA:
|
||||
- @$(NORMAL_UNINSTALL)
|
||||
- @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
|
||||
- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
- dir='$(DESTDIR)$(vapidir)'; $(am__uninstall_files_from_dir)
|
||||
install-librsvgincHEADERS: $(librsvginc_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(librsvginc_HEADERS)'; test -n "$(librsvgincdir)" || list=; \
|
||||
@@ -1593,7 +1560,7 @@
|
||||
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
- for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(vapidir)" "$(DESTDIR)$(librsvgincdir)"; do \
|
||||
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(librsvgincdir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: $(BUILT_SOURCES)
|
||||
@@ -1655,7 +1622,7 @@
|
||||
|
||||
install-data-am: install-librsvgincHEADERS install-man \
|
||||
install-nodist_girDATA install-nodist_typelibsDATA \
|
||||
- install-pkgconfigDATA install-vapiDATA
|
||||
+ install-pkgconfigDATA
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
@@ -1706,7 +1673,7 @@
|
||||
uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIBRARIES \
|
||||
uninstall-librsvgincHEADERS uninstall-man \
|
||||
uninstall-nodist_girDATA uninstall-nodist_typelibsDATA \
|
||||
- uninstall-pkgconfigDATA uninstall-vapiDATA
|
||||
+ uninstall-pkgconfigDATA
|
||||
|
||||
uninstall-man: uninstall-man1
|
||||
|
||||
@@ -1728,15 +1695,14 @@
|
||||
install-librsvgincHEADERS install-man install-man1 \
|
||||
install-nodist_girDATA install-nodist_typelibsDATA install-pdf \
|
||||
install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
|
||||
- install-strip install-vapiDATA installcheck installcheck-am \
|
||||
+ install-strip installcheck installcheck-am \
|
||||
installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \
|
||||
uninstall-libLTLIBRARIES uninstall-librsvgincHEADERS \
|
||||
uninstall-man uninstall-man1 uninstall-nodist_girDATA \
|
||||
- uninstall-nodist_typelibsDATA uninstall-pkgconfigDATA \
|
||||
- uninstall-vapiDATA
|
||||
+ uninstall-nodist_typelibsDATA uninstall-pkgconfigDATA
|
||||
|
||||
|
||||
librsvg-enum-types.h: s-enum-types-h
|
||||
@@ -1772,9 +1738,6 @@
|
||||
|
||||
@HAVE_INTROSPECTION_TRUE@Rsvg-@RSVG_API_VERSION@.gir: librsvg-@RSVG_API_MAJOR_VERSION@.la
|
||||
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@include $(VAPIGEN_MAKEFILE)
|
||||
-
|
||||
-@ENABLE_VAPIGEN_TRUE@@HAVE_INTROSPECTION_TRUE@librsvg-$(RSVG_API_VERSION).vapi: Rsvg-$(RSVG_API_VERSION).gir
|
||||
|
||||
# ChangeLog generation
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
diff -up librsvg-2.37.0/configure.in.vala librsvg-2.37.0/configure.in
|
||||
--- librsvg-2.37.0/configure.in.vala 2013-01-15 21:07:11.264576371 -0500
|
||||
+++ librsvg-2.37.0/configure.in 2013-01-15 21:07:17.638576143 -0500
|
||||
@@ -285,7 +285,7 @@ fi
|
||||
GOBJECT_INTROSPECTION_CHECK([0.10.8])
|
||||
|
||||
# Vala bindings
|
||||
-VAPIGEN_CHECK([0.17.1.26],,,[no])
|
||||
+VAPIGEN_CHECK([0.18.1],,,[auto])
|
||||
|
||||
dnl ===========================================================================
|
||||
|
||||
diff -up librsvg-2.37.0/Rsvg-2.0-custom.vala librsvg-2.37.0/Rsvg-2.0-custom
|
||||
@@ -0,0 +1,176 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>librsvg</Name>
|
||||
<Homepage>http://librsvg.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Scalable Vector Graphics (SVG) rendering library</Summary>
|
||||
<Description>librsvg is a component used within software applications to enable support for SVG-format scalable vector graphics.</Description>
|
||||
<Archive sha1sum="aed7c0d4363096f3d306a933609a2464ad1dd23f" type="tarxz">mirrors://gnome/librsvg/2.40/librsvg-2.40.9.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libcroco-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">librsvg-vala.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>librsvg</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libcroco</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/gtk-2.0</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share/themes</Path>
|
||||
<Path fileType="data">/usr/share/vala</Path>
|
||||
<Path fileType="doc">/usr/share/gtk-doc</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0/Rsvg-2.0.gir</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>librsvg-devel</Name>
|
||||
<Summary>Development files for librsvg</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">librsvg</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>librsvg-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for librsvg</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>atk-32bit</Dependency>
|
||||
<Dependency>gtk2-32bit</Dependency>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>cairo-32bit</Dependency>
|
||||
<Dependency>pango-32bit</Dependency>
|
||||
<Dependency>libpng-32bit</Dependency>
|
||||
<Dependency>libxml2-32bit</Dependency>
|
||||
<Dependency>freetype-32bit</Dependency>
|
||||
<Dependency>libcroco-32bit</Dependency>
|
||||
<Dependency>gdk-pixbuf-32bit</Dependency>
|
||||
<Dependency>fontconfig-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">librsvg</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>cairo-32bit</Dependency>
|
||||
<Dependency>pango-32bit</Dependency>
|
||||
<Dependency>libxml2-32bit</Dependency>
|
||||
<Dependency>libcroco-32bit</Dependency>
|
||||
<Dependency>gdk-pixbuf-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2015-08-10</Date>
|
||||
<Version>2.40.9</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2014-05-17</Date>
|
||||
<Version>2.40.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2013-10-14</Date>
|
||||
<Version>2.39.0</Version>
|
||||
<Comment>Rebuild icu4c.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2013-10-10</Date>
|
||||
<Version>2.39.0</Version>
|
||||
<Comment>Rebuild and install using correct loaders.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2013-08-23</Date>
|
||||
<Version>2.39.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-07-31</Date>
|
||||
<Version>2.36.4</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-06-17</Date>
|
||||
<Version>2.36.4</Version>
|
||||
<Comment>Rebuild with new pisi release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-01-23</Date>
|
||||
<Version>2.36.4</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-01-23</Date>
|
||||
<Version>2.36.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-06</Date>
|
||||
<Version>2.36.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>librsvg</Name>
|
||||
<Summary xml:lang="tr">Scalable Vector Graphics (SVG) kitaplığı</Summary>
|
||||
<Description xml:lang="tr">Scalable Vector Graphics (SVG) kitaplığı</Description>
|
||||
<Description xml:lang="fr">librsvg est un composant utilisé au sein de logiciels pour gérer les graphismes vectoriels au format SVG.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>librsvg-devel</Name>
|
||||
<Summary xml:lang="tr">librsvg için geliştirme dosyaları</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
|
||||
|
||||
|
||||
def install():
|
||||
# Install branding icon
|
||||
pisitools.insinto("/usr/share/pixmaps", "*")
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>iconcan</Name>
|
||||
<Homepage>http://www.pisilinux.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<Icon>lang-tr</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Icon etiketi için görseller</Summary>
|
||||
<Description>Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama.</Description>
|
||||
<Archive sha1sum="764349e5d15bf45aa345767e9c341393d9469fd9" type="tarxz">http://source.pisilinux.org/1.0/iconcan-1.0.1.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>iconcan</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2015-02-04</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-02-04</Date>
|
||||
<Version>1.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>iconcan</Name>
|
||||
<Summary xml:lang="tr">Icon etiketi için görseller</Summary>
|
||||
<Description xml:lang="tr">Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -11,7 +11,7 @@ from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.flags.add("-flto -ffat-lto-objects")
|
||||
# autotools.autoreconf("-vfi")
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--disable-static \
|
||||
--enable-xlib \
|
||||
--disable-drm \
|
||||
|
||||
@@ -30,9 +30,11 @@
|
||||
<Dependency>xcb-util-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<!--<Dependency>libspectre-devel</Dependency>
|
||||
<!--<Dependency>gtk-doc</Dependency>-->
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency>DirectFB-devel</Dependency>
|
||||
<Dependency>valgrind</Dependency>
|
||||
<!--<Dependency>libspectre-devel</Dependency>
|
||||
<Dependency>poppler-devel</Dependency>-->
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
@@ -75,6 +77,11 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">cairo</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>pixman-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
@@ -114,6 +121,7 @@
|
||||
<Dependency release="current">cairo</Dependency>
|
||||
<Dependency>mesa-32bit</Dependency>
|
||||
<Dependency>zlib-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>libX11-32bit</Dependency>
|
||||
<Dependency>pixman-32bit</Dependency>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<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>
|
||||
<Archive sha1sum="1e9a8e3bf687a5df5eed004976b25ddf507362f4" type="tarbz2">http://download.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.2.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gimp-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
|
||||
@@ -23,19 +23,21 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>gimp</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>freetype</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>
|
||||
|
||||
@@ -15,10 +15,11 @@
|
||||
<BuildDependencies>
|
||||
<Dependency>fftw3-devel</Dependency>
|
||||
<Dependency>gimp-devel</Dependency>
|
||||
<Dependency>intltool</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>
|
||||
@@ -26,6 +27,7 @@
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>gimp</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/lib/gimp/2.0/plug-ins</Path>
|
||||
@@ -33,7 +35,7 @@
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-06-19</Date>
|
||||
|
||||
@@ -10,10 +10,9 @@ 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 \
|
||||
#pisitools.dosed("app/text/gimpfont.c", "freetype/tttables.h", "freetype2/tttables.h")
|
||||
#autotools.autoreconf("-fi")
|
||||
autotools.configure("--disable-gtk-doc \
|
||||
--disable-altivec \
|
||||
--disable-alsatest \
|
||||
--enable-python \
|
||||
@@ -35,7 +34,7 @@ def setup():
|
||||
--with-dbus \
|
||||
--with-aa \
|
||||
--with-x")
|
||||
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
# Add illustrator and other mime types
|
||||
|
||||
@@ -18,9 +18,9 @@
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<!--Dependency>lcms-devel</Dependency--><!-- 1-->
|
||||
<!--Dependency>gegl-devel</Dependency--><!-- 2-->
|
||||
<!--Dependency>babl-devel</Dependency--><!-- 3-->
|
||||
<Dependency>lcms-devel</Dependency>
|
||||
<Dependency>gegl-devel</Dependency>
|
||||
<Dependency>babl-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>aalib-devel</Dependency>
|
||||
@@ -28,7 +28,7 @@
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<!--Dependency>libwmf-devel</Dependency--><!-- 4-->
|
||||
<Dependency>libwmf-devel</Dependency>
|
||||
<Dependency>jasper-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libmng-devel</Dependency>
|
||||
@@ -36,7 +36,7 @@
|
||||
<Dependency>libXpm-devel</Dependency>
|
||||
<Dependency>libXmu-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<!--Dependency>librsvg-devel</Dependency--><!-- 5-->
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency>libexif-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
@@ -45,12 +45,14 @@
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
<Dependency>libXcursor-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<!--Dependency>python-gtk-devel</Dependency--><!-- 6-->
|
||||
<Dependency>python-gtk-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>ghostscript-devel</Dependency>
|
||||
<!--Dependency>webkit-gtk2-devel</Dependency--><!--7-->
|
||||
<Dependency>webkit-gtk2-devel</Dependency>
|
||||
<Dependency>poppler-glib-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -77,14 +79,12 @@
|
||||
<Name>gimp</Name>
|
||||
<IsA>app:gui</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gegl</Dependency>
|
||||
<Dependency>babl</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>lcms</Dependency>
|
||||
<Dependency>aalib</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
@@ -104,11 +104,9 @@
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>dbus-glib</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>libgudev1</Dependency>
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
<Dependency>eudev</Dependency>
|
||||
<Dependency>libXcursor</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>ghostscript</Dependency>
|
||||
<Dependency>webkit-gtk2</Dependency>
|
||||
|
||||
@@ -13,7 +13,7 @@ def setup():
|
||||
shelltools.unlink("configure.ac")
|
||||
shelltools.sym("patches/acconfig.h", "acconfig.h")
|
||||
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.autoreconf("-vfi")
|
||||
pisitools.dosed("src/Makefile.in", "@LIBWMF_GDK_PIXBUF_TRUE@", "#")
|
||||
autotools.configure("--without-expat \
|
||||
--with-libxml2 \
|
||||
|
||||
@@ -16,14 +16,23 @@
|
||||
<BuildDependencies>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>harfbuzz-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libwmf</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>harfbuzz</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
|
||||
@@ -0,0 +1,80 @@
|
||||
#!/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 libtools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.export("CFLAGS", "%s -fno-strict-aliasing -fno-force-addr -ffunction-sections -frename-registers -fomit-frame-pointer" % get.CFLAGS())
|
||||
shelltools.export("CXXFLAGS", "%s -fno-strict-aliasing -fno-force-addr -ffunction-sections -frename-registers -fomit-frame-pointer" % get.CXXFLAGS())
|
||||
shelltools.export("CCASFLAGS","-Wa,--noexecstack")
|
||||
# to get rid of cvs
|
||||
shelltools.export("AUTOPOINT", "true")
|
||||
|
||||
#libtools.libtoolize("--force --copy")
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure(" \
|
||||
--prefix=/usr \
|
||||
--mandir=/usr/share/man \
|
||||
--disable-altivec \
|
||||
--disable-artstest \
|
||||
--disable-dxr3 \
|
||||
--disable-vidix \
|
||||
--disable-vcd \
|
||||
--disable-mpcdec \
|
||||
--enable-aalib \
|
||||
--enable-asf \
|
||||
--enable-directfb \
|
||||
--enable-faad \
|
||||
--enable-fb \
|
||||
--enable-ffmpeg-popular-codecs \
|
||||
--enable-ffmpeg-uncommon-codecs \
|
||||
--enable-ipv6 \
|
||||
--enable-mmap \
|
||||
--enable-modplug \
|
||||
--enable-opengl \
|
||||
--disable-samba \
|
||||
--enable-xinerama \
|
||||
--with-external-a52dec \
|
||||
--with-external-ffmpeg \
|
||||
--with-external-libmad \
|
||||
--with-vorbis \
|
||||
--with-x \
|
||||
--with-xcb \
|
||||
--with-xv-path=/usr/lib \
|
||||
--with-freetype \
|
||||
--with-fontconfig \
|
||||
--without-esound \
|
||||
--without-imagemagick \
|
||||
--without-jack \
|
||||
--disable-gdkpixbuf \
|
||||
--disable-nls \
|
||||
--disable-rpath \
|
||||
--disable-syncfb \
|
||||
--disable-optimizations \
|
||||
--disable-dependency-tracking")
|
||||
# the world is not ready for this code, see bug #8267
|
||||
# --enable-antialiasing \
|
||||
#--enable-mng \
|
||||
#--with-wavpack \
|
||||
#--with-internal-vcdlibs \
|
||||
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.removeDir("/usr/share/doc/xine-lib")
|
||||
|
||||
pisitools.dohtml("doc/faq/faq.html", "doc/hackersguide/*.html", "doc/hackersguide/*.png")
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "README", "TODO", "doc/README*", "doc/faq/faq.txt")
|
||||
|
||||
@@ -0,0 +1,135 @@
|
||||
/*
|
||||
* Copyright (C) 2008 the xine project
|
||||
*
|
||||
* This file is part of xine, a free video player.
|
||||
*
|
||||
* xine 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.
|
||||
*
|
||||
* xine 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 Street, Fifth Floor, Boston, MA 02110, USA
|
||||
*
|
||||
*
|
||||
* Common acceleration definitions for vdpau
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef HAVE_XINE_ACCEL_VAAPI_H
|
||||
#define HAVE_XINE_ACCEL_VAAPI_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <va/va_x11.h>
|
||||
#include <pthread.h>
|
||||
#ifdef HAVE_FFMPEG_AVUTIL_H
|
||||
# include <avcodec.h>
|
||||
#else
|
||||
# include <libavcodec/avcodec.h>
|
||||
#endif
|
||||
|
||||
#if LIBAVCODEC_VERSION_MAJOR >= 53 || (LIBAVCODEC_VERSION_MAJOR == 52 && LIBAVCODEC_VERSION_MINOR >= 32)
|
||||
# define AVVIDEO 2
|
||||
#else
|
||||
# define AVVIDEO 1
|
||||
# define pp_context pp_context_t
|
||||
# define pp_mode pp_mode_t
|
||||
#endif
|
||||
|
||||
#define NUM_OUTPUT_SURFACES 22
|
||||
|
||||
#define SURFACE_FREE 0
|
||||
#define SURFACE_ALOC 1
|
||||
#define SURFACE_RELEASE 2
|
||||
#define SURFACE_RENDER 3
|
||||
#define SURFACE_RENDER_RELEASE 5
|
||||
|
||||
struct vaapi_equalizer {
|
||||
VADisplayAttribute brightness;
|
||||
VADisplayAttribute contrast;
|
||||
VADisplayAttribute hue;
|
||||
VADisplayAttribute saturation;
|
||||
};
|
||||
|
||||
typedef struct ff_vaapi_context_s ff_vaapi_context_t;
|
||||
|
||||
struct ff_vaapi_context_s {
|
||||
VADisplay va_display;
|
||||
VAContextID va_context_id;
|
||||
VAConfigID va_config_id;
|
||||
int width;
|
||||
int height;
|
||||
int sw_width;
|
||||
int sw_height;
|
||||
int va_profile;
|
||||
unsigned int va_colorspace;
|
||||
VAImage va_subpic_image;
|
||||
VASubpictureID va_subpic_id;
|
||||
int va_subpic_width;
|
||||
int va_subpic_height;
|
||||
int is_bound;
|
||||
void *gl_surface;
|
||||
unsigned int soft_head;
|
||||
unsigned int valid_context;
|
||||
unsigned int va_head;
|
||||
unsigned int va_soft_head;
|
||||
vo_driver_t *driver;
|
||||
unsigned int last_sub_image_fmt;
|
||||
VASurfaceID last_sub_surface_id;
|
||||
struct vaapi_equalizer va_equalizer;
|
||||
VAImageFormat *va_image_formats;
|
||||
int va_num_image_formats;
|
||||
VAImageFormat *va_subpic_formats;
|
||||
int va_num_subpic_formats;
|
||||
};
|
||||
|
||||
typedef struct ff_vaapi_surface_s ff_vaapi_surface_t;
|
||||
typedef struct vaapi_accel_s vaapi_accel_t;
|
||||
|
||||
struct ff_vaapi_surface_s {
|
||||
unsigned int index;
|
||||
vaapi_accel_t *accel;
|
||||
VASurfaceID va_surface_id;
|
||||
unsigned int status;
|
||||
};
|
||||
|
||||
struct vaapi_accel_s {
|
||||
unsigned int index;
|
||||
vo_frame_t *vo_frame;
|
||||
|
||||
#if AVVIDEO > 1
|
||||
int (*avcodec_decode_video2)(vo_frame_t *frame_gen, AVCodecContext *avctx, AVFrame *picture,
|
||||
int *got_picture_ptr, AVPacket *avpkt);
|
||||
#else
|
||||
int (*avcodec_decode_video)(vo_frame_t *frame_gen, AVCodecContext *avctx, AVFrame *picture,
|
||||
int *got_picture_ptr, uint8_t *buf, int buf_size);
|
||||
#endif
|
||||
VAStatus (*vaapi_init)(vo_frame_t *frame_gen, int va_profile, int width, int height, int softrender);
|
||||
int (*profile_from_imgfmt)(vo_frame_t *frame_gen, enum PixelFormat pix_fmt, int codec_id, int vaapi_mpeg_sofdec);
|
||||
ff_vaapi_context_t *(*get_context)(vo_frame_t *frame_gen);
|
||||
int (*guarded_render)(vo_frame_t *frame_gen);
|
||||
ff_vaapi_surface_t *(*get_vaapi_surface)(vo_frame_t *frame_gen);
|
||||
void (*render_vaapi_surface)(vo_frame_t *frame_gen, ff_vaapi_surface_t *va_surface);
|
||||
void (*release_vaapi_surface)(vo_frame_t *frame_gen, ff_vaapi_surface_t *va_surface);
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
--- xine-lib-1.1.1/src/xine-engine/load_plugins.c.~1~ 2005-09-19 09:14:02.000000000 -0700
|
||||
+++ xine-lib-1.1.1/src/xine-engine/load_plugins.c 2006-04-22 23:07:33.000000000 -0700
|
||||
@@ -591,7 +591,7 @@ static void collect_plugins(xine_t *this
|
||||
printf("load_plugins: %s not cached\n", str);
|
||||
#endif
|
||||
|
||||
- if(!info && (lib = dlopen (str, RTLD_LAZY | RTLD_GLOBAL)) == NULL) {
|
||||
+ if(!info && (lib = dlopen (str, RTLD_LAZY | RTLD_GLOBAL | RTLD_DEEPBIND)) == NULL) {
|
||||
const char *error = dlerror();
|
||||
/* too noisy -- but good to catch unresolved references */
|
||||
xprintf(this, XINE_VERBOSITY_LOG,
|
||||
@@ -649,7 +649,7 @@ static int _load_plugin_class(xine_t *th
|
||||
/* load the dynamic library if needed */
|
||||
if (!node->file->lib_handle) {
|
||||
lprintf("dlopen %s\n", filename);
|
||||
- if ((lib = dlopen (filename, RTLD_LAZY | RTLD_GLOBAL)) == NULL) {
|
||||
+ if ((lib = dlopen (filename, RTLD_LAZY | RTLD_GLOBAL | RTLD_DEEPBIND)) == NULL) {
|
||||
const char *error = dlerror();
|
||||
|
||||
xine_log (this, XINE_LOG_PLUGIN,
|
||||
@@ -0,0 +1,44 @@
|
||||
diff -Nur xine-lib-1.1.15-old/src/libw32dll/dmo/DMO_VideoDecoder.c xine-lib-1.1.15/src/libw32dll/dmo/DMO_VideoDecoder.c
|
||||
--- xine-lib-1.1.15-old/src/libw32dll/dmo/DMO_VideoDecoder.c 2008-09-27 20:55:34.000000000 +0300
|
||||
+++ xine-lib-1.1.15/src/libw32dll/dmo/DMO_VideoDecoder.c 2008-09-27 21:33:01.000000000 +0300
|
||||
@@ -87,7 +87,7 @@
|
||||
{ 24, 24, &MEDIASUBTYPE_RGB24, CAP_NONE },
|
||||
{ 32, 32, &MEDIASUBTYPE_RGB32, CAP_NONE },
|
||||
|
||||
- {0},
|
||||
+ {0,0,NULL,0},
|
||||
};
|
||||
|
||||
DMO_VideoDecoder * DMO_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEADER * format, int flip, int maxauto)
|
||||
@@ -288,8 +288,8 @@
|
||||
props.cBuffers = 1;
|
||||
props.cbBuffer = this->m_sDestType.lSampleSize;
|
||||
|
||||
- //don't know how to do this correctly
|
||||
- props.cbAlign = props.cbPrefix = 0;
|
||||
+ props.cbAlign = 1;
|
||||
+ props.cbPrefix = 0;
|
||||
this->m_pDMO_Filter->m_pAll->vt->SetProperties(this->m_pDMO_Filter->m_pAll, &props, &props1);
|
||||
this->m_pDMO_Filter->m_pAll->vt->Commit(this->m_pDMO_Filter->m_pAll);
|
||||
#endif
|
||||
@@ -327,7 +327,7 @@
|
||||
bufferin = CMediaBufferCreate(size, (void*)src, size, 0);
|
||||
result = this->m_pDMO_Filter->m_pMedia->vt->ProcessInput(this->m_pDMO_Filter->m_pMedia, 0,
|
||||
(IMediaBuffer*)bufferin,
|
||||
- (is_keyframe) ? DMO_INPUT_DATA_BUFFERF_SYNCPOINT : 0,
|
||||
+ DMO_INPUT_DATA_BUFFERF_SYNCPOINT,
|
||||
0, 0);
|
||||
((IMediaBuffer*)bufferin)->vt->Release((IUnknown*)bufferin);
|
||||
|
||||
@@ -463,8 +463,9 @@
|
||||
this->iv.m_obh.biSize = sizeof(BITMAPINFOHEADER);
|
||||
this->iv.m_obh.biCompression=csp;
|
||||
this->iv.m_obh.biBitCount=bits;
|
||||
- this->iv.m_obh.biSizeImage=labs(this->iv.m_obh.biBitCount*
|
||||
- this->iv.m_obh.biWidth*this->iv.m_obh.biHeight)>>3;
|
||||
+
|
||||
+ this->iv.m_obh.biSizeImage = labs(this->iv.m_obh.biWidth * this->iv.m_obh.biHeight)
|
||||
+ * ((this->iv.m_obh.biBitCount + 7) / 8);
|
||||
}
|
||||
}
|
||||
this->m_sDestType.lSampleSize = this->iv.m_obh.biSizeImage;
|
||||
@@ -0,0 +1,16 @@
|
||||
diff -urN xine-lib-1.1.12.orig/misc/xine-list.c xine-lib-1.1.12/misc/xine-list.c
|
||||
--- xine-lib-1.1.12.orig/misc/xine-list.c 2008-04-06 21:32:21 +0300
|
||||
+++ xine-lib-1.1.12/misc/xine-list.c 2008-04-19 21:15:50 +0300
|
||||
@@ -125,7 +125,11 @@
|
||||
sep = strchr (text, ';') ? : text + strlen (text);
|
||||
sep2 = which == 'a' ? sep : strchr (text, ':') ? : sep;
|
||||
if (!*sep)
|
||||
- break;
|
||||
+ {
|
||||
+ if (text[0])
|
||||
+ printf ("%s;", text);
|
||||
+ break;
|
||||
+ }
|
||||
if (printf ("%.*s;", (int)(sep2 - text), text) < 0 || (lf && puts ("") < 0))
|
||||
goto write_fail;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
diff -Nur xine-lib-1.1.19-old//m4/pthreads.m4 xine-lib-1.1.19/m4/pthreads.m4
|
||||
--- xine-lib-1.1.19-old//m4/pthreads.m4 2010-09-04 18:26:52.719999251 +0300
|
||||
+++ xine-lib-1.1.19/m4/pthreads.m4 2010-09-04 18:28:15.110999847 +0300
|
||||
@@ -15,7 +15,7 @@
|
||||
AC_ARG_VAR([PTHREAD_CFLAGS], [C compiler flags for Pthread support])
|
||||
AC_ARG_VAR([PTHREAD_LIBS], [linker flags for Pthread support])
|
||||
|
||||
- dnl if PTHREAD_* are not set, default to -pthread (GCC)
|
||||
+ dnl if PTHREAD_* are not set, default to -lpthread (GCC)
|
||||
if test "${PTHREAD_CFLAGS-unset}" = "unset"; then
|
||||
case $host in
|
||||
*-mingw*) PTHREAD_CFLAGS="" ;;
|
||||
@@ -25,7 +25,7 @@
|
||||
dnl Handle Sun Studio compiler (also on Linux)
|
||||
CC_CHECK_CFLAGS([-mt], [PTHREAD_CFLAGS="-mt"]);;
|
||||
|
||||
- *) PTHREAD_CFLAGS="-pthread" ;;
|
||||
+ *) PTHREAD_CFLAGS="-lpthread" ;;
|
||||
esac
|
||||
fi
|
||||
if test "${PTHREAD_LIBS-unset}" = "unset"; then
|
||||
@@ -36,7 +36,7 @@
|
||||
*-solaris*)
|
||||
dnl Use the same libraries for gcc and Sun Studio cc
|
||||
PTHREAD_LIBS="-lpthread -lposix4 -lrt";;
|
||||
- *) PTHREAD_LIBS="-pthread" ;;
|
||||
+ *) PTHREAD_LIBS="-lpthread" ;;
|
||||
esac
|
||||
|
||||
dnl Again, handle Sun Studio compiler
|
||||
@@ -0,0 +1,16 @@
|
||||
diff -up xine-lib-1.1.16.2/misc/xine-config.in.multilib xine-lib-1.1.16.2/misc/xine-config.in
|
||||
--- xine-lib-1.1.16.2/misc/xine-config.in.multilib 2008-06-25 08:04:09.000000000 -0500
|
||||
+++ xine-lib-1.1.16.2/misc/xine-config.in 2009-02-20 07:34:27.000000000 -0600
|
||||
@@ -6,12 +6,6 @@ unset prefix
|
||||
unset exec_prefix
|
||||
unset args
|
||||
|
||||
-PKG_CONFIG_PATH="`cat <<'EOF'
|
||||
-@XINE_PKGCONFIG_DIR@
|
||||
-EOF
|
||||
-`${PKG_CONFIG_PATH:+:}$PKG_CONFIG_PATH"
|
||||
-export PKG_CONFIG_PATH
|
||||
-
|
||||
usage()
|
||||
{
|
||||
cat <<EOF
|
||||
@@ -0,0 +1,17 @@
|
||||
diff -up xine-lib-1.1.17/autogen.sh.no_autopoint xine-lib-1.1.17/autogen.sh
|
||||
--- xine-lib-1.1.17/autogen.sh.no_autopoint 2009-10-09 09:33:31.000000000 -0500
|
||||
+++ xine-lib-1.1.17/autogen.sh 2009-12-02 09:15:48.534555467 -0600
|
||||
@@ -229,10 +229,10 @@ run_aclocal () {
|
||||
echo
|
||||
fi
|
||||
|
||||
- echo $_echo_n " + Running autopoint: $_echo_c"
|
||||
+ #echo $_echo_n " + Running autopoint: $_echo_c"
|
||||
|
||||
- autopoint
|
||||
- echo "done."
|
||||
+ #autopoint
|
||||
+ #echo "done."
|
||||
|
||||
echo $_echo_n " + Running aclocal: $_echo_c"
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
diff -Nur xine-lib-1.1.18.1-old/src/xine-engine/xine.c xine-lib-1.1.18.1/src/xine-engine/xine.c
|
||||
--- xine-lib-1.1.18.1-old/src/xine-engine/xine.c 2010-04-15 17:34:34.920980153 +0300
|
||||
+++ xine-lib-1.1.18.1/src/xine-engine/xine.c 2010-04-15 17:36:18.330983403 +0300
|
||||
@@ -1710,7 +1710,7 @@
|
||||
_x_scan_plugins(this);
|
||||
|
||||
#ifdef HAVE_SETLOCALE
|
||||
- if (!setlocale(LC_CTYPE, ""))
|
||||
+ if (!setlocale(LC_CTYPE, "en_US.UTF-8"))
|
||||
xprintf(this, XINE_VERBOSITY_LOG, _("xine: locale not supported by C library\n"));
|
||||
#endif
|
||||
|
||||
diff -Nur xine-lib-1.1.18.1-old/src/xine-utils/utils.c xine-lib-1.1.18.1/src/xine-utils/utils.c
|
||||
--- xine-lib-1.1.18.1-old/src/xine-utils/utils.c 2010-04-15 17:34:34.915980632 +0300
|
||||
+++ xine-lib-1.1.18.1/src/xine-utils/utils.c 2010-04-15 17:36:04.272983486 +0300
|
||||
@@ -564,7 +564,7 @@
|
||||
char *codeset = NULL;
|
||||
|
||||
#ifdef HAVE_NL_LANGINFO
|
||||
- setlocale(LC_CTYPE, "");
|
||||
+ setlocale(LC_CTYPE, "en_US.UTF-8");
|
||||
codeset = nl_langinfo(CODESET);
|
||||
#endif
|
||||
/*
|
||||
@@ -0,0 +1,195 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xine-lib</Name>
|
||||
<Homepage>http://xine.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Core libraries for Xine movie player</Summary>
|
||||
<Description>This package contains the Xine library. It can be used to play back various media, decode multimedia files from local disk drives, and display multimedia streamed over the Internet. It interprets many of the most common multimedia formats available - and some uncommon formats, too.</Description>
|
||||
<Archive sha1sum="ac929eef2b7bf5c27699bbed612b953a01fccba5" type="tarxz">http://sourceforge.net/projects/xine/files/xine-lib/1.2.6/xine-lib-1.2.6.tar.xz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile permission="0644" target="src/xine-engine/accel_vaapi.h">accel_vaapi.h</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<BuildDependencies>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<!--<Dependency>libcaca-devel</Dependency>-->
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libXinerama-devel</Dependency>
|
||||
<Dependency>libXv-devel</Dependency>
|
||||
<Dependency>libXvMC-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>libdvdcss-devel</Dependency>
|
||||
<Dependency versionFrom="1.7.1">DirectFB-devel</Dependency>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>aalib-devel</Dependency>
|
||||
<Dependency>libtheora-devel</Dependency>
|
||||
<Dependency>libvpx-devel</Dependency>
|
||||
<Dependency>samba-devel</Dependency>
|
||||
<Dependency>libmad-devel</Dependency>
|
||||
<Dependency>speex-devel</Dependency>
|
||||
<Dependency>libmodplug-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>a52dec-devel</Dependency>
|
||||
<!--<Dependency>faad2-devel</Dependency>-->
|
||||
<Dependency>libv4l-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<!--<Dependency>vcdimager-devel</Dependency>-->
|
||||
<Dependency>libdca-devel</Dependency>
|
||||
<Dependency>libbluray-devel</Dependency>
|
||||
<Dependency>libmng-devel</Dependency>
|
||||
<!--<Dependency>gconf-devel</Dependency>-->
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency versionFrom="0.90">libcdio-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>libvdpau-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">list.patch</Patch>
|
||||
<Patch level="1">multilib.patch</Patch>
|
||||
<Patch level="1">no_autopoint.patch</Patch>
|
||||
<Patch level="1">dmo.patch</Patch>
|
||||
<Patch level="1">tr_segfault_fix.patch</Patch>
|
||||
<Patch level="1">deepbind.patch</Patch>
|
||||
<Patch level="1">lpthread.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xine-lib</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>flac</Dependency>
|
||||
<!--<Dependency>libcaca</Dependency>-->
|
||||
<Dependency>speex</Dependency>
|
||||
<Dependency>aalib</Dependency>
|
||||
<Dependency>libXv</Dependency>
|
||||
<!--<Dependency>faad2</Dependency>-->
|
||||
<Dependency>libmad</Dependency>
|
||||
<Dependency>a52dec</Dependency>
|
||||
<!--<Dependency>libmng</Dependency>-->
|
||||
<Dependency>libdca</Dependency>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<Dependency>libogg</Dependency>
|
||||
<Dependency>libv4l</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<!--<Dependency versionFrom="0.90">libcdio</Dependency>-->
|
||||
<Dependency>libXvMC</Dependency>
|
||||
<!--<Dependency>wavpack</Dependency>-->
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libvpx</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency versionFrom="1.7.1">DirectFB</Dependency>
|
||||
<Dependency>libvdpau</Dependency>
|
||||
<Dependency>mesa-glu</Dependency>
|
||||
<!--<Dependency>gnome-vfs</Dependency>-->
|
||||
<!--<Dependency>vcdimager</Dependency>-->
|
||||
<!--<Dependency>libmpcdec</Dependency>-->
|
||||
<Dependency>libtheora</Dependency>
|
||||
<Dependency>libbluray</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>libmodplug</Dependency>
|
||||
<!--<Dependency>libjpeg-turbo</Dependency>-->
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<!--<Dependency>libva</Dependency>-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/xine</Path>
|
||||
<Path fileType="data">/usr/share/xine-lib/fonts</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc/xine-lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xine-lib-devel</Name>
|
||||
<Summary>Development files for xine-lib</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xine-lib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/xine-config</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2014-07-07</Date>
|
||||
<Version>1.2.6</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2014-07-07</Date>
|
||||
<Version>1.2.6</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-05-20</Date>
|
||||
<Version>1.2.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-12-20</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>Fix unneeded dependencies, remove DirectBD-devel from runtime deps.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-11-30</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>Rebuild for ffmpeg.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-10-14</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>rebuild for DirectFB.</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-07</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-12-30</Date>
|
||||
<Version>1.2.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xine-lib</Name>
|
||||
<Summary xml:lang="tr">Xine çokluortam oynatıcısının çekirdek kitaplıkları</Summary>
|
||||
<Summary xml:lang="fr">Librairies centrales pour le lecteur vidéo Xine.</Summary>
|
||||
<Description xml:lang="tr">xine-lib çeşitli medyaları oynatmak, farklı medya yapılarını birbirine dönüştürmek, Internet üzerinden yayınları işleyip göstermek gibi işlevleri olan bir çokluortam kitaplığıdır. Yaygın çokluortam yapılarının çoğunu desteklediği gibi fazla yaygın olmayan yapıları da desteklemektedir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xine-lib-devel</Name>
|
||||
<Summary xml:lang="tr">xine-lib için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">xine-lib için geliştirme dosyaları</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>network.mail</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,54 @@
|
||||
#!/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
|
||||
|
||||
MOZAPPDIR= "/usr/lib/thunderbird"
|
||||
shelltools.export("SHELL", "/bin/sh")
|
||||
|
||||
locales = "be ca da de el en-US es-AR es-ES fi fr hr hu it lt nl pl pt-BR pt-PT ro ru sr sv-SE tr uk".split()
|
||||
xpidir = "%s/xpi" % get.workDIR()
|
||||
arch = get.ARCH()
|
||||
ver = ".".join(get.srcVERSION().split(".")[:3])
|
||||
|
||||
def setup():
|
||||
pisitools.dosed(".mozconfig", "##JOBCOUNT##", get.makeJOBS())
|
||||
|
||||
# LOCALE
|
||||
shelltools.system("rm -rf langpack-tb/*/browser/defaults")
|
||||
if not shelltools.isDirectory(xpidir): shelltools.makedirs(xpidir)
|
||||
for locale in locales:
|
||||
shelltools.system("wget -c -P %s ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/%s/linux-%s/xpi/%s.xpi" % (xpidir, ver, arch, locale))
|
||||
shelltools.makedirs("langpack-tb/langpack-%s@thunderbird.mozilla.org" % locale)
|
||||
shelltools.system("unzip -uo %s/%s.xpi -d langpack-tb/langpack-%s@thunderbird.mozilla.org" % (xpidir, locale, locale))
|
||||
|
||||
def build():
|
||||
shelltools.system("sed -i '/^ftglyph.h/ i ftfntfmt.h' mozilla/config/system-headers")
|
||||
autotools.make("-f ./client.mk")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("-f client.mk DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# Install fix language packs
|
||||
pisitools.insinto("/usr/lib/thunderbird/extensions", "./langpack-tb/*")
|
||||
|
||||
# Install icons
|
||||
pisitools.insinto("/usr/share/pixmaps", "other-licenses/branding/thunderbird/mailicon256.png", "thunderbird.png")
|
||||
pisitools.insinto("%s/icons" % MOZAPPDIR, "other-licenses/branding/thunderbird/mailicon16.png")
|
||||
|
||||
for s in (16, 22, 24, 32, 48, 256):
|
||||
pisitools.insinto("/usr/share/icons/hicolor/%dx%d/apps" % (s,s), "other-licenses/branding/thunderbird/mailicon%d.png" % s, "thunderbird.png")
|
||||
|
||||
# We don't want the development stuff
|
||||
pisitools.removeDir("/usr/lib/thunderbird-devel*")
|
||||
pisitools.removeDir("/usr/share/idl")
|
||||
pisitools.removeDir("/usr/include")
|
||||
|
||||
# Install docs
|
||||
pisitools.dodoc("mozilla/LEGAL", "mozilla/LICENSE")
|
||||
@@ -0,0 +1,26 @@
|
||||
mk_add_options MOZ_MAKE_FLAGS="##JOBCOUNT##"
|
||||
|
||||
ac_add_options --disable-dbus
|
||||
ac_add_options --disable-necko-wifi
|
||||
ac_add_options --disable-libnotify
|
||||
ac_add_options --disable-gstreamer
|
||||
ac_add_options --disable-pulseaudio
|
||||
ac_add_options --disable-crashreporter
|
||||
ac_add_options --disable-installer
|
||||
ac_add_options --disable-updater
|
||||
ac_add_options --disable-tests
|
||||
ac_add_options --disable-debug
|
||||
|
||||
ac_add_options --enable-calendar
|
||||
ac_add_options --enable-system-sqlite
|
||||
ac_add_options --prefix=/usr
|
||||
ac_add_options --enable-application=mail
|
||||
ac_add_options --enable-safe-browsing
|
||||
ac_add_options --with-pthreads
|
||||
ac_add_options --enable-timeline
|
||||
ac_add_options --with-system-nspr
|
||||
ac_add_options --with-system-nss
|
||||
ac_add_options --with-system-jpeg
|
||||
ac_add_options --with-system-zlib
|
||||
ac_add_options --with-system-bz2
|
||||
ac_add_options --with-system-png
|
||||
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
diff -up comm-esr38/mozilla/config/baseconfig.mk.dir comm-esr38/mozilla/config/baseconfig.mk
|
||||
--- comm-esr38/mozilla/config/baseconfig.mk.dir 2015-06-08 19:49:23.000000000 +0200
|
||||
+++ comm-esr38/mozilla/config/baseconfig.mk 2015-06-16 14:45:16.048913473 +0200
|
||||
@@ -4,7 +4,7 @@
|
||||
# whether a normal build is happening or whether the check is running.
|
||||
includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
||||
idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
||||
-installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
||||
+installdir = $(libdir)/$(MOZ_APP_NAME)
|
||||
sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION)
|
||||
ifndef TOP_DIST
|
||||
TOP_DIST = dist
|
||||
@@ -0,0 +1,140 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Thunderbird
|
||||
Name[ar]=موزلا ثندَربرد
|
||||
Name[bg]=Мозила Пощальон
|
||||
Name[bn]=মোজিলা থান্ডারবার্ড
|
||||
Name[br]=Mozilla Thunderbird
|
||||
Name[bs]=Mozilla Thunderbird
|
||||
Name[ca]=Mozilla Thunderbird
|
||||
Name[cs]=Mozilla Thunderbird
|
||||
Name[cy]=Mozilla Thunderbird
|
||||
Name[da]=Mozilla Thunderbird
|
||||
Name[de]=Mozilla Thunderbird
|
||||
Name[el]=Mozilla Thunderbird
|
||||
Name[eo]=Mozilo Thunderbird
|
||||
Name[es]=Mozilla Thunderbird
|
||||
Name[et]=Mozilla Thunderbird
|
||||
Name[eu]=Mozilla Thunderbird
|
||||
Name[fa]=پرندهصاعقه موزیلا
|
||||
Name[fi]=Mozilla Thunderbird
|
||||
Name[fr]=Mozilla Thunderbird (courrier électronique)
|
||||
Name[gl]=Mozilla Thunderbird
|
||||
Name[he]=Mozilla Thunderbird
|
||||
Name[hi]=मोज़िला थंडरबर्ड
|
||||
Name[hu]=Mozilla Thunderbird
|
||||
Name[id]=Mozilla Thunderbird
|
||||
Name[is]=Mozilla Thunderbird
|
||||
Name[it]=Mozilla Thunderbird
|
||||
Name[ja]=Mozilla Thunderbird
|
||||
Name[ko]=모질라 썬더버드
|
||||
Name[ky]=Mozilla Thunderbird
|
||||
Name[mk]=Mozilla Thunderbird
|
||||
Name[mn]=Мозилла түндэрбөрд
|
||||
Name[nb]=Mozilla Thunderbird
|
||||
Name[nl]=Mozilla Thunderbird
|
||||
Name[nn]=Mozilla Thunderbird
|
||||
Name[pl]=Mozilla Thunderbird
|
||||
Name[pt]=Mozilla Thunderbird
|
||||
Name[pt_BR]=Mozilla Thunderbird
|
||||
Name[ro]=Mozilla Thunderbird
|
||||
Name[ru]=Mozilla Thunderbird
|
||||
Name[sc]=Mozilla Thunderbird
|
||||
Name[sk]=Mozilla Thunderbird
|
||||
Name[sl]=Mozilla Thunderbird
|
||||
Name[sv]=Mozilla Thunderbird
|
||||
Name[tg]=Мозиллаи Thunderbird
|
||||
Name[th]=Mozilla Thunderbird
|
||||
Name[tl]=Mozilla Thunderbird
|
||||
Name[tr]=Mozilla Thunderbird
|
||||
Name[uk]=Mozilla Thunderbird
|
||||
Name[uz]=Mozilla Thunderbird
|
||||
Name[uz@cyrillic]=Mozilla Thunderbird
|
||||
Name[vi]=Mozilla Thunderbird
|
||||
Name[wa]=Mozilla Thunderbird
|
||||
Name[zh_CN]=Mozilla Thunderbird 电子邮件
|
||||
Name[zh_TW]=Mozilla Thunderbird
|
||||
GenericName=Mail & News Reader
|
||||
GenericName[ar]=بريد/أخبار
|
||||
GenericName[bg]=Поща/Новини
|
||||
GenericName[br]=Posteloù/keleier
|
||||
GenericName[cs]=Pošta/Diskusní skupiny
|
||||
GenericName[cy]=E-bost/Newyddion
|
||||
GenericName[da]=E-post/Nyheder
|
||||
GenericName[de]=E-Mail/News
|
||||
GenericName[el]=Αλληλογραφία/Νέα
|
||||
GenericName[es]=Correo/Noticias
|
||||
GenericName[et]=E-post/Uudistegrupid
|
||||
GenericName[eu]=Posta/Berriak
|
||||
GenericName[fi]=Sähköposti / uutisryhmät
|
||||
GenericName[fr]=Courriel/Nouvelles
|
||||
GenericName[gl]=Correo/Novas
|
||||
GenericName[he]=דואר/קבוצות דיון
|
||||
GenericName[hu]=Levelezés/hírek
|
||||
GenericName[id]=Mail/Berita
|
||||
GenericName[is]=Póstur/Fréttir
|
||||
GenericName[it]=Mail/News
|
||||
GenericName[ja]=メール/ニュース
|
||||
GenericName[ky]=Почта/Жаңылыктар
|
||||
GenericName[mk]=Пошта/Вести
|
||||
GenericName[nb]=E-post/Njus
|
||||
GenericName[nl]=E-mail/nieuws
|
||||
GenericName[nn]=E-post og temagrupper
|
||||
GenericName[pl]=Poczta/wiadomości
|
||||
GenericName[pt]=Correio/Noticias
|
||||
GenericName[pt_BR]=E-mail/Notícias
|
||||
GenericName[ro]=Poștă/Știri
|
||||
GenericName[ru]=Почта/Новости
|
||||
GenericName[sl]=Pošta/Novičarske skupine
|
||||
GenericName[sv]=E-post/Nyheter
|
||||
GenericName[tr]=Posta/Haber
|
||||
GenericName[uk]=Пошта/Новини
|
||||
GenericName[uz]=Xat-xabar/Yangiliklar
|
||||
GenericName[uz@cyrillic]=Хат-хабар/Янгиликлар
|
||||
GenericName[zh_CN]=邮件/新闻
|
||||
GenericName[zh_TW]=郵件/新聞
|
||||
Comment=Mail Client & News Reader
|
||||
Comment[ar]=عميل بريد وأخبار
|
||||
Comment[bg]=Пощенски и новинарски клиент
|
||||
Comment[bs]=E-mail i news klijent
|
||||
Comment[cs]=Klient pro poštu a diskusní skupiny
|
||||
Comment[cy]=Rhaglen E-bost a Newyddion
|
||||
Comment[da]=E-post- og nyhedsklient
|
||||
Comment[de]=E-Mail und Nachrichten Client
|
||||
Comment[el]=Πελάτης Αλληλογραφίας και Νέων
|
||||
Comment[es]=Cliente de correo electrónico y noticias
|
||||
Comment[et]=E-posti ja uudisteklient
|
||||
Comment[eu]=Posta eta Berri bezeroa
|
||||
Comment[fi]=Sähköpostin ja uutisryhmien luku- ja kirjoitusohjelma
|
||||
Comment[fr]=Client messagerie et news
|
||||
Comment[gl]=Cliente de Correo-e e Novas
|
||||
Comment[he]=לקוח חדשות ודוא"ל
|
||||
Comment[hu]=Levelezőprogram és hírolvasó
|
||||
Comment[id]=Klien Mail dan Berita
|
||||
Comment[is]=Póst og frétta-forrit
|
||||
Comment[it]=Client per posta elettronica e news
|
||||
Comment[ja]=メールクライアントとニュースリーダー
|
||||
Comment[ky]=Почта жана Жаңылыктар клиентти
|
||||
Comment[mk]=Клиент за е-пошта и вести
|
||||
Comment[nb]=E-post- og nyhetsklient
|
||||
Comment[nl]=Mail- en newsprogramma
|
||||
Comment[nn]=E-post og temagruppeprogram
|
||||
Comment[pl]=Klient pocztowy oraz klient grup dyskusyjnych
|
||||
Comment[pt]=Cliente de Correio e Notícias
|
||||
Comment[pt_BR]=Cliente de E-mail e Notícias
|
||||
Comment[ro]=Client de poștă și știri
|
||||
Comment[ru]=Клиент чтения новостей и почты
|
||||
Comment[sl]=Odjemalec za e-pošto in novice
|
||||
Comment[sv]=E-post och Nyhets-klient
|
||||
Comment[tr]=Posta ve Haber İstemcisi
|
||||
Comment[uk]=Поштовий клієнт та клієнт новин
|
||||
Comment[zh_CN]=邮件和新闻客户程序
|
||||
Comment[zh_TW]=郵件與新聞用戶端
|
||||
TryExec=thunderbird
|
||||
Exec=thunderbird %u
|
||||
Icon=thunderbird
|
||||
Terminal=false
|
||||
Type=Application
|
||||
StartupNotify=true
|
||||
Categories=Application;Network;Email;
|
||||
MimeType=message/rfc822;x-scheme-handler/mailto;
|
||||
@@ -0,0 +1,9 @@
|
||||
// Use LANG environment variable to choose locale
|
||||
pref("intl.locale.matchOS", true);
|
||||
|
||||
// Disable default mailer checking.
|
||||
pref("mail.shell.checkDefaultMail", false);
|
||||
|
||||
// Don't disable our bundled extensions in the application directory
|
||||
pref("extensions.autoDisableScopes", 11);
|
||||
pref("extensions.shownSelectionUI", true);
|
||||
@@ -0,0 +1,581 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>thunderbird</Name>
|
||||
<Homepage>http://www.mozilla.org/projects/thunderbird/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MPL-1.1</License>
|
||||
<License>NPL-1.1</License>
|
||||
<License>GPLv2+</License>
|
||||
<Icon>thunderbird</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>The Stand-Alone Mozilla Mail Component</Summary>
|
||||
<Description>Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform.</Description>
|
||||
<Archive sha1sum="7bb0c85e889e397e53dcbcbd36957dbd7c8c10bd" type="tarbz2">http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/38.1.0/source/thunderbird-38.1.0.source.tar.bz2</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target=".mozconfig">pisilinux/mozconfig</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<BuildDependencies>
|
||||
<Dependency>wget</Dependency>
|
||||
<Dependency>yasm</Dependency>
|
||||
<Dependency>nss-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>sqlite-devel</Dependency>
|
||||
<Dependency>libXcomposite-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">thunderbird-install-dir.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>iconcan</Dependency> <!--for <ICON></ICON>-->
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/lib/thunderbird</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/thunderbird/defaults/preferences/vendor.js">vendor.js</AdditionalFile>
|
||||
<!-- Desktop file -->
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/thunderbird.desktop">thunderbird.desktop</AdditionalFile>
|
||||
<!-- Notification sound file -->
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/thunderbird/sound.wav">pisilinux/sound.wav</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-be</Name>
|
||||
<Icon>lang-be</Icon>
|
||||
<IsA>locale:be</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Беларуская мова пакет для Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ca</Name>
|
||||
<Icon>lang-ca</Icon>
|
||||
<IsA>locale:ca</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Arxiu d'idioma català del Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-da</Name>
|
||||
<Icon>lang-da</Icon>
|
||||
<IsA>locale:da</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Dansk sprogpakke til Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-de</Name>
|
||||
<Icon>lang-de</Icon>
|
||||
<IsA>locale:de</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Deutsch Sprachdatei für Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-el</Name>
|
||||
<Icon>lang-el</Icon>
|
||||
<IsA>locale:el</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Ελληνική γλώσσα pack για τον Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-en-US</Name>
|
||||
<Icon>lang-en-US</Icon>
|
||||
<IsA>locale:en_US</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>English language pack for Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-es-AR</Name>
|
||||
<Icon>lang-es-AR</Icon>
|
||||
<IsA>locale:es_AR</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Paquete de idioma español para Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-es-ES</Name>
|
||||
<Icon>lang-es-ES</Icon>
|
||||
<IsA>locale:es</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Paquete de idioma español para Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-fi</Name>
|
||||
<Icon>lang-fi</Icon>
|
||||
<IsA>locale:fi</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Suomen kielen pack for Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-fr</Name>
|
||||
<Icon>lang-fr</Icon>
|
||||
<IsA>locale:fr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Paquet de langue française pour Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-hr</Name>
|
||||
<Icon>lang-hr</Icon>
|
||||
<IsA>locale:hr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Hrvatski jezični paket za Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-hu</Name>
|
||||
<Icon>lang-hu</Icon>
|
||||
<IsA>locale:hu</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Magyar nyelvű pack for Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-it</Name>
|
||||
<Icon>lang-it</Icon>
|
||||
<IsA>locale:it</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Language Pack italiano per Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-lt</Name>
|
||||
<Icon>lang-lt</Icon>
|
||||
<IsA>locale:lt</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Lietuvių kalbos paketas Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-nl</Name>
|
||||
<Icon>lang-nl</Icon>
|
||||
<IsA>locale:nl</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Nederlands taalpakket voor Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pl</Name>
|
||||
<Icon>lang-pl</Icon>
|
||||
<IsA>locale:pl</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Polski pakiet językowy dla programu Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pt-BR</Name>
|
||||
<Icon>lang-pt-BR</Icon>
|
||||
<IsA>locale:pt_BR</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Pacote de idioma português para o Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pt-PT</Name>
|
||||
<Icon>lang-pt-PT</Icon>
|
||||
<IsA>locale:pt</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Pacote de idioma português para o Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ro</Name>
|
||||
<Icon>lang-ro</Icon>
|
||||
<IsA>locale:ro</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Pachet de limba română pentru Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ru</Name>
|
||||
<Icon>lang-ru</Icon>
|
||||
<IsA>locale:ru</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Русский языковый пакет для Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-sr</Name>
|
||||
<Icon>lang-sr</Icon>
|
||||
<IsA>locale:sr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Паковање српски језик за Фирефок</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-sv-SE</Name>
|
||||
<Icon>lang-sv-SE</Icon>
|
||||
<IsA>locale:sv_SE</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Svenska språkpaket för Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-tr</Name>
|
||||
<Icon>lang-tr</Icon>
|
||||
<IsA>locale:tr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Firefox için Türkçe dil dosyası</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-uk</Name>
|
||||
<Icon>lang-uk</Icon>
|
||||
<Summary>Український мовний пакет для Firefox</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="33">
|
||||
<Date>2015-08-07</Date>
|
||||
<Version>38.1.0</Version>
|
||||
<Comment>Version Bumps, https://www.mozilla.org/en-US/thunderbird/38.1.0/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="32">
|
||||
<Date>2015-06-10</Date>
|
||||
<Version>31.7.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/31.7.0/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="31">
|
||||
<Date>2015-04-25</Date>
|
||||
<Version>31.6.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/31.6.0/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="30">
|
||||
<Date>2015-01-30</Date>
|
||||
<Version>31.4.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/31.4.0/releasenotes/</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="29">
|
||||
<Date>2014-11-10</Date>
|
||||
<Version>31.2.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/31.2.0/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="28">
|
||||
<Date>2014-08-30</Date>
|
||||
<Version>31.1.2</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/31.1.2/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="27">
|
||||
<Date>2014-08-21</Date>
|
||||
<Version>31.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="26">
|
||||
<Date>2014-06-07</Date>
|
||||
<Version>24.5.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="25">
|
||||
<Date>2014-05-01</Date>
|
||||
<Version>24.5.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/24.5.0/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="22">
|
||||
<Date>2014-04-11</Date>
|
||||
<Version>24.4.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/24.4.0/releasenotes/</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="21">
|
||||
<Date>2014-02-15</Date>
|
||||
<Version>24.3.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/24.3.0/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="20">
|
||||
<Date>2013-12-19</Date>
|
||||
<Version>24.2.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/24.2.0/releasenotes/</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2013-11-19</Date>
|
||||
<Version>24.1.1</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/24.1.1/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2013-11-13</Date>
|
||||
<Version>24.1.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/24.1.0/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2013-08-09</Date>
|
||||
<Version>24.0</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/24.0/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2013-08-09</Date>
|
||||
<Version>17.0.8</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/17.0.8/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2013-07-19</Date>
|
||||
<Version>17.0.7</Version>
|
||||
<Comment>rebuild for nspr</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-07-13</Date>
|
||||
<Version>17.0.7</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/17.0.7/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-05-20</Date>
|
||||
<Version>17.0.6</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/17.0.6/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-04-03</Date>
|
||||
<Version>17.0.5</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/17.0.5/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-03-11</Date>
|
||||
<Version>17.0.4</Version>
|
||||
<Comment>https://www.mozilla.org/en-US/thunderbird/17.0.4/releasenotes/</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-02-19</Date>
|
||||
<Version>17.0.3</Version>
|
||||
<Comment>bump</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-26</Date>
|
||||
<Version>17.0.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,135 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>thunderbird</Name>
|
||||
<Summary xml:lang="tr">Thunderbird eposta istemcisi</Summary>
|
||||
<Summary xml:lang="pl">Klient pocztowy Thunderbird</Summary>
|
||||
<Description xml:lang="tr">Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir.</Description>
|
||||
<Description xml:lang="pl">Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-be</Name>
|
||||
<Summary xml:lang="be">Беларуская мова пакет для Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ca</Name>
|
||||
<Summary xml:lang="ca">Arxiu d'idioma català del Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-da</Name>
|
||||
<Summary xml:lang="da">Dansk sprogpakke til Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-de</Name>
|
||||
<Summary xml:lang="de">Deutsch Sprachdatei für Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-el</Name>
|
||||
<Summary xml:lang="el">Ελληνική γλώσσα pack για τον Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-en-US</Name>
|
||||
<Summary xml:lang="en-US">English language pack for Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-es-AR</Name>
|
||||
<Summary xml:lang="es-AR">Paquete de idioma español para Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-es-CL</Name>
|
||||
<Summary xml:lang="es-CL">Paquete de idioma español para Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-es-ES</Name>
|
||||
<Summary xml:lang="es-ES">Paquete de idioma español para Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-fi</Name>
|
||||
<Summary xml:lang="fi">Suomen kielen pack for Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-fr</Name>
|
||||
<Summary xml:lang="fr">Paquet de langue française pour Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-hr</Name>
|
||||
<Summary xml:lang="hr">Hrvatski jezični paket za Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-hu</Name>
|
||||
<Summary xml:lang="hu">Magyar nyelvű pack for Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-it</Name>
|
||||
<Summary xml:lang="it">Language Pack italiano per Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-lt</Name>
|
||||
<Summary xml:lang="lt">Lietuvių kalbos paketas Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-nl</Name>
|
||||
<Summary xml:lang="nl">Nederlands taalpakket voor Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pl</Name>
|
||||
<Summary xml:lang="pl">Polski pakiet językowy dla programu Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pt-BR</Name>
|
||||
<Summary xml:lang="ept-BR">Pacote de idioma português para o Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pt-PT</Name>
|
||||
<Summary xml:lang="pt-PT">Pacote de idioma português para o Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ro</Name>
|
||||
<Summary xml:lang="ro">Pachet de limba română pentru Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ru</Name>
|
||||
<Summary xml:lang="ru">Русский языковый пакет для Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-sr</Name>
|
||||
<Summary xml:lang="sr">Паковање српски језик за Фирефок</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-sv-SE</Name>
|
||||
<Summary xml:lang="sv-SE">Svenska språkpaket för Thunderbird</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-tr</Name>
|
||||
<Summary xml:lang="tr">Thunderbird için Türkçe dil dosyası</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-uk</Name>
|
||||
<Summary xml:lang="uk">Український мовний пакет для Thunderbird</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -18,15 +18,16 @@ docs = ["AUTHORS", "ChangeLog", "COPYING.LIB", "THANKS", \
|
||||
|
||||
def setup():
|
||||
autotools.configure("\
|
||||
--disable-gtk-doc \
|
||||
--disable-silent-rules \
|
||||
--disable-webkit2 \
|
||||
--enable-dependency-tracking \
|
||||
--enable-introspection \
|
||||
--enable-video \
|
||||
--with-gnu-ld \
|
||||
--libexecdir=/usr/lib \
|
||||
--with-gtk=2.0 \
|
||||
--with-gnu-ld \
|
||||
--disable-silent-rules \
|
||||
")
|
||||
#--enable-dependency-tracking \
|
||||
#--disable-gtk-doc \
|
||||
#--enable-video \
|
||||
#--enable-introspection \
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
|
||||
@@ -14,40 +14,38 @@
|
||||
<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>
|
||||
<Archive sha1sum="fbe02db8a4f01a70e7cdf0d16f8a18463e18b104" type="tarxz">http://www.webkitgtk.org/releases/webkitgtk-2.4.9.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.1.4">libXt-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="1.1.28">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 versionFrom="0.4.4">libXcomposite-devel</Dependency>
|
||||
<Dependency versionFrom="1.3.1">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>
|
||||
<Dependency versionFrom="3.0.4">gperf</Dependency>
|
||||
<Dependency versionFrom="1.1.2">libSM-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch>webkitgtk-2.4.8-gcc5.patch</Patch>-->
|
||||
<Patch>webkitgtk-2.4.8-gmutexlocker.patch</Patch>
|
||||
<!--<Patch>webkitgtk-2.4.8-gcc5.patch</Patch>-->
|
||||
<!--<Patch>webkitgtk-2.4.8-gmutexlocker.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -70,6 +68,7 @@
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>enchant</Dependency>
|
||||
<Dependency>geoclue</Dependency>
|
||||
<Dependency>libsoup</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>harfbuzz</Dependency>
|
||||
@@ -114,7 +113,14 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Update release="9">
|
||||
<Date>2015-08-05</Date>
|
||||
<Version>2.4.9</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2015-04-07</Date>
|
||||
<Version>2.4.8</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>network.plugin</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,24 @@
|
||||
# -*- 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
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
ARCH = "i386" if get.ARCH() == "i686" else "x86_64"
|
||||
WorkDir = get.ARCH()
|
||||
NoStrip = "/"
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/bin/", "usr/bin/flash-player-properties")
|
||||
#pisitools.insinto("/usr/lib/kde4/", "usr/lib/kde4/kcm_adobe_flash_player.so")
|
||||
pisitools.insinto("/usr/", "usr/share/")
|
||||
|
||||
#if get.ARCH() == "x86_64":
|
||||
#pisitools.insinto("/usr/lib/kde4", "usr/lib64/kde4/kcm_adobe_flash_player.so")
|
||||
|
||||
pisitools.doexe("libflashplayer.so", "/usr/lib/browser-plugins")
|
||||
|
||||
pisitools.removeDir("/usr/share/kde4")
|
||||
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>flashplugin</Name>
|
||||
<Homepage>http://labs.adobe.com/technologies/flashplayer10</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Macromedia</License>
|
||||
<IsA>library</IsA>
|
||||
<Icon>flash-player-properties</Icon>
|
||||
<Summary>Adobe Flash Player</Summary>
|
||||
<Description>Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash.</Description>
|
||||
<Archive sha1sum="691f4b8682b548fd0ac143638aa3653c6c37ff34" type="targz" target="i686">http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.491/install_flash_player_11_linux.i386.tar.gz</Archive>
|
||||
<Archive sha1sum="e8175d37d7311fda9806daa0f78e57cb145b5b12" type="targz" target="x86_64">http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.491/install_flash_player_11_linux.x86_64.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<!--flashplugin-kde-extension-->
|
||||
<Dependency>libXpm</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>flashplugin</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXcursor</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
</Files>
|
||||
<BuildFlags>
|
||||
<Flag>noDelta</Flag>
|
||||
</BuildFlags>
|
||||
</Package>
|
||||
|
||||
<!--<Package>
|
||||
<Name>flashplugin-kde-extension</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libSM</Dependency>
|
||||
<Dependency>libXpm</Dependency>
|
||||
<Dependency>libICE</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libXau</Dependency>
|
||||
<Dependency>libXft</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXdmcp</Dependency>
|
||||
<Dependency release="current">flashplugin</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/kde4/</Path>
|
||||
<Path fileType="library">/usr/lib/kde4/</Path>
|
||||
</Files>
|
||||
<BuildFlags>
|
||||
<Flag>noDelta</Flag>
|
||||
</BuildFlags>
|
||||
</Package>-->
|
||||
|
||||
<History>
|
||||
<Update release="29" type="security">
|
||||
<Date>2015-07-17</Date>
|
||||
<Version>11.2.202.491</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="28" type="security">
|
||||
<Date>2015-07-01</Date>
|
||||
<Version>11.2.202.468</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="27" type="security">
|
||||
<Date>2015-05-21</Date>
|
||||
<Version>11.2.202.460</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="26" type="security">
|
||||
<Date>2015-02-09</Date>
|
||||
<Version>11.2.202.442</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="25" type="security">
|
||||
<Date>2015-02-04</Date>
|
||||
<Version>11.2.202.440</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="24" type="security">
|
||||
<Date>2014-12-14</Date>
|
||||
<Version>11.2.202.425</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="23" type="security">
|
||||
<Date>2014-11-30</Date>
|
||||
<Version>11.2.202.424</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="22" type="security">
|
||||
<Date>2014-10-16</Date>
|
||||
<Version>11.2.202.411</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="21" type="security">
|
||||
<Date>2014-09-22</Date>
|
||||
<Version>11.2.202.406</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="20" type="security">
|
||||
<Date>2014-07-09</Date>
|
||||
<Version>11.2.202.394</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="19" type="security">
|
||||
<Date>2014-06-18</Date>
|
||||
<Version>11.2.202.378</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="18" type="security">
|
||||
<Date>2014-06-07</Date>
|
||||
<Version>11.2.202.359</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="17" type="security">
|
||||
<Date>2014-05-01</Date>
|
||||
<Version>11.2.202.356</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="16" type="security">
|
||||
<Date>2014-03-14</Date>
|
||||
<Version>11.2.202.346</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="15" type="security">
|
||||
<Date>2014-02-22</Date>
|
||||
<Version>11.2.202.341</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="14" type="security">
|
||||
<Date>2014-02-06</Date>
|
||||
<Version>11.2.202.336</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="13" type="security">
|
||||
<Date>2014-02-02</Date>
|
||||
<Version>11.2.202.335</Version>
|
||||
<Comment>Split package</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12" type="security">
|
||||
<Date>2014-01-24</Date>
|
||||
<Version>11.2.202.335</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11" type="security">
|
||||
<Date>2014-01-21</Date>
|
||||
<Version>11.2.202.332</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10" type="security">
|
||||
<Date>2013-11-17</Date>
|
||||
<Version>11.2.202.327</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Richard de Bruin</Name>
|
||||
<Email>richdb@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9" type="security">
|
||||
<Date>2013-09-18</Date>
|
||||
<Version>11.2.202.310</Version>
|
||||
<Comment>fix dep</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8" type="security">
|
||||
<Date>2013-09-11</Date>
|
||||
<Version>11.2.202.310</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7" type="security">
|
||||
<Date>2013-07-14</Date>
|
||||
<Version>11.2.202.297</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6" type="security">
|
||||
<Date>2013-06-13</Date>
|
||||
<Version>11.2.202.291</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5" type="security">
|
||||
<Date>2013-04-23</Date>
|
||||
<Version>11.2.202.280</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4" type="security">
|
||||
<Date>2013-03-21</Date>
|
||||
<Version>11.2.202.275</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Ertan Güven</Name>
|
||||
<Email>ertan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3" type="security">
|
||||
<Date>2013-03-06</Date>
|
||||
<Version>11.2.202.273</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Ertan Güven</Name>
|
||||
<Email>ertan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2" type="security">
|
||||
<Date>2013-02-12</Date>
|
||||
<Version>11.2.202.270</Version>
|
||||
<Comment>security update</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1" type="security">
|
||||
<Date>2013-01-09</Date>
|
||||
<Version>11.2.202.261</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>flashplugin</Name>
|
||||
<Summary xml:lang="tr">Adobe Flash Oynatıcı</Summary>
|
||||
<Description xml:lang="tr">Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -68,6 +68,7 @@
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>pixman</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>iconcan</Dependency> <!--for <ICON></ICON>-->
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/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()
|
||||
autotools.configure("--disable-static \
|
||||
--sysconfdir=/etc/aspell \
|
||||
--enable-docdir=/usr/share/doc/%s" % get.srcNAME())
|
||||
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# install ispell/spell compatibility scripts
|
||||
pisitools.insinto("/usr/bin","scripts/ispell","ispell-aspell")
|
||||
pisitools.insinto("/usr/bin","scripts/spell", "spell-aspell")
|
||||
|
||||
pisitools.dodoc("README*", "TODO")
|
||||
@@ -0,0 +1,30 @@
|
||||
diff -up aspell-0.60.6.1/manual/Makefile.in.iinfo aspell-0.60.6.1/manual/Makefile.in
|
||||
--- aspell-0.60.6.1/manual/Makefile.in.iinfo 2011-07-04 10:58:49.000000000 +0200
|
||||
+++ aspell-0.60.6.1/manual/Makefile.in 2011-08-15 16:29:40.999718535 +0200
|
||||
@@ -607,16 +607,16 @@ install-info-am: $(INFO_DEPS)
|
||||
else : ; fi; \
|
||||
done; \
|
||||
done
|
||||
- @$(POST_INSTALL)
|
||||
- @if (install-info --version && \
|
||||
- install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
||||
- list='$(INFO_DEPS)'; \
|
||||
- for file in $$list; do \
|
||||
- relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||
- echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
|
||||
- install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
|
||||
- done; \
|
||||
- else : ; fi
|
||||
+# @$(POST_INSTALL)
|
||||
+# @if (install-info --version && \
|
||||
+# install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
||||
+# list='$(INFO_DEPS)'; \
|
||||
+# for file in $$list; do \
|
||||
+# relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
||||
+# echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
|
||||
+# install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
|
||||
+# done; \
|
||||
+# else : ; fi
|
||||
install-man: install-man1
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
@@ -0,0 +1,70 @@
|
||||
diff -up aspell-0.60.6.1/configure.fc aspell-0.60.6.1/configure
|
||||
--- aspell-0.60.6.1/configure.fc 2011-07-04 10:58:50.000000000 +0200
|
||||
+++ aspell-0.60.6.1/configure 2011-08-16 11:28:58.626771599 +0200
|
||||
@@ -839,6 +839,7 @@ MAINTAINER_MODE_FALSE
|
||||
MAINT
|
||||
pkgdocdir
|
||||
pkgdatadir
|
||||
+pkgdatadir2
|
||||
pkglibdir
|
||||
CXX
|
||||
CXXFLAGS
|
||||
@@ -2634,18 +2635,21 @@ pkgdatadir=undef
|
||||
# Check whether --enable-pkgdatadir was given.
|
||||
if test "${enable_pkgdatadir+set}" = set; then
|
||||
enableval=$enable_pkgdatadir; pkgdatadir=$enable_pkgdatadir
|
||||
+ pkgdatadir2=$enable_pkgdatadir
|
||||
fi
|
||||
|
||||
|
||||
# Check whether --enable-pkgdata-dir was given.
|
||||
if test "${enable_pkgdata_dir+set}" = set; then
|
||||
enableval=$enable_pkgdata_dir; pkgdatadir=$enable_dict_dir
|
||||
+ pkgdatadir2=$enable_dict_dir
|
||||
fi
|
||||
|
||||
|
||||
if test "$pkgdatadir" = "undef"
|
||||
then
|
||||
pkgdatadir=\${libdir}/aspell-0.60
|
||||
+ pkgdatadir2=${exec_prefix}/lib/aspell-0.60:${exec_prefix}/lib64/aspell-0.60
|
||||
fi
|
||||
|
||||
|
||||
@@ -20119,6 +20123,7 @@ MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_F
|
||||
MAINT!$MAINT$ac_delim
|
||||
pkgdocdir!$pkgdocdir$ac_delim
|
||||
pkgdatadir!$pkgdatadir$ac_delim
|
||||
+pkgdatadir2!$pkgdatadir2$ac_delim
|
||||
pkglibdir!$pkglibdir$ac_delim
|
||||
CXX!$CXX$ac_delim
|
||||
CXXFLAGS!$CXXFLAGS$ac_delim
|
||||
@@ -20142,7 +20147,7 @@ ac_ct_CC!$ac_ct_CC$ac_delim
|
||||
CCDEPMODE!$CCDEPMODE$ac_delim
|
||||
_ACEOF
|
||||
|
||||
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
||||
+ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 98; then
|
||||
break
|
||||
elif $ac_last_try; then
|
||||
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
||||
diff -up aspell-0.60.6.1/Makefile.in.fc aspell-0.60.6.1/Makefile.in
|
||||
--- aspell-0.60.6.1/Makefile.in.fc 2011-07-04 10:58:49.000000000 +0200
|
||||
+++ aspell-0.60.6.1/Makefile.in 2011-08-16 11:20:09.030887258 +0200
|
||||
@@ -344,6 +344,7 @@ distcleancheck_listfiles = find . -type
|
||||
|
||||
# These are needed due to a bug in Automake
|
||||
pkgdatadir = @pkgdatadir@
|
||||
+pkgdatadir2 = @pkgdatadir2@
|
||||
pkglibdir = @pkglibdir@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
@@ -1932,7 +1933,7 @@ gen/dirs.h: gen/mk-dirs_h.pl
|
||||
cd gen; perl mk-dirs_h.pl ${prefix} ${pkgdatadir} ${pkglibdir} ${sysconfdir} > dirs.h
|
||||
|
||||
scripts/run-with-aspell: scripts/run-with-aspell.create
|
||||
- sh ${srcdir}/scripts/run-with-aspell.create ${pkgdatadir} > scripts/run-with-aspell
|
||||
+ sh ${srcdir}/scripts/run-with-aspell.create ${pkgdatadir2} > scripts/run-with-aspell
|
||||
chmod 755 scripts/run-with-aspell
|
||||
@PSPELL_COMPATIBILITY_TRUE@scripts/pspell-config: scripts/mkconfig
|
||||
@PSPELL_COMPATIBILITY_TRUE@ sh ${srcdir}/scripts/mkconfig ${VERSION} ${datadir} ${pkgdatadir}
|
||||
@@ -0,0 +1,60 @@
|
||||
diff -up aspell-0.60.6.1/configure.mlib aspell-0.60.6.1/configure
|
||||
--- aspell-0.60.6.1/configure.mlib 2011-08-16 11:40:48.000000000 +0200
|
||||
+++ aspell-0.60.6.1/configure 2011-08-16 11:41:44.013663519 +0200
|
||||
@@ -18989,7 +18989,7 @@ rm -f core conftest.err conftest.$ac_obj
|
||||
# #
|
||||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||
|
||||
-ac_config_files="$ac_config_files Makefile gen/Makefile common/Makefile lib/Makefile data/Makefile auto/Makefile modules/Makefile modules/tokenizer/Makefile modules/speller/Makefile modules/speller/default/Makefile interfaces/Makefile interfaces/cc/Makefile scripts/Makefile examples/Makefile prog/Makefile manual/Makefile po/Makefile.in m4/Makefile modules/filter/Makefile myspell/Makefile lib5/Makefile"
|
||||
+ac_config_files="$ac_config_files Makefile gen/Makefile common/Makefile lib/Makefile data/Makefile auto/Makefile modules/Makefile modules/tokenizer/Makefile modules/speller/Makefile modules/speller/default/Makefile interfaces/Makefile interfaces/cc/Makefile aspell.pc scripts/Makefile examples/Makefile prog/Makefile manual/Makefile po/Makefile.in m4/Makefile modules/filter/Makefile myspell/Makefile lib5/Makefile"
|
||||
|
||||
cat >confcache <<\_ACEOF
|
||||
# This file is a shell script that caches the results of configure
|
||||
@@ -19985,7 +19985,7 @@ do
|
||||
"modules/filter/Makefile") CONFIG_FILES="$CONFIG_FILES modules/filter/Makefile" ;;
|
||||
"myspell/Makefile") CONFIG_FILES="$CONFIG_FILES myspell/Makefile" ;;
|
||||
"lib5/Makefile") CONFIG_FILES="$CONFIG_FILES lib5/Makefile" ;;
|
||||
-
|
||||
+ "aspell.pc" ) CONFIG_FILES="$CONFIG_FILES aspell.pc" ;;
|
||||
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
||||
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
||||
{ (exit 1); exit 1; }; };;
|
||||
diff -up aspell-0.60.6.1/Makefile.in.mlib aspell-0.60.6.1/Makefile.in
|
||||
--- aspell-0.60.6.1/Makefile.in.mlib 2011-08-16 11:20:09.000000000 +0200
|
||||
+++ aspell-0.60.6.1/Makefile.in 2011-08-16 11:46:30.643236786 +0200
|
||||
@@ -816,6 +816,8 @@ clean-filterLTLIBRARIES:
|
||||
done
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
+ mkdir -p $(libdir)/pkgconfig; \
|
||||
+ cp aspell.pc $(libdir)/pkgconfig/aspell.pc; \
|
||||
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
diff -up aspell-0.60.6.1/scripts/mkconfig.mlib aspell-0.60.6.1/scripts/mkconfig
|
||||
--- aspell-0.60.6.1/scripts/mkconfig.mlib 2004-01-03 13:06:24.000000000 +0100
|
||||
+++ aspell-0.60.6.1/scripts/mkconfig 2011-08-16 11:42:46.810519200 +0200
|
||||
@@ -15,7 +15,7 @@ case \$1 in
|
||||
echo "$2"
|
||||
;;
|
||||
--pkgdatadir | pkgdatadir)
|
||||
- echo "$3"
|
||||
+ pkg-config aspell --variable=pkgdatadir
|
||||
;;
|
||||
*)
|
||||
echo "usage: pspell-config version|datadir|pkgdatadir"
|
||||
--- /dev/null 2007-01-02 09:09:01.616000852 +0100
|
||||
+++ aspell-0.60.6.1/aspell.pc.in 2007-01-02 14:59:04.000000000 +0100
|
||||
@@ -0,0 +1,12 @@
|
||||
+prefix=@prefix@
|
||||
+exec_prefix=@exec_prefix@
|
||||
+libdir=@libdir@
|
||||
+includedir=@includedir@
|
||||
+pkgdatadir=@pkgdatadir@
|
||||
+
|
||||
+Name: Aspell
|
||||
+Description: A spelling checker.
|
||||
+Version: @VERSION@
|
||||
+Requires:
|
||||
+Libs: -L${libdir} -laspell
|
||||
+Cflags: -I${includedir}
|
||||
@@ -0,0 +1,44 @@
|
||||
diff -up aspell-0.60.6/manual/aspell.1.pom aspell-0.60.6/manual/aspell.1
|
||||
--- aspell-0.60.6/manual/aspell.1.pom 2006-12-19 11:55:08.000000000 +0100
|
||||
+++ aspell-0.60.6/manual/aspell.1 2010-08-17 09:42:14.000000000 +0200
|
||||
@@ -328,7 +328,6 @@ are also allowed. The \fI/etc/aspell.co
|
||||
how to set these options and the Aspell Manual has more detailed info.
|
||||
.SH SEE ALSO
|
||||
.PP
|
||||
-.BR aspell\-import (1),
|
||||
.BR prezip\-bin (1),
|
||||
.BR run\-with\-aspell (1),
|
||||
.BR word\-list\-compress (1)
|
||||
diff -up aspell-0.60.6/manual/prezip-bin.1.pom aspell-0.60.6/manual/prezip-bin.1
|
||||
--- aspell-0.60.6/manual/prezip-bin.1.pom 2005-10-21 14:18:23.000000000 +0200
|
||||
+++ aspell-0.60.6/manual/prezip-bin.1 2010-08-17 09:42:21.000000000 +0200
|
||||
@@ -99,7 +99,6 @@ the output file is not complete.
|
||||
.SH SEE ALSO
|
||||
.PP
|
||||
.BR aspell (1),
|
||||
-.BR aspell\-import (1),
|
||||
.BR run\-with\-aspell (1),
|
||||
.BR word\-list\-compress (1)
|
||||
.PP
|
||||
diff -up aspell-0.60.6/manual/run-with-aspell.1.pom aspell-0.60.6/manual/run-with-aspell.1
|
||||
--- aspell-0.60.6/manual/run-with-aspell.1.pom 2004-03-05 05:05:02.000000000 +0100
|
||||
+++ aspell-0.60.6/manual/run-with-aspell.1 2010-08-17 09:42:28.000000000 +0200
|
||||
@@ -28,7 +28,6 @@ such as ispell's own scripts.
|
||||
.SH SEE ALSO
|
||||
.PP
|
||||
.BR aspell (1),
|
||||
-.BR aspell\-import (1),
|
||||
.BR word\-list\-compress (1)
|
||||
.PP
|
||||
Aspell is fully documented in its Texinfo manual. See the
|
||||
diff -up aspell-0.60.6/manual/word-list-compress.1.pom aspell-0.60.6/manual/word-list-compress.1
|
||||
--- aspell-0.60.6/manual/word-list-compress.1.pom 2005-10-21 14:18:23.000000000 +0200
|
||||
+++ aspell-0.60.6/manual/word-list-compress.1 2010-08-17 09:42:35.000000000 +0200
|
||||
@@ -80,7 +80,6 @@ be written to.
|
||||
.SH SEE ALSO
|
||||
.PP
|
||||
.BR aspell (1),
|
||||
-.BR aspell\-import (1),
|
||||
.BR prezip\-bin (1),
|
||||
.BR run\-with\-aspell (1)
|
||||
.PP
|
||||
@@ -0,0 +1,11 @@
|
||||
diff -up aspell-0.60.6/common/convert.cpp.zero aspell-0.60.6/common/convert.cpp
|
||||
--- aspell-0.60.6/common/convert.cpp.zero 2007-12-03 07:55:45.000000000 +0100
|
||||
+++ aspell-0.60.6/common/convert.cpp 2008-09-01 12:04:39.000000000 +0200
|
||||
@@ -813,6 +813,7 @@ namespace acommon {
|
||||
{
|
||||
ToUniLookup lookup;
|
||||
void decode(const char * in, int size, FilterCharVector & out) const {
|
||||
+ if (size == 0) return; // if size == 0 then while loop cause SIGSEGV
|
||||
const char * stop = in + size; // this is OK even if size == -1
|
||||
while (*in && in != stop) {
|
||||
out.append(from_utf8(in, stop));
|
||||
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>aspell</Name>
|
||||
<Homepage>http://aspell.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A multi-language spellchecker</Summary>
|
||||
<Description>Aspell is a spellchecker that has dictionaries for more than one language and is written as a replacement to ispell.</Description>
|
||||
<Archive sha1sum="ff1190db8de279f950c242c6f4c5d5cdc2cbdc49" type="targz">mirrors://gnu/aspell/aspell-0.60.6.1.tar.gz</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">fedora/aspell-0.60.3-install_info.patch</Patch>
|
||||
<Patch level="1">fedora/aspell-0.60.5-fileconflict.patch</Patch>
|
||||
<Patch level="1">fedora/aspell-0.60.5-pspell_conf.patch</Patch>
|
||||
<Patch level="1">fedora/aspell-0.60.6-mp.patch</Patch>
|
||||
<Patch level="1">fedora/aspell-0.60.6-zero.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>aspell</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/aspell</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>aspell-devel</Name>
|
||||
<Summary>Development files for aspell</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">aspell</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="info">/usr/share/info/aspell-dev.info</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>0.60.6.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-18</Date>
|
||||
<Version>0.60.6.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-09-14</Date>
|
||||
<Version>0.60.6.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>aspell</Name>
|
||||
<Summary xml:lang="tr">Bir yazım kontrol aracı</Summary>
|
||||
<Description xml:lang="tr">GNU Aspell birden fazla dil destekleyen bir yazım kontrol aracıdır.</Description>
|
||||
<Description xml:lang="fr">Ce programme rend possible de vérifier facilement les documents en UTF-8 sans avoir à utiliser un dictionnaire spécial.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>aspell-devel</Name>
|
||||
<Summary xml:lang="tr">aspell için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -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 get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fvi")
|
||||
autotools.configure("--disable-static \
|
||||
--enable-aspell \
|
||||
--enable-zemberek \
|
||||
--enable-myspell \
|
||||
--with-myspell-dir=/usr/share/hunspell \
|
||||
--disable-ispell \
|
||||
--disable-uspell \
|
||||
--disable-hspell")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "README", "TODO", "HACKING", "MAINTAINERS")
|
||||
@@ -0,0 +1,97 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>enchant</Name>
|
||||
<Homepage>http://www.abisource.com/enchant/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Spellchecker wrapping library</Summary>
|
||||
<Description>enchant is a library that wraps other spell checking backends.</Description>
|
||||
<Archive sha1sum="321f9cf0abfa1937401676ce60976d8779c39536" type="targz">http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>aspell</Dependency>
|
||||
<Dependency>hunspell</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>enchant</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/enchant</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>enchant-aspell</Name>
|
||||
<Summary>aspell backend for Enchant</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>enchant</Dependency>
|
||||
<Dependency>aspell</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/enchant/libenchant_aspell.so</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>enchant-zemberek</Name>
|
||||
<Summary>zemberek backend for Enchant</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>enchant</Dependency>
|
||||
<Dependency>zemberek-server</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/enchant/libenchant_zemberek.so</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>enchant-devel</Name>
|
||||
<Summary>Development files for enchant</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">enchant</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>1.6.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-23</Date>
|
||||
<Version>1.6.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>1.6.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>enchant</Name>
|
||||
<Summary xml:lang="tr">İmla denetimi kitaplığı</Summary>
|
||||
<Description xml:lang="tr">enchant, diğer imla denetim kitaplıklarını arkauç olarak kullanan bir imla denetim kitaplığıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>enchant-aspell</Name>
|
||||
<Summary xml:lang="tr">Enchant için aspell arkaucu</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>enchant-zemberek</Name>
|
||||
<Summary xml:lang="tr">Enchant için zemberek arkaucu</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>enchant-devel</Name>
|
||||
<Summary xml:lang="tr">enchant için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</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/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
shelltools.export("JOBS", get.makeJOBS().replace("-j", ""))
|
||||
|
||||
def setup():
|
||||
shelltools.system("python waf configure --prefix=/usr")
|
||||
|
||||
def build():
|
||||
shelltools.system("python waf build -v")
|
||||
|
||||
def install():
|
||||
shelltools.system("DESTDIR=%s python waf install" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "README","COPYING-*")
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-cairo</Name>
|
||||
<Homepage>http://cairographics.org/pycairo</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python wrapper for cairo graphics library</Summary>
|
||||
<Description>Pycairo is set of Python bindings for the cairo graphics library.</Description>
|
||||
<Archive sha1sum="2efa8dfafbd6b8e492adaab07231556fec52d6eb" type="tarbz2">http://cairographics.org/releases/py2cairo-1.10.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>libtool</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-cairo</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-cairo-devel</Name>
|
||||
<Summary>Development files for python-cairo</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">python-cairo</Dependency>
|
||||
<Dependency>cairo-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-06-01</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Burak Fazıl Ertürk </Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-05</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Burak Fazıl Ertürk </Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>1.8.10</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-cairo</Name>
|
||||
<Summary xml:lang="tr">Cairo vektörel grafik kitaplığı için Python bağlayıcıları</Summary>
|
||||
<Summary xml:lang="fr">wrapper (version enrobée) Python de la librairie de graphisme vectoriel cairo.</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-cairo-devel</Name>
|
||||
<Summary xml:lang="tr">python-cairo için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,33 @@
|
||||
#!/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("--prefix=/usr \
|
||||
--enable-thread \
|
||||
--enable-numpy")
|
||||
|
||||
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,109 @@
|
||||
<?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>gtk2-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>libglade-devel</Dependency>
|
||||
<Dependency>python-pygobject-devel</Dependency>
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>python-cairo</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-gtk</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>gdk-pixbuf</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>
|
||||
@@ -0,0 +1,30 @@
|
||||
#!/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
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "numpy-%s" % get.srcVERSION()
|
||||
|
||||
NUMPY_FCONFIG = "config_fc --fcompiler=gnu95"
|
||||
f2py_docs = "%s/%s/f2py_docs" % (get.docDIR(), get.srcNAME())
|
||||
|
||||
shelltools.export("LDFLAGS", "%s -shared" % get.LDFLAGS())
|
||||
shelltools.export("ATLAS", "None")
|
||||
shelltools.export("PTATLAS", "None")
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(NUMPY_FCONFIG)
|
||||
|
||||
def install():
|
||||
pythonmodules.install(NUMPY_FCONFIG)
|
||||
|
||||
pisitools.doman("numpy/f2py/f2py.1")
|
||||
|
||||
pisitools.insinto(f2py_docs, "numpy/f2py/docs/*.txt")
|
||||
pisitools.dodoc("COMPATIBILITY", "DEV_README.txt", "LICENSE.txt", "THANKS.txt")
|
||||
@@ -0,0 +1,84 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-numpy</Name>
|
||||
<Homepage>http://numeric.scipy.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>The fundamental package needed for scientific computing with Python</Summary>
|
||||
<Description>Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities.</Description>
|
||||
<Archive sha1sum="8fe1d5f36bab3f1669520b4c7d8ab59a21a984da" type="targz">mirrors://sourceforge/numpy/numpy-1.8.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-nose</Dependency>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
<Dependency>lapack-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">numpy-1.0.1-f2py.patch</Patch>
|
||||
<Patch level="1">001-fix-test_multiarray.patch</Patch>
|
||||
<Patch level="1">002-fix_PyUnicodeObject.patch</Patch>
|
||||
<Patch level="1">09d2c51fa1d09b17060a8545b925f4dded9dedb1.patch</Patch>
|
||||
<Patch level="1">4234b6b13e3ee9da6fc1c24e9e8c442d77587837.patch</Patch>
|
||||
<Patch level="1">f2ac38f09ff258339ef44572a3abba02019e1f55.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-numpy</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>blas</Dependency>
|
||||
<Dependency>lapack</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2014-05-29</Date>
|
||||
<Version>1.8.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-27</Date>
|
||||
<Version>1.8.0</Version>
|
||||
<Comment>Rebuild for gcc</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-01-19</Date>
|
||||
<Version>1.8.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Richard de Bruin</Name>
|
||||
<Email>rr.debruin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-16</Date>
|
||||
<Version>1.7.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Burak Fazıl Ertürk</Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-13</Date>
|
||||
<Version>1.6.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>numpy</Name>
|
||||
<Summary xml:lang="tr">Python ile bilimsel hesaplama için ihtiyaç duyulan temel paket</Summary>
|
||||
<Description xml:lang="es">Numpy contiene un potente objeto de array N-dimensional, funciones sofisticadas (broadcasting), herramientas para la integración de código C/C++ y Fortran, y facilidades útiles de algebra lineal, transformación Fourier, y número aleatorios.</Description>
|
||||
<Description xml:lang="tr">Numpy, N-boyutlu güçlü bir dizi, gelişmiş fonksiyonlar, C/C++ ve Fortran kodunu entegre etmek için araçlar, doğrusal cebir ve rastgele sayı özelliği içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "pygobject-%s" % get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
# autoreconf is for under linking problem
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--disable-introspection")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
#shelltools.chmod("%s/usr/share/pygobject/xsl/fixxref.py" % get.installDIR(), 0755)
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "README")
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
diff -p -up pygobject-2.16.1/pygtk.py.fixdetection pygobject-2.16.1/pygtk.py
|
||||
--- pygobject-2.16.1/pygtk.py.fixdetection 2009-02-20 22:27:14.000000000 +0100
|
||||
+++ pygobject-2.16.1/pygtk.py 2009-02-23 09:44:55.000000000 +0100
|
||||
@@ -57,6 +57,9 @@ def _get_available_versions():
|
||||
# skip empty directories
|
||||
if not os.listdir(pathname):
|
||||
continue
|
||||
+ # only accept directories containing gtk.py or gobject.so
|
||||
+ if not glob.glob(os.path.join(pathname, "gtk.py")) and not glob.glob(os.path.join(pathname,"gobject.so")):
|
||||
+ continue
|
||||
|
||||
if not versions.has_key(filename[-3:]):
|
||||
versions[filename[-3:]] = pathname
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-pygobject</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>Glib bindings for Python</Summary>
|
||||
<Description>pygobject is GLib's GObject library bindings for Python.</Description>
|
||||
<Archive sha1sum="b1749ba806499f4c2780dbd1cbb363aaf1f41e78" type="tarxz">http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.6.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">pygobject-2.16.1-fixdetection.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-pygobject</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
<Dependency>libffi</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-pygobject-devel</Name>
|
||||
<Summary>pygobject development files</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">python-pygobject</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/pygobject-codegen-2.0</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share/pygobject</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-pygobject-docs</Name>
|
||||
<IsA>data:doc</IsA>
|
||||
<Summary>API documents for pygobject</Summary>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2012-10-14</Date>
|
||||
<Version>2.28.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-pygobject</Name>
|
||||
<Summary xml:lang="tr">glib için python bağlayıcıları</Summary>
|
||||
<Summary xml:lang="fr">Bindings (liens) glib pour Python.</Summary>
|
||||
<Description xml:lang="tr">pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-pygobject-devel</Name>
|
||||
<Summary xml:lang="tr">pygobject geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-pygobject-docs</Name>
|
||||
<Summary xml:lang="tr">pygobject için API dökümanları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -16,17 +16,17 @@ def setup():
|
||||
--without-apache-module-dir \
|
||||
--disable-tls-check \
|
||||
"
|
||||
|
||||
|
||||
if get.buildTYPE() == "_emul32":
|
||||
options += " --libdir=/usr/lib32 \
|
||||
--bindir=/_emul32/bin \
|
||||
--sbindir=/_emul32/sbin"
|
||||
|
||||
|
||||
|
||||
shelltools.export("CC", "%s -m32" % get.CC())
|
||||
shelltools.export("CXX", "%s -m32" % get.CXX())
|
||||
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
|
||||
|
||||
|
||||
autotools.configure(options)
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
@@ -36,8 +36,8 @@ def build():
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
|
||||
|
||||
#if get.buildTYPE() == "_emul32":
|
||||
#pisitools.removeDir("/_emul32")
|
||||
|
||||
pisitools.dodoc("README", "NEWS", "AUTHORS")
|
||||
@@ -0,0 +1,43 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.copy("INSTALL/make.inc.gfortran", "make.inc")
|
||||
|
||||
if get.ARCH() == "x86_64":
|
||||
pisitools.dosed("make.inc", "-O2", "%s -fPIC -m64 -funroll-all-loops" % get.CFLAGS())
|
||||
pisitools.dosed("make.inc", "NOOPT =", "NOOPT =-m64 -fPIC ")
|
||||
else:
|
||||
pisitools.dosed("make.inc", "-O2", "%s -fPIC -funroll-all-loops" % get.CFLAGS())
|
||||
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
options = "-DBUILD_SHARED_LIBS=ON \
|
||||
-DBUILD_TESTING=OFF"
|
||||
|
||||
if get.buildTYPE() == "static":
|
||||
options = "-DBUILD_SHARED_LIBS=OFF \
|
||||
-DBUILD_TESTING=OFF"
|
||||
|
||||
cmaketools.configure(options, sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
shelltools.cd("../")
|
||||
pisitools.dodoc("LICENSE", "README")
|
||||
@@ -0,0 +1,59 @@
|
||||
diff -Nuar lapack-3.2.1.orig/BLAS/SRC/Makefile lapack-3.2.1/BLAS/SRC/Makefile
|
||||
--- lapack-3.2.1.orig/BLAS/SRC/Makefile 2010-08-16 13:40:39.106209859 +0300
|
||||
+++ lapack-3.2.1/BLAS/SRC/Makefile 2010-08-16 13:46:46.288212746 +0300
|
||||
@@ -163,6 +163,12 @@
|
||||
|
||||
FRC:
|
||||
@FRC=$(FRC)
|
||||
+shared:
|
||||
+ rm -f *.o
|
||||
+ ar x ../../blas_LINUX.a
|
||||
+ $(CC) $(CFLAGS) -fPIC $(LDFLAGS) *.o -lgfortran -lc -lm -shared -Wl,-soname,libblas.so.3 -o libblas.so.3.2.1
|
||||
+ ln -s libblas.so.3.2.1 libblas.so.3
|
||||
+ ln -s libblas.so.3.2.1 libblas.so
|
||||
|
||||
clean:
|
||||
rm -f *.o
|
||||
diff -Nuar lapack-3.2.1.orig/Makefile lapack-3.2.1/Makefile
|
||||
--- lapack-3.2.1.orig/Makefile 2010-08-16 13:40:39.130213129 +0300
|
||||
+++ lapack-3.2.1/Makefile 2010-08-16 13:44:58.463216507 +0300
|
||||
@@ -8,8 +8,7 @@
|
||||
|
||||
all: lapack_install lib lapack_testing blas_testing
|
||||
|
||||
-lib: lapacklib tmglib
|
||||
-#lib: blaslib variants lapacklib tmglib
|
||||
+lib: blaslib variants lapacklib tmglib
|
||||
|
||||
clean: cleanlib cleantesting cleanblas_testing
|
||||
|
||||
@@ -18,10 +17,10 @@
|
||||
./testdlamch; ./testsecond; ./testdsecnd; ./testversion )
|
||||
|
||||
blaslib:
|
||||
- ( cd BLAS/SRC; $(MAKE) )
|
||||
+ ( cd BLAS/SRC; $(MAKE); $(MAKE) shared )
|
||||
|
||||
lapacklib: lapack_install
|
||||
- ( cd SRC; $(MAKE) )
|
||||
+ ( cd SRC; $(MAKE); $(MAKE) shared )
|
||||
|
||||
variants:
|
||||
( cd SRC/VARIANTS ; $(MAKE))
|
||||
diff -Nuar lapack-3.2.1.orig/SRC/Makefile lapack-3.2.1/SRC/Makefile
|
||||
--- lapack-3.2.1.orig/SRC/Makefile 2010-08-16 13:40:39.165210958 +0300
|
||||
+++ lapack-3.2.1/SRC/Makefile 2010-08-16 13:53:41.417213085 +0300
|
||||
@@ -408,6 +408,13 @@
|
||||
FRC:
|
||||
@FRC=$(FRC)
|
||||
|
||||
+shared:
|
||||
+ rm -rf *.o
|
||||
+ ar x ../lapack_LINUX.a
|
||||
+ $(CC) $(CFLAGS) -fPIC $(LDFLAGS) *.o -L../BLAS/SRC -lblas -lgfortran -lc -lm -shared -Wl,-soname,liblapack.so.3 -o liblapack.so.3.2.1
|
||||
+ ln -s liblapack.so.3.2.1 liblapack.so.3
|
||||
+ ln -s liblapack.so.3.2.1 liblapack.so
|
||||
+
|
||||
clean:
|
||||
rm -f *.o
|
||||
|
||||
@@ -0,0 +1,110 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lapack</Name>
|
||||
<Homepage>http://www.netlib.org/lapack</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Linear Algebra PACKage</Summary>
|
||||
<Description>LAPACK is a standard library for numerical linear algebra. LAPACK provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems.</Description>
|
||||
<Archive sha1sum="5870081889bf5d15fd977993daab29cf3c5ea970" type="targz">http://www.netlib.org/lapack/lapack-3.5.0.tgz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">lapack-sharedlib.patch</Patch>
|
||||
<!--Patch level="1">lapack-parallel-make.patch</Patch-->
|
||||
<!--Patch level="1">lapack-3.3.1-cmake-sover.patch</Patch-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>blas</Name>
|
||||
<Summary>Basic Linear Algebra Subprograms</Summary>
|
||||
<Description>Blas is a standard library which provides a number of basic algorithms for numerical algebra.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libblas.so*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>blas-devel</Name>
|
||||
<Summary>Development files for blas</Summary>
|
||||
<BuildType>static</BuildType>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">blas</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libblas.a</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/blas.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lapack</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
<Dependency version="current">blas</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="library">/usr/lib/liblapack.so*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lapack-devel</Name>
|
||||
<Summary>Development files for lapack</Summary>
|
||||
<BuildType>static</BuildType>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">lapack</Dependency>
|
||||
<Dependency release="current">blas-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/cmake</Path>
|
||||
<Path fileType="library">/usr/lib/liblapack.a</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/lapack.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-12-23</Date>
|
||||
<Version>3.5.0</Version>
|
||||
<Comment>Release bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-26</Date>
|
||||
<Version>3.5.0</Version>
|
||||
<Comment>Release bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-18</Date>
|
||||
<Version>3.5.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Richard de Bruin</Name>
|
||||
<Email>richdb@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-03</Date>
|
||||
<Version>3.4.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lapack</Name>
|
||||
<Summary xml:lang="tr">Doğrusal cebir paketi</Summary>
|
||||
<Description xml:lang="tr">LAPACK, nümerik doğrusal cebir için yazılmış standart bir kütüphanedir. Eşanlı doğrusal denklemler sistemini, doğrusal denklemler sistemindeki en küçük kareler tekniğini, özdeğer ve tekil değer problemlerini çözmek için pekçok yordamlar içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>blas</Name>
|
||||
<Summary xml:lang="tr">Temel lineer cebir yordamları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lapack-devel</Name>
|
||||
<Summary xml:lang="tr">lapack için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>blas-devel</Name>
|
||||
<Summary xml:lang="tr">blas için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -12,11 +12,10 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Computer vision library</Summary>
|
||||
<Description>opencv is a programming library mainly aimed at the real time computer vision. Example applications are human-computer interaction, object identification, face recognition, motion tracking, mobile robotics.</Description>
|
||||
<Archive sha1sum="d16ced627db17f9864c681545f18f030c7a4cc0b" type="targz">https://github.com/Itseez/opencv/archive/2.4.9.tar.gz</Archive>
|
||||
<Archive sha1sum="310a8b0fdb9bf60c6346e9d073ed2409cd1e26b4" type="targz">https://github.com/Itseez/opencv/archive/2.4.11.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>eigen</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libv4l-devel</Dependency>
|
||||
<Dependency>openexr-libs</Dependency>
|
||||
<Dependency>jasper-devel</Dependency>
|
||||
@@ -25,10 +24,8 @@
|
||||
<Dependency>openexr-devel</Dependency>
|
||||
<Dependency>lapack-devel</Dependency>
|
||||
<Dependency>xine-lib-devel</Dependency>
|
||||
<Dependency>xine-lib-devel</Dependency>
|
||||
<Dependency>libdc1394-devel</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>intel-tbb-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -38,14 +35,16 @@
|
||||
<Name>opencv</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>jasper</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libv4l</Dependency>
|
||||
<Dependency>ilmbase</Dependency>
|
||||
<Dependency>openexr</Dependency>
|
||||
<Dependency>openexr-libs</Dependency>
|
||||
<Dependency>xine-lib</Dependency>
|
||||
<Dependency>libdc1394</Dependency>
|
||||
<Dependency>intel-tbb</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>openexr-libs</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
@@ -81,6 +80,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-08-10</Date>
|
||||
<Version>2.4.11</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-05-15</Date>
|
||||
<Version>2.4.9</Version>
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
#!/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
|
||||
|
||||
shelltools.export("LC_ALL", "POSIX")
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-pam \
|
||||
--with-socket-dir=/run/screen \
|
||||
--with-sys-screenrc=/etc/screenrc \
|
||||
--with-pty-mode=0620 \
|
||||
--with-pty-group=5 \
|
||||
--enable-rxvt_osc \
|
||||
--enable-colors256")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
pisitools.dobin("screen")
|
||||
|
||||
pisitools.dodir("/run/screen")
|
||||
pisitools.dodir("/etc/pam.d")
|
||||
|
||||
pisitools.insinto("/usr/share/terminfo", "terminfo/screencap")
|
||||
pisitools.insinto("/usr/share/screen/utf8encodings", "utf8encodings/??")
|
||||
|
||||
shelltools.chmod("%s/run/screen" % get.installDIR(), 0775)
|
||||
|
||||
pisitools.doman("doc/screen.1")
|
||||
pisitools.dodoc("README", "ChangeLog", "TODO", "NEWS*", "doc/FAQ", "doc/README.DOTSCREEN")
|
||||
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
os.system("/bin/chown root:utmp /usr/bin/screen")
|
||||
os.system("/bin/chmod 02755 /usr/bin/screen")
|
||||
os.system("/bin/chown root:utmp /run/screen")
|
||||
os.system("/bin/chmod 0755 /run/screen")
|
||||
|
||||
# suid
|
||||
os.system("/bin/chmod u+s /usr/bin/screen")
|
||||
os.system("/bin/chmod go-w /run/screen")
|
||||
@@ -0,0 +1,4 @@
|
||||
#
|
||||
# This is the PAM configuration file for screen(1)
|
||||
#
|
||||
auth include system-auth
|
||||
@@ -0,0 +1,356 @@
|
||||
# Copyright 1999-2008 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
#
|
||||
# /etc/screenrc
|
||||
#
|
||||
# This is the system wide screenrc.
|
||||
#
|
||||
# You can use this file to change the default behavior of screen system wide
|
||||
# or copy it to ~/.screenrc and use it as a starting point for your own
|
||||
# settings.
|
||||
#
|
||||
# Commands in this file are used to set options, bind screen functions to
|
||||
# keys, redefine terminal capabilities, and to automatically establish one or
|
||||
# more windows at the beginning of your screen session.
|
||||
#
|
||||
# This is not a comprehensive list of options, look at the screen manual for
|
||||
# details on everything that you can put in this file.
|
||||
#
|
||||
#
|
||||
|
||||
# ==============================================================================
|
||||
# SCREEN SETTINGS
|
||||
# ==============================================================================
|
||||
|
||||
# ESCAPE - the COMMAND CHARACTER
|
||||
# ===============================================================
|
||||
# escape ^aa # default
|
||||
# escape ^pp # suggested binding for emacs users
|
||||
|
||||
|
||||
# PASSWORD
|
||||
# ===============================================================
|
||||
# This commands sets the *internal* password for the screen session.
|
||||
# WARNING!! If this is set then a "lock" command will only let you in to the
|
||||
# session after you enter the user's account password and then *also*
|
||||
# the internal password for that session. This gives additional safety but,
|
||||
# if you forget the internal password then you cannot resume your session.
|
||||
# Use :password to generate a password
|
||||
# password ODSJQf.4IJN7E # "1234"
|
||||
|
||||
|
||||
# VARIABLES
|
||||
# ===============================================================
|
||||
# No annoying audible bell, using "visual bell"
|
||||
vbell on # default: off
|
||||
vbell_msg " -- Bell,Bell!! -- " # default: "Wuff,Wuff!!"
|
||||
|
||||
# Automatically detach on hangup.
|
||||
autodetach on # default: on
|
||||
|
||||
# Don't display the copyright page
|
||||
startup_message off # default: on
|
||||
|
||||
# Uses nethack-style messages
|
||||
# nethack on # default: off
|
||||
|
||||
# Affects the copying of text regions
|
||||
crlf off # default: off
|
||||
|
||||
# Enable/disable multiuser mode. Standard screen operation is singleuser.
|
||||
# In multiuser mode the commands acladd, aclchg, aclgrp and acldel can be used
|
||||
# to enable (and disable) other user accessing this screen session.
|
||||
# Requires suid-root.
|
||||
multiuser off
|
||||
|
||||
# Change default scrollback value for new windows
|
||||
defscrollback 1000 # default: 100
|
||||
|
||||
# Define the time that all windows monitored for silence should
|
||||
# wait before displaying a message. Default 30 seconds.
|
||||
silencewait 15 # default: 30
|
||||
|
||||
# bufferfile: The file to use for commands
|
||||
# "readbuf" ('<') and "writebuf" ('>'):
|
||||
bufferfile $HOME/.screen_exchange
|
||||
#
|
||||
# hardcopydir: The directory which contains all hardcopies.
|
||||
# hardcopydir ~/.hardcopy
|
||||
# hardcopydir ~/.screen
|
||||
#
|
||||
# shell: Default process started in screen's windows.
|
||||
# Makes it possible to use a different shell inside screen
|
||||
# than is set as the default login shell.
|
||||
# If begins with a '-' character, the shell will be started as a login shell.
|
||||
# shell zsh
|
||||
# shell bash
|
||||
# shell ksh
|
||||
shell -$SHELL
|
||||
|
||||
# shellaka '> |tcsh'
|
||||
# shelltitle '$ |bash'
|
||||
|
||||
# emulate .logout message
|
||||
pow_detach_msg "Screen session of \$LOGNAME \$:cr:\$:nl:ended."
|
||||
|
||||
# caption always " %w --- %c:%s"
|
||||
# caption always "%3n %t%? @%u%?%? [%h]%?%=%c"
|
||||
|
||||
# advertise hardstatus support to $TERMCAP
|
||||
# termcapinfo * '' 'hs:ts=\E_:fs=\E\\:ds=\E_\E\\'
|
||||
|
||||
# set every new windows hardstatus line to somenthing descriptive
|
||||
# defhstatus "screen: ^En (^Et)"
|
||||
|
||||
# don't kill window after the process died
|
||||
# zombie "^["
|
||||
|
||||
# ignore displays that block on output
|
||||
defnonblock on
|
||||
|
||||
# XTERM TWEAKS
|
||||
# ===============================================================
|
||||
|
||||
# xterm understands both im/ic and doesn't have a status line.
|
||||
# Note: Do not specify im and ic in the real termcap/info file as
|
||||
# some programs (e.g. vi) will not work anymore.
|
||||
termcap xterm hs@:cs=\E[%i%d;%dr:im=\E[4h:ei=\E[4l
|
||||
terminfo xterm hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l
|
||||
|
||||
# 80/132 column switching must be enabled for ^AW to work
|
||||
# change init sequence to not switch width
|
||||
termcapinfo xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l
|
||||
|
||||
# Make the output buffer large for (fast) xterms.
|
||||
# termcapinfo xterm* OL=10000
|
||||
termcapinfo xterm* OL=100
|
||||
|
||||
# tell screen that xterm can switch to dark background and has function
|
||||
# keys.
|
||||
termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l'
|
||||
termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~'
|
||||
termcapinfo xterm 'kh=\EOH:kI=\E[2~:kD=\E[3~:kH=\EOF:kP=\E[5~:kN=\E[6~'
|
||||
|
||||
# special xterm hardstatus: use the window title.
|
||||
termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007'
|
||||
|
||||
#terminfo xterm 'vb=\E[?5h$<200/>\E[?5l'
|
||||
termcapinfo xterm 'vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l'
|
||||
|
||||
# emulate part of the 'K' charset
|
||||
termcapinfo xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337'
|
||||
|
||||
# xterm-52 tweaks:
|
||||
# - uses background color for delete operations
|
||||
termcapinfo xterm* be
|
||||
|
||||
# Do not use xterm's alternative window buffer, it breaks scrollback (see bug #61195)
|
||||
termcapinfo xterm|xterms|xs ti@:te=\E[2J
|
||||
|
||||
# WYSE TERMINALS
|
||||
# ===============================================================
|
||||
|
||||
#wyse-75-42 must have flow control (xo = "terminal uses xon/xoff")
|
||||
#essential to have it here, as this is a slow terminal.
|
||||
termcapinfo wy75-42 xo:hs@
|
||||
|
||||
# New termcap sequences for cursor application mode.
|
||||
termcapinfo wy* CS=\E[?1h:CE=\E[?1l:vi=\E[?25l:ve=\E[?25h:VR=\E[?5h:VN=\E[?5l:cb=\E[1K:CD=\E[1J
|
||||
|
||||
|
||||
# OTHER TERMINALS
|
||||
# ===============================================================
|
||||
|
||||
# make hp700 termcap/info better
|
||||
termcapinfo hp700 'Z0=\E[?3h:Z1=\E[?3l:hs:ts=\E[62"p\E[0$~\E[2$~\E[1$}:fs=\E[0}\E[61"p:ds=\E[62"p\E[1$~\E[61"p:ic@'
|
||||
|
||||
# Extend the vt100 desciption by some sequences.
|
||||
termcap vt100* ms:AL=\E[%dL:DL=\E[%dM:UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC
|
||||
terminfo vt100* ms:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC
|
||||
termcapinfo linux C8
|
||||
# old rxvt versions also need this
|
||||
# termcapinfo rxvt C8
|
||||
|
||||
|
||||
# KEYBINDINGS
|
||||
# ==============================================================
|
||||
# The "bind" command assign keys to (internal) commands
|
||||
# SCREEN checks all the keys you type; you type the key
|
||||
# which is known as the "command character" then SCREEN
|
||||
# eats this key, too, and checks whether this key is
|
||||
# "bound" to a command. If so then SCREEN will execute it.
|
||||
#
|
||||
# The command "bind" allows you to chose which keys
|
||||
# will be assigned to the commands.
|
||||
#
|
||||
# Some commands are bound to several keys -
|
||||
# usually to both some letter and its corresponding
|
||||
# control key combination, eg the command
|
||||
# "(create) screen" is bound to both 'c' and '^C'.
|
||||
#
|
||||
# The following list shows the default bindings:
|
||||
#
|
||||
# break ^B b
|
||||
# clear C
|
||||
# colon :
|
||||
# copy ^[ [
|
||||
# detach ^D d
|
||||
# digraph ^V
|
||||
# displays *
|
||||
# dumptermcap .
|
||||
# fit F
|
||||
# flow ^F f
|
||||
# focus ^I
|
||||
# hardcopy h
|
||||
# help ?
|
||||
# history { }
|
||||
# info i
|
||||
# kill K k
|
||||
# lastmsg ^M m
|
||||
# license ,
|
||||
# log H
|
||||
# login L
|
||||
# meta x
|
||||
# monitor M
|
||||
# next ^@ ^N sp n
|
||||
# number N
|
||||
# only Q
|
||||
# other ^X
|
||||
# pow_break B
|
||||
# pow_detach D
|
||||
# prev ^H ^P p ^?
|
||||
# quit \
|
||||
# readbuf <
|
||||
# redisplay ^L l
|
||||
# remove X
|
||||
# removebuf =
|
||||
# reset Z
|
||||
# screen ^C c
|
||||
# select " '
|
||||
# silence _
|
||||
# split S
|
||||
# suspend ^Z z
|
||||
# time ^T t
|
||||
# title A
|
||||
# vbell ^G
|
||||
# version v
|
||||
# width W
|
||||
# windows ^W w
|
||||
# wrap ^R r
|
||||
# writebuf >
|
||||
# xoff ^S s
|
||||
# xon ^Q q
|
||||
# ^] paste .
|
||||
# - select -
|
||||
# 0 select 0
|
||||
# 1 select 1
|
||||
# 2 select 2
|
||||
# 3 select 3
|
||||
# 4 select 4
|
||||
# 5 select 5
|
||||
# 6 select 6
|
||||
# 7 select 7
|
||||
# 8 select 8
|
||||
# 9 select 9
|
||||
# I login on
|
||||
# O login off
|
||||
# ] paste .
|
||||
#
|
||||
|
||||
# And here are the default bind commands if you need them:
|
||||
#
|
||||
# bind A title
|
||||
# bind C clear
|
||||
# bind D pow_detach
|
||||
# bind F fit
|
||||
# bind H log
|
||||
# bind I login on
|
||||
# bind K kill
|
||||
# bind L login
|
||||
# bind M monitor
|
||||
# bind N number
|
||||
# bind O login off
|
||||
# bind Q only
|
||||
# bind S split
|
||||
# bind W width
|
||||
# bind X remove
|
||||
# bind Z reset
|
||||
|
||||
# Let's remove some dangerous key bindings ...
|
||||
bind k
|
||||
bind ^k
|
||||
# bind . dumptermcap # default
|
||||
bind .
|
||||
# bind ^\ quit # default
|
||||
bind ^\
|
||||
# bind \\ quit # default
|
||||
bind \\
|
||||
# bind ^h ??? # default
|
||||
bind ^h
|
||||
# bind h hardcopy # default
|
||||
bind h
|
||||
|
||||
# ... and make them better.
|
||||
bind 'K' kill
|
||||
bind 'I' login on
|
||||
bind 'O' login off
|
||||
bind '}' history
|
||||
|
||||
# Yet another hack:
|
||||
# Prepend/append register [/] to the paste if ^a^] is pressed.
|
||||
# This lets me have autoindent mode in vi.
|
||||
register [ "\033:se noai\015a"
|
||||
register ] "\033:se ai\015a"
|
||||
bind ^] paste [.]
|
||||
|
||||
|
||||
# hardstatus alwaysignore
|
||||
# hardstatus alwayslastline "%Lw"
|
||||
|
||||
# Resize the current region. The space will be removed from or added to
|
||||
# the region below or if there's not enough space from the region above.
|
||||
bind = resize =
|
||||
bind + resize +3
|
||||
bind - resize -3
|
||||
# bind _ resize max
|
||||
#
|
||||
# attrcolor u "-u b"
|
||||
# attrcolor b "R"
|
||||
|
||||
# STARTUP SCREENS
|
||||
# ===============================================================
|
||||
# Defines the time screen delays a new message when one message
|
||||
# is currently displayed. The default is 1 second.
|
||||
# msgminwait 2
|
||||
|
||||
# Time a message is displayed if screen is not disturbed by
|
||||
# other activity. The dafault is 5 seconds:
|
||||
# msgwait 2
|
||||
|
||||
# Briefly show the version number of this starting
|
||||
# screen session - but only for *one* second:
|
||||
# msgwait 1
|
||||
# version
|
||||
|
||||
# Welcome the user:
|
||||
# echo "welcome :-)"
|
||||
# echo "I love you today."
|
||||
|
||||
# Uncomment one/some following lines to automatically let
|
||||
# SCREEN start some programs in the given window numbers:
|
||||
# screen -t MAIL 0 mutt
|
||||
# screen -t EDIT 1 vim
|
||||
# screen -t GOOGLE 2 links http://www.google.com
|
||||
# screen -t NEWS 3 slrn
|
||||
# screen -t WWW 4 links http://www.math.fu-berlin.de/~guckes/
|
||||
# screen 5
|
||||
# screen 6
|
||||
|
||||
# Set the environment variable var to value string. If only var is specified,
|
||||
# you'll be prompted to enter a value. If no parameters are specified,
|
||||
# you'll be prompted for both variable and value. The environment is
|
||||
# inherited by all subsequently forked shells.
|
||||
# setenv PROMPT_COMMAND 'echo -n -e "\033k\033\134"'
|
||||
|
||||
# Don't you want to start programs which need a DISPLAY ?
|
||||
# setenv DISPLAY ''
|
||||
@@ -0,0 +1 @@
|
||||
d /run/screen 0755 root utmp
|
||||
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>screen</Name>
|
||||
<Homepage>http://www.gnu.org/software/screen/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Terminal multiplexer (to have multiple sessions in a single terminal window)</Summary>
|
||||
<Description>GNU Screen is a free terminal multiplexer developed by the GNU Project. It allows a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session.</Description>
|
||||
<Archive sha1sum="a524761504e28480517e338b20c852f2ab100c93" type="targz">http://ftp.gnu.org/gnu/screen/screen-4.3.1.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>screen</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>ncurses</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/run</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="data">/usr/share/screen</Path>
|
||||
<Path fileType="data">/usr/share/terminfo</Path>
|
||||
<Path fileType="config">/usr/lib/tmpfiles.d/screen.conf</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/etc/screenrc">screenrc</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/etc/pam.d/screen">screen.pam.system-auth</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/tmpfiles.d/screen.conf">tmpfiles.conf</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2015-08-07</Date>
|
||||
<Version>4.3.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-10</Date>
|
||||
<Version>4.0.3</Version>
|
||||
<Comment>Add tmpfiles.conf</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-12</Date>
|
||||
<Version>4.0.3</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>screen</Name>
|
||||
<Summary xml:lang="tr">Screen bir terminal(komut penceresi) çoğaltıcıdır.</Summary>
|
||||
<Description xml:lang="tr">screen tek bir terminal penceresini birden çok parçaya bölerek çalışmanızı sağlayan bir uygulamadır.</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/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
autotools.make('CC="%s" \
|
||||
CFLAGS="%s -fomit-frame-pointer -DLINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" \
|
||||
LDFLAGS="%s"' % (get.CC(), get.CFLAGS(), get.LDFLAGS()))
|
||||
|
||||
def install():
|
||||
pisitools.dobin("tree")
|
||||
|
||||
pisitools.doman("doc/tree.1")
|
||||
pisitools.dodoc("CHANGES", "README*")
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright © 2005 TUBITAK/UEKAE
|
||||
# Licensed under the GNU General Public License, version 2.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
||||
#
|
||||
# Original work belongs Gentoo Linux
|
||||
|
||||
_tree() {
|
||||
local cur prev opts
|
||||
COMPREPLY=()
|
||||
cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
||||
opts="-a -d -l -f -i -q -N -p -u -g -s -h -D -F -v -r -t -x -L -A
|
||||
-S -n -C -P -I -H -T -R -o --inodes --device --noreport --nolinks
|
||||
--dirsfirst --charset --filelimit --help"
|
||||
|
||||
if [[ ${cur} == -* ]] ; then
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
fi
|
||||
|
||||
case "${prev}" in
|
||||
-L|-P|-I|-H|-T|--charset|--help)
|
||||
;;
|
||||
-o)
|
||||
COMPREPLY=( $(compgen -f -- ${cur}) )
|
||||
;;
|
||||
*)
|
||||
COMPREPLY=( $(compgen -d -- ${cur}) )
|
||||
;;
|
||||
esac
|
||||
}
|
||||
complete -o filenames -F _tree tree
|
||||
|
||||
# vim: set ft=sh tw=80 sw=4 et :
|
||||
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>tree</Name>
|
||||
<Homepage>http://mama.indstate.edu/users/ice/tree/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Recursive directory listing tool</Summary>
|
||||
<Description>Tree lists directories recursively, and produces an indented listing of files.</Description>
|
||||
<Archive sha1sum="35bd212606e6c5d60f4d5062f4a59bb7b7b25949" type="targz">ftp://mama.indstate.edu/linux/tree/tree-1.7.0.tgz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>tree</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/bash-completion/tree">tree.bashcomp</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2015-01-25</Date>
|
||||
<Version>1.7.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-03-09</Date>
|
||||
<Version>1.6.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Varol Maksutoğlu</Name>
|
||||
<Email>waroi@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-20</Date>
|
||||
<Version>1.6.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>tree</Name>
|
||||
<Summary xml:lang="tr">Dizin listeleme aracı</Summary>
|
||||
<Description xml:lang="tr">Dizinleri özyineli olarak listeler ve dosya listesini girintili olarak gösterir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user