@@ -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>
|
||||
@@ -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>
|
||||
|
||||
@@ -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,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,32 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "pygtk-%s" % (get.srcVERSION())
|
||||
|
||||
def setup():
|
||||
shelltools.unlink("py-compile" )
|
||||
shelltools.sym("/bin/true", "%s/py-compile" % get.curDIR())
|
||||
|
||||
autotools.configure("--enable-thread \
|
||||
--disable-docs")
|
||||
|
||||
shelltools.touch("%s/style.css" % get.curDIR())
|
||||
pisitools.dosed("docs/Makefile", "CSS_FILES = .*", "CSS_FILES = %s/style.css" % get.curDIR())
|
||||
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "MAPPING", "NEWS", "README", "THREADS", "TODO")
|
||||
@@ -0,0 +1,103 @@
|
||||
<?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>gtk2-devel</Dependency>
|
||||
<Dependency>libglade-devel</Dependency>
|
||||
<Dependency>python-pygobject-devel</Dependency>
|
||||
<Dependency>python-numpy</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-gtk</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>glib2</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>
|
||||
Reference in New Issue
Block a user