diff --git a/hardware/misc/dkms/actions.py b/hardware/misc/dkms/actions.py new file mode 100644 index 0000000000..23d77c9eb5 --- /dev/null +++ b/hardware/misc/dkms/actions.py @@ -0,0 +1,17 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING", "README*", "TODO") diff --git a/hardware/misc/dkms/pspec.xml b/hardware/misc/dkms/pspec.xml new file mode 100644 index 0000000000..b4b3114e03 --- /dev/null +++ b/hardware/misc/dkms/pspec.xml @@ -0,0 +1,56 @@ + + + dkms + http://linux.dell.com/dkms + + Ertan Güven + ertan@pisilinux.org + + GPLv2 + hardware.misc + kernel + Dynamic Kernel Module Support + DKMS is a dynamic kernel module support framework. + + kernel-headers + + http://linux.dell.com/dkms/permalink/dkms-2.2.0.3.tar.gz + + + dkms + + kernel-headers + + + /etc + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man + /var/lib + + + + + 2016-01-01 + 2.2.0.3 + Rebuild for Pisi 2.0 + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-22 + 2.2.0.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-29 + 2.2.0.3 + First release + Ertan Güven + ertan@pisilinux.org + + + diff --git a/hardware/misc/dkms/translations.xml b/hardware/misc/dkms/translations.xml new file mode 100644 index 0000000000..21a5924850 --- /dev/null +++ b/hardware/misc/dkms/translations.xml @@ -0,0 +1,8 @@ + + + + dkms + Dynamic Kernel Module Support + DKMS, dinamik çekirdek modülü desteği çatısıdır. + + diff --git a/office/misc/dos2unix/actions.py b/office/misc/dos2unix/actions.py new file mode 100644 index 0000000000..fcfbda79c2 --- /dev/null +++ b/office/misc/dos2unix/actions.py @@ -0,0 +1,21 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def build(): + autotools.make() + +def install(): + for binary in ["dos2unix", "mac2unix", "unix2dos", "unix2mac"]: + pisitools.dobin(binary) + + pisitools.dodoc("NEWS.txt", "README.txt" ,"TODO.txt", "ChangeLog.txt", "COPYING.txt") + pisitools.doman("man/man1/dos2unix.1") + + + diff --git a/office/misc/dos2unix/pspec.xml b/office/misc/dos2unix/pspec.xml new file mode 100644 index 0000000000..9097d11f78 --- /dev/null +++ b/office/misc/dos2unix/pspec.xml @@ -0,0 +1,88 @@ + + + + + dos2unix + http://www.xs4all.nl/~waterlan/dos2unix.html + + PisiLinux Community + admins@pisilinux.org + + freedist + app:console + Convert DOS and MAC text files to UNIX format + dos2unix can convert DOS and MAC files to UNIX format, processing character encoding and line ending characters. + http://waterlan.home.xs4all.nl/dos2unix/dos2unix-7.3.tar.gz + + + + dos2unix + + /usr/bin/mac2unix + /usr/bin/unix2dos + /usr/bin/unix2mac + /usr/share/man + /usr/share/doc + + + + + hd2u + hd2u, Dos2Unix text file converter + + /usr/bin/dos2unix + + + + + + 2015-12-29 + 7.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-08 + 7.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-07 + 6.0.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-28 + 6.0.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-17 + 5.3.1 + Release. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-28 + 5.3.1 + Confilicts Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-08-11 + 5.3.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/office/misc/dos2unix/translations.xml b/office/misc/dos2unix/translations.xml new file mode 100644 index 0000000000..6763d60509 --- /dev/null +++ b/office/misc/dos2unix/translations.xml @@ -0,0 +1,13 @@ + + + + dos2unix + DOS ve MAC metin dosyalarını UNIX biçimine dönüştürme uygulaması + dos2unix DOS ve MAC düzmetin dosyalarını karakter kodlamalarını ve satırsonu karakterlerini değiştirerek UNIX biçimine çevirir. + + + + hd2u + hd2u, Dos2Unix text file converter + + \ No newline at end of file diff --git a/office/misc/enca/actions.py b/office/misc/enca/actions.py new file mode 100644 index 0000000000..842c657997 --- /dev/null +++ b/office/misc/enca/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt. + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + + +def setup(): + autotools.autoreconf("-vfi") + autotools.configure("--enable-external \ + --with-librecode=/usr \ + --disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "FAQ", "README*", "THANKS", "TODO") diff --git a/office/misc/enca/pspec.xml b/office/misc/enca/pspec.xml new file mode 100644 index 0000000000..8435b0c036 --- /dev/null +++ b/office/misc/enca/pspec.xml @@ -0,0 +1,89 @@ + + + + + enca + http://cihar.com/software/enca + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + Charset analyzer + enca is a character set analyzer that can detect and convert character set of text files. + http://dl.cihar.com/enca/enca-1.16.tar.xz + + recode-devel + libtool + intltool + gtk-doc + + + + + enca + + recode + + + /usr/bin + /usr/lib + /usr/libexec/enca + /usr/share/doc/enca + /usr/share/man + + + + + enca-devel + Development files for enca + + enca + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc + + + + + + 2016-01-01 + 1.16 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-05-22 + 1.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-09 + 1.14 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-06 + 1.14 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-13 + 1.13 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/office/misc/enca/translations.xml b/office/misc/enca/translations.xml new file mode 100644 index 0000000000..f00c6533e4 --- /dev/null +++ b/office/misc/enca/translations.xml @@ -0,0 +1,13 @@ + + + + enca + Karakter seti yorumlayıcı + enca, metin dosyalarının karakter setini tanımlama ve dönüştürme aracıdır. + + + + enca-devel + enca için geliştirme dosyaları + + diff --git a/office/misc/recode/actions.py b/office/misc/recode/actions.py new file mode 100644 index 0000000000..d62b672a93 --- /dev/null +++ b/office/misc/recode/actions.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +def setup(): + shelltools.unlink("m4/libtool.m4") + shelltools.unlink("acinclude.m4") + autotools.autoreconf("-vif") + + autotools.configure("--enable-nls \ + --without-included-gettext \ + --disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "BACKLOG", "ChangeLog", "NEWS", "README", "THANKS", "TODO") diff --git a/office/misc/recode/files/recode-3.6-getcwd.patch b/office/misc/recode/files/recode-3.6-getcwd.patch new file mode 100644 index 0000000000..5a7b870e74 --- /dev/null +++ b/office/misc/recode/files/recode-3.6-getcwd.patch @@ -0,0 +1,11 @@ +--- recode-3.6/lib/gettext.c.orig 2005-03-07 12:18:30.000000000 +0100 ++++ recode-3.6/lib/gettext.c 2005-03-07 12:23:14.000000000 +0100 +@@ -1668,8 +1668,6 @@ + # if !defined HAVE_GETCWD + char *getwd (); + # define getcwd(buf, max) getwd (buf) +-# else +-char *getcwd (); + # endif + # ifndef HAVE_STPCPY + static char *stpcpy PARAMS ((char *dest, const char *src)); diff --git a/office/misc/recode/files/recode-3.6-gettextfix.diff b/office/misc/recode/files/recode-3.6-gettextfix.diff new file mode 100644 index 0000000000..a8c3959f7c --- /dev/null +++ b/office/misc/recode/files/recode-3.6-gettextfix.diff @@ -0,0 +1,19 @@ +--- recode-3.6/m4/gettext.m4.old 2001-01-03 11:37:56.000000000 -0500 ++++ recode-3.6/m4/gettext.m4 2009-01-08 13:48:57.000000000 -0500 +@@ -109,12 +109,12 @@ + else + ac_items="$LINGUAS" + for ac_item in $ac_items; do +- case "$ALL_LINGUAS" in +- *$ac_item*) ++ for supported_item in $ALL_LINGUAS; do ++ if test "$ac_item" = "$supported_item"; then + ac_print="$ac_print $ac_item" + MOFILES="$MOFILES $ac_item.mo" +- ;; +- esac ++ fi ++ done + done + fi + AC_SUBST(MOFILES) diff --git a/office/misc/recode/files/recode-3.6-segfault.patch b/office/misc/recode/files/recode-3.6-segfault.patch new file mode 100644 index 0000000000..87bd2519f0 --- /dev/null +++ b/office/misc/recode/files/recode-3.6-segfault.patch @@ -0,0 +1,53 @@ +# Recode segfaulted on C files (bnc#503437) +# Eg. file containing just a single apostrophe ('), or openinig C comment (/*) +# This is a simple workaround. +diff -u -r recode-3.6/src/main.c recode-fajn/src/main.c +--- src/main.c.orig 2000-12-06 20:44:59.000000000 +0100 ++++ src/main.c 2010-12-30 16:07:03.973840778 +0100 +@@ -951,17 +951,26 @@ + success = false; + if (verbose_flag) + { +- fprintf (stderr, _(" failed: %s in step `%s..%s'\n"), ++ if (task->error_at_step) ++ fprintf (stderr, _(" failed: %s in step `%s..%s'\n"), + task_perror (task), + task->error_at_step->before->name, + task->error_at_step->after->name); ++ else ++ fprintf (stderr, _(" failed: Unknown error\n")); ++ + fflush (stderr); + } + else if (!quiet_flag) +- error (0, 0, _("%s failed: %s in step `%s..%s'"), ++ { ++ if (task->error_at_step) ++ error (0, 0, _("%s failed: %s in step `%s..%s'"), + input_name, task_perror (task), + task->error_at_step->before->name, + task->error_at_step->after->name); ++ else ++ error (0, 0, _("%s failed: Unknown error"), input_name); ++ } + + unlink (output_name); + } +@@ -981,10 +990,15 @@ + { + success = false; + if (!quiet_flag) +- error (0, 0, _("%s in step `%s..%s'"), ++ { ++ if (task->error_at_step) ++ error (0, 0, _("%s in step `%s..%s'"), + task_perror (task), + task->error_at_step->before->name, + task->error_at_step->after->name); ++ else ++ error (0, 0, _("Unknown error")); ++ } + } + } + } +Only in recode-fajn/src: tags diff --git a/office/misc/recode/files/recode-automake.patch b/office/misc/recode/files/recode-automake.patch new file mode 100644 index 0000000000..be7bd5e1f0 --- /dev/null +++ b/office/misc/recode/files/recode-automake.patch @@ -0,0 +1,22 @@ +--- recode-3.6.orig/configure.in 2001-01-03 16:50:54.000000000 +0100 ++++ recode-3.6/configure.in 2012-07-23 14:15:28.000000000 +0200 +@@ -15,7 +15,7 @@ + AM_PROG_LIBTOOL + + AC_ISC_POSIX +-AM_C_PROTOTYPES ++dnl AM_C_PROTOTYPES + AC_C_CONST + AC_C_INLINE + ad_AC_PROG_FLEX +--- recode-3.6.orig/src/Makefile.am 2000-12-06 17:36:12.000000000 +0100 ++++ recode-3.6/src/Makefile.am 2012-07-23 14:47:07.000000000 +0200 +@@ -17,7 +17,7 @@ + # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + # 02111-1307, USA. + +-AUTOMAKE_OPTIONS = gnits ansi2knr ++AUTOMAKE_OPTIONS = gnits + bin_PROGRAMS = recode + lib_LTLIBRARIES = librecode.la + man_MANS = recode.1 \ No newline at end of file diff --git a/office/misc/recode/files/recode-bool-bitfield.patch b/office/misc/recode/files/recode-bool-bitfield.patch new file mode 100644 index 0000000000..0d48fbda8d --- /dev/null +++ b/office/misc/recode/files/recode-bool-bitfield.patch @@ -0,0 +1,11 @@ +--- src/recodext.h.orig 2008-01-16 13:15:39.000000000 +0100 ++++ src/recodext.h 2008-01-16 13:16:47.000000000 +0100 +@@ -218,7 +218,7 @@ + enum recode_symbol_type type : 3; + + /* Non zero if this one should be ignored. */ +- bool ignore : 2; ++ bool ignore : 1; + }; + + struct recode_surface_list diff --git a/office/misc/recode/files/recode-flex-m4.patch b/office/misc/recode/files/recode-flex-m4.patch new file mode 100644 index 0000000000..e63bdbf25c --- /dev/null +++ b/office/misc/recode/files/recode-flex-m4.patch @@ -0,0 +1,16 @@ +--- recode-3.6-orig/m4/flex.m4 2000-06-28 16:39:06.000000000 +0200 ++++ recode-3.6/m4/flex.m4 2010-07-07 12:23:49.000000000 +0200 +@@ -8,11 +8,8 @@ + dnl Look for flex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT + AC_DEFUN(ad_AC_PROG_FLEX, + [AC_CHECK_PROGS(LEX, flex, missing) +-if test "$LEX" = missing; then ++AS_IF([test "$LEX" = missing], [ + LEX="\$(top_srcdir)/$ac_aux_dir/missing flex" + LEX_OUTPUT_ROOT=lex.yy + AC_SUBST(LEX_OUTPUT_ROOT)dnl +-else +- AC_PROG_LEX +- AC_DECL_YYTEXT +-fi]) ++])]) diff --git a/office/misc/recode/files/recode.patch b/office/misc/recode/files/recode.patch new file mode 100644 index 0000000000..4a9f2dd268 --- /dev/null +++ b/office/misc/recode/files/recode.patch @@ -0,0 +1,68 @@ +--- recode-3.6.orig/src/libiconv.c ++++ recode-3.6/src/libiconv.c +@@ -1,5 +1,5 @@ + /* Conversion of files between different charsets and surfaces. +- Copyright 1999, 2000 Free Software Foundation, Inc. ++ Copyright 1999, 2000, 2001 Free Software Foundation, Inc. + Contributed by Franois Pinard , 1999, + and Bruno Haible , 2000. + +@@ -195,12 +195,17 @@ + memcpy() doesn't do here, because the regions might overlap. + memmove() isn't worth it, because we rarely have to move more + than 12 bytes. */ +- if (input > input_buffer && input_left > 0) ++ cursor = input_buffer; ++ if (input_left > 0) + { +- cursor = input_buffer; +- do +- *cursor++ = *input++; +- while (--input_left > 0); ++ if (input > input_buffer) ++ { ++ do ++ *cursor++ = *input++; ++ while (--input_left > 0); ++ } ++ else ++ cursor += input_left; + } + } + +--- recode-3.6.orig/src/request.c ++++ recode-3.6/src/request.c +@@ -1073,7 +1073,7 @@ + if (task->output.cursor + 4 >= task->output.limit) + { + RECODE_OUTER outer = task->request->outer; +- size_t old_size = task->output.limit - task->output.buffer; ++ size_t old_size = task->output.cursor - task->output.buffer; + size_t new_size = task->output.cursor + 4 - task->output.buffer; + + /* FIXME: Rethink about how the error should be reported. */ +--- recode-3.6.orig/src/task.c ++++ recode-3.6/src/task.c +@@ -1198,6 +1198,8 @@ + else + success = transform_mere_copy (subtask); + ++ task->output = subtask->output; ++ + if (subtask->input.name && *subtask->input.name) + fclose (subtask->input.file); + if (subtask->output.name && *subtask->output.name) +--- recode-3.6.orig/src/hash.h ++++ recode-3.6/src/hash.h +@@ -21,6 +21,11 @@ + /* Make sure USE_OBSTACK is defined to 1 if you want the allocator to use + obstacks instead of malloc, and recompile `hash.c' with same setting. */ + ++#define hash_lookup recode_hash_lookup ++#define hash_delete recode_hash_delete ++#define hash_free recode_hash_free ++#define hash_insert recode_hash_insert ++ + #ifndef PARAMS + # if PROTOTYPES || __STDC__ + # define PARAMS(Args) Args diff --git a/office/misc/recode/files/recode_3.6-15.diff b/office/misc/recode/files/recode_3.6-15.diff new file mode 100644 index 0000000000..6c1318d86f --- /dev/null +++ b/office/misc/recode/files/recode_3.6-15.diff @@ -0,0 +1,38868 @@ +--- recode-3.6.orig/config.sub ++++ recode-3.6/config.sub +@@ -1,6 +1,11 @@ + #! /bin/sh +-# Configuration validation subroutine script, version 1.1. +-# Copyright (C) 1991, 92-97, 1998, 1999 Free Software Foundation, Inc. ++# Configuration validation subroutine script. ++# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, ++# Inc. ++ ++timestamp='2006-09-20' ++ + # This file is (in principle) common to ALL GNU software. + # The presence of a machine in this file suggests that SOME GNU software + # can handle that machine. It does not imply ALL GNU software can. +@@ -17,14 +22,18 @@ + # + # 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., 59 Temple Place - Suite 330, +-# Boston, MA 02111-1307, USA. +- ++# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA ++# 02110-1301, USA. ++# + # As a special exception to the GNU General Public License, if you + # distribute this file as part of a program that contains a + # configuration script generated by Autoconf, you may include it under + # the same distribution terms that you use for the rest of that program. + ++ ++# Please send patches to . Submit a context ++# diff and a properly formatted ChangeLog entry. ++# + # Configuration subroutine to validate and canonicalize a configuration type. + # Supply the specified configuration type as an argument. + # If it is invalid, we print an error message on stderr and exit with code 1. +@@ -45,30 +54,75 @@ + # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM + # It is wrong to echo any other type of specification. + +-if [ x$1 = x ] +-then +- echo Configuration name missing. 1>&2 +- echo "Usage: $0 CPU-MFR-OPSYS" 1>&2 +- echo "or $0 ALIAS" 1>&2 +- echo where ALIAS is a recognized configuration type. 1>&2 +- exit 1 +-fi ++me=`echo "$0" | sed -e 's,.*/,,'` + +-# First pass through any local machine types. +-case $1 in +- *local*) +- echo $1 +- exit 0 +- ;; +- *) +- ;; ++usage="\ ++Usage: $0 [OPTION] CPU-MFR-OPSYS ++ $0 [OPTION] ALIAS ++ ++Canonicalize a configuration name. ++ ++Operation modes: ++ -h, --help print this help, then exit ++ -t, --time-stamp print date of last modification, then exit ++ -v, --version print version number, then exit ++ ++Report bugs and patches to ." ++ ++version="\ ++GNU config.sub ($timestamp) ++ ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 ++Free Software Foundation, Inc. ++ ++This is free software; see the source for copying conditions. There is NO ++warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." ++ ++help=" ++Try \`$me --help' for more information." ++ ++# Parse command line ++while test $# -gt 0 ; do ++ case $1 in ++ --time-stamp | --time* | -t ) ++ echo "$timestamp" ; exit ;; ++ --version | -v ) ++ echo "$version" ; exit ;; ++ --help | --h* | -h ) ++ echo "$usage"; exit ;; ++ -- ) # Stop option processing ++ shift; break ;; ++ - ) # Use stdin as input. ++ break ;; ++ -* ) ++ echo "$me: invalid option $1$help" ++ exit 1 ;; ++ ++ *local*) ++ # First pass through any local machine types. ++ echo $1 ++ exit ;; ++ ++ * ) ++ break ;; ++ esac ++done ++ ++case $# in ++ 0) echo "$me: missing argument$help" >&2 ++ exit 1;; ++ 1) ;; ++ *) echo "$me: too many arguments$help" >&2 ++ exit 1;; + esac + + # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). + # Here we must recognize all the valid KERNEL-OS combinations. + maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` + case $maybe_os in +- linux-gnu*) ++ nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ ++ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ ++ storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; +@@ -94,7 +148,7 @@ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ +- -apple) ++ -apple | -axis | -knuth | -cray) + os= + basic_machine=$1 + ;; +@@ -108,9 +162,21 @@ + os=-vxworks + basic_machine=$1 + ;; ++ -chorusos*) ++ os=-chorusos ++ basic_machine=$1 ++ ;; ++ -chorusrdb) ++ os=-chorusrdb ++ basic_machine=$1 ++ ;; + -hiux*) + os=-hiuxwe2 + ;; ++ -sco6) ++ os=-sco5v6 ++ basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ++ ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` +@@ -127,6 +193,10 @@ + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; ++ -sco5v6*) ++ # Don't forget version if it is 3.2v4 or newer. ++ basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ++ ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` +@@ -166,27 +236,74 @@ + case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. +- tahoe | i860 | ia64 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \ +- | arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \ +- | 580 | i960 | h8300 \ +- | hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \ +- | alpha | alphaev[4-7] | alphaev56 | alphapca5[67] \ +- | we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \ +- | 1750a | dsp16xx | pdp11 | mips16 | mips64 | mipsel | mips64el \ +- | mips64orion | mips64orionel | mipstx39 | mipstx39el \ +- | mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \ +- | mips64vr5000 | miprs64vr5000el | mcore \ +- | sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \ +- | thumb | d10v) ++ 1750a | 580 \ ++ | a29k \ ++ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ ++ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ ++ | am33_2.0 \ ++ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ ++ | bfin \ ++ | c4x | clipper \ ++ | d10v | d30v | dlx | dsp16xx \ ++ | fr30 | frv \ ++ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ ++ | i370 | i860 | i960 | ia64 \ ++ | ip2k | iq2000 \ ++ | m32c | m32r | m32rle | m68000 | m68k | m88k \ ++ | maxq | mb | microblaze | mcore \ ++ | mips | mipsbe | mipseb | mipsel | mipsle \ ++ | mips16 \ ++ | mips64 | mips64el \ ++ | mips64vr | mips64vrel \ ++ | mips64orion | mips64orionel \ ++ | mips64vr4100 | mips64vr4100el \ ++ | mips64vr4300 | mips64vr4300el \ ++ | mips64vr5000 | mips64vr5000el \ ++ | mips64vr5900 | mips64vr5900el \ ++ | mipsisa32 | mipsisa32el \ ++ | mipsisa32r2 | mipsisa32r2el \ ++ | mipsisa64 | mipsisa64el \ ++ | mipsisa64r2 | mipsisa64r2el \ ++ | mipsisa64sb1 | mipsisa64sb1el \ ++ | mipsisa64sr71k | mipsisa64sr71kel \ ++ | mipstx39 | mipstx39el \ ++ | mn10200 | mn10300 \ ++ | mt \ ++ | msp430 \ ++ | nios | nios2 \ ++ | ns16k | ns32k \ ++ | or32 \ ++ | pdp10 | pdp11 | pj | pjl \ ++ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ ++ | pyramid \ ++ | score \ ++ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ ++ | sh64 | sh64le \ ++ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ ++ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ ++ | spu | strongarm \ ++ | tahoe | thumb | tic4x | tic80 | tron \ ++ | v850 | v850e \ ++ | we32k \ ++ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ ++ | z8k) + basic_machine=$basic_machine-unknown + ;; +- m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | z8k | v70 | h8500 | w65) ++ m6811 | m68hc11 | m6812 | m68hc12) ++ # Motorola 68HC11/12. ++ basic_machine=$basic_machine-unknown ++ os=-none ++ ;; ++ m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ++ ;; ++ ms1) ++ basic_machine=mt-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. +- i[34567]86) ++ i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. +@@ -195,24 +312,66 @@ + exit 1 + ;; + # Recognize the basic CPU types with company name. +- # FIXME: clean up the formatting here. +- vax-* | tahoe-* | i[34567]86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \ +- | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | arm-* | c[123]* \ +- | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \ +- | power-* | none-* | 580-* | cray2-* | h8300-* | h8500-* | i960-* \ +- | xmp-* | ymp-* \ +- | hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* | hppa2.0w-* | hppa2.0n-* \ +- | alpha-* | alphaev[4-7]-* | alphaev56-* | alphapca5[67]-* \ +- | we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \ +- | clipper-* | orion-* \ +- | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \ +- | sparc64-* | sparcv9-* | sparc86x-* | mips16-* | mips64-* | mipsel-* \ +- | mips64el-* | mips64orion-* | mips64orionel-* \ +- | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \ +- | mipstx39-* | mipstx39el-* | mcore-* \ +- | f301-* | armv*-* | t3e-* \ +- | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \ +- | thumb-* | v850-* | d30v-* | tic30-* | c30-* ) ++ 580-* \ ++ | a29k-* \ ++ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ ++ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ ++ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ ++ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ ++ | avr-* | avr32-* \ ++ | bfin-* | bs2000-* \ ++ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ ++ | clipper-* | craynv-* | cydra-* \ ++ | d10v-* | d30v-* | dlx-* \ ++ | elxsi-* \ ++ | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ ++ | h8300-* | h8500-* \ ++ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ ++ | i*86-* | i860-* | i960-* | ia64-* \ ++ | ip2k-* | iq2000-* \ ++ | m32c-* | m32r-* | m32rle-* \ ++ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ ++ | m88110-* | m88k-* | maxq-* | mcore-* \ ++ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ ++ | mips16-* \ ++ | mips64-* | mips64el-* \ ++ | mips64vr-* | mips64vrel-* \ ++ | mips64orion-* | mips64orionel-* \ ++ | mips64vr4100-* | mips64vr4100el-* \ ++ | mips64vr4300-* | mips64vr4300el-* \ ++ | mips64vr5000-* | mips64vr5000el-* \ ++ | mips64vr5900-* | mips64vr5900el-* \ ++ | mipsisa32-* | mipsisa32el-* \ ++ | mipsisa32r2-* | mipsisa32r2el-* \ ++ | mipsisa64-* | mipsisa64el-* \ ++ | mipsisa64r2-* | mipsisa64r2el-* \ ++ | mipsisa64sb1-* | mipsisa64sb1el-* \ ++ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ ++ | mipstx39-* | mipstx39el-* \ ++ | mmix-* \ ++ | mt-* \ ++ | msp430-* \ ++ | nios-* | nios2-* \ ++ | none-* | np1-* | ns16k-* | ns32k-* \ ++ | orion-* \ ++ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ ++ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ ++ | pyramid-* \ ++ | romp-* | rs6000-* \ ++ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ ++ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ ++ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ ++ | sparclite-* \ ++ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ ++ | tahoe-* | thumb-* \ ++ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ ++ | tron-* \ ++ | v850-* | v850e-* | vax-* \ ++ | we32k-* \ ++ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ ++ | xstormy16-* | xtensa-* \ ++ | ymp-* \ ++ | z8k-*) + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. +@@ -230,6 +389,9 @@ + basic_machine=a29k-amd + os=-udi + ;; ++ abacus) ++ basic_machine=abacus-unknown ++ ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout +@@ -244,19 +406,25 @@ + basic_machine=a29k-none + os=-bsd + ;; ++ amd64) ++ basic_machine=x86_64-pc ++ ;; ++ amd64-*) ++ basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) +- basic_machine=m68k-cbm ++ basic_machine=m68k-unknown + ;; + amigaos | amigados) +- basic_machine=m68k-cbm ++ basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) +- basic_machine=m68k-cbm ++ basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) +@@ -275,6 +443,10 @@ + basic_machine=ns32k-sequent + os=-dynix + ;; ++ c90) ++ basic_machine=c90-cray ++ os=-unicos ++ ;; + convex-c1) + basic_machine=c1-convex + os=-bsd +@@ -295,27 +467,45 @@ + basic_machine=c38-convex + os=-bsd + ;; +- cray | ymp) +- basic_machine=ymp-cray ++ cray | j90) ++ basic_machine=j90-cray + os=-unicos + ;; +- cray2) +- basic_machine=cray2-cray +- os=-unicos ++ craynv) ++ basic_machine=craynv-cray ++ os=-unicosmp + ;; +- [ctj]90-cray) +- basic_machine=c90-cray +- os=-unicos ++ cr16c) ++ basic_machine=cr16c-unknown ++ os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; ++ crisv32 | crisv32-* | etraxfs*) ++ basic_machine=crisv32-axis ++ ;; ++ cris | cris-* | etrax*) ++ basic_machine=cris-axis ++ ;; ++ crx) ++ basic_machine=crx-unknown ++ os=-elf ++ ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; ++ decsystem10* | dec10*) ++ basic_machine=pdp10-dec ++ os=-tops10 ++ ;; ++ decsystem20* | dec20*) ++ basic_machine=pdp10-dec ++ os=-tops20 ++ ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola +@@ -324,6 +514,10 @@ + basic_machine=m88k-motorola + os=-sysv3 + ;; ++ djgpp) ++ basic_machine=i586-pc ++ os=-msdosdjgpp ++ ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx +@@ -357,6 +551,10 @@ + basic_machine=tron-gmicro + os=-sysv + ;; ++ go32) ++ basic_machine=i386-pc ++ os=-go32 ++ ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 +@@ -430,22 +628,21 @@ + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm +- os=-mvs + ;; + # I'm not sure what "Sysv32" means. Should this be sysv3.2? +- i[34567]86v32) ++ i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; +- i[34567]86v4*) ++ i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; +- i[34567]86v) ++ i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; +- i[34567]86sol2) ++ i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; +@@ -457,14 +654,6 @@ + basic_machine=i386-unknown + os=-vsta + ;; +- i386-go32 | go32) +- basic_machine=i386-unknown +- os=-go32 +- ;; +- i386-mingw32 | mingw32) +- basic_machine=i386-unknown +- os=-mingw32 +- ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in +@@ -490,6 +679,10 @@ + basic_machine=ns32k-utek + os=-sysv + ;; ++ mingw32) ++ basic_machine=i386-pc ++ os=-mingw32 ++ ;; + miniframe) + basic_machine=m68000-convergent + ;; +@@ -497,14 +690,6 @@ + basic_machine=m68k-atari + os=-mint + ;; +- mipsel*-linux*) +- basic_machine=mipsel-unknown +- os=-linux-gnu +- ;; +- mips*-linux*) +- basic_machine=mips-unknown +- os=-linux-gnu +- ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; +@@ -515,10 +700,21 @@ + basic_machine=m68k-rom68k + os=-coff + ;; ++ morphos) ++ basic_machine=powerpc-unknown ++ os=-morphos ++ ;; + msdos) +- basic_machine=i386-unknown ++ basic_machine=i386-pc + os=-msdos + ;; ++ ms1-*) ++ basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ++ ;; ++ mvs) ++ basic_machine=i370-ibm ++ os=-mvs ++ ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 +@@ -528,7 +724,7 @@ + os=-netbsd + ;; + netwinder) +- basic_machine=armv4l-corel ++ basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) +@@ -576,13 +772,27 @@ + basic_machine=i960-intel + os=-mon960 + ;; ++ nonstopux) ++ basic_machine=mips-compaq ++ os=-nonstopux ++ ;; + np1) + basic_machine=np1-gould + ;; ++ nsr-tandem) ++ basic_machine=nsr-tandem ++ ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; ++ openrisc | openrisc-*) ++ basic_machine=or32-unknown ++ ;; ++ os400) ++ basic_machine=powerpc-ibm ++ os=-os400 ++ ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose +@@ -605,45 +815,75 @@ + pbb) + basic_machine=m68k-tti + ;; +- pc532 | pc532-*) ++ pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; +- pentium | p5 | k5 | k6 | nexen) ++ pc98) ++ basic_machine=i386-pc ++ ;; ++ pc98-*) ++ basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; ++ pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; +- pentiumpro | p6 | 6x86) ++ pentiumpro | p6 | 6x86 | athlon | athlon_*) ++ basic_machine=i686-pc ++ ;; ++ pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; +- pentiumii | pentium2) ++ pentium4) + basic_machine=i786-pc + ;; +- pentium-* | p5-* | k5-* | k6-* | nexen-*) ++ pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; +- pentiumpro-* | p6-* | 6x86-*) ++ pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; +- pentiumii-* | pentium2-*) ++ pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) ++ basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; ++ pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; +- power) basic_machine=rs6000-ibm ++ power) basic_machine=power-ibm + ;; + ppc) basic_machine=powerpc-unknown +- ;; ++ ;; + ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown +- ;; ++ ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; ++ ppc64) basic_machine=powerpc64-unknown ++ ;; ++ ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; ++ ppc64le | powerpc64little | ppc64-le | powerpc64-little) ++ basic_machine=powerpc64le-unknown ++ ;; ++ ppc64le-* | powerpc64little-*) ++ basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; + ps2) + basic_machine=i386-ibm + ;; ++ pw32) ++ basic_machine=i586-unknown ++ os=-pw32 ++ ;; ++ rdos) ++ basic_machine=i386-pc ++ os=-rdos ++ ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff +@@ -654,10 +894,30 @@ + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; ++ s390 | s390-*) ++ basic_machine=s390-ibm ++ ;; ++ s390x | s390x-*) ++ basic_machine=s390x-ibm ++ ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; ++ sb1) ++ basic_machine=mipsisa64sb1-unknown ++ ;; ++ sb1el) ++ basic_machine=mipsisa64sb1el-unknown ++ ;; ++ sde) ++ basic_machine=mipsisa32-sde ++ os=-elf ++ ;; ++ sei) ++ basic_machine=mips-sei ++ os=-seiux ++ ;; + sequent) + basic_machine=i386-sequent + ;; +@@ -665,7 +925,10 @@ + basic_machine=sh-hitachi + os=-hms + ;; +- sparclite-wrs) ++ sh64) ++ basic_machine=sh64-unknown ++ ;; ++ sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; +@@ -723,23 +986,51 @@ + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; ++ sv1) ++ basic_machine=sv1-cray ++ os=-unicos ++ ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) +- basic_machine=t3e-cray ++ basic_machine=alphaev5-cray ++ os=-unicos ++ ;; ++ t90) ++ basic_machine=t90-cray + os=-unicos + ;; ++ tic54x | c54x*) ++ basic_machine=tic54x-unknown ++ os=-coff ++ ;; ++ tic55x | c55x*) ++ basic_machine=tic55x-unknown ++ os=-coff ++ ;; ++ tic6x | c6x*) ++ basic_machine=tic6x-unknown ++ os=-coff ++ ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; ++ toad1) ++ basic_machine=pdp10-xkl ++ os=-tops20 ++ ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; ++ tpf) ++ basic_machine=s390x-ibm ++ os=-tpf ++ ;; + udi29k) + basic_machine=a29k-amd + os=-udi +@@ -761,8 +1052,8 @@ + os=-vms + ;; + vpp*|vx|vx-*) +- basic_machine=f301-fujitsu +- ;; ++ basic_machine=f301-fujitsu ++ ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks +@@ -783,13 +1074,17 @@ + basic_machine=hppa1.1-winbond + os=-proelf + ;; +- xmp) +- basic_machine=xmp-cray +- os=-unicos ++ xbox) ++ basic_machine=i686-pc ++ os=-mingw32 + ;; +- xps | xps100) ++ xps | xps100) + basic_machine=xps100-honeywell + ;; ++ ymp) ++ basic_machine=ymp-cray ++ os=-unicos ++ ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim +@@ -810,32 +1105,35 @@ + op60c) + basic_machine=hppa1.1-oki + ;; +- mips) +- if [ x$os = x-linux-gnu ]; then +- basic_machine=mips-unknown +- else +- basic_machine=mips-mips +- fi +- ;; + romp) + basic_machine=romp-ibm + ;; ++ mmix) ++ basic_machine=mmix-knuth ++ ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; ++ pdp10) ++ # there are many clones, so DEC is not a safe bet ++ basic_machine=pdp10-unknown ++ ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; +- sparc | sparcv9) ++ sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) ++ basic_machine=sh-unknown ++ ;; ++ sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; +- cydra) ++ cydra) + basic_machine=cydra-cydrome + ;; + orion) +@@ -850,9 +1148,8 @@ + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; +- c4x*) +- basic_machine=c4x-none +- os=-coff ++ *-unknown) ++ # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 +@@ -906,22 +1203,49 @@ + | -aos* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ +- | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ +- | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ ++ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ ++ | -openbsd* | -solidbsd* \ ++ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ ++ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ ++ | -chorusos* | -chorusrdb* \ + | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ +- | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ +- | -interix* | -uwin* | -rhapsody* | -openstep* | -oskit*) ++ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ ++ | -uxpv* | -beos* | -mpeix* | -udk* \ ++ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ ++ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ ++ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ ++ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ ++ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ ++ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ ++ | -skyos* | -haiku* | -rdos* | -toppers*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; ++ -qnx*) ++ case $basic_machine in ++ x86-* | i*86-*) ++ ;; ++ *) ++ os=-nto$os ++ ;; ++ esac ++ ;; ++ -nto-qnx*) ++ ;; ++ -nto*) ++ os=`echo $os | sed -e 's|nto|nto-qnx|'` ++ ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ +- | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ +- | -macos* | -mpw* | -magic* | -mon960* | -lnews*) ++ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ ++ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; ++ -linux-dietlibc) ++ os=-linux-dietlibc ++ ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; +@@ -931,6 +1255,15 @@ + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; ++ -opened*) ++ os=-openedition ++ ;; ++ -os400*) ++ os=-os400 ++ ;; ++ -wince*) ++ os=-wince ++ ;; + -osfrose*) + os=-osfrose + ;; +@@ -946,14 +1279,26 @@ + -acis*) + os=-aos + ;; ++ -atheos*) ++ os=-atheos ++ ;; ++ -syllable*) ++ os=-syllable ++ ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; ++ -nova*) ++ os=-rtmk-nova ++ ;; + -ns2 ) +- os=-nextstep2 ++ os=-nextstep2 ++ ;; ++ -nsk*) ++ os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) +@@ -962,6 +1307,9 @@ + -sinix*) + os=-sysv4 + ;; ++ -tpf*) ++ os=-tpf ++ ;; + -triton*) + os=-sysv3 + ;; +@@ -989,8 +1337,17 @@ + -xenix) + os=-xenix + ;; +- -*mint | -*MiNT) +- os=-mint ++ -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) ++ os=-mint ++ ;; ++ -aros*) ++ os=-aros ++ ;; ++ -kaos*) ++ os=-kaos ++ ;; ++ -zvmoe) ++ os=-zvmoe + ;; + -none) + ;; +@@ -1014,16 +1371,29 @@ + # system, and we'll never get to this point. + + case $basic_machine in ++ score-*) ++ os=-elf ++ ;; ++ spu-*) ++ os=-elf ++ ;; + *-acorn) + os=-riscix1.2 + ;; +- arm*-corel) ++ arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; +- pdp11-*) ++ c4x-* | tic4x-*) ++ os=-coff ++ ;; ++ # This must come before the *-dec entry. ++ pdp10-*) ++ os=-tops20 ++ ;; ++ pdp11-*) + os=-none + ;; + *-dec | vax-*) +@@ -1050,6 +1420,9 @@ + mips*-*) + os=-elf + ;; ++ or32-*) ++ os=-coff ++ ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; +@@ -1059,9 +1432,15 @@ + *-be) + os=-beos + ;; ++ *-haiku) ++ os=-haiku ++ ;; + *-ibm) + os=-aix + ;; ++ *-knuth) ++ os=-mmixware ++ ;; + *-wec) + os=-proelf + ;; +@@ -1113,25 +1492,25 @@ + *-next) + os=-nextstep3 + ;; +- *-gould) ++ *-gould) + os=-sysv + ;; +- *-highlevel) ++ *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; +- *-sgi) ++ *-sgi) + os=-irix + ;; +- *-siemens) ++ *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; +- f301-fujitsu) ++ f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) +@@ -1191,13 +1570,19 @@ + -genix*) + vendor=ns + ;; +- -mvs*) ++ -mvs* | -opened*) ++ vendor=ibm ++ ;; ++ -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; +- -vxsim* | -vxworks*) ++ -tpf*) ++ vendor=ibm ++ ;; ++ -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) +@@ -1209,12 +1594,23 @@ + -mpw* | -macos*) + vendor=apple + ;; +- -*mint | -*MiNT) ++ -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; ++ -vos*) ++ vendor=stratus ++ ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; + esac + + echo $basic_machine$os ++exit ++ ++# Local variables: ++# eval: (add-hook 'write-file-hooks 'time-stamp) ++# time-stamp-start: "timestamp='" ++# time-stamp-format: "%:y-%02m-%02d" ++# time-stamp-end: "'" ++# End: +--- recode-3.6.orig/src/request.c ++++ recode-3.6/src/request.c +@@ -1073,7 +1073,7 @@ + if (task->output.cursor + 4 >= task->output.limit) + { + RECODE_OUTER outer = task->request->outer; +- size_t old_size = task->output.limit - task->output.buffer; ++ size_t old_size = task->output.cursor - task->output.buffer; + size_t new_size = task->output.cursor + 4 - task->output.buffer; + + /* FIXME: Rethink about how the error should be reported. */ +--- recode-3.6.orig/src/libiconv.c ++++ recode-3.6/src/libiconv.c +@@ -1,5 +1,5 @@ + /* Conversion of files between different charsets and surfaces. +- Copyright 1999, 2000 Free Software Foundation, Inc. ++ Copyright 1999, 2000, 2001 Free Software Foundation, Inc. + Contributed by Franois Pinard , 1999, + and Bruno Haible , 2000. + +@@ -195,12 +195,17 @@ + memcpy() doesn't do here, because the regions might overlap. + memmove() isn't worth it, because we rarely have to move more + than 12 bytes. */ +- if (input > input_buffer && input_left > 0) ++ cursor = input_buffer; ++ if (input_left > 0) + { +- cursor = input_buffer; +- do +- *cursor++ = *input++; +- while (--input_left > 0); ++ if (input > input_buffer) ++ { ++ do ++ *cursor++ = *input++; ++ while (--input_left > 0); ++ } ++ else ++ cursor += input_left; + } + } + +--- recode-3.6.orig/src/recodext.h ++++ recode-3.6/src/recodext.h +@@ -218,7 +218,7 @@ + enum recode_symbol_type type : 3; + + /* Non zero if this one should be ignored. */ +- bool ignore : 2; ++ bool ignore : 1; + }; + + struct recode_surface_list +--- recode-3.6.orig/src/task.c ++++ recode-3.6/src/task.c +@@ -1198,6 +1198,8 @@ + else + success = transform_mere_copy (subtask); + ++ task->output = subtask->output; ++ + if (subtask->input.name && *subtask->input.name) + fclose (subtask->input.file); + if (subtask->output.name && *subtask->output.name) +--- recode-3.6.orig/src/Makefile.in ++++ recode-3.6/src/Makefile.in +@@ -819,7 +819,7 @@ + $(srcdir)/recode.1: recode + @if test -r $@ && test ! -w $@; then \ + echo "WARNING: Page \`$@' read only, not updated"; \ +- elif $(PERL) $(top_srcdir)/doc/help2man --output=$@ ./recode; then \ ++ elif $(PERL) $(top_srcdir)/doc/help2man --name="converts files between character sets" --output=$@ ./recode; then \ + echo "Page \`$@' has been updated"; \ + else \ + echo "WARNING: Page \`$@' has *not* been updated."; \ +--- recode-3.6.orig/src/hash.h ++++ recode-3.6/src/hash.h +@@ -21,6 +21,11 @@ + /* Make sure USE_OBSTACK is defined to 1 if you want the allocator to use + obstacks instead of malloc, and recompile `hash.c' with same setting. */ + ++#define hash_lookup recode_hash_lookup ++#define hash_delete recode_hash_delete ++#define hash_free recode_hash_free ++#define hash_insert recode_hash_insert ++ + #ifndef PARAMS + # if PROTOTYPES || __STDC__ + # define PARAMS(Args) Args +--- recode-3.6.orig/acinclude.m4 ++++ recode-3.6/acinclude.m4 +@@ -1,5 +1,6 @@ +-## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*- +-## Copyright (C) 1996-1999 Free Software Foundation, Inc. ++# libtool.m4 - Configure libtool for the host system. -*-Shell-script-*- ++## Copyright 1996, 1997, 1998, 1999, 2000, 2001 ++## Free Software Foundation, Inc. + ## Originally by Gordon Matzigkeit , 1996 + ## + ## This program is free software; you can redistribute it and/or modify +@@ -21,134 +22,3028 @@ + ## configuration script generated by Autoconf, you may include it under + ## the same distribution terms that you use for the rest of that program. + +-# serial 40 AC_PROG_LIBTOOL +-AC_DEFUN(AC_PROG_LIBTOOL, ++# serial 46 AC_PROG_LIBTOOL ++# Debian $Rev: 50 $ ++ ++AC_DEFUN([AC_PROG_LIBTOOL], + [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl + +-# Save cache, so that ltconfig can load it +-AC_CACHE_SAVE ++# This can be used to rebuild libtool when needed ++LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++ ++# Always use our own libtool. ++LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++AC_SUBST(LIBTOOL)dnl ++ ++# Prevent multiple expansion ++define([AC_PROG_LIBTOOL], []) ++]) ++ ++AC_DEFUN([AC_LIBTOOL_SETUP], ++[AC_PREREQ(2.13)dnl ++AC_REQUIRE([AC_ENABLE_SHARED])dnl ++AC_REQUIRE([AC_ENABLE_STATIC])dnl ++AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl ++AC_REQUIRE([AC_CANONICAL_HOST])dnl ++AC_REQUIRE([AC_CANONICAL_BUILD])dnl ++AC_REQUIRE([AC_PROG_CC])dnl ++AC_REQUIRE([AC_PROG_LD])dnl ++AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl ++AC_REQUIRE([AC_PROG_NM])dnl ++AC_REQUIRE([LT_AC_PROG_SED])dnl ++ ++AC_REQUIRE([AC_PROG_LN_S])dnl ++AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl ++AC_REQUIRE([AC_OBJEXT])dnl ++AC_REQUIRE([AC_EXEEXT])dnl ++dnl ++ ++_LT_AC_PROG_ECHO_BACKSLASH ++# Only perform the check for file, if the check method requires it ++case $deplibs_check_method in ++file_magic*) ++ if test "$file_magic_cmd" = '$MAGIC_CMD'; then ++ AC_PATH_MAGIC ++ fi ++ ;; ++esac ++ ++AC_CHECK_TOOL(RANLIB, ranlib, :) ++AC_CHECK_TOOL(STRIP, strip, :) ++ ++ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) ++ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], ++enable_win32_dll=yes, enable_win32_dll=no) ++ ++AC_ARG_ENABLE(libtool-lock, ++ [ --disable-libtool-lock avoid locking (might break parallel builds)]) ++test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ++ ++# Some flags need to be propagated to the compiler or linker for good ++# libtool support. ++case $host in ++*-*-irix6*) ++ # Find out which ABI we are using. ++ echo '[#]line __oline__ "configure"' > conftest.$ac_ext ++ if AC_TRY_EVAL(ac_compile); then ++ case `/usr/bin/file conftest.$ac_objext` in ++ *32-bit*) ++ LD="${LD-ld} -32" ++ ;; ++ *N32*) ++ LD="${LD-ld} -n32" ++ ;; ++ *64-bit*) ++ LD="${LD-ld} -64" ++ ;; ++ esac ++ fi ++ rm -rf conftest* ++ ;; ++ ++*-*-sco3.2v5*) ++ # On SCO OpenServer 5, we need -belf to get full-featured binaries. ++ SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -belf" ++ AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, ++ [AC_LANG_SAVE ++ AC_LANG_C ++ AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) ++ AC_LANG_RESTORE]) ++ if test x"$lt_cv_cc_needs_belf" != x"yes"; then ++ # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf ++ CFLAGS="$SAVE_CFLAGS" ++ fi ++ ;; ++ ++ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], ++[*-*-cygwin* | *-*-mingw* | *-*-pw32*) ++ AC_CHECK_TOOL(DLLTOOL, dlltool, false) ++ AC_CHECK_TOOL(AS, as, false) ++ AC_CHECK_TOOL(OBJDUMP, objdump, false) ++ ++ # recent cygwin and mingw systems supply a stub DllMain which the user ++ # can override, but on older systems we have to supply one ++ AC_CACHE_CHECK([if libtool should supply DllMain function], lt_cv_need_dllmain, ++ [AC_TRY_LINK([], ++ [extern int __attribute__((__stdcall__)) DllMain(void*, int, void*); ++ DllMain (0, 0, 0);], ++ [lt_cv_need_dllmain=no],[lt_cv_need_dllmain=yes])]) ++ ++ case $host/$CC in ++ *-*-cygwin*/gcc*-mno-cygwin*|*-*-mingw*) ++ # old mingw systems require "-dll" to link a DLL, while more recent ones ++ # require "-mdll" ++ SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -mdll" ++ AC_CACHE_CHECK([how to link DLLs], lt_cv_cc_dll_switch, ++ [AC_TRY_LINK([], [], [lt_cv_cc_dll_switch=-mdll],[lt_cv_cc_dll_switch=-dll])]) ++ CFLAGS="$SAVE_CFLAGS" ;; ++ *-*-cygwin* | *-*-pw32*) ++ # cygwin systems need to pass --dll to the linker, and not link ++ # crt.o which will require a WinMain@16 definition. ++ lt_cv_cc_dll_switch="-Wl,--dll -nostartfiles" ;; ++ esac ++ ;; ++ ]) ++esac ++ ++_LT_AC_LTCONFIG_HACK ++ ++]) ++ ++# AC_LIBTOOL_HEADER_ASSERT ++# ------------------------ ++AC_DEFUN([AC_LIBTOOL_HEADER_ASSERT], ++[AC_CACHE_CHECK([whether $CC supports assert without backlinking], ++ [lt_cv_func_assert_works], ++ [case $host in ++ *-*-solaris*) ++ if test "$GCC" = yes && test "$with_gnu_ld" != yes; then ++ case `$CC --version 2>/dev/null` in ++ [[12]].*) lt_cv_func_assert_works=no ;; ++ *) lt_cv_func_assert_works=yes ;; ++ esac ++ fi ++ ;; ++ esac]) ++ ++if test "x$lt_cv_func_assert_works" = xyes; then ++ AC_CHECK_HEADERS(assert.h) ++fi ++])# AC_LIBTOOL_HEADER_ASSERT ++ ++# _LT_AC_CHECK_DLFCN ++# -------------------- ++AC_DEFUN([_LT_AC_CHECK_DLFCN], ++[AC_CHECK_HEADERS(dlfcn.h) ++])# _LT_AC_CHECK_DLFCN ++ ++# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ++# --------------------------------- ++AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], ++[AC_REQUIRE([AC_CANONICAL_HOST]) ++AC_REQUIRE([AC_PROG_NM]) ++AC_REQUIRE([AC_OBJEXT]) ++# Check for command to grab the raw symbol name followed by C symbol from nm. ++AC_MSG_CHECKING([command to parse $NM output]) ++AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [dnl ++ ++# These are sane defaults that work on at least a few old systems. ++# [They come from Ultrix. What could be older than Ultrix?!! ;)] ++ ++# Character class describing NM global symbol codes. ++symcode='[[BCDEGRST]]' ++ ++# Regexp to match symbols that can be accessed directly from C. ++sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' ++ ++# Transform the above into a raw symbol and a C symbol. ++symxfrm='\1 \2\3 \3' ++ ++# Transform an extracted symbol line into a proper C declaration ++lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'" ++ ++# Transform an extracted symbol line into symbol name and symbol address ++lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ++# Define system-specific variables. ++case $host_os in ++aix*) ++ symcode='[[BCDT]]' ++ ;; ++cygwin* | mingw* | pw32*) ++ symcode='[[ABCDGISTW]]' ++ ;; ++hpux*) # Its linker distinguishes data from code symbols ++ lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ++ lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ;; ++irix* | nonstopux*) ++ symcode='[[BCDEGRST]]' ++ ;; ++osf*) ++ symcode='[[BCDEGQRST]]' ++ ;; ++solaris* | sysv5*) ++ symcode='[[BDT]]' ++ ;; ++sysv4) ++ symcode='[[DFNSTU]]' ++ ;; ++esac ++ ++# Handle CRLF in mingw tool chain ++opt_cr= ++case $host_os in ++mingw*) ++ opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ++ ;; ++esac ++ ++# If we're using GNU nm, then use its standard symbol codes. ++if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then ++ symcode='[[ABCDGISTW]]' ++fi ++ ++# Try without a prefix undercore, then with it. ++for ac_symprfx in "" "_"; do ++ ++ # Write the raw and C identifiers. ++lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" ++ ++ # Check to see that the pipe works correctly. ++ pipe_works=no ++ rm -f conftest* ++ cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then ++ # Try sorting and uniquifying the output. ++ if sort "$nlist" | uniq > "$nlist"T; then ++ mv -f "$nlist"T "$nlist" ++ else ++ rm -f "$nlist"T ++ fi ++ ++ # Make sure that we snagged all the symbols we need. ++ if egrep ' nm_test_var$' "$nlist" >/dev/null; then ++ if egrep ' nm_test_func$' "$nlist" >/dev/null; then ++ cat < conftest.$ac_ext ++#ifdef __cplusplus ++extern "C" { ++#endif ++ ++EOF ++ # Now generate the symbol file. ++ eval "$lt_cv_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext' ++ ++ cat <> conftest.$ac_ext ++#if defined (__STDC__) && __STDC__ ++# define lt_ptr void * ++#else ++# define lt_ptr char * ++# define const ++#endif ++ ++/* The mapping between symbol names and symbols. */ ++const struct { ++ const char *name; ++ lt_ptr address; ++} ++lt_preloaded_symbols[[]] = ++{ ++EOF ++ sed "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr) \&\2},/" < "$nlist" >> conftest.$ac_ext ++ cat <<\EOF >> conftest.$ac_ext ++ {0, (lt_ptr) 0} ++}; ++ ++#ifdef __cplusplus ++} ++#endif ++EOF ++ # Now try linking the two files. ++ mv conftest.$ac_objext conftstm.$ac_objext ++ save_LIBS="$LIBS" ++ save_CFLAGS="$CFLAGS" ++ LIBS="conftstm.$ac_objext" ++ CFLAGS="$CFLAGS$no_builtin_flag" ++ if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then ++ pipe_works=yes ++ fi ++ LIBS="$save_LIBS" ++ CFLAGS="$save_CFLAGS" ++ else ++ echo "cannot find nm_test_func in $nlist" >&AC_FD_CC ++ fi ++ else ++ echo "cannot find nm_test_var in $nlist" >&AC_FD_CC ++ fi ++ else ++ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AC_FD_CC ++ fi ++ else ++ echo "$progname: failed program was:" >&AC_FD_CC ++ cat conftest.$ac_ext >&5 ++ fi ++ rm -f conftest* conftst* ++ ++ # Do not use the global_symbol_pipe unless it works. ++ if test "$pipe_works" = yes; then ++ break ++ else ++ lt_cv_sys_global_symbol_pipe= ++ fi ++done ++]) ++global_symbol_pipe="$lt_cv_sys_global_symbol_pipe" ++if test -z "$lt_cv_sys_global_symbol_pipe"; then ++ global_symbol_to_cdecl= ++ global_symbol_to_c_name_address= ++else ++ global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl" ++ global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address" ++fi ++if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address"; ++then ++ AC_MSG_RESULT(failed) ++else ++ AC_MSG_RESULT(ok) ++fi ++]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ++ ++# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++# --------------------------------- ++AC_DEFUN([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR], ++[# Find the correct PATH separator. Usually this is `:', but ++# DJGPP uses `;' like DOS. ++if test "X${PATH_SEPARATOR+set}" != Xset; then ++ UNAME=${UNAME-`uname 2>/dev/null`} ++ case X$UNAME in ++ *-DOS) lt_cv_sys_path_separator=';' ;; ++ *) lt_cv_sys_path_separator=':' ;; ++ esac ++ PATH_SEPARATOR=$lt_cv_sys_path_separator ++fi ++])# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++ ++# _LT_AC_PROG_ECHO_BACKSLASH ++# -------------------------- ++# Add some code to the start of the generated configure script which ++# will find an echo command which doesn't interpret backslashes. ++AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], ++[ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], ++ [AC_DIVERT_PUSH(NOTICE)]) ++_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++ ++# Check that we are running under the correct shell. ++SHELL=${CONFIG_SHELL-/bin/sh} ++ ++case X$ECHO in ++X*--fallback-echo) ++ # Remove one level of quotation (which was required for Make). ++ ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ++ ;; ++esac ++ ++echo=${ECHO-echo} ++if test "X[$]1" = X--no-reexec; then ++ # Discard the --no-reexec flag, and continue. ++ shift ++elif test "X[$]1" = X--fallback-echo; then ++ # Avoid inline document here, it may be left over ++ : ++elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then ++ # Yippee, $echo works! ++ : ++else ++ # Restart under the correct shell. ++ exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} ++fi ++ ++if test "X[$]1" = X--fallback-echo; then ++ # used as fallback echo ++ shift ++ cat </dev/null && ++ echo_test_string="`eval $cmd`" && ++ (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null ++ then ++ break ++ fi ++ done ++fi ++ ++if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ : ++else ++ # The Solaris, AIX, and Digital Unix default echo programs unquote ++ # backslashes. This makes it impossible to quote backslashes using ++ # echo "$something" | sed 's/\\/\\\\/g' ++ # ++ # So, first we look for a working echo in the user's PATH. ++ ++ IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR ++ for dir in $PATH /usr/ucb; do ++ if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && ++ test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$dir/echo" ++ break ++ fi ++ done ++ IFS="$save_ifs" ++ ++ if test "X$echo" = Xecho; then ++ # We didn't find a better echo, so look for alternatives. ++ if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # This shell has a builtin print -r that does the trick. ++ echo='print -r' ++ elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && ++ test "X$CONFIG_SHELL" != X/bin/ksh; then ++ # If we have ksh, try running configure again with it. ++ ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} ++ export ORIGINAL_CONFIG_SHELL ++ CONFIG_SHELL=/bin/ksh ++ export CONFIG_SHELL ++ exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} ++ else ++ # Try using printf. ++ echo='printf %s\n' ++ if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # Cool, printf works ++ : ++ elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL ++ export CONFIG_SHELL ++ SHELL="$CONFIG_SHELL" ++ export SHELL ++ echo="$CONFIG_SHELL [$]0 --fallback-echo" ++ elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$CONFIG_SHELL [$]0 --fallback-echo" ++ else ++ # maybe with a smaller string... ++ prev=: ++ ++ for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do ++ if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null ++ then ++ break ++ fi ++ prev="$cmd" ++ done ++ ++ if test "$prev" != 'sed 50q "[$]0"'; then ++ echo_test_string=`eval $prev` ++ export echo_test_string ++ exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} ++ else ++ # Oops. We lost completely, so just stick with echo. ++ echo=echo ++ fi ++ fi ++ fi ++ fi ++fi ++fi ++ ++# Copy echo and quote the copy suitably for passing to libtool from ++# the Makefile, instead of quoting the original, which is used later. ++ECHO=$echo ++if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ++ ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" ++fi ++ ++AC_SUBST(ECHO) ++AC_DIVERT_POP ++])# _LT_AC_PROG_ECHO_BACKSLASH ++ ++# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, ++# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) ++# ------------------------------------------------------------------ ++AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], ++[if test "$cross_compiling" = yes; then : ++ [$4] ++else ++ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ++ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 ++ lt_status=$lt_dlunknown ++ cat > conftest.$ac_ext < ++#endif ++ ++#include ++ ++#ifdef RTLD_GLOBAL ++# define LT_DLGLOBAL RTLD_GLOBAL ++#else ++# ifdef DL_GLOBAL ++# define LT_DLGLOBAL DL_GLOBAL ++# else ++# define LT_DLGLOBAL 0 ++# endif ++#endif ++ ++/* We may have to define LT_DLLAZY_OR_NOW in the command line if we ++ find out it does not work in some platform. */ ++#ifndef LT_DLLAZY_OR_NOW ++# ifdef RTLD_LAZY ++# define LT_DLLAZY_OR_NOW RTLD_LAZY ++# else ++# ifdef DL_LAZY ++# define LT_DLLAZY_OR_NOW DL_LAZY ++# else ++# ifdef RTLD_NOW ++# define LT_DLLAZY_OR_NOW RTLD_NOW ++# else ++# ifdef DL_NOW ++# define LT_DLLAZY_OR_NOW DL_NOW ++# else ++# define LT_DLLAZY_OR_NOW 0 ++# endif ++# endif ++# endif ++# endif ++#endif ++ ++#ifdef __cplusplus ++extern "C" void exit (int); ++#endif ++ ++void fnord() { int i=42;} ++int main () ++{ ++ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); ++ int status = $lt_dlunknown; ++ ++ if (self) ++ { ++ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; ++ else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; ++ /* dlclose (self); */ ++ } ++ ++ exit (status); ++}] ++EOF ++ if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then ++ (./conftest; exit; ) 2>/dev/null ++ lt_status=$? ++ case x$lt_status in ++ x$lt_dlno_uscore) $1 ;; ++ x$lt_dlneed_uscore) $2 ;; ++ x$lt_unknown|x*) $3 ;; ++ esac ++ else : ++ # compilation failed ++ $3 ++ fi ++fi ++rm -fr conftest* ++])# _LT_AC_TRY_DLOPEN_SELF ++ ++# AC_LIBTOOL_DLOPEN_SELF ++# ------------------- ++AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], ++[if test "x$enable_dlopen" != xyes; then ++ enable_dlopen=unknown ++ enable_dlopen_self=unknown ++ enable_dlopen_self_static=unknown ++else ++ lt_cv_dlopen=no ++ lt_cv_dlopen_libs= ++ ++ case $host_os in ++ beos*) ++ lt_cv_dlopen="load_add_on" ++ lt_cv_dlopen_libs= ++ lt_cv_dlopen_self=yes ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ lt_cv_dlopen="LoadLibrary" ++ lt_cv_dlopen_libs= ++ ;; ++ ++ *) ++ AC_CHECK_FUNC([shl_load], ++ [lt_cv_dlopen="shl_load"], ++ [AC_CHECK_LIB([dld], [shl_load], ++ [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], ++ [AC_CHECK_FUNC([dlopen], ++ [lt_cv_dlopen="dlopen"], ++ [AC_CHECK_LIB([dl], [dlopen], ++ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], ++ [AC_CHECK_LIB([svld], [dlopen], ++ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], ++ [AC_CHECK_LIB([dld], [dld_link], ++ [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ++ ]) ++ ]) ++ ]) ++ ]) ++ ]) ++ ;; ++ esac ++ ++ if test "x$lt_cv_dlopen" != xno; then ++ enable_dlopen=yes ++ else ++ enable_dlopen=no ++ fi ++ ++ case $lt_cv_dlopen in ++ dlopen) ++ save_CPPFLAGS="$CPPFLAGS" ++ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ++ test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" ++ ++ save_LDFLAGS="$LDFLAGS" ++ eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" ++ ++ save_LIBS="$LIBS" ++ LIBS="$lt_cv_dlopen_libs $LIBS" ++ ++ AC_CACHE_CHECK([whether a program can dlopen itself], ++ lt_cv_dlopen_self, [dnl ++ _LT_AC_TRY_DLOPEN_SELF( ++ lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, ++ lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ++ ]) ++ ++ if test "x$lt_cv_dlopen_self" = xyes; then ++ LDFLAGS="$LDFLAGS $link_static_flag" ++ AC_CACHE_CHECK([whether a statically linked program can dlopen itself], ++ lt_cv_dlopen_self_static, [dnl ++ _LT_AC_TRY_DLOPEN_SELF( ++ lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, ++ lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ++ ]) ++ fi ++ ++ CPPFLAGS="$save_CPPFLAGS" ++ LDFLAGS="$save_LDFLAGS" ++ LIBS="$save_LIBS" ++ ;; ++ esac ++ ++ case $lt_cv_dlopen_self in ++ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; ++ *) enable_dlopen_self=unknown ;; ++ esac ++ ++ case $lt_cv_dlopen_self_static in ++ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; ++ *) enable_dlopen_self_static=unknown ;; ++ esac ++fi ++])# AC_LIBTOOL_DLOPEN_SELF ++ ++AC_DEFUN([_LT_AC_LTCONFIG_HACK], ++[AC_REQUIRE([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])dnl ++# Sed substitution that helps us do robust quoting. It backslashifies ++# metacharacters that are still active within double-quoted strings. ++Xsed='sed -e s/^X//' ++sed_quote_subst='s/\([[\\"\\`$\\\\]]\)/\\\1/g' ++ ++# Same as above, but do not quote variable references. ++double_quote_subst='s/\([[\\"\\`\\\\]]\)/\\\1/g' ++ ++# Sed substitution to delay expansion of an escaped shell variable in a ++# double_quote_subst'ed string. ++delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' ++ ++# Constants: ++rm="rm -f" ++ ++# Global variables: ++default_ofile=libtool ++can_build_shared=yes ++ ++# All known linkers require a `.a' archive for static linking (except M$VC, ++# which needs '.lib'). ++libext=a ++ltmain="$ac_aux_dir/ltmain.sh" ++ofile="$default_ofile" ++with_gnu_ld="$lt_cv_prog_gnu_ld" ++need_locks="$enable_libtool_lock" ++ ++old_CC="$CC" ++old_CFLAGS="$CFLAGS" ++ ++# Set sane defaults for various variables ++test -z "$AR" && AR=ar ++test -z "$AR_FLAGS" && AR_FLAGS=cru ++test -z "$AS" && AS=as ++test -z "$CC" && CC=cc ++test -z "$DLLTOOL" && DLLTOOL=dlltool ++test -z "$LD" && LD=ld ++test -z "$LN_S" && LN_S="ln -s" ++test -z "$MAGIC_CMD" && MAGIC_CMD=file ++test -z "$NM" && NM=nm ++test -z "$OBJDUMP" && OBJDUMP=objdump ++test -z "$RANLIB" && RANLIB=: ++test -z "$STRIP" && STRIP=: ++test -z "$ac_objext" && ac_objext=o ++ ++if test x"$host" != x"$build"; then ++ ac_tool_prefix=${host_alias}- ++else ++ ac_tool_prefix= ++fi ++ ++# Transform linux* to *-*-linux-gnu*, to support old configure scripts. ++case $host_os in ++linux-gnu*) ;; ++linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'` ++esac ++ ++case $host_os in ++aix3*) ++ # AIX sometimes has problems with the GCC collect2 program. For some ++ # reason, if we set the COLLECT_NAMES environment variable, the problems ++ # vanish in a puff of smoke. ++ if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++ fi ++ ;; ++esac ++ ++# Determine commands to create old-style static archives. ++old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' ++old_postinstall_cmds='chmod 644 $oldlib' ++old_postuninstall_cmds= ++ ++if test -n "$RANLIB"; then ++ case $host_os in ++ openbsd*) ++ old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds" ++ ;; ++ *) ++ old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds" ++ ;; ++ esac ++ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" ++fi ++ ++# Allow CC to be a program name with arguments. ++set dummy $CC ++compiler="[$]2" ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([for objdir]) ++rm -f .libs 2>/dev/null ++mkdir .libs 2>/dev/null ++if test -d .libs; then ++ objdir=.libs ++else ++ # MS-DOS does not allow filenames that begin with a dot. ++ objdir=_libs ++fi ++rmdir .libs 2>/dev/null ++AC_MSG_RESULT($objdir) ++## ++## END FIXME ++ ++ ++## FIXME: this should be a separate macro ++## ++AC_ARG_WITH(pic, ++[ --with-pic try to use only PIC/non-PIC objects [default=use both]], ++pic_mode="$withval", pic_mode=default) ++test -z "$pic_mode" && pic_mode=default ++ ++# We assume here that the value for lt_cv_prog_cc_pic will not be cached ++# in isolation, and that seeing it set (from the cache) indicates that ++# the associated values are set (in the cache) correctly too. ++AC_MSG_CHECKING([for $compiler option to produce PIC]) ++AC_CACHE_VAL(lt_cv_prog_cc_pic, ++[ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_shlib= ++ lt_cv_prog_cc_wl= ++ lt_cv_prog_cc_static= ++ lt_cv_prog_cc_no_builtin= ++ lt_cv_prog_cc_can_build_shared=$can_build_shared ++ ++ if test "$GCC" = yes; then ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-static' ++ ++ case $host_os in ++ aix*) ++ # Below there is a dirty hack to force normal static linking with -ldl ++ # The problem is because libdl dynamically linked with both libc and ++ # libC (AIX C++ library), which obviously doesn't included in libraries ++ # list by gcc. This cause undefined symbols with -static flags. ++ # This hack allows C programs to be linked with "-static -ldl", but ++ # not sure about C++ programs. ++ lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC" ++ ;; ++ amigaos*) ++ # FIXME: we need at least 68020 code to build shared libraries, but ++ # adding the `-m68020' flag to GCC prevents building anything better, ++ # like `-m68040'. ++ lt_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4' ++ ;; ++ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ++ # PIC is the default for these OSes. ++ ;; ++ darwin* | rhapsody*) ++ # PIC is the default on this platform ++ # Common symbols not allowed in MH_DYLIB files ++ lt_cv_prog_cc_pic='-fno-common' ++ ;; ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ lt_cv_prog_cc_pic=-Kconform_pic ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic='-fPIC' ++ ;; ++ esac ++ else ++ # PORTME Check for PIC flags for the system compiler. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ lt_cv_prog_cc_wl='-Wl,' ++ # All AIX code is PIC. ++ if test "$host_cpu" = ia64; then ++ # AIX 5 now supports IA64 processor ++ lt_cv_prog_cc_static='-Bstatic' ++ else ++ lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp' ++ fi ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ # Is there a better lt_cv_prog_cc_static that works with the bundled CC? ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive" ++ lt_cv_prog_cc_pic='+Z' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ # PIC (with -KPIC) is the default. ++ ;; ++ ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ ++ newsos6) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ osf3* | osf4* | osf5*) ++ # All OSF/1 code is PIC. ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ ;; ++ ++ sco3.2v5*) ++ lt_cv_prog_cc_pic='-Kpic' ++ lt_cv_prog_cc_static='-dn' ++ lt_cv_prog_cc_shlib='-belf' ++ ;; ++ ++ solaris*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ sunos4*) ++ lt_cv_prog_cc_pic='-PIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Qoption ld ' ++ ;; ++ ++ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ uts4*) ++ lt_cv_prog_cc_pic='-pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec ;then ++ lt_cv_prog_cc_pic='-Kconform_pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ fi ++ ;; ++ ++ *) ++ lt_cv_prog_cc_can_build_shared=no ++ ;; ++ esac ++ fi ++]) ++if test -z "$lt_cv_prog_cc_pic"; then ++ AC_MSG_RESULT([none]) ++else ++ AC_MSG_RESULT([$lt_cv_prog_cc_pic]) ++ ++ # Check to make sure the pic_flag actually works. ++ AC_MSG_CHECKING([if $compiler PIC flag $lt_cv_prog_cc_pic works]) ++ AC_CACHE_VAL(lt_cv_prog_cc_pic_works, [dnl ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC" ++ AC_TRY_COMPILE([], [], [dnl ++ case $host_os in ++ hpux9* | hpux10* | hpux11*) ++ # On HP-UX, both CC and GCC only warn that PIC is supported... then ++ # they create non-PIC objects. So, if there were any warnings, we ++ # assume that PIC is not supported. ++ if test -s conftest.err; then ++ lt_cv_prog_cc_pic_works=no ++ else ++ lt_cv_prog_cc_pic_works=yes ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic_works=yes ++ ;; ++ esac ++ ], [dnl ++ lt_cv_prog_cc_pic_works=no ++ ]) ++ CFLAGS="$save_CFLAGS" ++ ]) ++ ++ if test "X$lt_cv_prog_cc_pic_works" = Xno; then ++ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_can_build_shared=no ++ else ++ lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic" ++ fi ++ ++ AC_MSG_RESULT([$lt_cv_prog_cc_pic_works]) ++fi ++## ++## END FIXME ++ ++# Check for any special shared library compilation flags. ++if test -n "$lt_cv_prog_cc_shlib"; then ++ AC_MSG_WARN([\`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries]) ++ if echo "$old_CC $old_CFLAGS " | egrep -e "[[ ]]$lt_cv_prog_cc_shlib[[ ]]" >/dev/null; then : ++ else ++ AC_MSG_WARN([add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure]) ++ lt_cv_prog_cc_can_build_shared=no ++ fi ++fi ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([if $compiler static flag $lt_cv_prog_cc_static works]) ++AC_CACHE_VAL([lt_cv_prog_cc_static_works], [dnl ++ lt_cv_prog_cc_static_works=no ++ save_LDFLAGS="$LDFLAGS" ++ LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static" ++ AC_TRY_LINK([], [], [lt_cv_prog_cc_static_works=yes]) ++ LDFLAGS="$save_LDFLAGS" ++]) ++ ++# Belt *and* braces to stop my trousers falling down: ++test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static= ++AC_MSG_RESULT([$lt_cv_prog_cc_static_works]) ++ ++pic_flag="$lt_cv_prog_cc_pic" ++special_shlib_compile_flags="$lt_cv_prog_cc_shlib" ++wl="$lt_cv_prog_cc_wl" ++link_static_flag="$lt_cv_prog_cc_static" ++no_builtin_flag="$lt_cv_prog_cc_no_builtin" ++can_build_shared="$lt_cv_prog_cc_can_build_shared" ++## ++## END FIXME ++ ++ ++## FIXME: this should be a separate macro ++## ++# Check to see if options -o and -c are simultaneously supported by compiler ++AC_MSG_CHECKING([if $compiler supports -c -o file.$ac_objext]) ++AC_CACHE_VAL([lt_cv_compiler_c_o], [ ++$rm -r conftest 2>/dev/null ++mkdir conftest ++cd conftest ++echo "int some_variable = 0;" > conftest.$ac_ext ++mkdir out ++# According to Tom Tromey, Ian Lance Taylor reported there are C compilers ++# that will create temporary files in the current directory regardless of ++# the output directory. Thus, making CWD read-only will cause this test ++# to fail, enabling locking or at least warning the user not to do parallel ++# builds. ++chmod -w . ++save_CFLAGS="$CFLAGS" ++CFLAGS="$CFLAGS -o out/conftest2.$ac_objext" ++compiler_c_o=no ++if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s out/conftest.err; then ++ lt_cv_compiler_c_o=no ++ else ++ lt_cv_compiler_c_o=yes ++ fi ++else ++ # Append any errors to the config.log. ++ cat out/conftest.err 1>&AC_FD_CC ++ lt_cv_compiler_c_o=no ++fi ++CFLAGS="$save_CFLAGS" ++chmod u+w . ++$rm conftest* out/* ++rmdir out ++cd .. ++rmdir conftest ++$rm -r conftest 2>/dev/null ++]) ++compiler_c_o=$lt_cv_compiler_c_o ++AC_MSG_RESULT([$compiler_c_o]) ++ ++if test x"$compiler_c_o" = x"yes"; then ++ # Check to see if we can write to a .lo ++ AC_MSG_CHECKING([if $compiler supports -c -o file.lo]) ++ AC_CACHE_VAL([lt_cv_compiler_o_lo], [ ++ lt_cv_compiler_o_lo=no ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -c -o conftest.lo" ++ save_objext="$ac_objext" ++ ac_objext=lo ++ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ lt_cv_compiler_o_lo=no ++ else ++ lt_cv_compiler_o_lo=yes ++ fi ++ ]) ++ ac_objext="$save_objext" ++ CFLAGS="$save_CFLAGS" ++ ]) ++ compiler_o_lo=$lt_cv_compiler_o_lo ++ AC_MSG_RESULT([$compiler_o_lo]) ++else ++ compiler_o_lo=no ++fi ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# Check to see if we can do hard links to lock some files if needed ++hard_links="nottested" ++if test "$compiler_c_o" = no && test "$need_locks" != no; then ++ # do not overwrite the value of need_locks provided by the user ++ AC_MSG_CHECKING([if we can lock with hard links]) ++ hard_links=yes ++ $rm conftest* ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ touch conftest.a ++ ln conftest.a conftest.b 2>&5 || hard_links=no ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ AC_MSG_RESULT([$hard_links]) ++ if test "$hard_links" = no; then ++ AC_MSG_WARN([\`$CC' does not support \`-c -o', so \`make -j' may be unsafe]) ++ need_locks=warn ++ fi ++else ++ need_locks=no ++fi ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++if test "$GCC" = yes; then ++ # Check to see if options -fno-rtti -fno-exceptions are supported by compiler ++ AC_MSG_CHECKING([if $compiler supports -fno-rtti -fno-exceptions]) ++ echo "int some_variable = 0;" > conftest.$ac_ext ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext" ++ compiler_rtti_exceptions=no ++ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ compiler_rtti_exceptions=no ++ else ++ compiler_rtti_exceptions=yes ++ fi ++ ]) ++ CFLAGS="$save_CFLAGS" ++ AC_MSG_RESULT([$compiler_rtti_exceptions]) ++ ++ if test "$compiler_rtti_exceptions" = "yes"; then ++ no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions' ++ else ++ no_builtin_flag=' -fno-builtin' ++ fi ++fi ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# See if the linker supports building shared libraries. ++AC_MSG_CHECKING([whether the linker ($LD) supports shared libraries]) ++ ++allow_undefined_flag= ++no_undefined_flag= ++need_lib_prefix=unknown ++need_version=unknown ++# when you set need_version to no, make sure it does not cause -set_version ++# flags to be left without arguments ++archive_cmds= ++archive_expsym_cmds= ++old_archive_from_new_cmds= ++old_archive_from_expsyms_cmds= ++export_dynamic_flag_spec= ++whole_archive_flag_spec= ++thread_safe_flag_spec= ++hardcode_into_libs=no ++hardcode_libdir_flag_spec= ++hardcode_libdir_separator= ++hardcode_direct=no ++hardcode_minus_L=no ++hardcode_shlibpath_var=unsupported ++runpath_var= ++link_all_deplibs=unknown ++always_export_symbols=no ++export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' ++# include_expsyms should be a list of space-separated symbols to be *always* ++# included in the symbol list ++include_expsyms= ++# exclude_expsyms can be an egrep regular expression of symbols to exclude ++# it will be wrapped by ` (' and `)$', so one must not match beginning or ++# end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', ++# as well as any symbol that contains `d'. ++exclude_expsyms="_GLOBAL_OFFSET_TABLE_" ++# Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out ++# platforms (ab)use it in PIC code, but their linkers get confused if ++# the symbol is explicitly referenced. Since portable code cannot ++# rely on this symbol name, it's probably fine to never include it in ++# preloaded symbol tables. ++extract_expsyms_cmds= ++ ++case $host_os in ++cygwin* | mingw* | pw32*) ++ # FIXME: the MSVC++ port hasn't been tested in a loooong time ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ if test "$GCC" != yes; then ++ with_gnu_ld=no ++ fi ++ ;; ++openbsd*) ++ with_gnu_ld=no ++ ;; ++esac ++ ++ld_shlibs=yes ++if test "$with_gnu_ld" = yes; then ++ # If archive_cmds runs LD, not CC, wlarc should be empty ++ wlarc='${wl}' ++ ++ # See if GNU ld supports shared libraries. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ # On AIX, the GNU linker is very broken ++ # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available. ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: the GNU linker, at least up to release 2.9.1, is reported ++*** to be unable to reliably create shared libraries on AIX. ++*** Therefore, libtool is disabling shared libraries support. If you ++*** really care for shared libraries, you may want to modify your PATH ++*** so that a non-GNU linker is found, and then restart. ++ ++EOF ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ ++ # Samuel A. Falvo II reports ++ # that the semantics of dynamic libraries on AmigaOS, at least up ++ # to version 4, is to share data among multiple programs linked ++ # with the same dynamic library. Since this doesn't match the ++ # behavior of shared libraries on other platforms, we can use ++ # them. ++ ld_shlibs=no ++ ;; ++ ++ beos*) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ allow_undefined_flag=unsupported ++ # Joseph Beckenbach says some releases of gcc ++ # support --undefined. This deserves some investigation. FIXME ++ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec='-L$libdir' ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ ++ extract_expsyms_cmds='test -f $output_objdir/impgen.c || \ ++ sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~ ++ test -f $output_objdir/impgen.exe || (cd $output_objdir && \ ++ if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; \ ++ else $CC -o impgen impgen.c ; fi)~ ++ $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def' ++ ++ old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib' ++ ++ # cygwin and mingw dlls have different entry points and sets of symbols ++ # to exclude. ++ # FIXME: what about values for MSVC? ++ dll_entry=__cygwin_dll_entry@12 ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~ ++ case $host_os in ++ mingw*) ++ # mingw values ++ dll_entry=_DllMainCRTStartup@12 ++ dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~ ++ ;; ++ esac ++ ++ # mingw and cygwin differ, and it's simplest to just exclude the union ++ # of the two symbol sets. ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12 ++ ++ # recent cygwin and mingw systems supply a stub DllMain which the user ++ # can override, but on older systems we have to supply one (in ltdll.c) ++ if test "x$lt_cv_need_dllmain" = "xyes"; then ++ ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext " ++ ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~ ++ test -f $output_objdir/$soname-ltdll.$ac_objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~' ++ else ++ ltdll_obj= ++ ltdll_cmds= ++ fi ++ ++ # Extract the symbol export list from an `--export-all' def file, ++ # then regenerate the def file from the symbol export list, so that ++ # the compiled dll only exports the symbol export list. ++ # Be careful not to strip the DATA tag left be newer dlltools. ++ export_symbols_cmds="$ltdll_cmds"' ++ $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~ ++ sed -e "1,/EXPORTS/d" -e "s/ @ [[0-9]]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols' ++ ++ # If the export-symbols file already is a .def file (1st line ++ # is EXPORTS), use it as is. ++ # If DATA tags from a recent dlltool are present, honour them! ++ archive_expsym_cmds='if test "x`sed 1q $export_symbols`" = xEXPORTS; then ++ cp $export_symbols $output_objdir/$soname-def; ++ else ++ echo EXPORTS > $output_objdir/$soname-def; ++ _lt_hint=1; ++ cat $export_symbols | while read symbol; do ++ set dummy \$symbol; ++ case \[$]# in ++ 2) echo " \[$]2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;; ++ 4) echo " \[$]2 \[$]3 \[$]4 ; " >> $output_objdir/$soname-def; _lt_hint=`expr \$_lt_hint - 1`;; ++ *) echo " \[$]2 @ \$_lt_hint \[$]3 ; " >> $output_objdir/$soname-def;; ++ esac; ++ _lt_hint=`expr 1 + \$_lt_hint`; ++ done; ++ fi~ ++ '"$ltdll_cmds"' ++ $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~ ++ $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~ ++ $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags' ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' ++ wlarc= ++ else ++ archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ fi ++ ;; ++ ++ solaris* | sysv5*) ++ if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: The releases 2.8.* of the GNU linker cannot reliably ++*** create shared libraries on Solaris systems. Therefore, libtool ++*** is disabling shared libraries support. We urge you to upgrade GNU ++*** binutils to release 2.9.1 or newer. Another option is to modify ++*** your PATH or compiler configuration so that the native linker is ++*** used, and then restart. ++ ++EOF ++ elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ sunos4*) ++ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ wlarc= ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ esac ++ ++ if test "$ld_shlibs" = yes; then ++ runpath_var=LD_RUN_PATH ++ hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' ++ export_dynamic_flag_spec='${wl}--export-dynamic' ++ case $host_os in ++ cygwin* | mingw* | pw32*) ++ # dlltool doesn't understand --whole-archive et. al. ++ whole_archive_flag_spec= ++ ;; ++ *) ++ # ancient GNU ld didn't support --whole-archive et. al. ++ if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then ++ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ++ else ++ whole_archive_flag_spec= ++ fi ++ ;; ++ esac ++ fi ++else ++ # PORTME fill in a description of your system's linker (not GNU ld) ++ case $host_os in ++ aix3*) ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' ++ # Note: this linker hardcodes the directories in LIBPATH if there ++ # are no directories specified by -L. ++ hardcode_minus_L=yes ++ if test "$GCC" = yes && test -z "$link_static_flag"; then ++ # Neither direct hardcoding nor static linking is supported with a ++ # broken collect2. ++ hardcode_direct=unsupported ++ fi ++ ;; ++ ++ aix4* | aix5*) ++ if test "$host_cpu" = ia64; then ++ # On IA64, the linker does run time linking by default, so we don't ++ # have to do anything special. ++ aix_use_runtimelinking=no ++ exp_sym_flag='-Bexport' ++ no_entry_flag="" ++ else ++ aix_use_runtimelinking=no ++ ++ # Test if we are trying to use run time linking or normal ++ # AIX style linking. If -brtl is somewhere in LDFLAGS, we ++ # need to do runtime linking. ++ case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) ++ for ld_flag in $LDFLAGS; do ++ case $ld_flag in ++ *-brtl*) ++ aix_use_runtimelinking=yes ++ break ++ ;; ++ esac ++ done ++ esac ++ ++ exp_sym_flag='-bexport' ++ no_entry_flag='-bnoentry' ++ fi ++ ++ # When large executables or shared objects are built, AIX ld can ++ # have problems creating the table of contents. If linking a library ++ # or program results in "error TOC overflow" add -mminimal-toc to ++ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ++ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ++ ++ hardcode_direct=yes ++ archive_cmds='' ++ hardcode_libdir_separator=':' ++ if test "$GCC" = yes; then ++ case $host_os in aix4.[[012]]|aix4.[[012]].*) ++ collect2name=`${CC} -print-prog-name=collect2` ++ if test -f "$collect2name" && \ ++ strings "$collect2name" | grep resolve_lib_name >/dev/null ++ then ++ # We have reworked collect2 ++ hardcode_direct=yes ++ else ++ # We have old collect2 ++ hardcode_direct=unsupported ++ # It fails to find uninstalled libraries when the uninstalled ++ # path is not listed in the libpath. Setting hardcode_minus_L ++ # to unsupported forces relinking ++ hardcode_minus_L=yes ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_libdir_separator= ++ fi ++ esac ++ ++ shared_flag='-shared' ++ else ++ # not using gcc ++ if test "$host_cpu" = ia64; then ++ shared_flag='${wl}-G' ++ else ++ if test "$aix_use_runtimelinking" = yes; then ++ shared_flag='${wl}-G' ++ else ++ shared_flag='${wl}-bM:SRE' ++ fi ++ fi ++ fi ++ ++ # It seems that -bexpall can do strange things, so it is better to ++ # generate a list of symbols to export. ++ always_export_symbols=yes ++ if test "$aix_use_runtimelinking" = yes; then ++ # Warning - without using the other runtime loading flags (-brtl), ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='-berok' ++ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib' ++ archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" ++ else ++ if test "$host_cpu" = ia64; then ++ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' ++ allow_undefined_flag="-z nodefs" ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname ${wl}-h$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" ++ else ++ hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib' ++ # Warning - without using the other run time loading flags, ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='${wl}-berok' ++ # This is a bit strange, but is similar to how AIX traditionally builds ++ # it's shared libraries. ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"' ~$AR -crlo $output_objdir/$libname$release.a $output_objdir/$soname' ++ fi ++ fi ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ # see comment about different semantics on the GNU ld section ++ ld_shlibs=no ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec=' ' ++ allow_undefined_flag=unsupported ++ # Tell ltmain to make .lib files, not .a files. ++ libext=lib ++ # FIXME: Setting linknames here is a bad hack. ++ archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | sed -e '\''s/ -lc$//'\''` -link -dll~linknames=' ++ # The linker will automatically build a .lib file if we build a DLL. ++ old_archive_from_new_cmds='true' ++ # FIXME: Should let the user specify the lib program. ++ old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' ++ fix_srcfile_path='`cygpath -w "$srcfile"`' ++ ;; ++ ++ darwin* | rhapsody*) ++ case "$host_os" in ++ rhapsody* | darwin1.[[012]]) ++ allow_undefined_flag='-undefined suppress' ++ ;; ++ *) # Darwin 1.3 on ++ allow_undefined_flag='-flat_namespace -undefined suppress' ++ ;; ++ esac ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. Also zsh mangles ++ # `"' quotes if we put them in here... so don't! ++ archive_cmds='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs && $CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib ${lib}-master.o $deplibs$linker_flags $(test .$module != .yes && echo -install_name $rpath/$soname $verstring)' ++ # We need to add '_' to the symbols in $export_symbols first ++ #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ whole_archive_flag_spec='-all_load $convenience' ++ ;; ++ ++ freebsd1*) ++ ld_shlibs=no ++ ;; ++ ++ # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor ++ # support. Future versions do this automatically, but an explicit c++rt0.o ++ # does not break anything, and helps significantly (at the cost of a little ++ # extra space). ++ freebsd2.2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # Unfortunately, older versions of FreeBSD 2 do not have this feature. ++ freebsd2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # FreeBSD 3 and greater uses gcc -shared to do shared libraries. ++ freebsd*) ++ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ case $host_os in ++ hpux9*) archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;; ++ *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; ++ esac ++ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_direct=yes ++ hardcode_minus_L=yes # Not in the search PATH, but as the default ++ # location of the library. ++ export_dynamic_flag_spec='${wl}-E' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ link_all_deplibs=yes ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out ++ else ++ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF ++ fi ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ newsos6) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_shlibpath_var=no ++ ;; ++ ++ openbsd*) ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ export_dynamic_flag_spec='${wl}-E' ++ else ++ case "$host_os" in ++ openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ ;; ++ *) ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ ;; ++ esac ++ fi ++ ;; ++ ++ os2*) ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ allow_undefined_flag=unsupported ++ archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' ++ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ++ ;; ++ ++ osf3*) ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ fi ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ ;; ++ ++ osf4* | osf5*) # as osf3* with the addition of -msym flag ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "-exported_symbol " >> $lib.exp; echo "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ ++ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' ++ ++ #Both c and cxx compiler support -rpath directly ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ ;; ++ ++ sco3.2v5*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ export_dynamic_flag_spec='${wl}-Bexport' ++ ;; ++ ++ solaris*) ++ # gcc --version < 3.0 without binutils cannot create self contained ++ # shared libraries reliably, requiring libgcc.a to resolve some of ++ # the object symbols generated in some cases. Libraries that use ++ # assert need libgcc.a to resolve __eprintf, for example. Linking ++ # a copy of libgcc.a into every shared library to guarantee resolving ++ # such symbols causes other problems: According to Tim Van Holder ++ # , C++ libraries end up with a separate ++ # (to the application) exception stack for one thing. ++ no_undefined_flag=' -z defs' ++ if test "$GCC" = yes; then ++ case `$CC --version 2>/dev/null` in ++ [[12]].*) ++ cat <&2 ++ ++*** Warning: Releases of GCC earlier than version 3.0 cannot reliably ++*** create self contained shared libraries on Solaris systems, without ++*** introducing a dependency on libgcc.a. Therefore, libtool is disabling ++*** -no-undefined support, which will at least allow you to build shared ++*** libraries. However, you may find that when you link such libraries ++*** into an application without using GCC, you have to manually add ++*** \`gcc --print-libgcc-file-name\` to the link command. We urge you to ++*** upgrade to a newer version of GCC. Another option is to rebuild your ++*** current GCC to use the GNU linker from GNU binutils 2.9.1 or newer. ++ ++EOF ++ no_undefined_flag= ++ ;; ++ esac ++ fi ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_shlibpath_var=no ++ case $host_os in ++ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; ++ *) # Supported since Solaris 2.6 (maybe 2.5.1?) ++ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; ++ esac ++ link_all_deplibs=yes ++ ;; ++ ++ sunos4*) ++ if test "x$host_vendor" = xsequent; then ++ # Use $CC to link under sequent, because it throws in some extra .o ++ # files that make .init and .fini sections work. ++ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' ++ fi ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4) ++ case $host_vendor in ++ sni) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes # is this really true??? ++ ;; ++ siemens) ++ ## LD is ld it makes a PLAMLIB ++ ## CC just makes a GrossModule. ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ reload_cmds='$CC -r -o $output$reload_objs' ++ hardcode_direct=no ++ ;; ++ motorola) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=no #Motorola manual says yes, but my tests say they lie ++ ;; ++ esac ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4.3*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ export_dynamic_flag_spec='-Bexport' ++ ;; ++ ++ sysv5*) ++ no_undefined_flag=' -z text' ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec= ++ hardcode_shlibpath_var=no ++ runpath_var='LD_RUN_PATH' ++ ;; ++ ++ uts4*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ dgux*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ ld_shlibs=yes ++ fi ++ ;; ++ ++ sysv4.2uw2*) ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=no ++ hardcode_shlibpath_var=no ++ hardcode_runpath_var=yes ++ runpath_var=LD_RUN_PATH ++ ;; ++ ++ sysv5uw7* | unixware7*) ++ no_undefined_flag='${wl}-z ${wl}text' ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ fi ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ ld_shlibs=no ++ ;; ++ esac ++fi ++AC_MSG_RESULT([$ld_shlibs]) ++test "$ld_shlibs" = no && can_build_shared=no ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# Check hardcoding attributes. ++AC_MSG_CHECKING([how to hardcode library paths into programs]) ++hardcode_action= ++if test -n "$hardcode_libdir_flag_spec" || \ ++ test -n "$runpath_var"; then ++ ++ # We can hardcode non-existant directories. ++ if test "$hardcode_direct" != no && ++ # If the only mechanism to avoid hardcoding is shlibpath_var, we ++ # have to relink, otherwise we might link with an installed library ++ # when we should be linking with a yet-to-be-installed one ++ ## test "$hardcode_shlibpath_var" != no && ++ test "$hardcode_minus_L" != no; then ++ # Linking always hardcodes the temporary library directory. ++ hardcode_action=relink ++ else ++ # We can link without hardcoding, and we can hardcode nonexisting dirs. ++ hardcode_action=immediate ++ fi ++else ++ # We cannot hardcode anything, or else we can only hardcode existing ++ # directories. ++ hardcode_action=unsupported ++fi ++AC_MSG_RESULT([$hardcode_action]) ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++striplib= ++old_striplib= ++AC_MSG_CHECKING([whether stripping libraries is possible]) ++if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then ++ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" ++ test -z "$striplib" && striplib="$STRIP --strip-unneeded" ++ AC_MSG_RESULT([yes]) ++else ++ AC_MSG_RESULT([no]) ++fi ++## ++## END FIXME ++ ++reload_cmds='$LD$reload_flag -o $output$reload_objs' ++test -z "$deplibs_check_method" && deplibs_check_method=unknown ++ ++## FIXME: this should be a separate macro ++## ++# PORTME Fill in your ld.so characteristics ++AC_MSG_CHECKING([dynamic linker characteristics]) ++library_names_spec= ++libname_spec='lib$name' ++soname_spec= ++postinstall_cmds= ++postuninstall_cmds= ++finish_cmds= ++finish_eval= ++shlibpath_var= ++shlibpath_overrides_runpath=unknown ++version_type=none ++dynamic_linker="$host_os ld.so" ++sys_lib_dlsearch_path_spec="/lib /usr/lib" ++sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" ++ ++case $host_os in ++aix3*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix $libname.a' ++ shlibpath_var=LIBPATH ++ ++ # AIX has no versioning support, so we append a major version to the name. ++ soname_spec='${libname}${release}.so$major' ++ ;; ++ ++aix4* | aix5*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ hardcode_into_libs=yes ++ if test "$host_cpu" = ia64; then ++ # AIX 5 supports IA64 ++ library_names_spec='${libname}${release}.so$major ${libname}${release}.so$versuffix $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ else ++ # With GCC up to 2.95.x, collect2 would create an import file ++ # for dependence libraries. The import file would start with ++ # the line `#! .'. This would cause the generated library to ++ # depend on `.', always an invalid library. This was fixed in ++ # development snapshots of GCC prior to 3.0. ++ case $host_os in ++ aix4 | aix4.[[01]] | aix4.[[01]].*) ++ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' ++ echo ' yes ' ++ echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then ++ : ++ else ++ can_build_shared=no ++ fi ++ ;; ++ esac ++ # AIX (on Power*) has no versioning support, so currently we can ++ # not hardcode correct soname into executable. Probably we can ++ # add versioning support to collect2, so additional links can ++ # be useful in future. ++ if test "$aix_use_runtimelinking" = yes; then ++ # If using run time linking (on AIX 4.2 or later) use lib.so ++ # instead of lib.a to let people know that these are not ++ # typical AIX shared libraries. ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ else ++ # We preserve .a as extension for shared libraries through AIX4.2 ++ # and later when we are not doing run time linking. ++ library_names_spec='${libname}${release}.a $libname.a' ++ soname_spec='${libname}${release}.so$major' ++ fi ++ shlibpath_var=LIBPATH ++ fi ++ hardcode_into_libs=yes ++ ;; ++ ++amigaos*) ++ library_names_spec='$libname.ixlibrary $libname.a' ++ # Create ${libname}_ixlibrary.a entries in /sys/libs. ++ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' ++ ;; ++ ++beos*) ++ library_names_spec='${libname}.so' ++ dynamic_linker="$host_os ld.so" ++ shlibpath_var=LIBRARY_PATH ++ ;; ++ ++bsdi4*) ++ version_type=linux ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" ++ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" ++ export_dynamic_flag_spec=-rdynamic ++ # the default ld.so.conf also contains /usr/contrib/lib and ++ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow ++ # libtool to hard-code these into programs ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ version_type=windows ++ need_version=no ++ need_lib_prefix=no ++ case $GCC,$host_os in ++ yes,cygwin*) ++ library_names_spec='$libname.dll.a' ++ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll' ++ postinstall_cmds='dlpath=`bash 2>&1 -c '\''. $dir/${file}i;echo \$dlname'\''`~ ++ dldir=$destdir/`dirname \$dlpath`~ ++ test -d \$dldir || mkdir -p \$dldir~ ++ $install_prog .libs/$dlname \$dldir/$dlname' ++ postuninstall_cmds='dldll=`bash 2>&1 -c '\''. $file; echo \$dlname'\''`~ ++ dlpath=$dir/\$dldll~ ++ $rm \$dlpath' ++ ;; ++ yes,mingw*) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll' ++ sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g" -e "s,=/,/,g"` ++ ;; ++ yes,pw32*) ++ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll' ++ ;; ++ *) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll $libname.lib' ++ ;; ++ esac ++ dynamic_linker='Win32 ld.exe' ++ # FIXME: first we should search . and the directory the executable is in ++ shlibpath_var=PATH ++ ;; ++ ++darwin* | rhapsody*) ++ dynamic_linker="$host_os dyld" ++ version_type=darwin ++ need_lib_prefix=no ++ need_version=no ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. ++ library_names_spec='${libname}${release}${versuffix}.$(test .$module = .yes && echo so || echo dylib) ${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib) ${libname}.$(test .$module = .yes && echo so || echo dylib)' ++ soname_spec='${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib)' ++ shlibpath_overrides_runpath=yes ++ shlibpath_var=DYLD_LIBRARY_PATH ++ ;; ++ ++freebsd1*) ++ dynamic_linker=no ++ ;; ++ ++kfreebsd*-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ dynamic_linker='GNU/FreeBSD ld.so' ++ ;; ++ ++freebsd*) ++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` ++ version_type=freebsd-$objformat ++ case $version_type in ++ freebsd-elf*) ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so' ++ need_version=no ++ need_lib_prefix=no ++ ;; ++ freebsd-*) ++ library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix' ++ need_version=yes ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_os in ++ freebsd2*) ++ shlibpath_overrides_runpath=yes ++ ;; ++ *) ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ ;; ++ esac ++ ;; ++ ++gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ hardcode_into_libs=yes ++ ;; ++ ++hpux9* | hpux10* | hpux11*) ++ # Give a soname corresponding to the major version so that dld.sl refuses to ++ # link against other versions. ++ dynamic_linker="$host_os dld.sl" ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_var=SHLIB_PATH ++ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH ++ library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl' ++ soname_spec='${libname}${release}.sl$major' ++ # HP-UX runs *really* slowly unless shared libraries are mode 555. ++ postinstall_cmds='chmod 555 $lib' ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ nonstopux*) version_type=nonstopux ;; ++ *) version_type=irix ;; ++ esac ++ need_lib_prefix=no ++ need_version=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so $libname.so' ++ case $host_os in ++ irix5* | nonstopux*) ++ libsuff= shlibsuff= ++ ;; ++ *) ++ case $LD in # libtool.m4 will add one of these switches to LD ++ *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;; ++ *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; ++ *-64|*"-64 ") libsuff=64 shlibsuff=64 libmagic=64-bit;; ++ *) libsuff= shlibsuff= libmagic=never-match;; ++ esac ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" ++ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" ++ ;; ++ ++# No shared lib support for Linux oldld, aout, or coff. ++linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*) ++ dynamic_linker=no ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ # This implies no fast_install, which is unacceptable. ++ # Some rework will be needed to allow for fast_install ++ # before this can be enabled. ++ hardcode_into_libs=yes ++ ++ # We used to test for /lib/ld.so.1 and disable shared libraries on ++ # powerpc, because MkLinux only supported shared libraries with the ++ # GNU dynamic linker. Since this was broken with cross compilers, ++ # most powerpc-linux boxes support dynamic linking these days and ++ # people can always --disable-shared, the test was removed, and we ++ # assume the GNU/Linux dynamic linker is in use. ++ dynamic_linker='GNU/Linux ld.so' ++ ;; ++ ++netbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ dynamic_linker='NetBSD (a.out) ld.so' ++ else ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ dynamic_linker='NetBSD ld.elf_so' ++ fi ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ ;; ++ ++newsos6) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ ;; ++ ++openbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ case "$host_os" in ++ openbsd2.[[89]] | openbsd2.[[89]].*) ++ shlibpath_overrides_runpath=no ++ ;; ++ *) ++ shlibpath_overrides_runpath=yes ++ ;; ++ esac ++ else ++ shlibpath_overrides_runpath=yes ++ fi ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++os2*) ++ libname_spec='$name' ++ need_lib_prefix=no ++ library_names_spec='$libname.dll $libname.a' ++ dynamic_linker='OS/2 ld.exe' ++ shlibpath_var=LIBPATH ++ ;; ++ ++osf3* | osf4* | osf5*) ++ version_type=osf ++ need_version=no ++ need_lib_prefix=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" ++ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ++ hardcode_into_libs=yes ++ ;; ++ ++sco3.2v5*) ++ version_type=osf ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++solaris*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ # ldd complains unless libraries are executable ++ postinstall_cmds='chmod +x $lib' ++ ;; ++ ++sunos4*) ++ version_type=sunos ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ if test "$with_gnu_ld" = yes; then ++ need_lib_prefix=no ++ fi ++ need_version=yes ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_vendor in ++ sni) ++ shlibpath_overrides_runpath=no ++ need_lib_prefix=no ++ export_dynamic_flag_spec='${wl}-Blargedynsym' ++ runpath_var=LD_RUN_PATH ++ ;; ++ siemens) ++ need_lib_prefix=no ++ ;; ++ motorola) ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ++ ;; ++ esac ++ ;; ++ ++uts4*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++dgux*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++sysv4*MP*) ++ if test -d /usr/nec ;then ++ version_type=linux ++ library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so' ++ soname_spec='$libname.so.$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ fi ++ ;; ++ ++*) ++ dynamic_linker=no ++ ;; ++esac ++AC_MSG_RESULT([$dynamic_linker]) ++test "$dynamic_linker" = no && can_build_shared=no ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# Report the final consequences. ++AC_MSG_CHECKING([if libtool supports shared libraries]) ++AC_MSG_RESULT([$can_build_shared]) ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([whether to build shared libraries]) ++test "$can_build_shared" = "no" && enable_shared=no ++ ++# On AIX, shared libraries and static libraries use the same namespace, and ++# are all built from PIC. ++case "$host_os" in ++aix3*) ++ test "$enable_shared" = yes && enable_static=no ++ if test -n "$RANLIB"; then ++ archive_cmds="$archive_cmds~\$RANLIB \$lib" ++ postinstall_cmds='$RANLIB $lib' ++ fi ++ ;; ++ ++aix4*) ++ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then ++ test "$enable_shared" = yes && enable_static=no ++ fi ++ ;; ++esac ++AC_MSG_RESULT([$enable_shared]) ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([whether to build static libraries]) ++# Make sure either enable_shared or enable_static is yes. ++test "$enable_shared" = yes || enable_static=yes ++AC_MSG_RESULT([$enable_static]) ++## ++## END FIXME ++ ++if test "$hardcode_action" = relink; then ++ # Fast installation is not supported ++ enable_fast_install=no ++elif test "$shlibpath_overrides_runpath" = yes || ++ test "$enable_shared" = no; then ++ # Fast installation is not necessary ++ enable_fast_install=needless ++fi ++ ++variables_saved_for_relink="PATH $shlibpath_var $runpath_var" ++if test "$GCC" = yes; then ++ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" ++fi ++ ++AC_LIBTOOL_DLOPEN_SELF ++ ++## FIXME: this should be a separate macro ++## ++if test "$enable_shared" = yes && test "$GCC" = yes; then ++ case $archive_cmds in ++ *'~'*) ++ # FIXME: we may have to deal with multi-command sequences. ++ ;; ++ '$CC '*) ++ # Test whether the compiler implicitly links with -lc since on some ++ # systems, -lgcc has to come before -lc. If gcc already passes -lc ++ # to ld, don't add -lc before -lgcc. ++ AC_MSG_CHECKING([whether -lc should be explicitly linked in]) ++ AC_CACHE_VAL([lt_cv_archive_cmds_need_lc], ++ [$rm conftest* ++ echo 'static int dummy;' > conftest.$ac_ext ++ ++ if AC_TRY_EVAL(ac_compile); then ++ soname=conftest ++ lib=conftest ++ libobjs=conftest.$ac_objext ++ deplibs= ++ wl=$lt_cv_prog_cc_wl ++ compiler_flags=-v ++ linker_flags=-v ++ verstring= ++ output_objdir=. ++ libname=conftest ++ save_allow_undefined_flag=$allow_undefined_flag ++ allow_undefined_flag= ++ if AC_TRY_EVAL(archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) ++ then ++ lt_cv_archive_cmds_need_lc=no ++ else ++ lt_cv_archive_cmds_need_lc=yes ++ fi ++ allow_undefined_flag=$save_allow_undefined_flag ++ else ++ cat conftest.err 1>&5 ++ fi]) ++ AC_MSG_RESULT([$lt_cv_archive_cmds_need_lc]) ++ ;; ++ esac ++fi ++need_lc=${lt_cv_archive_cmds_need_lc-yes} ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# The second clause should only fire when bootstrapping the ++# libtool distribution, otherwise you forgot to ship ltmain.sh ++# with your package, and you will get complaints that there are ++# no rules to generate ltmain.sh. ++if test -f "$ltmain"; then ++ : ++else ++ # If there is no Makefile yet, we rely on a make rule to execute ++ # `config.status --recheck' to rerun these tests and create the ++ # libtool script then. ++ test -f Makefile && make "$ltmain" ++fi + +-# Actually configure libtool. ac_aux_dir is where install-sh is found. +-CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ +-LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \ +-LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \ +-DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \ +-${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \ +-$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target \ +-|| AC_MSG_ERROR([libtool configure failed]) ++if test -f "$ltmain"; then ++ trap "$rm \"${ofile}T\"; exit 1" 1 2 15 ++ $rm -f "${ofile}T" ++ ++ echo creating $ofile ++ ++ # Now quote all the things that may contain metacharacters while being ++ # careful not to overquote the AC_SUBSTed values. We take copies of the ++ # variables and quote the copies for generation of the libtool script. ++ for var in echo old_CC old_CFLAGS SED \ ++ AR AR_FLAGS CC LD LN_S NM SHELL \ ++ reload_flag reload_cmds wl \ ++ pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \ ++ thread_safe_flag_spec whole_archive_flag_spec libname_spec \ ++ library_names_spec soname_spec \ ++ RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \ ++ old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds \ ++ postuninstall_cmds extract_expsyms_cmds old_archive_from_expsyms_cmds \ ++ old_striplib striplib file_magic_cmd export_symbols_cmds \ ++ deplibs_check_method allow_undefined_flag no_undefined_flag \ ++ finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \ ++ global_symbol_to_c_name_address \ ++ hardcode_libdir_flag_spec hardcode_libdir_separator \ ++ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ ++ compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do ++ ++ case $var in ++ reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \ ++ old_postinstall_cmds | old_postuninstall_cmds | \ ++ export_symbols_cmds | archive_cmds | archive_expsym_cmds | \ ++ extract_expsyms_cmds | old_archive_from_expsyms_cmds | \ ++ postinstall_cmds | postuninstall_cmds | \ ++ finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) ++ # Double-quote double-evaled strings. ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ++ ;; ++ *) ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ++ ;; ++ esac ++ done + +-# Reload cache, that may have been modified by ltconfig +-AC_CACHE_LOAD ++ cat <<__EOF__ > "${ofile}T" ++#! $SHELL + +-# This can be used to rebuild libtool when needed +-LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh" ++# `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. ++# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) ++# NOTE: Changes made to this file will be lost: look at ltmain.sh. ++# ++# Copyright (C) 1996-2000 Free Software Foundation, Inc. ++# Originally by Gordon Matzigkeit , 1996 ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, but ++# WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# ++# As a special exception to the GNU General Public License, if you ++# distribute this file as part of a program that contains a ++# configuration script generated by Autoconf, you may include it under ++# the same distribution terms that you use for the rest of that program. + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' +-AC_SUBST(LIBTOOL)dnl ++# A sed that does not truncate output. ++SED=$lt_SED + +-# Redirect the config.log output again, so that the ltconfig log is not +-# clobbered by the next message. +-exec 5>>./config.log +-]) ++# Sed that helps us avoid accidentally triggering echo(1) options like -n. ++Xsed="${SED} -e s/^X//" + +-AC_DEFUN(AC_LIBTOOL_SETUP, +-[AC_PREREQ(2.13)dnl +-AC_REQUIRE([AC_ENABLE_SHARED])dnl +-AC_REQUIRE([AC_ENABLE_STATIC])dnl +-AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl +-AC_REQUIRE([AC_CANONICAL_HOST])dnl +-AC_REQUIRE([AC_CANONICAL_BUILD])dnl +-AC_REQUIRE([AC_PROG_RANLIB])dnl +-AC_REQUIRE([AC_PROG_CC])dnl +-AC_REQUIRE([AC_PROG_LD])dnl +-AC_REQUIRE([AC_PROG_NM])dnl +-AC_REQUIRE([AC_PROG_LN_S])dnl +-dnl ++# The HP-UX ksh and POSIX shell print the target directory to stdout ++# if CDPATH is set. ++if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi + +-case "$target" in +-NONE) lt_target="$host" ;; +-*) lt_target="$target" ;; +-esac ++# ### BEGIN LIBTOOL CONFIG + +-# Check for any special flags to pass to ltconfig. +-libtool_flags="--cache-file=$cache_file" +-test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared" +-test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static" +-test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install" +-test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc" +-test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld" +-ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], +-[libtool_flags="$libtool_flags --enable-dlopen"]) +-ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], +-[libtool_flags="$libtool_flags --enable-win32-dll"]) +-AC_ARG_ENABLE(libtool-lock, +- [ --disable-libtool-lock avoid locking (might break parallel builds)]) +-test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock" +-test x"$silent" = xyes && libtool_flags="$libtool_flags --silent" ++# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: + +-# Some flags need to be propagated to the compiler or linker for good +-# libtool support. +-case "$lt_target" in +-*-*-irix6*) +- # Find out which ABI we are using. +- echo '[#]line __oline__ "configure"' > conftest.$ac_ext +- if AC_TRY_EVAL(ac_compile); then +- case "`/usr/bin/file conftest.o`" in +- *32-bit*) +- LD="${LD-ld} -32" +- ;; +- *N32*) +- LD="${LD-ld} -n32" +- ;; +- *64-bit*) +- LD="${LD-ld} -64" +- ;; +- esac +- fi +- rm -rf conftest* +- ;; ++# Shell to use when invoking shell scripts. ++SHELL=$lt_SHELL + +-*-*-sco3.2v5*) +- # On SCO OpenServer 5, we need -belf to get full-featured binaries. +- SAVE_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS -belf" +- AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, +- [AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])]) +- if test x"$lt_cv_cc_needs_belf" != x"yes"; then +- # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf +- CFLAGS="$SAVE_CFLAGS" +- fi +- ;; ++# Whether or not to build shared libraries. ++build_libtool_libs=$enable_shared + +-ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], +-[*-*-cygwin* | *-*-mingw*) +- AC_CHECK_TOOL(DLLTOOL, dlltool, false) +- AC_CHECK_TOOL(AS, as, false) +- AC_CHECK_TOOL(OBJDUMP, objdump, false) +- ;; +-]) +-esac +-]) ++# Whether or not to build static libraries. ++build_old_libs=$enable_static ++ ++# Whether or not to add -lc for building shared libraries. ++build_libtool_need_lc=$need_lc ++ ++# Whether or not to optimize for fast installation. ++fast_install=$enable_fast_install ++ ++# The host system. ++host_alias=$host_alias ++host=$host ++ ++# An echo program that does not interpret backslashes. ++echo=$lt_echo ++ ++# The archiver. ++AR=$lt_AR ++AR_FLAGS=$lt_AR_FLAGS ++ ++# The default C compiler. ++CC=$lt_CC ++ ++# Is the compiler the GNU C compiler? ++with_gcc=$GCC ++ ++# The linker used to build libraries. ++LD=$lt_LD ++ ++# Whether we need hard or soft links. ++LN_S=$lt_LN_S ++ ++# A BSD-compatible nm program. ++NM=$lt_NM ++ ++# A symbol stripping program ++STRIP="$STRIP" ++ ++# Used to examine libraries when file_magic_cmd begins "file" ++MAGIC_CMD=$MAGIC_CMD ++ ++# Used on cygwin: DLL creation program. ++DLLTOOL="$DLLTOOL" ++ ++# Used on cygwin: object dumper. ++OBJDUMP="$OBJDUMP" ++ ++# Used on cygwin: assembler. ++AS="$AS" ++ ++# The name of the directory that contains temporary libtool files. ++objdir=$objdir ++ ++# How to create reloadable object files. ++reload_flag=$lt_reload_flag ++reload_cmds=$lt_reload_cmds ++ ++# How to pass a linker flag through the compiler. ++wl=$lt_wl ++ ++# Object file suffix (normally "o"). ++objext="$ac_objext" ++ ++# Old archive suffix (normally "a"). ++libext="$libext" ++ ++# Executable file suffix (normally ""). ++exeext="$exeext" ++ ++# Additional compiler flags for building library objects. ++pic_flag=$lt_pic_flag ++pic_mode=$pic_mode ++ ++# Does compiler simultaneously support -c and -o options? ++compiler_c_o=$lt_compiler_c_o ++ ++# Can we write directly to a .lo ? ++compiler_o_lo=$lt_compiler_o_lo ++ ++# Must we lock files when doing compilation ? ++need_locks=$lt_need_locks ++ ++# Do we need the lib prefix for modules? ++need_lib_prefix=$need_lib_prefix ++ ++# Do we need a version for libraries? ++need_version=$need_version ++ ++# Whether dlopen is supported. ++dlopen_support=$enable_dlopen ++ ++# Whether dlopen of programs is supported. ++dlopen_self=$enable_dlopen_self ++ ++# Whether dlopen of statically linked programs is supported. ++dlopen_self_static=$enable_dlopen_self_static ++ ++# Compiler flag to prevent dynamic linking. ++link_static_flag=$lt_link_static_flag ++ ++# Compiler flag to turn off builtin functions. ++no_builtin_flag=$lt_no_builtin_flag ++ ++# Compiler flag to allow reflexive dlopens. ++export_dynamic_flag_spec=$lt_export_dynamic_flag_spec ++ ++# Compiler flag to generate shared objects directly from archives. ++whole_archive_flag_spec=$lt_whole_archive_flag_spec ++ ++# Compiler flag to generate thread-safe objects. ++thread_safe_flag_spec=$lt_thread_safe_flag_spec ++ ++# Library versioning type. ++version_type=$version_type ++ ++# Format of library name prefix. ++libname_spec=$lt_libname_spec ++ ++# List of archive names. First name is the real one, the rest are links. ++# The last name is the one that the linker finds with -lNAME. ++library_names_spec=$lt_library_names_spec ++ ++# The coded name of the library, if different from the real name. ++soname_spec=$lt_soname_spec ++ ++# Commands used to build and install an old-style archive. ++RANLIB=$lt_RANLIB ++old_archive_cmds=$lt_old_archive_cmds ++old_postinstall_cmds=$lt_old_postinstall_cmds ++old_postuninstall_cmds=$lt_old_postuninstall_cmds ++ ++# Create an old-style archive from a shared archive. ++old_archive_from_new_cmds=$lt_old_archive_from_new_cmds ++ ++# Create a temporary old-style archive to link instead of a shared archive. ++old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds ++ ++# Commands used to build and install a shared archive. ++archive_cmds=$lt_archive_cmds ++archive_expsym_cmds=$lt_archive_expsym_cmds ++postinstall_cmds=$lt_postinstall_cmds ++postuninstall_cmds=$lt_postuninstall_cmds ++ ++# Commands to strip libraries. ++old_striplib=$lt_old_striplib ++striplib=$lt_striplib ++ ++# Method to check whether dependent libraries are shared objects. ++deplibs_check_method=$lt_deplibs_check_method ++ ++# Command to use when deplibs_check_method == file_magic. ++file_magic_cmd=$lt_file_magic_cmd ++ ++# Flag that allows shared libraries with undefined symbols to be built. ++allow_undefined_flag=$lt_allow_undefined_flag ++ ++# Flag that forces no undefined symbols. ++no_undefined_flag=$lt_no_undefined_flag ++ ++# Commands used to finish a libtool library installation in a directory. ++finish_cmds=$lt_finish_cmds ++ ++# Same as above, but a single script fragment to be evaled but not shown. ++finish_eval=$lt_finish_eval ++ ++# Take the output of nm and produce a listing of raw symbols and C names. ++global_symbol_pipe=$lt_global_symbol_pipe ++ ++# Transform the output of nm in a proper C declaration ++global_symbol_to_cdecl=$lt_global_symbol_to_cdecl ++ ++# Transform the output of nm in a C name address pair ++global_symbol_to_c_name_address=$lt_global_symbol_to_c_name_address ++ ++# This is the shared library runtime path variable. ++runpath_var=$runpath_var ++ ++# This is the shared library path variable. ++shlibpath_var=$shlibpath_var ++ ++# Is shlibpath searched before the hard-coded library search path? ++shlibpath_overrides_runpath=$shlibpath_overrides_runpath ++ ++# How to hardcode a shared library path into an executable. ++hardcode_action=$hardcode_action ++ ++# Whether we should hardcode library paths into libraries. ++hardcode_into_libs=$hardcode_into_libs ++ ++# Flag to hardcode \$libdir into a binary during linking. ++# This must work even if \$libdir does not exist. ++hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec ++ ++# Whether we need a single -rpath flag with a separated argument. ++hardcode_libdir_separator=$lt_hardcode_libdir_separator ++ ++# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the ++# resulting binary. ++hardcode_direct=$hardcode_direct ++ ++# Set to yes if using the -LDIR flag during linking hardcodes DIR into the ++# resulting binary. ++hardcode_minus_L=$hardcode_minus_L ++ ++# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into ++# the resulting binary. ++hardcode_shlibpath_var=$hardcode_shlibpath_var ++ ++# Variables whose values should be saved in libtool wrapper scripts and ++# restored at relink time. ++variables_saved_for_relink="$variables_saved_for_relink" ++ ++# Whether libtool must link a program against all its dependency libraries. ++link_all_deplibs=$link_all_deplibs ++ ++# Compile-time system search path for libraries ++sys_lib_search_path_spec=$lt_sys_lib_search_path_spec ++ ++# Run-time system search path for libraries ++sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec ++ ++# Fix the shell variable \$srcfile for the compiler. ++fix_srcfile_path="$fix_srcfile_path" ++ ++# Set to yes if exported symbols are required. ++always_export_symbols=$always_export_symbols ++ ++# The commands to list exported symbols. ++export_symbols_cmds=$lt_export_symbols_cmds ++ ++# The commands to extract the exported symbol list from a shared archive. ++extract_expsyms_cmds=$lt_extract_expsyms_cmds ++ ++# Symbols that should not be listed in the preloaded symbols. ++exclude_expsyms=$lt_exclude_expsyms ++ ++# Symbols that must always be exported. ++include_expsyms=$lt_include_expsyms ++ ++# ### END LIBTOOL CONFIG ++ ++__EOF__ ++ ++ case $host_os in ++ aix3*) ++ cat <<\EOF >> "${ofile}T" ++ ++# AIX sometimes has problems with the GCC collect2 program. For some ++# reason, if we set the COLLECT_NAMES environment variable, the problems ++# vanish in a puff of smoke. ++if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++fi ++EOF ++ ;; ++ esac ++ ++ case $host_os in ++ cygwin* | mingw* | pw32* | os2*) ++ cat <<'EOF' >> "${ofile}T" ++ # This is a source program that is used to create dlls on Windows ++ # Don't remove nor modify the starting and closing comments ++# /* ltdll.c starts here */ ++# #define WIN32_LEAN_AND_MEAN ++# #include ++# #undef WIN32_LEAN_AND_MEAN ++# #include ++# ++# #ifndef __CYGWIN__ ++# # ifdef __CYGWIN32__ ++# # define __CYGWIN__ __CYGWIN32__ ++# # endif ++# #endif ++# ++# #ifdef __cplusplus ++# extern "C" { ++# #endif ++# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); ++# #ifdef __cplusplus ++# } ++# #endif ++# ++# #ifdef __CYGWIN__ ++# #include ++# DECLARE_CYGWIN_DLL( DllMain ); ++# #endif ++# HINSTANCE __hDllInstance_base; ++# ++# BOOL APIENTRY ++# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) ++# { ++# __hDllInstance_base = hInst; ++# return TRUE; ++# } ++# /* ltdll.c ends here */ ++ # This is a source program that is used to create import libraries ++ # on Windows for dlls which lack them. Don't remove nor modify the ++ # starting and closing comments ++# /* impgen.c starts here */ ++# /* Copyright (C) 1999-2000 Free Software Foundation, Inc. ++# ++# This file is part of GNU libtool. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# */ ++# ++# #include /* for printf() */ ++# #include /* for open(), lseek(), read() */ ++# #include /* for O_RDONLY, O_BINARY */ ++# #include /* for strdup() */ ++# ++# /* O_BINARY isn't required (or even defined sometimes) under Unix */ ++# #ifndef O_BINARY ++# #define O_BINARY 0 ++# #endif ++# ++# static unsigned int ++# pe_get16 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[2]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 2); ++# return b[0] + (b[1]<<8); ++# } ++# ++# static unsigned int ++# pe_get32 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[4]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 4); ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# static unsigned int ++# pe_as32 (ptr) ++# void *ptr; ++# { ++# unsigned char *b = ptr; ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# int ++# main (argc, argv) ++# int argc; ++# char *argv[]; ++# { ++# int dll; ++# unsigned long pe_header_offset, opthdr_ofs, num_entries, i; ++# unsigned long export_rva, export_size, nsections, secptr, expptr; ++# unsigned long name_rvas, nexp; ++# unsigned char *expdata, *erva; ++# char *filename, *dll_name; ++# ++# filename = argv[1]; ++# ++# dll = open(filename, O_RDONLY|O_BINARY); ++# if (dll < 1) ++# return 1; ++# ++# dll_name = filename; ++# ++# for (i=0; filename[i]; i++) ++# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':') ++# dll_name = filename + i +1; ++# ++# pe_header_offset = pe_get32 (dll, 0x3c); ++# opthdr_ofs = pe_header_offset + 4 + 20; ++# num_entries = pe_get32 (dll, opthdr_ofs + 92); ++# ++# if (num_entries < 1) /* no exports */ ++# return 1; ++# ++# export_rva = pe_get32 (dll, opthdr_ofs + 96); ++# export_size = pe_get32 (dll, opthdr_ofs + 100); ++# nsections = pe_get16 (dll, pe_header_offset + 4 +2); ++# secptr = (pe_header_offset + 4 + 20 + ++# pe_get16 (dll, pe_header_offset + 4 + 16)); ++# ++# expptr = 0; ++# for (i = 0; i < nsections; i++) ++# { ++# char sname[8]; ++# unsigned long secptr1 = secptr + 40 * i; ++# unsigned long vaddr = pe_get32 (dll, secptr1 + 12); ++# unsigned long vsize = pe_get32 (dll, secptr1 + 16); ++# unsigned long fptr = pe_get32 (dll, secptr1 + 20); ++# lseek(dll, secptr1, SEEK_SET); ++# read(dll, sname, 8); ++# if (vaddr <= export_rva && vaddr+vsize > export_rva) ++# { ++# expptr = fptr + (export_rva - vaddr); ++# if (export_rva + export_size > vaddr + vsize) ++# export_size = vsize - (export_rva - vaddr); ++# break; ++# } ++# } ++# ++# expdata = (unsigned char*)malloc(export_size); ++# lseek (dll, expptr, SEEK_SET); ++# read (dll, expdata, export_size); ++# erva = expdata - export_rva; ++# ++# nexp = pe_as32 (expdata+24); ++# name_rvas = pe_as32 (expdata+32); ++# ++# printf ("EXPORTS\n"); ++# for (i = 0; i> "${ofile}T" || (rm -f "${ofile}T"; exit 1) ++ ++ mv -f "${ofile}T" "$ofile" || \ ++ (rm -f "$ofile" && cp "${ofile}T" "$ofile" && rm -f "${ofile}T") ++ chmod +x "$ofile" ++fi ++## ++## END FIXME ++ ++])# _LT_AC_LTCONFIG_HACK + + # AC_LIBTOOL_DLOPEN - enable checks for dlopen support +-AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])]) ++AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])]) + + # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's +-AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])]) ++AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])]) + + # AC_ENABLE_SHARED - implement the --enable-shared flag + # Usage: AC_ENABLE_SHARED[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_SHARED, [dnl +-define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_SHARED], ++[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(shared, + changequote(<<, >>)dnl + << --enable-shared[=PKGS] build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) +@@ -167,21 +3062,22 @@ + ]) + + # AC_DISABLE_SHARED - set the default shared flag to --disable-shared +-AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_DISABLE_SHARED], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_SHARED(no)]) + + # AC_ENABLE_STATIC - implement the --enable-static flag + # Usage: AC_ENABLE_STATIC[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_STATIC, [dnl +-define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_STATIC], ++[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(static, + changequote(<<, >>)dnl + << --enable-static[=PKGS] build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) +@@ -200,7 +3096,8 @@ + ]) + + # AC_DISABLE_STATIC - set the default static flag to --disable-static +-AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_DISABLE_STATIC], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_STATIC(no)]) + + +@@ -208,14 +3105,14 @@ + # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl +-define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_FAST_INSTALL], ++[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(fast-install, + changequote(<<, >>)dnl + << --enable-fast-install[=PKGS] optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) +@@ -233,29 +3130,120 @@ + enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl + ]) + +-# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install +-AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++# AC_DISABLE_FAST_INSTALL - set the default to --disable-fast-install ++AC_DEFUN([AC_DISABLE_FAST_INSTALL], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_FAST_INSTALL(no)]) + ++# AC_LIBTOOL_PICMODE - implement the --with-pic flag ++# Usage: AC_LIBTOOL_PICMODE[(MODE)] ++# Where MODE is either `yes' or `no'. If omitted, it defaults to ++# `both'. ++AC_DEFUN([AC_LIBTOOL_PICMODE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++pic_mode=ifelse($#,1,$1,default)]) ++ ++ ++# AC_PATH_TOOL_PREFIX - find a file program which can recognise shared library ++AC_DEFUN([AC_PATH_TOOL_PREFIX], ++[AC_MSG_CHECKING([for $1]) ++AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, ++[case $MAGIC_CMD in ++ /*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ++ ;; ++ ?:/*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path. ++ ;; ++ *) ++ ac_save_MAGIC_CMD="$MAGIC_CMD" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++dnl $ac_dummy forces splitting on constant user-supplied paths. ++dnl POSIX.2 word splitting is done only on the output of word expansions, ++dnl not every word. This closes a longstanding sh security hole. ++ ac_dummy="ifelse([$2], , $PATH, [$2])" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$1; then ++ lt_cv_path_MAGIC_CMD="$ac_dir/$1" ++ if test -n "$file_magic_test_file"; then ++ case $deplibs_check_method in ++ "file_magic "*) ++ file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" ++ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | ++ egrep "$file_magic_regex" > /dev/null; then ++ : ++ else ++ cat <&2 ++ ++*** Warning: the command libtool uses to detect shared libraries, ++*** $file_magic_cmd, produces output that libtool cannot recognize. ++*** The result is that libtool may fail to recognize shared libraries ++*** as such. This will affect the creation of libtool libraries that ++*** depend on shared libraries, but programs linked with such libtool ++*** libraries will work regardless of this problem. Nevertheless, you ++*** may want to report the problem to your system manager and/or to ++*** bug-libtool@gnu.org ++ ++EOF ++ fi ;; ++ esac ++ fi ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ MAGIC_CMD="$ac_save_MAGIC_CMD" ++ ;; ++esac]) ++MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++if test -n "$MAGIC_CMD"; then ++ AC_MSG_RESULT($MAGIC_CMD) ++else ++ AC_MSG_RESULT(no) ++fi ++]) ++ ++ ++# AC_PATH_MAGIC - find a file program which can recognise a shared library ++AC_DEFUN([AC_PATH_MAGIC], ++[AC_REQUIRE([AC_CHECK_TOOL_PREFIX])dnl ++AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin:$PATH) ++if test -z "$lt_cv_path_MAGIC_CMD"; then ++ if test -n "$ac_tool_prefix"; then ++ AC_PATH_TOOL_PREFIX(file, /usr/bin:$PATH) ++ else ++ MAGIC_CMD=: ++ fi ++fi ++]) ++ ++ + # AC_PROG_LD - find the path to the GNU or non-GNU linker +-AC_DEFUN(AC_PROG_LD, ++AC_DEFUN([AC_PROG_LD], + [AC_ARG_WITH(gnu-ld, + [ --with-gnu-ld assume the C compiler uses GNU ld [default=no]], + test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no) + AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_CANONICAL_HOST])dnl + AC_REQUIRE([AC_CANONICAL_BUILD])dnl ++AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl + ac_prog=ld +-if test "$ac_cv_prog_gcc" = yes; then ++if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by GCC]) +- ac_prog=`($CC -print-prog-name=ld) 2>&5` +- case "$ac_prog" in ++ case $host in ++ *-*-mingw*) ++ # gcc leaves a trailing carriage return which upsets mingw ++ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; ++ *) ++ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; ++ esac ++ case $ac_prog in + # Accept absolute paths. +-changequote(,)dnl +- [\\/]* | [A-Za-z]:[\\/]*) +- re_direlt='/[^/][^/]*/\.\./' +-changequote([,])dnl ++ [[\\/]]* | [[A-Za-z]]:[[\\/]]*) ++ re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the path of ld + ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` + while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do +@@ -277,17 +3265,17 @@ + else + AC_MSG_CHECKING([for non-GNU ld]) + fi +-AC_CACHE_VAL(ac_cv_path_LD, ++AC_CACHE_VAL(lt_cv_path_LD, + [if test -z "$LD"; then +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then +- ac_cv_path_LD="$ac_dir/$ac_prog" ++ lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some GNU ld's only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. +- if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then ++ if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then + test "$with_gnu_ld" != no && break + else + test "$with_gnu_ld" != yes && break +@@ -296,9 +3284,9 @@ + done + IFS="$ac_save_ifs" + else +- ac_cv_path_LD="$LD" # Let the user override the test with a path. ++ lt_cv_path_LD="$LD" # Let the user override the test with a path. + fi]) +-LD="$ac_cv_path_LD" ++LD="$lt_cv_path_LD" + if test -n "$LD"; then + AC_MSG_RESULT($LD) + else +@@ -308,56 +3296,255 @@ + AC_PROG_LD_GNU + ]) + +-AC_DEFUN(AC_PROG_LD_GNU, +-[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld, ++# AC_PROG_LD_GNU - ++AC_DEFUN([AC_PROG_LD_GNU], ++[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld, + [# I'd rather use --version here, but apparently some GNU ld's only accept -v. + if $LD -v 2>&1 &5; then +- ac_cv_prog_gnu_ld=yes ++ lt_cv_prog_gnu_ld=yes + else +- ac_cv_prog_gnu_ld=no ++ lt_cv_prog_gnu_ld=no + fi]) ++with_gnu_ld=$lt_cv_prog_gnu_ld ++]) ++ ++# AC_PROG_LD_RELOAD_FLAG - find reload flag for linker ++# -- PORTME Some linkers may need a different reload flag. ++AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], ++[AC_CACHE_CHECK([for $LD option to reload object files], lt_cv_ld_reload_flag, ++[lt_cv_ld_reload_flag='-r']) ++reload_flag=$lt_cv_ld_reload_flag ++test -n "$reload_flag" && reload_flag=" $reload_flag" ++]) ++ ++# AC_DEPLIBS_CHECK_METHOD - how to check for library dependencies ++# -- PORTME fill in with the dynamic library characteristics ++AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], ++[AC_CACHE_CHECK([how to recognise dependent libraries], ++lt_cv_deplibs_check_method, ++[lt_cv_file_magic_cmd='$MAGIC_CMD' ++lt_cv_file_magic_test_file= ++lt_cv_deplibs_check_method='unknown' ++# Need to set the preceding variable on all platforms that support ++# interlibrary dependencies. ++# 'none' -- dependencies not supported. ++# `unknown' -- same as none, but documents that we really don't know. ++# 'pass_all' -- all dependencies passed with no checks. ++# 'test_compile' -- check by making test program. ++# 'file_magic [[regex]]' -- check by looking for files in library path ++# which responds to the $file_magic_cmd with a given egrep regex. ++# If you have `file' or equivalent on your system and you're not sure ++# whether `pass_all' will *always* work, you probably want this one. ++ ++case $host_os in ++aix4* | aix5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++beos*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++bsdi4*) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' ++ lt_cv_file_magic_cmd='$OBJDUMP -f' ++ ;; ++ ++darwin* | rhapsody*) ++ lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ case "$host_os" in ++ rhapsody* | darwin1.[[012]]) ++ lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1` ++ ;; ++ *) # Darwin 1.3 on ++ lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib' ++ ;; ++ esac ++ ;; ++ ++freebsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ case $host_cpu in ++ i*86 ) ++ # Not sure whether the presence of OpenBSD here was a mistake. ++ # Let's accept both of them until this is cleared up. ++ lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ ;; ++ esac ++ else ++ lt_cv_deplibs_check_method=pass_all ++ fi ++ ;; ++ ++gnu*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++hpux10.20*|hpux11*) ++ lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libc.sl ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ irix5* | nonstopux*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1" ++ ;; ++ *) ++ case $LD in ++ *-32|*"-32 ") libmagic=32-bit;; ++ *-n32|*"-n32 ") libmagic=N32;; ++ *-64|*"-64 ") libmagic=64-bit;; ++ *) libmagic=never-match;; ++ esac ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[[1234]] dynamic lib MIPS - version 1" ++ ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*` ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ case $host_cpu in ++ alpha* | hppa* | i*86 | mips | mipsel | powerpc* | sparc* | ia64* | arm* | m68k) ++ lt_cv_deplibs_check_method=pass_all ;; ++ *) ++ # glibc up to 2.1.1 does not perform some relocations on ARM ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so` ++ ;; ++ ++netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so\.[[0-9]]+\.[[0-9]]+$' ++ else ++ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so$' ++ fi ++ ;; ++ ++newos6*) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libnls.so ++ ;; ++ ++openbsd*) ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object' ++ else ++ lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' ++ fi ++ ;; ++ ++osf3* | osf4* | osf5*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method='file_magic COFF format alpha shared library' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sco3.2v5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++solaris*) ++ lt_cv_deplibs_check_method=pass_all ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ ++sysv5uw[[78]]* | sysv4*uw2*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ case $host_vendor in ++ motorola) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ++ ;; ++ ncr) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ sequent) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ++ ;; ++ sni) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ siemens) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ esac ++ ;; ++esac ++]) ++file_magic_cmd=$lt_cv_file_magic_cmd ++deplibs_check_method=$lt_cv_deplibs_check_method + ]) + ++ + # AC_PROG_NM - find the path to a BSD-compatible name lister +-AC_DEFUN(AC_PROG_NM, +-[AC_MSG_CHECKING([for BSD-compatible nm]) +-AC_CACHE_VAL(ac_cv_path_NM, ++AC_DEFUN([AC_PROG_NM], ++[AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl ++AC_MSG_CHECKING([for BSD-compatible nm]) ++AC_CACHE_VAL(lt_cv_path_NM, + [if test -n "$NM"; then + # Let the user override the test. +- ac_cv_path_NM="$NM" ++ lt_cv_path_NM="$NM" + else +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do + test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then ++ tmp_nm=$ac_dir/${ac_tool_prefix}nm ++ if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored +- if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -B" ++ # Tru64's nm complains that /dev/null is an invalid object file ++ if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -B" + break +- elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -p" ++ elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -p" + break + else +- ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but ++ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + fi + fi + done + IFS="$ac_save_ifs" +- test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm ++ test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm + fi]) +-NM="$ac_cv_path_NM" ++NM="$lt_cv_path_NM" + AC_MSG_RESULT([$NM]) + ]) + + # AC_CHECK_LIBM - check for math library +-AC_DEFUN(AC_CHECK_LIBM, ++AC_DEFUN([AC_CHECK_LIBM], + [AC_REQUIRE([AC_CANONICAL_HOST])dnl + LIBM= +-case "$lt_target" in +-*-*-beos* | *-*-cygwin*) ++case $host in ++*-*-beos* | *-*-cygwin* | *-*-pw32*) + # These system don't have libm + ;; + *-ncr-sysv4.3*) +@@ -371,33 +3558,41 @@ + ]) + + # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for +-# the libltdl convenience library, adds --enable-ltdl-convenience to +-# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor +-# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed +-# to be `${top_builddir}/libltdl'. Make sure you start DIR with +-# '${top_builddir}/' (note the single quotes!) if your package is not +-# flat, and, if you're not using automake, define top_builddir as +-# appropriate in the Makefiles. +-AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl +- case "$enable_ltdl_convenience" in ++# the libltdl convenience library and LTDLINCL to the include flags for ++# the libltdl header and adds --enable-ltdl-convenience to the ++# configure arguments. Note that LIBLTDL and LTDLINCL are not ++# AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If DIR is not ++# provided, it is assumed to be `libltdl'. LIBLTDL will be prefixed ++# with '${top_builddir}/' and LTDLINCL will be prefixed with ++# '${top_srcdir}/' (note the single quotes!). If your package is not ++# flat and you're not using automake, define top_builddir and ++# top_srcdir appropriately in the Makefiles. ++AC_DEFUN([AC_LIBLTDL_CONVENIENCE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++ case $enable_ltdl_convenience in + no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; + "") enable_ltdl_convenience=yes + ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; + esac +- LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdlc.la +- INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl']) ++ LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la ++ LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ++ # For backwards non-gettext consistent compatibility... ++ INCLTDL="$LTDLINCL" + ]) + + # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for +-# the libltdl installable library, and adds --enable-ltdl-install to +-# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor +-# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed +-# to be `${top_builddir}/libltdl'. Make sure you start DIR with +-# '${top_builddir}/' (note the single quotes!) if your package is not +-# flat, and, if you're not using automake, define top_builddir as +-# appropriate in the Makefiles. ++# the libltdl installable library and LTDLINCL to the include flags for ++# the libltdl header and adds --enable-ltdl-install to the configure ++# arguments. Note that LIBLTDL and LTDLINCL are not AC_SUBSTed, nor is ++# AC_CONFIG_SUBDIRS called. If DIR is not provided and an installed ++# libltdl is not found, it is assumed to be `libltdl'. LIBLTDL will ++# be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed ++# with '${top_srcdir}/' (note the single quotes!). If your package is ++# not flat and you're not using automake, define top_builddir and ++# top_srcdir appropriately in the Makefiles. + # In the future, this macro may have to be called after AC_PROG_LIBTOOL. +-AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_LIBLTDL_INSTALLABLE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_CHECK_LIB(ltdl, main, + [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], + [if test x"$enable_ltdl_install" = xno; then +@@ -408,23 +3603,116 @@ + ]) + if test x"$enable_ltdl_install" = x"yes"; then + ac_configure_args="$ac_configure_args --enable-ltdl-install" +- LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdl.la +- INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl']) ++ LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la ++ LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) + else + ac_configure_args="$ac_configure_args --enable-ltdl-install=no" + LIBLTDL="-lltdl" +- INCLTDL= ++ LTDLINCL= + fi ++ # For backwards non-gettext consistent compatibility... ++ INCLTDL="$LTDLINCL" + ]) + +-dnl old names +-AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl +-AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl +-AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl +-AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl +-AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl +-AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl +-AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl ++# old names ++AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) ++AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) ++AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) ++AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) ++AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) ++AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) ++AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) ++ ++# This is just to silence aclocal about the macro not being used ++ifelse([AC_DISABLE_FAST_INSTALL]) ++ ++############################################################ ++# NOTE: This macro has been submitted for inclusion into # ++# GNU Autoconf as AC_PROG_SED. When it is available in # ++# a released version of Autoconf we should remove this # ++# macro and use it instead. # ++############################################################ ++# LT_AC_PROG_SED ++# -------------- ++# Check for a fully-functional sed program, that truncates ++# as few characters as possible. Prefer GNU sed if found. ++AC_DEFUN([LT_AC_PROG_SED], ++[AC_MSG_CHECKING([for a sed that does not truncate output]) ++AC_CACHE_VAL(lt_cv_path_SED, ++[# Loop through the user's path and test for sed and gsed. ++# Then use that list of sed's as ones to test for truncation. ++as_executable_p="test -f" ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_prog in sed gsed; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then ++ _sed_list="$_sed_list $as_dir/$ac_prog$ac_exec_ext" ++ fi ++ done ++ done ++done + +-dnl This is just to silence aclocal about the macro not being used +-ifelse([AC_DISABLE_FAST_INSTALL])dnl ++ # Create a temporary directory, and hook for its removal unless debugging. ++$debug || ++{ ++ trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 ++ trap '{ (exit 1); exit 1; }' 1 2 13 15 ++} ++ ++# Create a (secure) tmp directory for tmp files. ++: ${TMPDIR=/tmp} ++{ ++ tmp=`(umask 077 && mktemp -d -q "$TMPDIR/sedXXXXXX") 2>/dev/null` && ++ test -n "$tmp" && test -d "$tmp" ++} || ++{ ++ tmp=$TMPDIR/sed$$-$RANDOM ++ (umask 077 && mkdir $tmp) ++} || ++{ ++ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ++ { (exit 1); exit 1; } ++} ++ _max=0 ++ _count=0 ++ # Add /usr/xpg4/bin/sed as it is typically found on Solaris ++ # along with /bin/sed that truncates output. ++ for _sed in $_sed_list /usr/xpg4/bin/sed; do ++ test ! -f ${_sed} && break ++ cat /dev/null > "$tmp/sed.in" ++ _count=0 ++ echo ${ECHO_N-$ac_n} "0123456789${ECHO_C-$ac_c}" >"$tmp/sed.in" ++ # Check for GNU sed and select it if it is found. ++ if "${_sed}" --version 2>&1 < /dev/null | egrep '(GNU)' > /dev/null; then ++ lt_cv_path_SED=${_sed} ++ break ++ fi ++ while true; do ++ cat "$tmp/sed.in" "$tmp/sed.in" >"$tmp/sed.tmp" ++ mv "$tmp/sed.tmp" "$tmp/sed.in" ++ cp "$tmp/sed.in" "$tmp/sed.nl" ++ echo >>"$tmp/sed.nl" ++ ${_sed} -e 's/a$//' < "$tmp/sed.nl" >"$tmp/sed.out" || break ++ cmp -s "$tmp/sed.out" "$tmp/sed.nl" || break ++ # 40000 chars as input seems more than enough ++ test $_count -gt 10 && break ++ _count=`expr $_count + 1` ++ if test $_count -gt $_max; then ++ _max=$_count ++ lt_cv_path_SED=$_sed ++ fi ++ done ++ done ++ rm -rf "$tmp" ++]) ++if test "X$SED" != "X"; then ++ lt_cv_path_SED=$SED ++else ++ SED=$lt_cv_path_SED ++fi ++AC_MSG_RESULT([$SED]) ++]) +--- recode-3.6.orig/debian/shlibs ++++ recode-3.6/debian/shlibs +@@ -0,0 +1 @@ ++librecode 0 librecode0 (>= 3.6) +--- recode-3.6.orig/debian/recode-doc.prerm ++++ recode-3.6/debian/recode-doc.prerm +@@ -0,0 +1,7 @@ ++#!/bin/sh ++set -e ++if [ "$1" = "remove" ] || [ "$1" = "upgrade" ]; then ++ if command -v install-docs >/dev/null 2>&1; then ++ install-docs -r recode-doc ++ fi ++fi +--- recode-3.6.orig/debian/prerm ++++ recode-3.6/debian/prerm +@@ -0,0 +1,3 @@ ++#!/bin/sh ++set -e ++install-info --quiet --remove /usr/share/info/recode.info +--- recode-3.6.orig/debian/recode-doc.postinst ++++ recode-3.6/debian/recode-doc.postinst +@@ -0,0 +1,7 @@ ++#!/bin/sh ++set -e ++if [ "$1" = "configure" ]; then ++ if command -v install-docs >/dev/null 2>&1; then ++ install-docs -i /usr/share/doc-base/recode-doc ++ fi ++fi +--- recode-3.6.orig/debian/shlibs.local ++++ recode-3.6/debian/shlibs.local +@@ -0,0 +1 @@ ++librecode 0 librecode0 (>= 3.6) +--- recode-3.6.orig/debian/rules ++++ recode-3.6/debian/rules +@@ -0,0 +1,145 @@ ++#!/usr/bin/make -f ++ ++package = recode ++ ++CC = gcc ++CFLAGS = -g -Wall -D_REENTRANT ++INSTALL_PROGRAM = install ++ ++STRIP = true ++ATRIP = true ++ ++ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) ++ CFLAGS += -O2 ++endif ++ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) ++ INSTALL_PROGRAM += -s ++ STRIP=strip --strip-unneeded --remove-section=.comment --remove-section=.note ++ ATRIP=strip --strip-debug ++endif ++ ++build: ++ touch aclocal.m4 ++ touch configure ++ touch stamp-h.in ++ touch config.h.in ++ touch Makefile.in ++ touch m4/Makefile.in ++ touch doc/Makefile.in ++ touch lib/Makefile.in ++ touch libiconv/Makefile.in ++ touch i18n/Makefile.in ++ touch src/Makefile.in ++ touch tests/Makefile.in ++ touch contrib/Makefile.in ++ ./configure --prefix=/usr --without-included-gettext ++ $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" ++ $(MAKE) install DESTDIR=`pwd`/debian/tmp \ ++ INSTALL_PROGRAM="$(INSTALL_PROGRAM)" ++ touch build ++ ++clean: ++ rm -f build ++ rm -f i18n/*.mo ++ -$(MAKE) distclean ++ rm -f `find . -name "*~"` ++ rm -rf debian/tmp debian/files* core debian/substvars ++ cd debian && rm -rf recode librecode0 librecode-dev recode-doc ++ ++binary-indep: build ++ debian/rules recode-doc ++ ++binary-arch: build ++ debian/rules recode ++ debian/rules librecode0 ++ debian/rules librecode-dev ++ ++recode-doc: build ++ rm -rf debian/$@ ++ install -d debian/$@/DEBIAN debian/$@/usr/share/doc/$@ ++ install -d debian/$@/usr/share/doc-base ++ install -m 644 debian/$@.doc-base debian/$@/usr/share/doc-base/$@ ++ install -m 755 debian/$@.postinst debian/$@/DEBIAN/postinst ++ install -m 755 debian/$@.prerm debian/$@/DEBIAN/prerm ++ cd doc && texi2html -split_chapter $(package).texi ++ mv doc/$(package)/*.html debian/$@/usr/share/doc/$@ ++ rm -rf doc/$(package) ++ ln -s $(package)_toc.html debian/$@/usr/share/doc/$@/index.html ++ cp -p debian/copyright debian/$@/usr/share/doc/$@ ++ cp -p ChangeLog debian/$@/usr/share/doc/$@/changelog ++ cp -p debian/changelog debian/$@/usr/share/doc/$@/changelog.Debian ++ cd debian/$@/usr/share/doc/$@ && gzip -9 changelog changelog.Debian ++ dpkg-gencontrol -isp -p$@ -Pdebian/$@ ++ cd debian/$@ && \ ++ md5sum `find * -type f ! -regex "DEBIAN/.*"` > DEBIAN/md5sums ++ chown -R root:root debian/$@ ++ chmod -R go=rX debian/$@ ++ dpkg --build debian/$@ .. ++ ++recode: build ++ rm -rf debian/$@ ++ install -d debian/$@/DEBIAN debian/$@/usr/share/doc/$@ ++ cp -a debian/tmp/usr/share/locale debian/$@/usr/share ++ cp -a debian/tmp/usr/info debian/$@/usr/share ++ cp -a debian/tmp/usr/man debian/$@/usr/share ++ cp -a debian/tmp/usr/bin debian/$@/usr ++ cd debian && install -m 755 prerm postinst $@/DEBIAN ++ cp -p TODO NEWS THANKS doc/File-Latin1 debian/copyright \ ++ debian/$@/usr/share/doc/$@ ++ cp -p ChangeLog debian/$@/usr/share/doc/$@/changelog ++ cp -p debian/changelog debian/$@/usr/share/doc/$@/changelog.Debian ++ cd debian/$@/usr/share/doc/$@ && gzip -9 changelog changelog.Debian ++ gzip -9 debian/$@/usr/share/info/* ++ gzip -r9 debian/$@/usr/share/man ++ LD_LIBRARY_PATH=`pwd`/debian/tmp/usr/lib:$$LD_LIBRARY_PATH \ ++ dpkg-shlibdeps debian/tmp/usr/bin/recode ++ dpkg-gencontrol -isp -p$(package) -Pdebian/$@ ++ cd debian/$@ && \ ++ md5sum `find * -type f ! -regex "DEBIAN/.*"` > DEBIAN/md5sums ++ chown -R root:root debian/$@ ++ chmod -R go=rX debian/$@ ++ dpkg --build debian/$@ .. ++ ++librecode0: build ++ rm -rf debian/$@ ++ install -d debian/$@/DEBIAN debian/$@/usr/share/doc/$@ ++ install -d debian/$@/usr/lib ++ cp -a debian/tmp/usr/lib/librecode.so.0* debian/$@/usr/lib ++ install -m 755 debian/$@.postinst debian/$@/DEBIAN/postinst ++ install -m 644 debian/shlibs debian/$@/DEBIAN ++ cp -p debian/copyright debian/$@/usr/share/doc/$@ ++ cp -p ChangeLog debian/$@/usr/share/doc/$@/changelog ++ cp -p debian/changelog debian/$@/usr/share/doc/$@/changelog.Debian ++ cd debian/$@/usr/share/doc/$@ && gzip -9 changelog changelog.Debian ++ $(STRIP) debian/$@/usr/lib/*.so.0.0.0 ++ chmod -x debian/$@/usr/lib/* ++ dpkg-shlibdeps debian/$@/usr/lib/librecode.so.0 ++ dpkg-gencontrol -isp -p$@ -Pdebian/$@ ++ cd debian/$@ && \ ++ md5sum `find * -type f ! -regex "DEBIAN/.*"` > DEBIAN/md5sums ++ chown -R root:root debian/$@ ++ chmod -R go=rX debian/$@ ++ dpkg --build debian/$@ .. ++ ++librecode-dev: build ++ rm -rf debian/$@ ++ install -d debian/$@/DEBIAN debian/$@/usr/share/doc ++ install -d debian/$@/usr/lib ++ ln -s librecode0 debian/$@/usr/share/doc/$@ ++ cp -a debian/tmp/usr/lib/*.so debian/$@/usr/lib ++ cp -p debian/tmp/usr/lib/*.a debian/$@/usr/lib ++ cp -p debian/tmp/usr/lib/*.la debian/$@/usr/lib ++ cp -a debian/tmp/usr/include debian/$@/usr ++ $(ATRIP) debian/$@/usr/lib/*.a ++ chmod -x debian/$@/usr/lib/*.la ++ dpkg-gencontrol -isp -p$@ -Pdebian/$@ ++ cd debian/$@ && \ ++ md5sum `find * -type f ! -regex "DEBIAN/.*"` > DEBIAN/md5sums ++ chown -R root:root debian/$@ ++ chmod -R go=rX debian/$@ ++ dpkg --build debian/$@ .. ++ ++binary: binary-indep binary-arch ++ ++.PHONY: binary binary-arch binary-indep clean ++.PHONY: recode librecode0 librecode-dev recode-doc +--- recode-3.6.orig/debian/control ++++ recode-3.6/debian/control +@@ -0,0 +1,46 @@ ++Source: recode ++Section: text ++Priority: optional ++Maintainer: Santiago Vila ++Standards-Version: 3.7.2 ++Build-Depends: gettext ++Build-Depends-Indep: texi2html (>= 1.76) ++ ++Package: recode ++Architecture: any ++Depends: ${shlibs:Depends} ++Description: Character set conversion utility ++ Free `recode' converts files between character sets and usages. When ++ exact transliterations are not possible, it may get rid of the ++ offending characters or fall back on approximations. This program ++ recognizes or produces nearly 300 different character sets and is able ++ to transliterate files between almost any pair. Most RFC 1345 ++ character sets, and all `libiconv' character sets, are supported. ++ ++Package: recode-doc ++Section: doc ++Priority: optional ++Architecture: all ++Description: Documentation for Free recode ++ This package contains the HTML documentation for Free recode. ++ ++Package: librecode0 ++Section: libs ++Priority: optional ++Architecture: any ++Depends: ${shlibs:Depends} ++Description: Shared library on which recode is based ++ This recoding library converts files between various coded character ++ sets and surface encodings. The library recognizes or produces more ++ than 300 different character sets and is able to convert files between ++ almost any pair. Most RFC 1345 character sets, and all `libiconv' ++ character sets, are supported. ++ ++Package: librecode-dev ++Section: libdevel ++Priority: optional ++Architecture: any ++Depends: ${shlibs:Depends}, librecode0 (>= 3.6) ++Description: Development package for librecode0 ++ This package contains the header files and static librecode.a ++ library needed to build applications based on librecode. +--- recode-3.6.orig/debian/postinst ++++ recode-3.6/debian/postinst +@@ -0,0 +1,4 @@ ++#!/bin/sh ++set -e ++install-info --quiet --section "General Commands" "General Commands" \ ++ --description="Character set conversion utility." /usr/share/info/recode.info +--- recode-3.6.orig/debian/librecode0.postinst ++++ recode-3.6/debian/librecode0.postinst +@@ -0,0 +1,5 @@ ++#!/bin/sh ++set -e ++if [ "$1" = "configure" ]; then ++ ldconfig ++fi +--- recode-3.6.orig/debian/recode-doc.doc-base ++++ recode-3.6/debian/recode-doc.doc-base +@@ -0,0 +1,16 @@ ++Document: recode-doc ++Title: Free recode manual ++Author: François Pinard ++Abstract: This manual documents Free recode. ++ This recoding library converts files between various coded character ++ sets and surface encodings. When this cannot be achieved exactly, it ++ may get rid of the offending characters or fall back on approximations. ++ The library recognises or produces nearly 150 different character sets ++ and is able to convert files between almost any pair. Most RFC 1345 ++ character sets are supported. The `recode' program is a handy ++ front-end to the library. ++Section: Apps/Tools ++ ++Format: HTML ++Index: /usr/share/doc/recode-doc/index.html ++Files: /usr/share/doc/recode-doc/*.html +--- recode-3.6.orig/debian/copyright ++++ recode-3.6/debian/copyright +@@ -0,0 +1,38 @@ ++This is the Debian prepackaged version of Free recode, a program that ++converts files between character sets and usages. Free recode was ++written by François Pinard . ++ ++This package was first put together by Klee Dienes . ++ ++It is currently maintained by Santiago Vila , ++from sources obtained from: ++ ++ftp://ftp.gnu.org/gnu/recode/recode-3.6.tar.gz ++ ++The changes were fairly minimal, and consisted solely of adding ++various debian/* files to the distribution. ++ ++Copyright: ++ ++The entire recode package is Copyright (C) the Free Software Foundation, ++with the exception of ansi2knr.c, which is Copyright (C) Aladdin Enterprises. ++ ++The program is distributed under the terms of the GNU General Public License: ++ ++ This program is free software; you can redistribute it and/or modify it ++ under the terms of the GNU General Public License as published by the ++ Free Software Foundation; either version 2, or (at your option) any ++ later version. ++ ++The library is distributed under the terms of the GNU Lesser General ++Public License: ++ ++ This library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public License ++ as published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++On Debian systems, the complete text of the GNU General Public License ++can be found in `/usr/share/common-licenses/GPL', and the complete ++text of the GNU Lesser General Public License can be found in ++`/usr/share/common-licenses/LGPL'. +--- recode-3.6.orig/debian/changelog ++++ recode-3.6/debian/changelog +@@ -0,0 +1,191 @@ ++recode (3.6-15) unstable; urgency=low ++ ++ * Reduced size of "ignore" element in struct recode_symbol to 1 bit. ++ Should make gcc-4.3 happy. Closes: #462004. ++ ++ -- Santiago Vila Wed, 2 Apr 2008 10:02:30 +0200 ++ ++recode (3.6-14) unstable; urgency=low ++ ++ * Should build twice in a row. Closes: #424291. ++ * Updated po files from translation project. Closes: #313925, #427366. ++ ++ -- Santiago Vila Thu, 28 Jun 2007 21:25:18 +0200 ++ ++recode (3.6-13) unstable; urgency=medium ++ ++ * Updated config.guess and config.sub. ++ * Fixed NAME section in manpage (Closes: #368634). ++ * Removed build-dependency on flex (Closes: #402023). ++ ++ -- Santiago Vila Fri, 8 Dec 2006 13:07:44 +0100 ++ ++recode (3.6-12) unstable; urgency=low ++ ++ * Updated config.guess and config.sub for GNU/kFreeBSD (Closes: #333452). ++ ++ -- Santiago Vila Wed, 12 Oct 2005 17:12:34 +0200 ++ ++recode (3.6-11) unstable; urgency=low ++ ++ * Fixed FTBFS bug caused by new texi2html behaviour (Closes: #318557). ++ * Updated URL for original source in copyright file. ++ * Changed doc-base and copyright files to UTF-8. ++ ++ -- Santiago Vila Sat, 16 Jul 2005 18:40:54 +0200 ++ ++recode (3.6-10) unstable; urgency=low ++ ++ * Removed executable bit from librecode.la to make lintian happy. ++ * Added -D_REENTRANT to CFLAGS, since there are libraries here. ++ * Rewritten debian/rules to allow parallel make. ++ ++ -- Santiago Vila Thu, 9 Oct 2003 13:18:56 +0200 ++ ++recode (3.6-9) unstable; urgency=low ++ ++ * ./configure --without-included-gettext. Messages should now be shown ++ in UTF-8 if that's the charset for the selected locale (Closes: #207736). ++ * Updated a lot of translations from the Free Translation Project ++ (those having all the messages translated). ++ * Added gettext to Build-Depends: accordingly. ++ ++ -- Santiago Vila Fri, 29 Aug 2003 19:22:24 +0200 ++ ++recode (3.6-8) unstable; urgency=low ++ ++ * Updated libtool stuff (Closes: #201945). Note: The size of the diff ++ is not an error, it's mainly the result of running libtoolize, updating ++ m4/libtool.m4 and acinclude.m4, running aclocal, and running autoconf. ++ * Removed file from Build-Depends, the new libtool should not require it. ++ * Updated/improved description for recode and librecode0 (Closes: #206875). ++ * Moved librecode-dev to Section: libdevel. ++ ++ -- Santiago Vila Thu, 28 Aug 2003 17:05:04 +0200 ++ ++recode (3.6-7) unstable; urgency=medium ++ ++ * Fixed wrong pointer re-calculation in guarantee_nul_terminator(). ++ Thanks a lot to Enrik Berkhan (Closes: #156635). ++ * Standards-Version: 3.5.7. ++ ++ -- Santiago Vila Sun, 20 Oct 2002 21:23:02 +0200 ++ ++recode (3.6-6) unstable; urgency=medium ++ ++ * Modified hash.h so that functions hash_lookup, hash_delete, hash_free and ++ hash_insert are prefixed by `recode_' to prevent collisions with php4. ++ Thanks a lot to Steve Langasek and Bruno Haible. Closes: #131080. ++ ++ -- Santiago Vila Fri, 8 Mar 2002 18:44:36 +0100 ++ ++recode (3.6-5) unstable; urgency=low ++ ++ * Fixed a librecode bug in recode_perform_task (Closes: #134899). ++ Thanks to Frederic Gobry and Enrik Berkhan. ++ ++ -- Santiago Vila Thu, 21 Feb 2002 17:37:56 +0100 ++ ++recode (3.6-4) unstable; urgency=low ++ ++ * Removed README from the doc directory, since it contains only ++ installation information (Closes: #123000). ++ * Added support for DEB_BUILD_OPTIONS. ++ ++ -- Santiago Vila Sun, 9 Dec 2001 13:04:18 +0100 ++ ++recode (3.6-3) unstable; urgency=high ++ ++ * UTF-8 should now work. Patch by Bruno Haible. ++ Closes: #94966, #113742, #114850. ++ ++ -- Santiago Vila Sat, 20 Oct 2001 20:01:38 +0200 ++ ++recode (3.6-2) unstable; urgency=low ++ ++ * Updated config.sub/config.guess for parisc (Closes: #95974). ++ * Made debian/rules to preserve LD_LIBRARY_PATH to allow the build ++ by using fakeroot (Closes: #102358). ++ * Registered HTML docs using doc-base. ++ ++ -- Santiago Vila Sun, 1 Jul 2001 13:14:16 +0200 ++ ++recode (3.6-1) unstable; urgency=low ++ ++ * New upstream release. ++ * Updated copyright and control files. ++ * Use >= for the shlibs file, just in case. ++ * Build-Depends-Indep: texi2html, not tetex-bin. ++ * Removed .comment and .note sections from shared library. ++ ++ -- Santiago Vila Sat, 10 Mar 2001 15:03:36 +0100 ++ ++recode (3.5-3) unstable; urgency=medium ++ ++ * Fixed typo in Build-Depends field (Closes: #81211). ++ ++ -- Santiago Vila Thu, 4 Jan 2001 16:18:43 +0100 ++ ++recode (3.5-2) unstable; urgency=low ++ ++ * Standards-Version: 3.1.1. ++ * Moved librecode0 to libs section. ++ * Moved librecode-dev to devel section. ++ * Build-Depends: flex, file. Build-Depends-Indep: tetex-bin. ++ ++ -- Santiago Vila Sat, 30 Dec 2000 19:00:14 +0100 ++ ++recode (3.5-1) unstable; urgency=low ++ ++ * New upstream release. ++ * recode(1) is no longer "undocumented". ++ * Created two new packages: librecode0 and librecode-dev. ++ ++ -- Santiago Vila Fri, 18 Jun 1999 10:44:55 +0200 ++ ++recode (3.4.1-11) unstable; urgency=low ++ ++ * Added HTML docs, in a separate package. ++ ++ -- Santiago Vila Tue, 13 Oct 1998 21:22:43 +0200 ++ ++recode (3.4.1-10) unstable; urgency=low ++ ++ * More detailed copyright file. ++ * Removed debstd dependency. ++ * First libc6 release. ++ * Pristine source. ++ ++ -- Santiago Vila Sun, 9 Nov 1997 18:36:26 +0100 ++ ++recode (3.4.1-9) unstable; urgency=low ++ ++ * Some minor debian/rules changes. ++ * Added MD5 sums. ++ ++ -- Santiago Vila Sun, 23 Feb 1997 17:35:41 +0100 ++ ++recode (3.4.1-8) unstable; urgency=low ++ ++ * Converted to standards 2.1.2.2. ++ * New maintainer. ++ ++ -- Santiago Vila Wed, 29 Jan 1997 00:30:45 +0100 ++ ++recode (3.4.1-3); ++ ++ * Incremented version number (upload to ftp.debian.org crashed). ++ ++ -- Klee Dienes Sat Jan 27 14:58:57 MST 1996 ++ ++recode (3.4.1-2); ++ ++ * Changed to add entry for recode into info directory. ++ ++ -- Klee Dienes Sat Jan 27 14:42:54 MST 1996 ++ ++recode (3.4.1-1); ++ ++ * Initial Release. ++ ++ -- Klee Dienes Thu Jan 25 10:07:24 MST 1996 +--- recode-3.6.orig/Makefile.in ++++ recode-3.6/Makefile.in +@@ -119,7 +119,7 @@ + DIST_COMMON = README ./stamp-h.in ABOUT-NLS AUTHORS BACKLOG COPYING \ + ChangeLog INSTALL Makefile.am Makefile.in NEWS THANKS TODO acconfig.h \ + acinclude.m4 aclocal.m4 config.guess config.h.in config.sub configure \ +-configure.in install-sh ltconfig ltmain.sh missing mkinstalldirs ++configure.in install-sh ltmain.sh missing mkinstalldirs + + + DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) +--- recode-3.6.orig/ltmain.sh ++++ recode-3.6/ltmain.sh +@@ -1,7 +1,8 @@ + # ltmain.sh - Provide generalized library-building support services. +-# NOTE: Changing this file will not affect anything until you rerun ltconfig. ++# NOTE: Changing this file will not affect anything until you rerun configure. + # +-# Copyright (C) 1996-1999 Free Software Foundation, Inc. ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 ++# Free Software Foundation, Inc. + # Originally by Gordon Matzigkeit , 1996 + # + # This program is free software; you can redistribute it and/or modify +@@ -48,14 +49,14 @@ + fi + + # The name of this program. +-progname=`$echo "$0" | sed 's%^.*/%%'` ++progname=`$echo "$0" | ${SED} 's%^.*/%%'` + modename="$progname" + + # Constants. + PROGRAM=ltmain.sh + PACKAGE=libtool +-VERSION=1.3.4 +-TIMESTAMP=" (1.385.2.196 1999/12/07 21:47:57)" ++VERSION=1.4.3 ++TIMESTAMP=" (1.922.2.111 2002/10/23 02:54:36) Debian$Rev: 50 $" + + default_mode= + help="Try \`$progname --help' for more information." +@@ -66,10 +67,19 @@ + + # Sed substitution that helps us do robust quoting. It backslashifies + # metacharacters that are still active within double-quoted strings. +-Xsed='sed -e 1s/^X//' ++Xsed="${SED}"' -e 1s/^X//' + sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' +-SP2NL='tr \040 \012' +-NL2SP='tr \015\012 \040\040' ++# test EBCDIC or ASCII ++case `echo A|od -x` in ++ *[Cc]1*) # EBCDIC based system ++ SP2NL="tr '\100' '\n'" ++ NL2SP="tr '\r\n' '\100\100'" ++ ;; ++ *) # Assume ASCII based system ++ SP2NL="tr '\040' '\012'" ++ NL2SP="tr '\015\012' '\040\040'" ++ ;; ++esac + + # NLS nuisances. + # Only set LANG and LC_ALL to C if already set. +@@ -83,11 +93,9 @@ + save_LANG="$LANG"; LANG=C; export LANG + fi + +-if test "$LTCONFIG_VERSION" != "$VERSION"; then +- echo "$modename: ltconfig version \`$LTCONFIG_VERSION' does not match $PROGRAM version \`$VERSION'" 1>&2 +- echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 +- exit 1 +-fi ++# Make sure IFS has a sensible default ++: ${IFS=" ++"} + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + echo "$modename: not configured to build any kind of library" 1>&2 +@@ -113,16 +121,16 @@ + arg="$1" + shift + +- case "$arg" in ++ case $arg in + -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; + *) optarg= ;; + esac + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then +- case "$prev" in ++ case $prev in + execute_dlfiles) +- eval "$prev=\"\$$prev \$arg\"" ++ execute_dlfiles="$execute_dlfiles $arg" + ;; + *) + eval "$prev=\$arg" +@@ -135,7 +143,7 @@ + fi + + # Have we seen a non-optional argument yet? +- case "$arg" in ++ case $arg in + --help) + show_help=yes + ;; +@@ -146,7 +154,7 @@ + ;; + + --config) +- sed -e '1,/^### BEGIN LIBTOOL CONFIG/d' -e '/^### END LIBTOOL CONFIG/,$d' $0 ++ ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $0 + exit 0 + ;; + +@@ -179,6 +187,8 @@ + --mode) prevopt="--mode" prev=mode ;; + --mode=*) mode="$optarg" ;; + ++ --preserve-dup-deps) duplicate_deps="yes" ;; ++ + --quiet | --silent) + show=: + ;; +@@ -207,16 +217,21 @@ + exit 1 + fi + ++# If this variable is set in any of the actions, the command in it ++# will be execed at the end. This prevents here-documents from being ++# left over by shells. ++exec_cmd= ++ + if test -z "$show_help"; then + + # Infer the operation mode. + if test -z "$mode"; then +- case "$nonopt" in +- *cc | *++ | gcc* | *-gcc*) ++ case $nonopt in ++ *cc | *++ | gcc* | *-gcc* | g++* | xlc*) + mode=link + for arg + do +- case "$arg" in ++ case $arg in + -c) + mode=compile + break +@@ -261,12 +276,13 @@ + help="Try \`$modename --help --mode=$mode' for more information." + + # These modes are in order of execution frequency so that they run quickly. +- case "$mode" in ++ case $mode in + # libtool compile mode + compile) + modename="$modename: compile" + # Get the compilation command and the source file. + base_compile= ++ prev= + lastarg= + srcfile="$nonopt" + suppress_output= +@@ -274,8 +290,34 @@ + user_target=no + for arg + do ++ case $prev in ++ "") ;; ++ xcompiler) ++ # Aesthetically quote the previous argument. ++ prev= ++ lastarg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` ++ ++ case $arg in ++ # Double-quote args containing other shell metacharacters. ++ # Many Bourne shells cannot handle close brackets correctly ++ # in scan sets, so we specify it separately. ++ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") ++ arg="\"$arg\"" ++ ;; ++ esac ++ ++ # Add the previous argument to base_compile. ++ if test -z "$base_compile"; then ++ base_compile="$lastarg" ++ else ++ base_compile="$base_compile $lastarg" ++ fi ++ continue ++ ;; ++ esac ++ + # Accept any command-line options. +- case "$arg" in ++ case $arg in + -o) + if test "$user_target" != "no"; then + $echo "$modename: you cannot specify \`-o' more than once" 1>&2 +@@ -288,9 +330,53 @@ + build_old_libs=yes + continue + ;; ++ ++ -prefer-pic) ++ pic_mode=yes ++ continue ++ ;; ++ ++ -prefer-non-pic) ++ pic_mode=no ++ continue ++ ;; ++ ++ -Xcompiler) ++ prev=xcompiler ++ continue ++ ;; ++ ++ -Wc,*) ++ args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` ++ lastarg= ++ save_ifs="$IFS"; IFS=',' ++ for arg in $args; do ++ IFS="$save_ifs" ++ ++ # Double-quote args containing other shell metacharacters. ++ # Many Bourne shells cannot handle close brackets correctly ++ # in scan sets, so we specify it separately. ++ case $arg in ++ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") ++ arg="\"$arg\"" ++ ;; ++ esac ++ lastarg="$lastarg $arg" ++ done ++ IFS="$save_ifs" ++ lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` ++ ++ # Add the arguments to base_compile. ++ if test -z "$base_compile"; then ++ base_compile="$lastarg" ++ else ++ base_compile="$base_compile $lastarg" ++ fi ++ continue ++ ;; + esac + +- case "$user_target" in ++ case $user_target in + next) + # The next one is the -o target name + user_target=yes +@@ -316,10 +402,10 @@ + lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` + + # Double-quote args containing other shell metacharacters. +- # Many Bourne shells cannot handle close brackets correctly in scan +- # sets, so we specify it separately. +- case "$lastarg" in +- *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) ++ # Many Bourne shells cannot handle close brackets correctly ++ # in scan sets, so we specify it separately. ++ case $lastarg in ++ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + lastarg="\"$lastarg\"" + ;; + esac +@@ -332,7 +418,7 @@ + fi + done + +- case "$user_target" in ++ case $user_target in + set) + ;; + no) +@@ -348,7 +434,7 @@ + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + xform='[cCFSfmso]' +- case "$libobj" in ++ case $libobj in + *.ada) xform=ada ;; + *.adb) xform=adb ;; + *.ads) xform=ads ;; +@@ -363,7 +449,7 @@ + + libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` + +- case "$libobj" in ++ case $libobj in + *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; + *) + $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 +@@ -387,10 +473,21 @@ + $run $rm $removelist + trap "$run $rm $removelist; exit 1" 1 2 15 + ++ # On Cygwin there's no "real" PIC flag so we must build both object types ++ case $host_os in ++ cygwin* | mingw* | pw32* | os2*) ++ pic_mode=default ++ ;; ++ esac ++ if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then ++ # non-PIC code in shared libraries is not supported ++ pic_mode=default ++ fi ++ + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then +- output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\..*$%%'`.${objext} ++ output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + removelist="$removelist $output_obj $lockfile" + trap "$run $rm $removelist; exit 1" 1 2 15 +@@ -402,7 +499,7 @@ + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then +- until ln "$0" "$lockfile" 2>/dev/null; do ++ until $run ln "$0" "$lockfile" 2>/dev/null; do + $show "Waiting for $lockfile to be removed" + sleep 2 + done +@@ -434,8 +531,13 @@ + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + +- # All platforms use -DPIC, to notify preprocessed assembler code. +- command="$base_compile $srcfile $pic_flag -DPIC" ++ if test "$pic_mode" != no; then ++ # All platforms use -DPIC, to notify preprocessed assembler code. ++ command="$base_compile $srcfile $pic_flag -DPIC" ++ else ++ # Don't build PIC code ++ command="$base_compile $srcfile" ++ fi + if test "$build_old_libs" = yes; then + lo_libobj="$libobj" + dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'` +@@ -506,7 +608,8 @@ + fi + + # If we have no pic_flag, then copy the object into place and finish. +- if test -z "$pic_flag" && test "$build_old_libs" = yes; then ++ if (test -z "$pic_flag" || test "$pic_mode" != default) && ++ test "$build_old_libs" = yes; then + # Rename the .lo from within objdir to obj + if test -f $obj; then + $show $rm $obj +@@ -532,6 +635,10 @@ + # Now arrange that obj and lo_libobj become the same file + $show "(cd $xdir && $LN_S $baseobj $libobj)" + if $run eval '(cd $xdir && $LN_S $baseobj $libobj)'; then ++ # Unlock the critical section if it was locked ++ if test "$need_locks" != no; then ++ $run $rm "$lockfile" ++ fi + exit 0 + else + error=$? +@@ -546,7 +653,13 @@ + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then +- command="$base_compile $srcfile" ++ if test "$pic_mode" != yes; then ++ # Don't build PIC code ++ command="$base_compile $srcfile" ++ else ++ # All platforms use -DPIC, to notify preprocessed assembler code. ++ command="$base_compile $srcfile $pic_flag -DPIC" ++ fi + if test "$compiler_c_o" = yes; then + command="$command -o $obj" + output_obj="$obj" +@@ -612,17 +725,17 @@ + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then +- $rm "$lockfile" ++ $run $rm "$lockfile" + fi + + exit 0 + ;; + + # libtool link mode +- link) ++ link | relink) + modename="$modename: link" +- case "$host" in +- *-*-cygwin* | *-*-mingw* | *-*-os2*) ++ case $host in ++ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra +@@ -635,179 +748,12 @@ + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes +- +- # This is a source program that is used to create dlls on Windows +- # Don't remove nor modify the starting and closing comments +-# /* ltdll.c starts here */ +-# #define WIN32_LEAN_AND_MEAN +-# #include +-# #undef WIN32_LEAN_AND_MEAN +-# #include +-# +-# #ifndef __CYGWIN__ +-# # ifdef __CYGWIN32__ +-# # define __CYGWIN__ __CYGWIN32__ +-# # endif +-# #endif +-# +-# #ifdef __cplusplus +-# extern "C" { +-# #endif +-# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); +-# #ifdef __cplusplus +-# } +-# #endif +-# +-# #ifdef __CYGWIN__ +-# #include +-# DECLARE_CYGWIN_DLL( DllMain ); +-# #endif +-# HINSTANCE __hDllInstance_base; +-# +-# BOOL APIENTRY +-# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) +-# { +-# __hDllInstance_base = hInst; +-# return TRUE; +-# } +-# /* ltdll.c ends here */ +- # This is a source program that is used to create import libraries +- # on Windows for dlls which lack them. Don't remove nor modify the +- # starting and closing comments +-# /* impgen.c starts here */ +-# /* Copyright (C) 1999 Free Software Foundation, Inc. +-# +-# This file is part of GNU libtool. +-# +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2 of the License, or +-# (at your option) any later version. +-# +-# This program is distributed in the hope that it will be useful, +-# but WITHOUT ANY WARRANTY; without even the implied warranty of +-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-# GNU General Public License for more details. +-# +-# You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-# */ +-# +-# #include /* for printf() */ +-# #include /* for open(), lseek(), read() */ +-# #include /* for O_RDONLY, O_BINARY */ +-# #include /* for strdup() */ +-# +-# static unsigned int +-# pe_get16 (fd, offset) +-# int fd; +-# int offset; +-# { +-# unsigned char b[2]; +-# lseek (fd, offset, SEEK_SET); +-# read (fd, b, 2); +-# return b[0] + (b[1]<<8); +-# } +-# +-# static unsigned int +-# pe_get32 (fd, offset) +-# int fd; +-# int offset; +-# { +-# unsigned char b[4]; +-# lseek (fd, offset, SEEK_SET); +-# read (fd, b, 4); +-# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); +-# } +-# +-# static unsigned int +-# pe_as32 (ptr) +-# void *ptr; +-# { +-# unsigned char *b = ptr; +-# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); +-# } +-# +-# int +-# main (argc, argv) +-# int argc; +-# char *argv[]; +-# { +-# int dll; +-# unsigned long pe_header_offset, opthdr_ofs, num_entries, i; +-# unsigned long export_rva, export_size, nsections, secptr, expptr; +-# unsigned long name_rvas, nexp; +-# unsigned char *expdata, *erva; +-# char *filename, *dll_name; +-# +-# filename = argv[1]; +-# +-# dll = open(filename, O_RDONLY|O_BINARY); +-# if (!dll) +-# return 1; +-# +-# dll_name = filename; +-# +-# for (i=0; filename[i]; i++) +-# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':') +-# dll_name = filename + i +1; +-# +-# pe_header_offset = pe_get32 (dll, 0x3c); +-# opthdr_ofs = pe_header_offset + 4 + 20; +-# num_entries = pe_get32 (dll, opthdr_ofs + 92); +-# +-# if (num_entries < 1) /* no exports */ +-# return 1; +-# +-# export_rva = pe_get32 (dll, opthdr_ofs + 96); +-# export_size = pe_get32 (dll, opthdr_ofs + 100); +-# nsections = pe_get16 (dll, pe_header_offset + 4 +2); +-# secptr = (pe_header_offset + 4 + 20 + +-# pe_get16 (dll, pe_header_offset + 4 + 16)); +-# +-# expptr = 0; +-# for (i = 0; i < nsections; i++) +-# { +-# char sname[8]; +-# unsigned long secptr1 = secptr + 40 * i; +-# unsigned long vaddr = pe_get32 (dll, secptr1 + 12); +-# unsigned long vsize = pe_get32 (dll, secptr1 + 16); +-# unsigned long fptr = pe_get32 (dll, secptr1 + 20); +-# lseek(dll, secptr1, SEEK_SET); +-# read(dll, sname, 8); +-# if (vaddr <= export_rva && vaddr+vsize > export_rva) +-# { +-# expptr = fptr + (export_rva - vaddr); +-# if (export_rva + export_size > vaddr + vsize) +-# export_size = vsize - (export_rva - vaddr); +-# break; +-# } +-# } +-# +-# expdata = (unsigned char*)malloc(export_size); +-# lseek (dll, expptr, SEEK_SET); +-# read (dll, expdata, export_size); +-# erva = expdata - export_rva; +-# +-# nexp = pe_as32 (expdata+24); +-# name_rvas = pe_as32 (expdata+32); +-# +-# printf ("EXPORTS\n"); +-# for (i = 0; i\?\'\ \ ]*|*]*|"") ++ qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test ++ ;; ++ *) qarg=$arg ;; ++ esac ++ libtool_args="$libtool_args $qarg" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then +- case "$prev" in ++ case $prev in + output) + compile_command="$compile_command @OUTPUT@" + finalize_command="$finalize_command @OUTPUT@" + ;; + esac + +- case "$prev" in ++ case $prev in + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. +@@ -905,7 +853,7 @@ + finalize_command="$finalize_command @SYMFILE@" + preload=yes + fi +- case "$arg" in ++ case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then +@@ -934,6 +882,7 @@ + dlprefiles="$dlprefiles $arg" + fi + prev= ++ continue + ;; + esac + ;; +@@ -951,6 +900,11 @@ + prev= + continue + ;; ++ inst_prefix) ++ inst_prefix_dir="$arg" ++ prev= ++ continue ++ ;; + release) + release="-$arg" + prev= +@@ -958,7 +912,7 @@ + ;; + rpath | xrpath) + # We need an absolute path. +- case "$arg" in ++ case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + $echo "$modename: only absolute run-paths are allowed" 1>&2 +@@ -979,17 +933,32 @@ + prev= + continue + ;; ++ xcompiler) ++ compiler_flags="$compiler_flags $qarg" ++ prev= ++ compile_command="$compile_command $qarg" ++ finalize_command="$finalize_command $qarg" ++ continue ++ ;; ++ xlinker) ++ linker_flags="$linker_flags $qarg" ++ compiler_flags="$compiler_flags $wl$qarg" ++ prev= ++ compile_command="$compile_command $wl$qarg" ++ finalize_command="$finalize_command $wl$qarg" ++ continue ++ ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac +- fi ++ fi # test -n $prev + + prevarg="$arg" + +- case "$arg" in ++ case $arg in + -all-static) + if test -n "$link_static_flag"; then + compile_command="$compile_command $link_static_flag" +@@ -1026,7 +995,7 @@ + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then +- $echo "$modename: not more than one -exported-symbols argument allowed" ++ $echo "$modename: more than one -exported-symbols argument is not allowed" + exit 1 + fi + if test "X$arg" = "X-export-symbols"; then +@@ -1037,58 +1006,83 @@ + continue + ;; + ++ -inst-prefix-dir) ++ prev=inst_prefix ++ continue ++ ;; ++ ++ # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* ++ # so, if we see these flags be careful not to treat them like -L ++ -L[A-Z][A-Z]*:*) ++ if test -z "$with_gcc"; then ++ case $host in ++ *-*-irix* | *-*-nonstopux*) ++ compile_command="$compile_command $arg" ++ finalize_command="$finalize_command $arg" ++ ;; ++ esac ++ fi ++ continue ++ ;; ++ + -L*) + dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` + # We need an absolute path. +- case "$dir" in ++ case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then +- $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 +- $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 +- absdir="$dir" ++ $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 ++ exit 1 + fi + dir="$absdir" + ;; + esac +- case " $deplibs " in +- *" $arg "*) ;; +- *) deplibs="$deplibs $arg";; +- esac +- case " $lib_search_path " in +- *" $dir "*) ;; +- *) lib_search_path="$lib_search_path $dir";; ++ case "$deplibs " in ++ *" -L$dir "*) ;; ++ *) ++ deplibs="$deplibs -L$dir" ++ lib_search_path="$lib_search_path $dir" ++ ;; + esac +- case "$host" in +- *-*-cygwin* | *-*-mingw* | *-*-os2*) +- dllsearchdir=`cd "$dir" && pwd || echo "$dir"` +- case ":$dllsearchpath:" in +- ::) dllsearchpath="$dllsearchdir";; +- *":$dllsearchdir:"*) ;; +- *) dllsearchpath="$dllsearchpath:$dllsearchdir";; ++ case $host in ++ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) ++ case :$dllsearchpath: in ++ *":$dir:"*) ;; ++ *) dllsearchpath="$dllsearchpath:$dir";; + esac + ;; + esac ++ continue + ;; + + -l*) +- if test "$arg" = "-lc"; then +- case "$host" in +- *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) +- # These systems don't actually have c library (as such) ++ if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then ++ case $host in ++ *-*-cygwin* | *-*-pw32* | *-*-beos*) ++ # These systems don't actually have a C or math library (as such) + continue + ;; ++ *-*-mingw* | *-*-os2*) ++ # These systems don't actually have a C library (as such) ++ test "X$arg" = "X-lc" && continue ++ ;; ++ *-*-openbsd* | *-*-freebsd*) ++ # Do not include libc due to us having libc/libc_r. ++ test "X$arg" = "X-lc" && continue ++ ;; + esac +- elif test "$arg" = "-lm"; then +- case "$host" in +- *-*-cygwin* | *-*-beos*) +- # These systems don't actually have math library (as such) ++ elif test "X$arg" = "X-lc_r"; then ++ case $host in ++ *-*-openbsd* | *-*-freebsd*) ++ # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + deplibs="$deplibs $arg" ++ continue + ;; + + -module) +@@ -1096,6 +1090,25 @@ + continue + ;; + ++ -no-fast-install) ++ fast_install=no ++ continue ++ ;; ++ ++ -no-install) ++ case $host in ++ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) ++ # The PATH hackery in wrapper scripts is required on Windows ++ # in order for the loader to find any dlls it needs. ++ $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 ++ $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 ++ fast_install=no ++ ;; ++ *) no_install=yes ;; ++ esac ++ continue ++ ;; ++ + -no-undefined) + allow_undefined=no + continue +@@ -1121,7 +1134,7 @@ + -R*) + dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` + # We need an absolute path. +- case "$dir" in ++ case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + $echo "$modename: only absolute run-paths are allowed" 1>&2 +@@ -1136,11 +1149,11 @@ + ;; + + -static) +- # If we have no pic_flag, then this is the same as -all-static. +- if test -z "$pic_flag" && test -n "$link_static_flag"; then +- compile_command="$compile_command $link_static_flag" +- finalize_command="$finalize_command $link_static_flag" +- fi ++ # The effects of -static are defined in a previous loop. ++ # We used to do the same as -all-static on platforms that ++ # didn't have a PIC flag, but the assumption that the effects ++ # would be equivalent was wrong. It would break on at least ++ # Digital Unix and AIX. + continue + ;; + +@@ -1154,28 +1167,76 @@ + continue + ;; + ++ -Wc,*) ++ args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` ++ arg= ++ save_ifs="$IFS"; IFS=',' ++ for flag in $args; do ++ IFS="$save_ifs" ++ case $flag in ++ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") ++ flag="\"$flag\"" ++ ;; ++ esac ++ arg="$arg $wl$flag" ++ compiler_flags="$compiler_flags $flag" ++ done ++ IFS="$save_ifs" ++ arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ++ ;; ++ ++ -Wl,*) ++ args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` ++ arg= ++ save_ifs="$IFS"; IFS=',' ++ for flag in $args; do ++ IFS="$save_ifs" ++ case $flag in ++ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") ++ flag="\"$flag\"" ++ ;; ++ esac ++ arg="$arg $wl$flag" ++ compiler_flags="$compiler_flags $wl$flag" ++ linker_flags="$linker_flags $flag" ++ done ++ IFS="$save_ifs" ++ arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ++ ;; ++ ++ -Xcompiler) ++ prev=xcompiler ++ continue ++ ;; ++ ++ -Xlinker) ++ prev=xlinker ++ continue ++ ;; ++ ++ -Kthread | -mthreads | -mt | -pthread | -pthreads | -threads | -qthreaded | -kthread ) ++ compiler_flags="$compiler_flags $arg" ++ continue ++ ;; ++ + # Some other compiler flag. + -* | +*) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` +- case "$arg" in +- *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) ++ case $arg in ++ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + arg="\"$arg\"" + ;; + esac + ;; + +- *.o | *.obj | *.a | *.lib) +- # A standard object. +- objs="$objs $arg" +- ;; +- +- *.lo) +- # A library object. ++ *.lo | *.$objext) ++ # A library or standard object. + if test "$prev" = dlfiles; then +- dlfiles="$dlfiles $arg" +- if test "$build_libtool_libs" = yes && test "$dlopen" = yes; then ++ # This file was specified with -dlopen. ++ if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then ++ dlfiles="$dlfiles $arg" + prev= + continue + else +@@ -1188,357 +1249,917 @@ + # Preload the old-style object. + dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"` + prev= ++ else ++ case $arg in ++ *.lo) libobjs="$libobjs $arg" ;; ++ *) objs="$objs $arg" ;; ++ esac + fi +- libobjs="$libobjs $arg" ++ ;; ++ ++ *.$libext) ++ # An archive. ++ deplibs="$deplibs $arg" ++ old_deplibs="$old_deplibs $arg" ++ continue + ;; + + *.la) + # A libtool-controlled library. + +- dlname= +- libdir= +- library_names= +- old_library= +- +- # Check to see that this really is a libtool archive. +- if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : ++ if test "$prev" = dlfiles; then ++ # This library was specified with -dlopen. ++ dlfiles="$dlfiles $arg" ++ prev= ++ elif test "$prev" = dlprefiles; then ++ # The library was specified with -dlpreopen. ++ dlprefiles="$dlprefiles $arg" ++ prev= + else +- $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2 +- exit 1 ++ deplibs="$deplibs $arg" + fi ++ continue ++ ;; + +- # If the library was installed with an old release of libtool, +- # it will not redefine variable installed. +- installed=yes +- +- # Read the .la file +- # If there is no directory component, then add one. +- case "$arg" in +- */* | *\\*) . $arg ;; +- *) . ./$arg ;; ++ # Some other compiler argument. ++ *) ++ # Unknown arguments in both finalize_command and compile_command need ++ # to be aesthetically quoted because they are evaled later. ++ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` ++ case $arg in ++ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") ++ arg="\"$arg\"" ++ ;; + esac ++ ;; ++ esac # arg + +- # Get the name of the library we link against. +- linklib= +- for l in $old_library $library_names; do +- linklib="$l" +- done +- +- if test -z "$linklib"; then +- $echo "$modename: cannot find name of link library for \`$arg'" 1>&2 +- exit 1 +- fi +- +- # Find the relevant object directory and library name. +- name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/\.la$//' -e 's/^lib//'` ++ # Now actually substitute the argument into the commands. ++ if test -n "$arg"; then ++ compile_command="$compile_command $arg" ++ finalize_command="$finalize_command $arg" ++ fi ++ done # argument parsing loop + +- if test "X$installed" = Xyes; then +- dir="$libdir" +- else +- dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` +- if test "X$dir" = "X$arg"; then +- dir="$objdir" +- else +- dir="$dir/$objdir" +- fi +- fi ++ if test -n "$prev"; then ++ $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 ++ $echo "$help" 1>&2 ++ exit 1 ++ fi + +- if test -n "$dependency_libs"; then +- # Extract -R and -L from dependency_libs +- temp_deplibs= +- for deplib in $dependency_libs; do +- case "$deplib" in +- -R*) temp_xrpath=`$echo "X$deplib" | $Xsed -e 's/^-R//'` +- case " $rpath $xrpath " in +- *" $temp_xrpath "*) ;; +- *) xrpath="$xrpath $temp_xrpath";; +- esac;; +- -L*) case "$compile_command $temp_deplibs " in +- *" $deplib "*) ;; +- *) temp_deplibs="$temp_deplibs $deplib";; +- esac +- temp_dir=`$echo "X$deplib" | $Xsed -e 's/^-L//'` +- case " $lib_search_path " in +- *" $temp_dir "*) ;; +- *) lib_search_path="$lib_search_path $temp_dir";; +- esac +- ;; +- *) temp_deplibs="$temp_deplibs $deplib";; +- esac +- done +- dependency_libs="$temp_deplibs" +- fi ++ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then ++ eval arg=\"$export_dynamic_flag_spec\" ++ compile_command="$compile_command $arg" ++ finalize_command="$finalize_command $arg" ++ fi + +- if test -z "$libdir"; then +- # It is a libtool convenience library, so add in its objects. +- convenience="$convenience $dir/$old_library" +- old_convenience="$old_convenience $dir/$old_library" +- deplibs="$deplibs$dependency_libs" +- compile_command="$compile_command $dir/$old_library$dependency_libs" +- finalize_command="$finalize_command $dir/$old_library$dependency_libs" +- continue +- fi ++ # calculate the name of the file, without its directory ++ outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` ++ libobjs_save="$libobjs" + +- # This library was specified with -dlopen. +- if test "$prev" = dlfiles; then +- dlfiles="$dlfiles $arg" +- if test -z "$dlname" || test "$dlopen" != yes || test "$build_libtool_libs" = no; then +- # If there is no dlname, no dlopen support or we're linking statically, +- # we need to preload. +- prev=dlprefiles +- else +- # We should not create a dependency on this library, but we +- # may need any libraries it requires. +- compile_command="$compile_command$dependency_libs" +- finalize_command="$finalize_command$dependency_libs" +- prev= +- continue +- fi +- fi ++ if test -n "$shlibpath_var"; then ++ # get the directories listed in $shlibpath_var ++ eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` ++ else ++ shlib_search_path= ++ fi ++ eval sys_lib_search_path=\"$sys_lib_search_path_spec\" ++ eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + +- # The library was specified with -dlpreopen. +- if test "$prev" = dlprefiles; then +- # Prefer using a static library (so that no silly _DYNAMIC symbols +- # are required to link). +- if test -n "$old_library"; then +- dlprefiles="$dlprefiles $dir/$old_library" +- else +- dlprefiles="$dlprefiles $dir/$linklib" +- fi +- prev= +- fi ++ output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` ++ if test "X$output_objdir" = "X$output"; then ++ output_objdir="$objdir" ++ else ++ output_objdir="$output_objdir/$objdir" ++ fi ++ # Create the object directory. ++ if test ! -d $output_objdir; then ++ $show "$mkdir $output_objdir" ++ $run $mkdir $output_objdir ++ status=$? ++ if test $status -ne 0 && test ! -d $output_objdir; then ++ exit $status ++ fi ++ fi + +- if test -n "$library_names" && +- { test "$prefer_static_libs" = no || test -z "$old_library"; }; then +- link_against_libtool_libs="$link_against_libtool_libs $arg" +- if test -n "$shlibpath_var"; then +- # Make sure the rpath contains only unique directories. +- case "$temp_rpath " in +- *" $dir "*) ;; +- *) temp_rpath="$temp_rpath $dir" ;; +- esac +- fi ++ # Determine the type of output ++ case $output in ++ "") ++ $echo "$modename: you must specify an output file" 1>&2 ++ $echo "$help" 1>&2 ++ exit 1 ++ ;; ++ *.$libext) linkmode=oldlib ;; ++ *.lo | *.$objext) linkmode=obj ;; ++ *.la) linkmode=lib ;; ++ *) linkmode=prog ;; # Anything else should be a program. ++ esac + +- # We need an absolute path. +- case "$dir" in +- [\\/] | [A-Za-z]:[\\/]*) absdir="$dir" ;; +- *) +- absdir=`cd "$dir" && pwd` +- if test -z "$absdir"; then +- $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 +- $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 +- absdir="$dir" +- fi +- ;; +- esac +- +- # This is the magic to use -rpath. +- # Skip directories that are in the system default run-time +- # search path, unless they have been requested with -R. +- case " $sys_lib_dlsearch_path " in +- *" $absdir "*) ;; ++ specialdeplibs= ++ libs= ++ # Find all interdependent deplibs by searching for libraries ++ # that are linked more than once (e.g. -la -lb -la) ++ for deplib in $deplibs; do ++ if test "X$duplicate_deps" = "Xyes" ; then ++ case "$libs " in ++ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; ++ esac ++ fi ++ libs="$libs $deplib" ++ done ++ deplibs= ++ newdependency_libs= ++ newlib_search_path= ++ need_relink=no # whether we're linking any uninstalled libtool libraries ++ notinst_deplibs= # not-installed libtool libraries ++ notinst_path= # paths that contain not-installed libtool libraries ++ case $linkmode in ++ lib) ++ passes="conv link" ++ for file in $dlfiles $dlprefiles; do ++ case $file in ++ *.la) ;; + *) +- case "$compile_rpath " in +- *" $absdir "*) ;; +- *) compile_rpath="$compile_rpath $absdir" +- esac ++ $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 ++ exit 1 + ;; + esac +- +- case " $sys_lib_dlsearch_path " in +- *" $libdir "*) ;; +- *) +- case "$finalize_rpath " in +- *" $libdir "*) ;; +- *) finalize_rpath="$finalize_rpath $libdir" +- esac +- ;; +- esac +- +- lib_linked=yes +- case "$hardcode_action" in +- immediate | unsupported) +- if test "$hardcode_direct" = no; then +- compile_command="$compile_command $dir/$linklib" +- deplibs="$deplibs $dir/$linklib" +- case "$host" in +- *-*-cygwin* | *-*-mingw* | *-*-os2*) +- dllsearchdir=`cd "$dir" && pwd || echo "$dir"` +- if test -n "$dllsearchpath"; then +- dllsearchpath="$dllsearchpath:$dllsearchdir" +- else +- dllsearchpath="$dllsearchdir" +- fi +- ;; +- esac +- elif test "$hardcode_minus_L" = no; then +- case "$host" in +- *-*-sunos*) +- compile_shlibpath="$compile_shlibpath$dir:" +- ;; +- esac +- case "$compile_command " in +- *" -L$dir "*) ;; +- *) compile_command="$compile_command -L$dir";; +- esac +- compile_command="$compile_command -l$name" +- deplibs="$deplibs -L$dir -l$name" +- elif test "$hardcode_shlibpath_var" = no; then +- case ":$compile_shlibpath:" in +- *":$dir:"*) ;; +- *) compile_shlibpath="$compile_shlibpath$dir:";; +- esac +- compile_command="$compile_command -l$name" +- deplibs="$deplibs -l$name" ++ done ++ ;; ++ prog) ++ compile_deplibs= ++ finalize_deplibs= ++ alldeplibs=no ++ newdlfiles= ++ newdlprefiles= ++ passes="conv scan dlopen dlpreopen link" ++ ;; ++ *) passes="conv" ++ ;; ++ esac ++ for pass in $passes; do ++ if test $linkmode = prog; then ++ # Determine which files to process ++ case $pass in ++ dlopen) ++ libs="$dlfiles" ++ save_deplibs="$deplibs" # Collect dlpreopened libraries ++ deplibs= ++ ;; ++ dlpreopen) libs="$dlprefiles" ;; ++ link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; ++ esac ++ fi ++ for deplib in $libs; do ++ lib= ++ found=no ++ case $deplib in ++ -l*) ++ if test $linkmode = oldlib && test $linkmode = obj; then ++ $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2 ++ continue ++ fi ++ if test $pass = conv; then ++ deplibs="$deplib $deplibs" ++ continue ++ fi ++ name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` ++ for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do ++ # Search the libtool library ++ lib="$searchdir/lib${name}.la" ++ if test -f "$lib"; then ++ found=yes ++ break ++ fi ++ done ++ if test "$found" != yes; then ++ # deplib doesn't seem to be a libtool library ++ if test "$linkmode,$pass" = "prog,link"; then ++ compile_deplibs="$deplib $compile_deplibs" ++ finalize_deplibs="$deplib $finalize_deplibs" + else +- lib_linked=no ++ deplibs="$deplib $deplibs" ++ test $linkmode = lib && newdependency_libs="$deplib $newdependency_libs" + fi ++ continue ++ fi ++ ;; # -l ++ -L*) ++ case $linkmode in ++ lib) ++ deplibs="$deplib $deplibs" ++ test $pass = conv && continue ++ newdependency_libs="$deplib $newdependency_libs" ++ newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` + ;; +- +- relink) +- if test "$hardcode_direct" = yes; then +- compile_command="$compile_command $absdir/$linklib" +- deplibs="$deplibs $absdir/$linklib" +- elif test "$hardcode_minus_L" = yes; then +- case "$compile_command " in +- *" -L$absdir "*) ;; +- *) compile_command="$compile_command -L$absdir";; +- esac +- compile_command="$compile_command -l$name" +- deplibs="$deplibs -L$absdir -l$name" +- elif test "$hardcode_shlibpath_var" = yes; then +- case ":$compile_shlibpath:" in +- *":$absdir:"*) ;; +- *) compile_shlibpath="$compile_shlibpath$absdir:";; +- esac +- compile_command="$compile_command -l$name" +- deplibs="$deplibs -l$name" ++ prog) ++ if test $pass = conv; then ++ deplibs="$deplib $deplibs" ++ continue ++ fi ++ if test $pass = scan; then ++ deplibs="$deplib $deplibs" ++ newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` + else +- lib_linked=no ++ compile_deplibs="$deplib $compile_deplibs" ++ finalize_deplibs="$deplib $finalize_deplibs" + fi + ;; +- + *) +- lib_linked=no ++ $echo "$modename: warning: \`-L' is ignored for archives/objects: $deplib" 1>&2 + ;; +- esac ++ esac # linkmode ++ continue ++ ;; # -L ++ -R*) ++ if test $pass = link; then ++ dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` ++ # Make sure the xrpath contains only unique directories. ++ case "$xrpath " in ++ *" $dir "*) ;; ++ *) xrpath="$xrpath $dir" ;; ++ esac ++ fi ++ deplibs="$deplib $deplibs" ++ continue ++ ;; ++ *.la) lib="$deplib" ;; ++ *.$libext) ++ if test $pass = conv; then ++ deplibs="$deplib $deplibs" ++ continue ++ fi ++ case $linkmode in ++ lib) ++ if test "$deplibs_check_method" != pass_all; then ++ echo ++ echo "*** Warning: Trying to link with static lib archive $deplib." ++ echo "*** I have the capability to make that library automatically link in when" ++ echo "*** you link to this library. But I can only do this if you have a" ++ echo "*** shared version of the library, which you do not appear to have" ++ echo "*** because the file extensions .$libext of this argument makes me believe" ++ echo "*** that it is just a static archive that I should not used here." ++ else ++ echo ++ echo "*** Warning: Linking the shared library $output against the" ++ echo "*** static library $deplib is not portable!" ++ deplibs="$deplib $deplibs" ++ fi ++ continue ++ ;; ++ prog) ++ if test $pass != link; then ++ deplibs="$deplib $deplibs" ++ else ++ compile_deplibs="$deplib $compile_deplibs" ++ finalize_deplibs="$deplib $finalize_deplibs" ++ fi ++ continue ++ ;; ++ esac # linkmode ++ ;; # *.$libext ++ *.lo | *.$objext) ++ if test $pass = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then ++ # If there is no dlopen support or we're linking statically, ++ # we need to preload. ++ newdlprefiles="$newdlprefiles $deplib" ++ compile_deplibs="$deplib $compile_deplibs" ++ finalize_deplibs="$deplib $finalize_deplibs" ++ else ++ newdlfiles="$newdlfiles $deplib" ++ fi ++ continue ++ ;; ++ %DEPLIBS%) ++ alldeplibs=yes ++ continue ++ ;; ++ esac # case $deplib ++ if test $found = yes || test -f "$lib"; then : ++ else ++ $echo "$modename: cannot find the library \`$lib'" 1>&2 ++ exit 1 ++ fi ++ ++ # Check to see that this really is a libtool archive. ++ if (${SED} -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : ++ else ++ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 ++ exit 1 ++ fi ++ ++ ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` ++ test "X$ladir" = "X$lib" && ladir="." + +- if test "$lib_linked" != yes; then +- $echo "$modename: configuration error: unsupported hardcode properties" ++ dlname= ++ dlopen= ++ dlpreopen= ++ libdir= ++ library_names= ++ old_library= ++ # If the library was installed with an old release of libtool, ++ # it will not redefine variable installed. ++ installed=yes ++ ++ # Read the .la file ++ case $lib in ++ */* | *\\*) . $lib ;; ++ *) . ./$lib ;; ++ esac ++ ++ if test "$linkmode,$pass" = "lib,link" || ++ test "$linkmode,$pass" = "prog,scan" || ++ { test $linkmode = oldlib && test $linkmode = obj; }; then ++ # Add dl[pre]opened files of deplib ++ test -n "$dlopen" && dlfiles="$dlfiles $dlopen" ++ test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" ++ fi ++ ++ if test $pass = conv; then ++ # Only check for convenience libraries ++ deplibs="$lib $deplibs" ++ if test -z "$libdir"; then ++ if test -z "$old_library"; then ++ $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 ++ exit 1 ++ fi ++ # It is a libtool convenience library, so add in its objects. ++ convenience="$convenience $ladir/$objdir/$old_library" ++ old_convenience="$old_convenience $ladir/$objdir/$old_library" ++ tmp_libs= ++ for deplib in $dependency_libs; do ++ deplibs="$deplib $deplibs" ++ if test "X$duplicate_deps" = "Xyes" ; then ++ case "$tmp_libs " in ++ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; ++ esac ++ fi ++ tmp_libs="$tmp_libs $deplib" ++ done ++ elif test $linkmode != prog && test $linkmode != lib; then ++ $echo "$modename: \`$lib' is not a convenience library" 1>&2 + exit 1 + fi ++ continue ++ fi # $pass = conv + +- # Finalize command for both is simple: just hardcode it. +- if test "$hardcode_direct" = yes; then +- finalize_command="$finalize_command $libdir/$linklib" +- elif test "$hardcode_minus_L" = yes; then +- case "$finalize_command " in +- *" -L$libdir "*) ;; +- *) finalize_command="$finalize_command -L$libdir";; +- esac +- finalize_command="$finalize_command -l$name" +- elif test "$hardcode_shlibpath_var" = yes; then +- case ":$finalize_shlibpath:" in +- *":$libdir:"*) ;; +- *) finalize_shlibpath="$finalize_shlibpath$libdir:";; +- esac +- finalize_command="$finalize_command -l$name" ++ # Get the name of the library we link against. ++ linklib= ++ for l in $old_library $library_names; do ++ linklib="$l" ++ done ++ if test -z "$linklib"; then ++ $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 ++ exit 1 ++ fi ++ ++ # This library was specified with -dlopen. ++ if test $pass = dlopen; then ++ if test -z "$libdir"; then ++ $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 ++ exit 1 ++ fi ++ if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then ++ # If there is no dlname, no dlopen support or we're linking ++ # statically, we need to preload. ++ dlprefiles="$dlprefiles $lib" + else +- # We cannot seem to hardcode it, guess we'll fake it. +- case "$finalize_command " in +- *" -L$dir "*) ;; +- *) finalize_command="$finalize_command -L$libdir";; +- esac +- finalize_command="$finalize_command -l$name" ++ newdlfiles="$newdlfiles $lib" ++ fi ++ continue ++ fi # $pass = dlopen ++ ++ # We need an absolute path. ++ case $ladir in ++ [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; ++ *) ++ abs_ladir=`cd "$ladir" && pwd` ++ if test -z "$abs_ladir"; then ++ $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 ++ $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 ++ abs_ladir="$ladir" ++ fi ++ ;; ++ esac ++ laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` ++ ++ # Find the relevant object directory and library name. ++ if test "X$installed" = Xyes; then ++ if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then ++ $echo "$modename: warning: library \`$lib' was moved." 1>&2 ++ dir="$ladir" ++ absdir="$abs_ladir" ++ libdir="$abs_ladir" ++ else ++ dir="$libdir" ++ absdir="$libdir" + fi + else +- # Transform directly to old archives if we don't build new libraries. +- if test -n "$pic_flag" && test -z "$old_library"; then +- $echo "$modename: cannot find static library for \`$arg'" 1>&2 ++ dir="$ladir/$objdir" ++ absdir="$abs_ladir/$objdir" ++ # Remove this search path later ++ notinst_path="$notinst_path $abs_ladir" ++ fi # $installed = yes ++ name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` ++ ++ # This library was specified with -dlpreopen. ++ if test $pass = dlpreopen; then ++ if test -z "$libdir"; then ++ $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 + exit 1 + fi ++ # Prefer using a static library (so that no silly _DYNAMIC symbols ++ # are required to link). ++ if test -n "$old_library"; then ++ newdlprefiles="$newdlprefiles $dir/$old_library" ++ # Otherwise, use the dlname, so that lt_dlopen finds it. ++ elif test -n "$dlname"; then ++ newdlprefiles="$newdlprefiles $dir/$dlname" ++ else ++ newdlprefiles="$newdlprefiles $dir/$linklib" ++ fi ++ fi # $pass = dlpreopen + +- # Here we assume that one of hardcode_direct or hardcode_minus_L +- # is not unsupported. This is valid on all known static and +- # shared platforms. +- if test "$hardcode_direct" != unsupported; then +- test -n "$old_library" && linklib="$old_library" +- compile_command="$compile_command $dir/$linklib" +- finalize_command="$finalize_command $dir/$linklib" ++ if test -z "$libdir"; then ++ # Link the convenience library ++ if test $linkmode = lib; then ++ deplibs="$dir/$old_library $deplibs" ++ elif test "$linkmode,$pass" = "prog,link"; then ++ compile_deplibs="$dir/$old_library $compile_deplibs" ++ finalize_deplibs="$dir/$old_library $finalize_deplibs" + else +- case "$compile_command " in +- *" -L$dir "*) ;; +- *) compile_command="$compile_command -L$dir";; ++ deplibs="$lib $deplibs" ++ fi ++ continue ++ fi ++ ++ if test $linkmode = prog && test $pass != link; then ++ newlib_search_path="$newlib_search_path $ladir" ++ deplibs="$lib $deplibs" ++ ++ linkalldeplibs=no ++ if test "$link_all_deplibs" != no || test -z "$library_names" || ++ test "$build_libtool_libs" = no; then ++ linkalldeplibs=yes ++ fi ++ ++ tmp_libs= ++ for deplib in $dependency_libs; do ++ case $deplib in ++ -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test ++ esac ++ # Need to link against all dependency_libs? ++ if test $linkalldeplibs = yes; then ++ deplibs="$deplib $deplibs" ++ else ++ # Need to hardcode shared library paths ++ # or/and link against static libraries ++ newdependency_libs="$deplib $newdependency_libs" ++ fi ++ if test "X$duplicate_deps" = "Xyes" ; then ++ case "$tmp_libs " in ++ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; ++ esac ++ fi ++ tmp_libs="$tmp_libs $deplib" ++ done # for deplib ++ continue ++ fi # $linkmode = prog... ++ ++ link_static=no # Whether the deplib will be linked statically ++ if test -n "$library_names" && ++ { test "$prefer_static_libs" = no || test -z "$old_library"; }; then ++ # Link against this shared library ++ ++ if test "$linkmode,$pass" = "prog,link" || ++ { test $linkmode = lib && test $hardcode_into_libs = yes; }; then ++ # Hardcode the library path. ++ # Skip directories that are in the system default run-time ++ # search path. ++ case " $sys_lib_dlsearch_path " in ++ *" $absdir "*) ;; ++ *) ++ case "$compile_rpath " in ++ *" $absdir "*) ;; ++ *) compile_rpath="$compile_rpath $absdir" ++ esac ++ ;; + esac +- compile_command="$compile_command -l$name" +- case "$finalize_command " in +- *" -L$dir "*) ;; +- *) finalize_command="$finalize_command -L$dir";; ++ case " $sys_lib_dlsearch_path " in ++ *" $libdir "*) ;; ++ *) ++ case "$finalize_rpath " in ++ *" $libdir "*) ;; ++ *) finalize_rpath="$finalize_rpath $libdir" ++ esac ++ ;; + esac +- finalize_command="$finalize_command -l$name" ++ if test $linkmode = prog; then ++ # We need to hardcode the library path ++ if test -n "$shlibpath_var"; then ++ # Make sure the rpath contains only unique directories. ++ case "$temp_rpath " in ++ *" $dir "*) ;; ++ *" $absdir "*) ;; ++ *) temp_rpath="$temp_rpath $dir" ;; ++ esac ++ fi ++ fi ++ fi # $linkmode,$pass = prog,link... ++ ++ if test "$alldeplibs" = yes && ++ { test "$deplibs_check_method" = pass_all || ++ { test "$build_libtool_libs" = yes && ++ test -n "$library_names"; }; }; then ++ # We only need to search for static libraries ++ continue + fi +- fi + +- # Add in any libraries that this one depends upon. +- compile_command="$compile_command$dependency_libs" +- finalize_command="$finalize_command$dependency_libs" +- continue +- ;; ++ if test "$installed" = no; then ++ notinst_deplibs="$notinst_deplibs $lib" ++ need_relink=yes ++ fi ++ ++ if test -n "$old_archive_from_expsyms_cmds"; then ++ # figure out the soname ++ set dummy $library_names ++ realname="$2" ++ shift; shift ++ libname=`eval \\$echo \"$libname_spec\"` ++ # use dlname if we got it. it's perfectly good, no? ++ if test -n "$dlname"; then ++ soname="$dlname" ++ elif test -n "$soname_spec"; then ++ # bleh windows ++ case $host in ++ *cygwin*) ++ major=`expr $current - $age` ++ versuffix="-$major" ++ ;; ++ esac ++ eval soname=\"$soname_spec\" ++ else ++ soname="$realname" ++ fi + +- # Some other compiler argument. +- *) +- # Unknown arguments in both finalize_command and compile_command need +- # to be aesthetically quoted because they are evaled later. +- arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` +- case "$arg" in +- *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) +- arg="\"$arg\"" +- ;; +- esac +- ;; +- esac ++ # Make a new name for the extract_expsyms_cmds to use ++ soroot="$soname" ++ soname=`echo $soroot | ${SED} -e 's/^.*\///'` ++ newlib="libimp-`echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" + +- # Now actually substitute the argument into the commands. +- if test -n "$arg"; then +- compile_command="$compile_command $arg" +- finalize_command="$finalize_command $arg" +- fi +- done ++ # If the library has no export list, then create one now ++ if test -f "$output_objdir/$soname-def"; then : ++ else ++ $show "extracting exported symbol list from \`$soname'" ++ save_ifs="$IFS"; IFS='~' ++ eval cmds=\"$extract_expsyms_cmds\" ++ for cmd in $cmds; do ++ IFS="$save_ifs" ++ $show "$cmd" ++ $run eval "$cmd" || exit $? ++ done ++ IFS="$save_ifs" ++ fi + +- if test -n "$prev"; then +- $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 +- $echo "$help" 1>&2 +- exit 1 +- fi ++ # Create $newlib ++ if test -f "$output_objdir/$newlib"; then :; else ++ $show "generating import library for \`$soname'" ++ save_ifs="$IFS"; IFS='~' ++ eval cmds=\"$old_archive_from_expsyms_cmds\" ++ for cmd in $cmds; do ++ IFS="$save_ifs" ++ $show "$cmd" ++ $run eval "$cmd" || exit $? ++ done ++ IFS="$save_ifs" ++ fi ++ # make sure the library variables are pointing to the new library ++ dir=$output_objdir ++ linklib=$newlib ++ fi # test -n $old_archive_from_expsyms_cmds ++ ++ if test $linkmode = prog || test "$mode" != relink; then ++ add_shlibpath= ++ add_dir= ++ add= ++ lib_linked=yes ++ case $hardcode_action in ++ immediate | unsupported) ++ if test "$hardcode_direct" = no; then ++ add="$dir/$linklib" ++ elif test "$hardcode_minus_L" = no; then ++ case $host in ++ *-*-sunos*) add_shlibpath="$dir" ;; ++ esac ++ add_dir="-L$dir" ++ add="-l$name" ++ elif test "$hardcode_shlibpath_var" = no; then ++ add_shlibpath="$dir" ++ add="-l$name" ++ else ++ lib_linked=no ++ fi ++ ;; ++ relink) ++ if test "$hardcode_direct" = yes; then ++ add="$dir/$linklib" ++ elif test "$hardcode_minus_L" = yes; then ++ add_dir="-L$dir" ++ # Try looking first in the location we're being installed to. ++ if test -n "$inst_prefix_dir"; then ++ case "$libdir" in ++ [\/]*) ++ add_dir="$add_dir -L$inst_prefix_dir$libdir" ++ ;; ++ esac ++ fi ++ add="-l$name" ++ elif test "$hardcode_shlibpath_var" = yes; then ++ add_shlibpath="$dir" ++ add="-l$name" ++ else ++ lib_linked=no ++ fi ++ ;; ++ *) lib_linked=no ;; ++ esac + +- if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then +- eval arg=\"$export_dynamic_flag_spec\" +- compile_command="$compile_command $arg" +- finalize_command="$finalize_command $arg" +- fi ++ if test "$lib_linked" != yes; then ++ $echo "$modename: configuration error: unsupported hardcode properties" ++ exit 1 ++ fi + +- oldlibs= +- # calculate the name of the file, without its directory +- outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` +- libobjs_save="$libobjs" ++ if test -n "$add_shlibpath"; then ++ case :$compile_shlibpath: in ++ *":$add_shlibpath:"*) ;; ++ *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; ++ esac ++ fi ++ if test $linkmode = prog; then ++ test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" ++ test -n "$add" && compile_deplibs="$add $compile_deplibs" ++ else ++ test -n "$add_dir" && deplibs="$add_dir $deplibs" ++ test -n "$add" && deplibs="$add $deplibs" ++ if test "$hardcode_direct" != yes && \ ++ test "$hardcode_minus_L" != yes && \ ++ test "$hardcode_shlibpath_var" = yes; then ++ case :$finalize_shlibpath: in ++ *":$libdir:"*) ;; ++ *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; ++ esac ++ fi ++ fi ++ fi + +- case "$output" in +- "") +- $echo "$modename: you must specify an output file" 1>&2 +- $echo "$help" 1>&2 +- exit 1 +- ;; ++ if test $linkmode = prog || test "$mode" = relink; then ++ add_shlibpath= ++ add_dir= ++ add= ++ # Finalize command for both is simple: just hardcode it. ++ if test "$hardcode_direct" = yes; then ++ add="$libdir/$linklib" ++ elif test "$hardcode_minus_L" = yes; then ++ add_dir="-L$libdir" ++ add="-l$name" ++ elif test "$hardcode_shlibpath_var" = yes; then ++ case :$finalize_shlibpath: in ++ *":$libdir:"*) ;; ++ *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; ++ esac ++ add="-l$name" ++ else ++ # We cannot seem to hardcode it, guess we'll fake it. ++ add_dir="-L$libdir" ++ # Try looking first in the location we're being installed to. ++ if test -n "$inst_prefix_dir"; then ++ case "$libdir" in ++ [\/]*) ++ add_dir="$add_dir -L$inst_prefix_dir$libdir" ++ ;; ++ esac ++ fi ++ add="-l$name" ++ fi + +- *.a | *.lib) +- if test -n "$link_against_libtool_libs"; then +- $echo "$modename: error: cannot link libtool libraries into archives" 1>&2 +- exit 1 ++ if test $linkmode = prog; then ++ test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" ++ test -n "$add" && finalize_deplibs="$add $finalize_deplibs" ++ else ++ test -n "$add_dir" && deplibs="$add_dir $deplibs" ++ test -n "$add" && deplibs="$add $deplibs" ++ fi ++ fi ++ elif test $linkmode = prog; then ++ if test "$alldeplibs" = yes && ++ { test "$deplibs_check_method" = pass_all || ++ { test "$build_libtool_libs" = yes && ++ test -n "$library_names"; }; }; then ++ # We only need to search for static libraries ++ continue ++ fi ++ ++ # Try to link the static library ++ # Here we assume that one of hardcode_direct or hardcode_minus_L ++ # is not unsupported. This is valid on all known static and ++ # shared platforms. ++ if test "$hardcode_direct" != unsupported; then ++ test -n "$old_library" && linklib="$old_library" ++ compile_deplibs="$dir/$linklib $compile_deplibs" ++ finalize_deplibs="$dir/$linklib $finalize_deplibs" ++ else ++ compile_deplibs="-l$name -L$dir $compile_deplibs" ++ finalize_deplibs="-l$name -L$dir $finalize_deplibs" ++ fi ++ elif test "$build_libtool_libs" = yes; then ++ # Not a shared library ++ if test "$deplibs_check_method" != pass_all; then ++ # We're trying link a shared library against a static one ++ # but the system doesn't support it. ++ ++ # Just print a warning and add the library to dependency_libs so ++ # that the program can be linked against the static library. ++ echo ++ echo "*** Warning: This system can not link to static lib archive $lib." ++ echo "*** I have the capability to make that library automatically link in when" ++ echo "*** you link to this library. But I can only do this if you have a" ++ echo "*** shared version of the library, which you do not appear to have." ++ if test "$module" = yes; then ++ echo "*** But as you try to build a module library, libtool will still create " ++ echo "*** a static module, that should work as long as the dlopening application" ++ echo "*** is linked with the -dlopen flag to resolve symbols at runtime." ++ if test -z "$global_symbol_pipe"; then ++ echo ++ echo "*** However, this would only work if libtool was able to extract symbol" ++ echo "*** lists from a program, using \`nm' or equivalent, but libtool could" ++ echo "*** not find such a program. So, this module is probably useless." ++ echo "*** \`nm' from GNU binutils and a full rebuild may help." ++ fi ++ if test "$build_old_libs" = no; then ++ build_libtool_libs=module ++ build_old_libs=yes ++ else ++ build_libtool_libs=no ++ fi ++ fi ++ else ++ convenience="$convenience $dir/$old_library" ++ old_convenience="$old_convenience $dir/$old_library" ++ deplibs="$dir/$old_library $deplibs" ++ link_static=yes ++ fi ++ fi # link shared/static library? ++ ++ if test $linkmode = lib; then ++ if test -n "$dependency_libs" && ++ { test $hardcode_into_libs != yes || test $build_old_libs = yes || ++ test $link_static = yes; }; then ++ # Extract -R from dependency_libs ++ temp_deplibs= ++ for libdir in $dependency_libs; do ++ case $libdir in ++ -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` ++ case " $xrpath " in ++ *" $temp_xrpath "*) ;; ++ *) xrpath="$xrpath $temp_xrpath";; ++ esac;; ++ *) temp_deplibs="$temp_deplibs $libdir";; ++ esac ++ done ++ dependency_libs="$temp_deplibs" ++ fi ++ ++ newlib_search_path="$newlib_search_path $absdir" ++ # Link against this library ++ test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" ++ # ... and its dependency_libs ++ tmp_libs= ++ for deplib in $dependency_libs; do ++ newdependency_libs="$deplib $newdependency_libs" ++ if test "X$duplicate_deps" = "Xyes" ; then ++ case "$tmp_libs " in ++ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; ++ esac ++ fi ++ tmp_libs="$tmp_libs $deplib" ++ done ++ ++ if test $link_all_deplibs != no; then ++ # Add the search paths of all dependency libraries ++ for deplib in $dependency_libs; do ++ case $deplib in ++ -L*) path="$deplib" ;; ++ *.la) ++ dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` ++ test "X$dir" = "X$deplib" && dir="." ++ # We need an absolute path. ++ case $dir in ++ [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; ++ *) ++ absdir=`cd "$dir" && pwd` ++ if test -z "$absdir"; then ++ $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 ++ absdir="$dir" ++ fi ++ ;; ++ esac ++ if grep "^installed=no" $deplib > /dev/null; then ++ path="-L$absdir/$objdir" ++ else ++ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` ++ if test -z "$libdir"; then ++ $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 ++ exit 1 ++ fi ++ if test "$absdir" != "$libdir"; then ++ $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 ++ fi ++ path="-L$absdir" ++ fi ++ ;; ++ *) continue ;; ++ esac ++ case " $deplibs " in ++ *" $path "*) ;; ++ *) deplibs="$deplibs $path" ;; ++ esac ++ done ++ fi # link_all_deplibs != no ++ fi # linkmode = lib ++ done # for deplib in $libs ++ if test $pass = dlpreopen; then ++ # Link the dlpreopened libraries before other libraries ++ for deplib in $save_deplibs; do ++ deplibs="$deplib $deplibs" ++ done + fi ++ if test $pass != dlopen; then ++ test $pass != scan && dependency_libs="$newdependency_libs" ++ if test $pass != conv; then ++ # Make sure lib_search_path contains only unique directories. ++ lib_search_path= ++ for dir in $newlib_search_path; do ++ case "$lib_search_path " in ++ *" $dir "*) ;; ++ *) lib_search_path="$lib_search_path $dir" ;; ++ esac ++ done ++ newlib_search_path= ++ fi + +- if test -n "$deplibs"; then +- $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 ++ if test "$linkmode,$pass" != "prog,link"; then ++ vars="deplibs" ++ else ++ vars="compile_deplibs finalize_deplibs" ++ fi ++ for var in $vars dependency_libs; do ++ # Add libraries to $var in reverse order ++ eval tmp_libs=\"\$$var\" ++ new_libs= ++ for deplib in $tmp_libs; do ++ case $deplib in ++ -L*) new_libs="$deplib $new_libs" ;; ++ *) ++ case " $specialdeplibs " in ++ *" $deplib "*) new_libs="$deplib $new_libs" ;; ++ *) ++ case " $new_libs " in ++ *" $deplib "*) ;; ++ *) new_libs="$deplib $new_libs" ;; ++ esac ++ ;; ++ esac ++ ;; ++ esac ++ done ++ tmp_libs= ++ for deplib in $new_libs; do ++ case $deplib in ++ -L*) ++ case " $tmp_libs " in ++ *" $deplib "*) ;; ++ *) tmp_libs="$tmp_libs $deplib" ;; ++ esac ++ ;; ++ *) tmp_libs="$tmp_libs $deplib" ;; ++ esac ++ done ++ eval $var=\"$tmp_libs\" ++ done # for var + fi ++ if test "$pass" = "conv" && ++ { test "$linkmode" = "lib" || test "$linkmode" = "prog"; }; then ++ libs="$deplibs" # reset libs ++ deplibs= ++ fi ++ done # for pass ++ if test $linkmode = prog; then ++ dlfiles="$newdlfiles" ++ dlprefiles="$newdlprefiles" ++ fi + ++ case $linkmode in ++ oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 + fi +@@ -1566,11 +2187,12 @@ + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" ++ objs="$objs$old_deplibs" + ;; + +- *.la) ++ lib) + # Make sure we only generate libraries of the form `libNAME.la'. +- case "$outputname" in ++ case $outputname in + lib*) + name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` + eval libname=\"$libname_spec\" +@@ -1591,26 +2213,20 @@ + ;; + esac + +- output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` +- if test "X$output_objdir" = "X$output"; then +- output_objdir="$objdir" +- else +- output_objdir="$output_objdir/$objdir" +- fi +- + if test -n "$objs"; then +- $echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1 +- exit 1 +- fi +- +- # How the heck are we supposed to write a wrapper for a shared library? +- if test -n "$link_against_libtool_libs"; then +- $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2 +- exit 1 ++ if test "$deplibs_check_method" != pass_all; then ++ $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 ++ exit 1 ++ else ++ echo ++ echo "*** Warning: Linking the shared library $output against the non-libtool" ++ echo "*** objects $objs is not portable!" ++ libobjs="$libobjs $objs" ++ fi + fi + +- if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then +- $echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2 ++ if test "$dlself" != no; then ++ $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 + fi + + set dummy $rpath +@@ -1628,7 +2244,6 @@ + build_libtool_libs=convenience + build_old_libs=yes + fi +- dependency_libs="$deplibs" + + if test -n "$vinfo"; then + $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2 +@@ -1640,7 +2255,7 @@ + else + + # Parse the version information argument. +- IFS="${IFS= }"; save_ifs="$IFS"; IFS=':' ++ save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + IFS="$save_ifs" + +@@ -1655,8 +2270,8 @@ + age="$4" + + # Check that each of the things are valid numbers. +- case "$current" in +- 0 | [1-9] | [1-9][0-9]*) ;; ++ case $current in ++ 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + *) + $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2 + $echo "$modename: \`$vinfo' is not valid version information" 1>&2 +@@ -1664,8 +2279,8 @@ + ;; + esac + +- case "$revision" in +- 0 | [1-9] | [1-9][0-9]*) ;; ++ case $revision in ++ 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + *) + $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2 + $echo "$modename: \`$vinfo' is not valid version information" 1>&2 +@@ -1673,8 +2288,8 @@ + ;; + esac + +- case "$age" in +- 0 | [1-9] | [1-9][0-9]*) ;; ++ case $age in ++ 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + *) + $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2 + $echo "$modename: \`$vinfo' is not valid version information" 1>&2 +@@ -1692,21 +2307,49 @@ + major= + versuffix= + verstring= +- case "$version_type" in ++ case $version_type in + none) ;; + +- irix) ++ darwin) ++ # Like Linux, but with the current version available in ++ # verstring for coding it into the library header ++ major=.`expr $current - $age` ++ versuffix="$major.$age.$revision" ++ # Darwin ld doesn't like 0 for these options... ++ minor_current=`expr $current + 1` ++ verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ++ ;; ++ ++ freebsd-aout) ++ major=".$current" ++ versuffix=".$current.$revision"; ++ ;; ++ ++ freebsd-elf) ++ major=".$current" ++ versuffix=".$current"; ++ ;; ++ ++ irix | nonstopux) + major=`expr $current - $age + 1` +- versuffix="$major.$revision" +- verstring="sgi$major.$revision" ++ ++ case $version_type in ++ nonstopux) verstring_prefix=nonstopux ;; ++ *) verstring_prefix=sgi ;; ++ esac ++ verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test $loop != 0; do + iface=`expr $revision - $loop` + loop=`expr $loop - 1` +- verstring="sgi$major.$iface:$verstring" ++ verstring="$verstring_prefix$major.$iface:$verstring" + done ++ ++ # Before this point, $major must not contain `.'. ++ major=.$major ++ versuffix="$major.$revision" + ;; + + linux) +@@ -1715,7 +2358,7 @@ + ;; + + osf) +- major=`expr $current - $age` ++ major=.`expr $current - $age` + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + +@@ -1736,21 +2379,11 @@ + versuffix=".$current.$revision" + ;; + +- freebsd-aout) +- major=".$current" +- versuffix=".$current.$revision"; +- ;; +- +- freebsd-elf) +- major=".$current" +- versuffix=".$current"; +- ;; +- + windows) +- # Like Linux, but with '-' rather than '.', since we only +- # want one extension on Windows 95. ++ # Use '-' rather than '.', since we only want one ++ # extension on DOS 8.3 filesystems. + major=`expr $current - $age` +- versuffix="-$major-$age-$revision" ++ versuffix="-$major" + ;; + + *) +@@ -1764,6 +2397,16 @@ + if test -z "$vinfo" && test -n "$release"; then + major= + verstring="0.0" ++ case $version_type in ++ darwin) ++ # we can't check for "0.0" in archive_cmds due to quoting ++ # problems, so we reset it completely ++ verstring="" ++ ;; ++ *) ++ verstring="0.0" ++ ;; ++ esac + if test "$need_version" = no; then + versuffix= + else +@@ -1777,7 +2420,7 @@ + versuffix= + verstring="" + fi +- ++ + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then +@@ -1785,34 +2428,16 @@ + build_libtool_libs=no + build_old_libs=yes + fi +- else +- # Don't allow undefined symbols. +- allow_undefined_flag="$no_undefined_flag" +- fi +- +- dependency_libs="$deplibs" +- case "$host" in +- *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) +- # these systems don't actually have a c library (as such)! +- ;; +- *) +- # Add libc to deplibs on all other systems. +- deplibs="$deplibs -lc" +- ;; +- esac ++ else ++ # Don't allow undefined symbols. ++ allow_undefined_flag="$no_undefined_flag" ++ fi + fi + +- # Create the output directory, or remove our outputs if we need to. +- if test -d $output_objdir; then ++ if test "$mode" != relink; then ++ # Remove our outputs. + $show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*" + $run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.* +- else +- $show "$mkdir $output_objdir" +- $run $mkdir $output_objdir +- status=$? +- if test $status -ne 0 && test ! -d $output_objdir; then +- exit $status +- fi + fi + + # Now set the variables for building old libraries. +@@ -1823,7 +2448,73 @@ + oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` + fi + ++ # Eliminate all temporary directories. ++ for path in $notinst_path; do ++ lib_search_path=`echo "$lib_search_path " | ${SED} -e 's% $path % %g'` ++ deplibs=`echo "$deplibs " | ${SED} -e 's% -L$path % %g'` ++ dependency_libs=`echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'` ++ done ++ ++ if test -n "$xrpath"; then ++ # If the user specified any rpath flags, then add them. ++ temp_xrpath= ++ for libdir in $xrpath; do ++ temp_xrpath="$temp_xrpath -R$libdir" ++ case "$finalize_rpath " in ++ *" $libdir "*) ;; ++ *) finalize_rpath="$finalize_rpath $libdir" ;; ++ esac ++ done ++ if test $hardcode_into_libs != yes || test $build_old_libs = yes; then ++ dependency_libs="$temp_xrpath $dependency_libs" ++ fi ++ fi ++ ++ # Make sure dlfiles contains only unique files that won't be dlpreopened ++ old_dlfiles="$dlfiles" ++ dlfiles= ++ for lib in $old_dlfiles; do ++ case " $dlprefiles $dlfiles " in ++ *" $lib "*) ;; ++ *) dlfiles="$dlfiles $lib" ;; ++ esac ++ done ++ ++ # Make sure dlprefiles contains only unique files ++ old_dlprefiles="$dlprefiles" ++ dlprefiles= ++ for lib in $old_dlprefiles; do ++ case "$dlprefiles " in ++ *" $lib "*) ;; ++ *) dlprefiles="$dlprefiles $lib" ;; ++ esac ++ done ++ + if test "$build_libtool_libs" = yes; then ++ if test -n "$rpath"; then ++ case $host in ++ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) ++ # these systems don't actually have a c library (as such)! ++ ;; ++ *-*-rhapsody* | *-*-darwin1.[012]) ++ # Rhapsody C library is in the System framework ++ deplibs="$deplibs -framework System" ++ ;; ++ *-*-netbsd*) ++ # Don't link with libc until the a.out ld.so is fixed. ++ ;; ++ *-*-openbsd* | *-*-freebsd*) ++ # Do not include libc due to us having libc/libc_r. ++ ;; ++ *) ++ # Add libc to deplibs on all other systems if necessary. ++ if test $build_libtool_need_lc = "yes"; then ++ deplibs="$deplibs -lc" ++ fi ++ ;; ++ esac ++ fi ++ + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname +@@ -1838,7 +2529,7 @@ + major="" + newdeplibs= + droppeddeps=no +- case "$deplibs_check_method" in ++ case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check +@@ -1863,7 +2554,7 @@ + for i in $deplibs; do + name="`expr $i : '-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. +- if test "$name" != "" ; then ++ if test -n "$name" && test "$name" != "0"; then + libname=`eval \\$echo \"$libname_spec\"` + deplib_matches=`eval \\$echo \"$library_names_spec\"` + set dummy $deplib_matches +@@ -1873,22 +2564,24 @@ + else + droppeddeps=yes + echo +- echo "*** Warning: This library needs some functionality provided by $i." ++ echo "*** Warning: dynamic linker does not accept needed library $i." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" +- echo "*** shared version of the library, which you do not appear to have." ++ echo "*** shared version of the library, which I believe you do not have" ++ echo "*** because a test_compile did reveal that the linker did not use it for" ++ echo "*** its dynamic dependency list that programs get resolved with at runtime." + fi + else + newdeplibs="$newdeplibs $i" + fi + done + else +- # Error occured in the first compile. Let's try to salvage the situation: +- # Compile a seperate program for each library. ++ # Error occured in the first compile. Let's try to salvage ++ # the situation: Compile a separate program for each library. + for i in $deplibs; do + name="`expr $i : '-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. +- if test "$name" != "" ; then ++ if test -n "$name" && test "$name" != "0"; then + $rm conftest + $CC -o conftest conftest.c $i + # Did it work? +@@ -1903,10 +2596,12 @@ + else + droppeddeps=yes + echo +- echo "*** Warning: This library needs some functionality provided by $i." ++ echo "*** Warning: dynamic linker does not accept needed library $i." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" +- echo "*** shared version of the library, which you do not appear to have." ++ echo "*** shared version of the library, which you do not appear to have" ++ echo "*** because a test_compile did reveal that the linker did not use this one" ++ echo "*** as a dynamic dependency that programs can get resolved with at runtime." + fi + else + droppeddeps=yes +@@ -1924,19 +2619,19 @@ + ;; + file_magic*) + set dummy $deplibs_check_method +- file_magic_regex="`expr \"$deplibs_check_method\" : \"$2 \(.*\)\"`" ++ file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` + for a_deplib in $deplibs; do + name="`expr $a_deplib : '-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. +- if test "$name" != "" ; then ++ if test -n "$name" && test "$name" != "0"; then + libname=`eval \\$echo \"$libname_spec\"` +- for i in $lib_search_path; do ++ for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null \ + | grep " -> " >/dev/null; then +- continue ++ continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. +@@ -1945,14 +2640,14 @@ + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do +- potliblink=`ls -ld $potlib | sed 's/.* -> //'` +- case "$potliblink" in ++ potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` ++ case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ +- | sed 10q \ ++ | ${SED} 10q \ + | egrep "$file_magic_regex" > /dev/null; then + newdeplibs="$newdeplibs $a_deplib" + a_deplib="" +@@ -1963,10 +2658,59 @@ + if test -n "$a_deplib" ; then + droppeddeps=yes + echo +- echo "*** Warning: This library needs some functionality provided by $a_deplib." ++ echo "*** Warning: linker path does not have real file for library $a_deplib." ++ echo "*** I have the capability to make that library automatically link in when" ++ echo "*** you link to this library. But I can only do this if you have a" ++ echo "*** shared version of the library, which you do not appear to have" ++ echo "*** because I did check the linker path looking for a file starting" ++ if test -z "$potlib" ; then ++ echo "*** with $libname but no candidates were found. (...for file magic test)" ++ else ++ echo "*** with $libname and none of the candidates passed a file format test" ++ echo "*** using a file magic. Last file checked: $potlib" ++ fi ++ fi ++ else ++ # Add a -L argument. ++ newdeplibs="$newdeplibs $a_deplib" ++ fi ++ done # Gone through all deplibs. ++ ;; ++ match_pattern*) ++ set dummy $deplibs_check_method ++ match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` ++ for a_deplib in $deplibs; do ++ name="`expr $a_deplib : '-l\(.*\)'`" ++ # If $name is empty we are operating on a -L argument. ++ if test -n "$name" && test "$name" != "0"; then ++ libname=`eval \\$echo \"$libname_spec\"` ++ for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do ++ potential_libs=`ls $i/$libname[.-]* 2>/dev/null` ++ for potent_lib in $potential_libs; do ++ potlib="$potent_lib" # see symlink-check below in file_magic test ++ if eval echo \"$potent_lib\" 2>/dev/null \ ++ | ${SED} 10q \ ++ | egrep "$match_pattern_regex" > /dev/null; then ++ newdeplibs="$newdeplibs $a_deplib" ++ a_deplib="" ++ break 2 ++ fi ++ done ++ done ++ if test -n "$a_deplib" ; then ++ droppeddeps=yes ++ echo ++ echo "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" +- echo "*** shared version of the library, which you do not appear to have." ++ echo "*** shared version of the library, which you do not appear to have" ++ echo "*** because I did check the linker path looking for a file starting" ++ if test -z "$potlib" ; then ++ echo "*** with $libname but no candidates were found. (...for regex pattern test)" ++ else ++ echo "*** with $libname and none of the candidates passed a file format test" ++ echo "*** using a regex pattern. Last file checked: $potlib" ++ fi + fi + else + # Add a -L argument. +@@ -1996,6 +2740,13 @@ + libname=$libname_save + name=$name_save + ++ case $host in ++ *-*-rhapsody* | *-*-darwin1.[012]) ++ # On Rhapsody replace the C library is the System framework ++ newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` ++ ;; ++ esac ++ + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo +@@ -2021,6 +2772,21 @@ + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." ++ ++ if test $allow_undefined = no; then ++ echo ++ echo "*** Since this library must not contain undefined symbols," ++ echo "*** because either the platform does not support them or" ++ echo "*** it was explicitly requested with -no-undefined," ++ echo "*** libtool will only create a static version of it." ++ if test "$build_old_libs" = no; then ++ oldlibs="$output_objdir/$libname.$libext" ++ build_libtool_libs=module ++ build_old_libs=yes ++ else ++ build_libtool_libs=no ++ fi ++ fi + fi + fi + # Done checking deplibs! +@@ -2031,9 +2797,64 @@ + library_names= + old_library= + dlname= +- ++ + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then ++ if test $hardcode_into_libs = yes; then ++ # Hardcode the library paths ++ hardcode_libdirs= ++ dep_rpath= ++ rpath="$finalize_rpath" ++ test "$mode" != relink && rpath="$compile_rpath$rpath" ++ for libdir in $rpath; do ++ if test -n "$hardcode_libdir_flag_spec"; then ++ if test -n "$hardcode_libdir_separator"; then ++ if test -z "$hardcode_libdirs"; then ++ hardcode_libdirs="$libdir" ++ else ++ # Just accumulate the unique libdirs. ++ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in ++ *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ++ ;; ++ *) ++ hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ++ ;; ++ esac ++ fi ++ else ++ eval flag=\"$hardcode_libdir_flag_spec\" ++ dep_rpath="$dep_rpath $flag" ++ fi ++ elif test -n "$runpath_var"; then ++ case "$perm_rpath " in ++ *" $libdir "*) ;; ++ *) perm_rpath="$perm_rpath $libdir" ;; ++ esac ++ fi ++ done ++ # Substitute the hardcoded libdirs into the rpath. ++ if test -n "$hardcode_libdir_separator" && ++ test -n "$hardcode_libdirs"; then ++ libdir="$hardcode_libdirs" ++ eval dep_rpath=\"$hardcode_libdir_flag_spec\" ++ fi ++ if test -n "$runpath_var" && test -n "$perm_rpath"; then ++ # We should set the runpath_var. ++ rpath= ++ for dir in $perm_rpath; do ++ rpath="$rpath$dir:" ++ done ++ eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" ++ fi ++ test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" ++ fi ++ ++ shlibpath="$finalize_shlibpath" ++ test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" ++ if test -n "$shlibpath"; then ++ eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" ++ fi ++ + # Get the real and link names of the library. + eval library_names=\"$library_names_spec\" + set dummy $library_names +@@ -2045,6 +2866,7 @@ + else + soname="$realname" + fi ++ test -z "$dlname" && dlname=$soname + + lib="$output_objdir/$realname" + for link +@@ -2079,7 +2901,7 @@ + export_symbols="$output_objdir/$libname.exp" + $run $rm $export_symbols + eval cmds=\"$export_symbols_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -2116,7 +2938,7 @@ + + for xlib in $convenience; do + # Extract the objects. +- case "$xlib" in ++ case $xlib in + [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; + *) xabs=`pwd`"/$xlib" ;; + esac +@@ -2141,16 +2963,32 @@ + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" +- linkopts="$linkopts $flag" ++ linker_flags="$linker_flags $flag" ++ fi ++ ++ # Make a backup of the uninstalled library when relinking ++ if test "$mode" = relink; then ++ $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval cmds=\"$archive_expsym_cmds\" + else ++ save_deplibs="$deplibs" ++ for conv in $convenience; do ++ tmp_deplibs= ++ for test_deplib in $deplibs; do ++ if test "$test_deplib" != "$conv"; then ++ tmp_deplibs="$tmp_deplibs $test_deplib" ++ fi ++ done ++ deplibs="$tmp_deplibs" ++ done + eval cmds=\"$archive_cmds\" ++ deplibs="$save_deplibs" + fi +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -2158,6 +2996,12 @@ + done + IFS="$save_ifs" + ++ # Restore the uninstalled library and exit ++ if test "$mode" = relink; then ++ $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? ++ exit 0 ++ fi ++ + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then +@@ -2174,12 +3018,7 @@ + fi + ;; + +- *.lo | *.o | *.obj) +- if test -n "$link_against_libtool_libs"; then +- $echo "$modename: error: cannot link libtool libraries into objects" 1>&2 +- exit 1 +- fi +- ++ obj) + if test -n "$deplibs"; then + $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 + fi +@@ -2204,9 +3043,9 @@ + $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 + fi + +- case "$output" in ++ case $output in + *.lo) +- if test -n "$objs"; then ++ if test -n "$objs$old_deplibs"; then + $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 + exit 1 + fi +@@ -2230,7 +3069,7 @@ + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec +- wl= ++ wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then +@@ -2249,7 +3088,7 @@ + + for xlib in $convenience; do + # Extract the objects. +- case "$xlib" in ++ case $xlib in + [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; + *) xabs=`pwd`"/$xlib" ;; + esac +@@ -2273,11 +3112,11 @@ + fi + + # Create the old-style object. +- reload_objs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ++ reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + eval cmds=\"$reload_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -2308,12 +3147,12 @@ + exit 0 + fi + +- if test -n "$pic_flag"; then ++ if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + eval cmds=\"$reload_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -2344,8 +3183,10 @@ + exit 0 + ;; + +- # Anything else should be a program. +- *) ++ prog) ++ case $host in ++ *cygwin*) output=`echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; ++ esac + if test -n "$vinfo"; then + $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 + fi +@@ -2355,20 +3196,34 @@ + fi + + if test "$preload" = yes; then +- if test "$dlopen" = unknown && test "$dlopen_self" = unknown && ++ if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && + test "$dlopen_self_static" = unknown; then + $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." +- fi ++ fi + fi +- ++ ++ case $host in ++ *-*-rhapsody* | *-*-darwin1.[012]) ++ # On Rhapsody replace the C library is the System framework ++ compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` ++ finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` ++ case $host in ++ *darwin*) ++ # Don't allow lazy linking, it breaks C++ global constructors ++ compile_command="$compile_command ${wl}-bind_at_load" ++ finalize_command="$finalize_command ${wl}-bind_at_load" ++ ;; ++ esac ++ ;; ++ esac ++ ++ compile_command="$compile_command $compile_deplibs" ++ finalize_command="$finalize_command $finalize_deplibs" ++ + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. +- case "$compile_rpath " in +- *" $libdir "*) ;; +- *) compile_rpath="$compile_rpath $libdir" ;; +- esac + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath="$finalize_rpath $libdir" ;; +@@ -2386,7 +3241,7 @@ + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. +- case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in ++ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) +@@ -2404,6 +3259,14 @@ + *) perm_rpath="$perm_rpath $libdir" ;; + esac + fi ++ case $host in ++ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) ++ case :$dllsearchpath: in ++ *":$libdir:"*) ;; ++ *) dllsearchpath="$dllsearchpath:$libdir";; ++ esac ++ ;; ++ esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && +@@ -2422,7 +3285,7 @@ + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. +- case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in ++ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) +@@ -2449,23 +3312,6 @@ + fi + finalize_rpath="$rpath" + +- output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` +- if test "X$output_objdir" = "X$output"; then +- output_objdir="$objdir" +- else +- output_objdir="$output_objdir/$objdir" +- fi +- +- # Create the binary in the object directory, then wrap it. +- if test ! -d $output_objdir; then +- $show "$mkdir $output_objdir" +- $run $mkdir $output_objdir +- status=$? +- if test $status -ne 0 && test ! -d $output_objdir; then +- exit $status +- fi +- fi +- + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` +@@ -2482,7 +3328,7 @@ + fi + + if test -n "$dlsyms"; then +- case "$dlsyms" in ++ case $dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. +@@ -2514,7 +3360,7 @@ + test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. +- progfiles=`$echo "X$objs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` ++ progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + for arg in $progfiles; do + $show "extracting global C symbols from \`$arg'" + $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" +@@ -2524,7 +3370,7 @@ + $run eval 'egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + $run eval '$mv "$nlist"T "$nlist"' + fi +- ++ + if test -n "$export_symbols_regex"; then + $run eval 'egrep -e "$export_symbols_regex" "$nlist" > "$nlist"T' + $run eval '$mv "$nlist"T "$nlist"' +@@ -2534,9 +3380,9 @@ + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$output.exp" + $run $rm $export_symbols +- $run eval "sed -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' ++ $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + else +- $run eval "sed -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"' ++ $run eval "${SED} -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"' + $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T' + $run eval 'mv "$nlist"T "$nlist"' + fi +@@ -2544,7 +3390,7 @@ + + for arg in $dlprefiles; do + $show "extracting global C symbols from \`$arg'" +- name=`echo "$arg" | sed -e 's%^.*/%%'` ++ name=`echo "$arg" | ${SED} -e 's%^.*/%%'` + $run eval 'echo ": $name " >> "$nlist"' + $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" + done +@@ -2559,7 +3405,13 @@ + fi + + # Try sorting and uniquifying the output. +- if grep -v "^: " < "$nlist" | sort +2 | uniq > "$nlist"S; then ++ if grep -v "^: " < "$nlist" | ++ if sort -k 3 /dev/null 2>&1; then ++ sort -k 3 ++ else ++ sort +2 ++ fi | ++ uniq > "$nlist"S; then + : + else + grep -v "^: " < "$nlist" > "$nlist"S +@@ -2576,27 +3428,25 @@ + #undef lt_preloaded_symbols + + #if defined (__STDC__) && __STDC__ +-# define lt_ptr_t void * ++# define lt_ptr void * + #else +-# define lt_ptr_t char * ++# define lt_ptr char * + # define const + #endif + + /* The mapping between symbol names and symbols. */ + const struct { + const char *name; +- lt_ptr_t address; ++ lt_ptr address; + } + lt_preloaded_symbols[] = + {\ + " + +- sed -n -e 's/^: \([^ ]*\) $/ {\"\1\", (lt_ptr_t) 0},/p' \ +- -e 's/^. \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr_t) \&\2},/p' \ +- < "$nlist" >> "$output_objdir/$dlsyms" ++ eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" + + $echo >> "$output_objdir/$dlsyms" "\ +- {0, (lt_ptr_t) 0} ++ {0, (lt_ptr) 0} + }; + + /* This works around a problem in FreeBSD linker */ +@@ -2613,13 +3463,13 @@ + fi + + pic_flag_for_symtable= +- case "$host" in ++ case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. +- *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) ++ *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + case "$compile_command " in + *" -static "*) ;; + *) pic_flag_for_symtable=" $pic_flag -DPIC -DFREEBSD_WORKAROUND";; +@@ -2658,7 +3508,7 @@ + finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` + fi + +- if test -z "$link_against_libtool_libs" || test "$build_libtool_libs" != yes; then ++ if test $need_relink = no || test "$build_libtool_libs" != yes; then + # Replace the output file specification. + compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" +@@ -2667,7 +3517,7 @@ + $show "$link_command" + $run eval "$link_command" + status=$? +- ++ + # Delete the generated files. + if test -n "$dlsyms"; then + $show "$rm $output_objdir/${outputname}S.${objext}" +@@ -2681,7 +3531,7 @@ + # We should set the shlibpath_var + rpath= + for dir in $temp_rpath; do +- case "$dir" in ++ case $dir in + [\\/]* | [A-Za-z]:[\\/]*) + # Absolute path. + rpath="$rpath$dir:" +@@ -2723,11 +3573,24 @@ + fi + fi + ++ if test "$no_install" = yes; then ++ # We don't need to create a wrapper script. ++ link_command="$compile_var$compile_command$compile_rpath" ++ # Replace the output file specification. ++ link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` ++ # Delete the old output file. ++ $run $rm $output ++ # Link the executable and exit ++ $show "$link_command" ++ $run eval "$link_command" || exit $? ++ exit 0 ++ fi ++ + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" +- ++ + $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 + $echo "$modename: \`$output' will be relinked during installation" 1>&2 + else +@@ -2747,7 +3610,7 @@ + + # Replace the output file specification. + link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` +- ++ + # Delete the old output files. + $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname + +@@ -2759,12 +3622,24 @@ + + # Quote the relink command for shipping. + if test -n "$relink_command"; then ++ # Preserve any variables that may affect compiler behavior ++ for var in $variables_saved_for_relink; do ++ if eval test -z \"\${$var+set}\"; then ++ relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" ++ elif eval var_value=\$$var; test -z "$var_value"; then ++ relink_command="$var=; export $var; $relink_command" ++ else ++ var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` ++ relink_command="$var=\"$var_value\"; export $var; $relink_command" ++ fi ++ done ++ relink_command="(cd `pwd`; $relink_command)" + relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` + fi + + # Quote $echo for shipping. + if test "X$echo" = "X$SHELL $0 --fallback-echo"; then +- case "$0" in ++ case $0 in + [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $0 --fallback-echo";; + *) qecho="$SHELL `pwd`/$0 --fallback-echo";; + esac +@@ -2778,7 +3653,12 @@ + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in +- *.exe) output=`echo $output|sed 's,.exe$,,'` ;; ++ *.exe) output=`echo $output|${SED} 's,.exe$,,'` ;; ++ esac ++ # test for cygwin because mv fails w/o .exe extensions ++ case $host in ++ *cygwin*) exeext=.exe ;; ++ *) exeext= ;; + esac + $rm $output + trap "$rm $output; exit 1" 1 2 15 +@@ -2797,7 +3677,7 @@ + + # Sed substitution that helps us do robust quoting. It backslashifies + # metacharacters that are still active within double-quoted strings. +-Xsed='sed -e 1s/^X//' ++Xsed="${SED}"' -e 1s/^X//' + sed_quote_subst='$sed_quote_subst' + + # The HP-UX ksh and POSIX shell print the target directory to stdout +@@ -2809,7 +3689,7 @@ + # This environment variable determines our operation mode. + if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variable: +- link_against_libtool_libs='$link_against_libtool_libs' ++ notinst_deplibs='$notinst_deplibs' + else + # When we are sourced in execute mode, \$file and \$echo are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then +@@ -2835,20 +3715,20 @@ + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. +- file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\` ++ file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in +- [\\/]* | [A-Za-z]:[\\/]*) thisdir=\"\$destdir\" ;; ++ [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` +- file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\` ++ file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` + done + + # Try to get the absolute directory name. +@@ -2858,11 +3738,11 @@ + + if test "$fast_install" = yes; then + echo >> $output "\ +- program=lt-'$outputname' ++ program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" +- ++ + if test ! -f \"\$progdir/\$program\" || \\ +- { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | sed 1q\`; \\ ++ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" +@@ -2877,8 +3757,9 @@ + + # relink executable if necessary + if test -n \"\$relink_command\"; then +- if (cd \"\$thisdir\" && eval \$relink_command); then : ++ if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else ++ $echo \"\$relink_command_output\" >&2 + $rm \"\$progdir/\$file\" + exit 1 + fi +@@ -2907,7 +3788,7 @@ + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var +- # The second colon is a workaround for a bug in BeOS R4 sed ++ # The second colon is a workaround for a bug in BeOS R4 ${SED} + $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` + + export $shlibpath_var +@@ -2927,13 +3808,21 @@ + # Run the actual program with our arguments. + " + case $host in +- *-*-cygwin* | *-*-mingw | *-*-os2*) +- # win32 systems need to use the prog path for dll +- # lookup to work ++ # win32 systems need to use the prog path for dll ++ # lookup to work ++ *-*-cygwin* | *-*-pw32*) ++ $echo >> $output "\ ++ exec \$progdir/\$program \${1+\"\$@\"} ++" ++ ;; ++ ++ # Backslashes separate directories on plain windows ++ *-*-mingw | *-*-os2*) + $echo >> $output "\ + exec \$progdir\\\\\$program \${1+\"\$@\"} + " + ;; ++ + *) + $echo >> $output "\ + # Export the path to the program. +@@ -2975,7 +3864,7 @@ + oldobjs="$libobjs_save" + build_libtool_libs=no + else +- oldobjs="$objs "`$echo "X$libobjs_save" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP` ++ oldobjs="$objs$old_deplibs "`$echo "X$libobjs_save" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP` + fi + addlibs="$old_convenience" + fi +@@ -2991,11 +3880,11 @@ + exit $status + fi + generated="$generated $gentop" +- ++ + # Add in members from convenience archives. + for xlib in $addlibs; do + # Extract the objects. +- case "$xlib" in ++ case $xlib in + [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; + *) xabs=`pwd`"/$xlib" ;; + esac +@@ -3041,7 +3930,7 @@ + + eval cmds=\"$old_archive_cmds\" + fi +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -3056,19 +3945,26 @@ + fi + + # Now create the libtool archive. +- case "$output" in ++ case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + $show "creating $output" + +- if test -n "$xrpath"; then +- temp_xrpath= +- for libdir in $xrpath; do +- temp_xrpath="$temp_xrpath -R$libdir" +- done +- dependency_libs="$temp_xrpath $dependency_libs" +- fi ++ # Preserve any variables that may affect compiler behavior ++ for var in $variables_saved_for_relink; do ++ if eval test -z \"\${$var+set}\"; then ++ relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" ++ elif eval var_value=\$$var; test -z "$var_value"; then ++ relink_command="$var=; export $var; $relink_command" ++ else ++ var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` ++ relink_command="$var=\"$var_value\"; export $var; $relink_command" ++ fi ++ done ++ # Quote the link command for shipping. ++ relink_command="(cd `pwd`; $SHELL $0 --mode=relink $libtool_args @inst_prefix_dir@)" ++ relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` + + # Only create the output if not a dry run. + if test -z "$run"; then +@@ -3078,8 +3974,52 @@ + break + fi + output="$output_objdir/$outputname"i ++ # Replace all uninstalled libtool libraries with the installed ones ++ newdependency_libs= ++ for deplib in $dependency_libs; do ++ case $deplib in ++ *.la) ++ name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` ++ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` ++ if test -z "$libdir"; then ++ $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 ++ exit 1 ++ fi ++ newdependency_libs="$newdependency_libs $libdir/$name" ++ ;; ++ *) newdependency_libs="$newdependency_libs $deplib" ;; ++ esac ++ done ++ dependency_libs="$newdependency_libs" ++ newdlfiles= ++ for lib in $dlfiles; do ++ name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` ++ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` ++ if test -z "$libdir"; then ++ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 ++ exit 1 ++ fi ++ newdlfiles="$newdlfiles $libdir/$name" ++ done ++ dlfiles="$newdlfiles" ++ newdlprefiles= ++ for lib in $dlprefiles; do ++ name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` ++ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` ++ if test -z "$libdir"; then ++ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 ++ exit 1 ++ fi ++ newdlprefiles="$newdlprefiles $libdir/$name" ++ done ++ dlprefiles="$newdlprefiles" + fi + $rm $output ++ # place dlname in correct position for cygwin ++ tdlname=$dlname ++ case $host,$output,$installed,$module,$dlname in ++ *cygwin*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; ++ esac + $echo > $output "\ + # $outputname - a libtool library file + # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP +@@ -3088,7 +4028,7 @@ + # It is necessary for linking the library. + + # The name that we can dlopen(3). +-dlname='$dlname' ++dlname='$tdlname' + + # Names of this library. + library_names='$library_names' +@@ -3107,16 +4047,23 @@ + # Is this an already installed library? + installed=$installed + ++# Files to dlopen/dlpreopen ++dlopen='$dlfiles' ++dlpreopen='$dlprefiles' ++ + # Directory that this library needs to be installed in: +-libdir='$install_libdir'\ +-" ++libdir='$install_libdir'" ++ if test "$installed" = no && test $need_relink = yes; then ++ $echo >> $output "\ ++relink_command=\"$relink_command\"" ++ fi + done + fi + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" +- $run eval "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" || exit $? ++ $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? + ;; + esac + exit 0 +@@ -3128,10 +4075,12 @@ + + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). +- if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh; then ++ if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || ++ # Allow the use of GNU shtool's install command. ++ $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then + # Aesthetically quote it. + arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` +- case "$arg" in ++ case $arg in + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) + arg="\"$arg\"" + ;; +@@ -3147,7 +4096,7 @@ + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` +- case "$arg" in ++ case $arg in + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) + arg="\"$arg\"" + ;; +@@ -3170,7 +4119,7 @@ + continue + fi + +- case "$arg" in ++ case $arg in + -d) isdir=yes ;; + -f) prev="-f" ;; + -g) prev="-g" ;; +@@ -3195,7 +4144,7 @@ + + # Aesthetically quote the argument. + arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` +- case "$arg" in ++ case $arg in + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) + arg="\"$arg\"" + ;; +@@ -3246,11 +4195,11 @@ + exit 1 + fi + fi +- case "$destdir" in ++ case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do +- case "$file" in ++ case $file in + *.lo) ;; + *) + $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 +@@ -3272,15 +4221,15 @@ + for file in $files; do + + # Do each installation. +- case "$file" in +- *.a | *.lib) ++ case $file in ++ *.$libext) + # Do the static libraries later. + staticlibs="$staticlibs $file" + ;; + + *.la) + # Check to see that this really is a libtool archive. +- if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : ++ if (${SED} -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : + else + $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 + $echo "$help" 1>&2 +@@ -3289,8 +4238,9 @@ + + library_names= + old_library= ++ relink_command= + # If there is no directory component, then add one. +- case "$file" in ++ case $file in + */* | *\\*) . $file ;; + *) . ./$file ;; + esac +@@ -3309,10 +4259,38 @@ + esac + fi + +- dir="`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/" ++ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ + test "X$dir" = "X$file/" && dir= + dir="$dir$objdir" + ++ if test -n "$relink_command"; then ++ # Determine the prefix the user has applied to our future dir. ++ inst_prefix_dir=`$echo "$destdir" | sed "s%$libdir\$%%"` ++ ++ # Don't allow the user to place us outside of our expected ++ # location b/c this prevents finding dependent libraries that ++ # are installed to the same prefix. ++ if test "$inst_prefix_dir" = "$destdir"; then ++ $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 ++ exit 1 ++ fi ++ ++ if test -n "$inst_prefix_dir"; then ++ # Stick the inst_prefix_dir data into the link command. ++ relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` ++ else ++ relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%%"` ++ fi ++ ++ $echo "$modename: warning: relinking \`$file'" 1>&2 ++ $show "$relink_command" ++ if $run eval "$relink_command"; then : ++ else ++ $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 ++ exit 1 ++ fi ++ fi ++ + # See the names of the shared library. + set dummy $library_names + if test -n "$2"; then +@@ -3320,9 +4298,16 @@ + shift + shift + ++ srcname="$realname" ++ test -n "$relink_command" && srcname="$realname"T ++ + # Install the shared library and build the symlinks. +- $show "$install_prog $dir/$realname $destdir/$realname" +- $run eval "$install_prog $dir/$realname $destdir/$realname" || exit $? ++ $show "$install_prog $dir/$srcname $destdir/$realname" ++ $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? ++ if test -n "$stripme" && test -n "$striplib"; then ++ $show "$striplib $destdir/$realname" ++ $run eval "$striplib $destdir/$realname" || exit $? ++ fi + + if test $# -gt 0; then + # Delete the old symlinks, and create new ones. +@@ -3338,7 +4323,7 @@ + # Do each command in the postinstall commands. + lib="$destdir/$realname" + eval cmds=\"$postinstall_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -3369,11 +4354,11 @@ + fi + + # Deduce the name of the destination old-style object file. +- case "$destfile" in ++ case $destfile in + *.lo) + staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` + ;; +- *.o | *.obj) ++ *.$objext) + staticdest="$destfile" + destfile= + ;; +@@ -3411,40 +4396,55 @@ + fi + + # Do a test to see if this is really a libtool program. +- if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then +- link_against_libtool_libs= ++ case $host in ++ *cygwin*|*mingw*) ++ wrapper=`echo $file | ${SED} -e 's,.exe$,,'` ++ ;; ++ *) ++ wrapper=$file ++ ;; ++ esac ++ if (${SED} -e '4q' $wrapper | egrep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then ++ notinst_deplibs= + relink_command= + + # If there is no directory component, then add one. +- case "$file" in +- */* | *\\*) . $file ;; +- *) . ./$file ;; ++ case $file in ++ */* | *\\*) . $wrapper ;; ++ *) . ./$wrapper ;; + esac + + # Check the variables that should have been set. +- if test -z "$link_against_libtool_libs"; then +- $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2 ++ if test -z "$notinst_deplibs"; then ++ $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 + exit 1 + fi + + finalize=yes +- for lib in $link_against_libtool_libs; do ++ for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + # If there is no directory component, then add one. +- case "$lib" in ++ case $lib in + */* | *\\*) . $lib ;; + *) . ./$lib ;; + esac + fi +- libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`" ++ libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 + finalize=no + fi + done + ++ relink_command= ++ # If there is no directory component, then add one. ++ case $file in ++ */* | *\\*) . $wrapper ;; ++ *) . ./$wrapper ;; ++ esac ++ + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + if test "$finalize" = yes && test -z "$run"; then +@@ -3456,6 +4456,7 @@ + $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2 + continue + fi ++ file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` +@@ -3477,6 +4478,23 @@ + fi + fi + ++ # remove .exe since cygwin /usr/bin/install will append another ++ # one anyways ++ case $install_prog,$host in ++ /usr/bin/install*,*cygwin*) ++ case $file:$destfile in ++ *.exe:*.exe) ++ # this is ok ++ ;; ++ *.exe:*) ++ destfile=$destfile.exe ++ ;; ++ *:*.exe) ++ destfile=`echo $destfile | ${SED} -e 's,.exe$,,'` ++ ;; ++ esac ++ ;; ++ esac + $show "$install_prog$stripme $file $destfile" + $run eval "$install_prog\$stripme \$file \$destfile" || exit $? + test -n "$outputname" && ${rm}r "$tmpdir" +@@ -3493,9 +4511,14 @@ + $show "$install_prog $file $oldlib" + $run eval "$install_prog \$file \$oldlib" || exit $? + ++ if test -n "$stripme" && test -n "$striplib"; then ++ $show "$old_striplib $oldlib" ++ $run eval "$old_striplib $oldlib" || exit $? ++ fi ++ + # Do each command in the postinstall commands. + eval cmds=\"$old_postinstall_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -3511,11 +4534,10 @@ + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + test -n "$run" && current_libdirs=" -n$current_libdirs" +- exec $SHELL $0 --finish$current_libdirs +- exit 1 ++ exec_cmd='$SHELL $0 --finish$current_libdirs' ++ else ++ exit 0 + fi +- +- exit 0 + ;; + + # libtool finish mode +@@ -3534,7 +4556,7 @@ + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + eval cmds=\"$finish_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' ++ save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + $show "$cmd" +@@ -3553,7 +4575,7 @@ + fi + + # Exit here if they wanted silent mode. +- test "$show" = : && exit 0 ++ test "$show" = ":" && exit 0 + + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" +@@ -3563,7 +4585,7 @@ + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" +- echo "specify the full pathname of the library, or use \`-LLIBDIR'" ++ echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" +@@ -3613,10 +4635,10 @@ + fi + + dir= +- case "$file" in ++ case $file in + *.la) + # Check to see that this really is a libtool archive. +- if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : ++ if (${SED} -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : + else + $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 + $echo "$help" 1>&2 +@@ -3628,7 +4650,7 @@ + library_names= + + # If there is no directory component, then add one. +- case "$file" in ++ case $file in + */* | *\\*) . $file ;; + *) . ./$file ;; + esac +@@ -3683,13 +4705,13 @@ + args= + for file + do +- case "$file" in ++ case $file in + -*) ;; + *) + # Do a test to see if this is really a libtool program. +- if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then ++ if (${SED} -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then + # If there is no directory component, then add one. +- case "$file" in ++ case $file in + */* | *\\*) . $file ;; + *) . ./$file ;; + esac +@@ -3706,8 +4728,8 @@ + + if test -z "$run"; then + if test -n "$shlibpath_var"; then +- # Export the shlibpath_var. +- eval "export $shlibpath_var" ++ # Export the shlibpath_var. ++ eval "export $shlibpath_var" + fi + + # Restore saved enviroment variables +@@ -3718,31 +4740,35 @@ + LANG="$save_LANG"; export LANG + fi + +- # Now actually exec the command. +- eval "exec \$cmd$args" +- +- $echo "$modename: cannot exec \$cmd$args" +- exit 1 ++ # Now prepare to actually exec the command. ++ exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then +- eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" +- $echo "export $shlibpath_var" ++ eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" ++ $echo "export $shlibpath_var" + fi + $echo "$cmd$args" + exit 0 + fi + ;; + +- # libtool uninstall mode +- uninstall) +- modename="$modename: uninstall" ++ # libtool clean and uninstall mode ++ clean | uninstall) ++ modename="$modename: $mode" + rm="$nonopt" + files= ++ rmforce= ++ exit_status=0 ++ ++ # This variable tells wrapper scripts just to set variables rather ++ # than running their programs. ++ libtool_install_magic="$magic" + + for arg + do +- case "$arg" in ++ case $arg in ++ -f) rm="$rm $arg"; rmforce=yes ;; + -*) rm="$rm $arg" ;; + *) files="$files $arg" ;; + esac +@@ -3754,53 +4780,86 @@ + exit 1 + fi + ++ rmdirs= ++ + for file in $files; do + dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` +- test "X$dir" = "X$file" && dir=. ++ if test "X$dir" = "X$file"; then ++ dir=. ++ objdir="$objdir" ++ else ++ objdir="$dir/$objdir" ++ fi + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` ++ test $mode = uninstall && objdir="$dir" ++ ++ # Remember objdir for removal later, being careful to avoid duplicates ++ if test $mode = clean; then ++ case " $rmdirs " in ++ *" $objdir "*) ;; ++ *) rmdirs="$rmdirs $objdir" ;; ++ esac ++ fi ++ ++ # Don't error if the file doesn't exist and rm -f was used. ++ if (test -L "$file") >/dev/null 2>&1 \ ++ || (test -h "$file") >/dev/null 2>&1 \ ++ || test -f "$file"; then ++ : ++ elif test -d "$file"; then ++ exit_status=1 ++ continue ++ elif test "$rmforce" = yes; then ++ continue ++ fi + + rmfiles="$file" + +- case "$name" in ++ case $name in + *.la) + # Possibly a libtool archive, so verify it. +- if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then ++ if (${SED} -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then + . $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do +- rmfiles="$rmfiles $dir/$n" ++ rmfiles="$rmfiles $objdir/$n" + done +- test -n "$old_library" && rmfiles="$rmfiles $dir/$old_library" ++ test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" ++ test $mode = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" + +- $show "$rm $rmfiles" +- $run $rm $rmfiles +- +- if test -n "$library_names"; then +- # Do each command in the postuninstall commands. +- eval cmds=\"$postuninstall_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' +- for cmd in $cmds; do ++ if test $mode = uninstall; then ++ if test -n "$library_names"; then ++ # Do each command in the postuninstall commands. ++ eval cmds=\"$postuninstall_cmds\" ++ save_ifs="$IFS"; IFS='~' ++ for cmd in $cmds; do ++ IFS="$save_ifs" ++ $show "$cmd" ++ $run eval "$cmd" ++ if test $? != 0 && test "$rmforce" != yes; then ++ exit_status=1 ++ fi ++ done + IFS="$save_ifs" +- $show "$cmd" +- $run eval "$cmd" +- done +- IFS="$save_ifs" +- fi ++ fi + +- if test -n "$old_library"; then +- # Do each command in the old_postuninstall commands. +- eval cmds=\"$old_postuninstall_cmds\" +- IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' +- for cmd in $cmds; do ++ if test -n "$old_library"; then ++ # Do each command in the old_postuninstall commands. ++ eval cmds=\"$old_postuninstall_cmds\" ++ save_ifs="$IFS"; IFS='~' ++ for cmd in $cmds; do ++ IFS="$save_ifs" ++ $show "$cmd" ++ $run eval "$cmd" ++ if test $? != 0 && test "$rmforce" != yes; then ++ exit_status=1 ++ fi ++ done + IFS="$save_ifs" +- $show "$cmd" +- $run eval "$cmd" +- done +- IFS="$save_ifs" ++ fi ++ # FIXME: should reinstall the best remaining shared library. + fi +- +- # FIXME: should reinstall the best remaining shared library. + fi + ;; + +@@ -3809,17 +4868,35 @@ + oldobj=`$echo "X$name" | $Xsed -e "$lo2o"` + rmfiles="$rmfiles $dir/$oldobj" + fi +- $show "$rm $rmfiles" +- $run $rm $rmfiles + ;; + + *) +- $show "$rm $rmfiles" +- $run $rm $rmfiles ++ # Do a test to see if this is a libtool program. ++ if test $mode = clean && ++ (${SED} -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then ++ relink_command= ++ . $dir/$file ++ ++ rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" ++ if test "$fast_install" = yes && test -n "$relink_command"; then ++ rmfiles="$rmfiles $objdir/lt-$name" ++ fi ++ fi + ;; + esac ++ $show "$rm $rmfiles" ++ $run $rm $rmfiles || exit_status=1 + done +- exit 0 ++ ++ # Try to remove the ${objdir}s in the directories where we deleted files ++ for dir in $rmdirs; do ++ if test -d "$dir"; then ++ $show "rmdir $dir" ++ $run rmdir $dir >/dev/null 2>&1 ++ fi ++ done ++ ++ exit $exit_status + ;; + + "") +@@ -3829,13 +4906,20 @@ + ;; + esac + +- $echo "$modename: invalid operation mode \`$mode'" 1>&2 +- $echo "$generic_help" 1>&2 +- exit 1 ++ if test -z "$exec_cmd"; then ++ $echo "$modename: invalid operation mode \`$mode'" 1>&2 ++ $echo "$generic_help" 1>&2 ++ exit 1 ++ fi + fi # test -z "$show_help" + ++if test -n "$exec_cmd"; then ++ eval exec $exec_cmd ++ exit 1 ++fi ++ + # We need to display help for each of the modes. +-case "$mode" in ++case $mode in + "") $echo \ + "Usage: $modename [OPTION]... [MODE-ARG]... + +@@ -3854,6 +4938,7 @@ + + MODE must be one of the following: + ++ clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries +@@ -3866,6 +4951,20 @@ + exit 0 + ;; + ++clean) ++ $echo \ ++"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... ++ ++Remove files from the build directory. ++ ++RM is the name of the program to use to delete files associated with each FILE ++(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed ++to RM. ++ ++If FILE is a libtool library, object or program, all the files associated ++with it are deleted. Otherwise, only FILE itself is deleted using RM." ++ ;; ++ + compile) + $echo \ + "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE +@@ -3875,6 +4974,8 @@ + This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE ++ -prefer-pic try to building PIC objects only ++ -prefer-non-pic try to building non-PIC objects only + -static always build a \`.o' file suitable for static linking + + COMPILE-COMMAND is a command to be used in creating a \`standard' object file +@@ -3954,6 +5055,8 @@ + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened ++ -no-fast-install disable the fast-install mode ++ -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -release RELEASE specify package release information +--- recode-3.6.orig/m4/libtool.m4 ++++ recode-3.6/m4/libtool.m4 +@@ -1,5 +1,6 @@ +-## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*- +-## Copyright (C) 1996-1999, 2000 Free Software Foundation, Inc. ++# libtool.m4 - Configure libtool for the host system. -*-Shell-script-*- ++## Copyright 1996, 1997, 1998, 1999, 2000, 2001 ++## Free Software Foundation, Inc. + ## Originally by Gordon Matzigkeit , 1996 + ## + ## This program is free software; you can redistribute it and/or modify +@@ -21,134 +22,3028 @@ + ## configuration script generated by Autoconf, you may include it under + ## the same distribution terms that you use for the rest of that program. + +-# serial 40 AC_PROG_LIBTOOL +-AC_DEFUN(AC_PROG_LIBTOOL, ++# serial 46 AC_PROG_LIBTOOL ++# Debian $Rev: 50 $ ++ ++AC_DEFUN([AC_PROG_LIBTOOL], + [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl + +-# Save cache, so that ltconfig can load it +-AC_CACHE_SAVE ++# This can be used to rebuild libtool when needed ++LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++ ++# Always use our own libtool. ++LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++AC_SUBST(LIBTOOL)dnl ++ ++# Prevent multiple expansion ++define([AC_PROG_LIBTOOL], []) ++]) ++ ++AC_DEFUN([AC_LIBTOOL_SETUP], ++[AC_PREREQ(2.13)dnl ++AC_REQUIRE([AC_ENABLE_SHARED])dnl ++AC_REQUIRE([AC_ENABLE_STATIC])dnl ++AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl ++AC_REQUIRE([AC_CANONICAL_HOST])dnl ++AC_REQUIRE([AC_CANONICAL_BUILD])dnl ++AC_REQUIRE([AC_PROG_CC])dnl ++AC_REQUIRE([AC_PROG_LD])dnl ++AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl ++AC_REQUIRE([AC_PROG_NM])dnl ++AC_REQUIRE([LT_AC_PROG_SED])dnl ++ ++AC_REQUIRE([AC_PROG_LN_S])dnl ++AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl ++AC_REQUIRE([AC_OBJEXT])dnl ++AC_REQUIRE([AC_EXEEXT])dnl ++dnl ++ ++_LT_AC_PROG_ECHO_BACKSLASH ++# Only perform the check for file, if the check method requires it ++case $deplibs_check_method in ++file_magic*) ++ if test "$file_magic_cmd" = '$MAGIC_CMD'; then ++ AC_PATH_MAGIC ++ fi ++ ;; ++esac ++ ++AC_CHECK_TOOL(RANLIB, ranlib, :) ++AC_CHECK_TOOL(STRIP, strip, :) ++ ++ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) ++ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], ++enable_win32_dll=yes, enable_win32_dll=no) ++ ++AC_ARG_ENABLE(libtool-lock, ++ [ --disable-libtool-lock avoid locking (might break parallel builds)]) ++test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ++ ++# Some flags need to be propagated to the compiler or linker for good ++# libtool support. ++case $host in ++*-*-irix6*) ++ # Find out which ABI we are using. ++ echo '[#]line __oline__ "configure"' > conftest.$ac_ext ++ if AC_TRY_EVAL(ac_compile); then ++ case `/usr/bin/file conftest.$ac_objext` in ++ *32-bit*) ++ LD="${LD-ld} -32" ++ ;; ++ *N32*) ++ LD="${LD-ld} -n32" ++ ;; ++ *64-bit*) ++ LD="${LD-ld} -64" ++ ;; ++ esac ++ fi ++ rm -rf conftest* ++ ;; ++ ++*-*-sco3.2v5*) ++ # On SCO OpenServer 5, we need -belf to get full-featured binaries. ++ SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -belf" ++ AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, ++ [AC_LANG_SAVE ++ AC_LANG_C ++ AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) ++ AC_LANG_RESTORE]) ++ if test x"$lt_cv_cc_needs_belf" != x"yes"; then ++ # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf ++ CFLAGS="$SAVE_CFLAGS" ++ fi ++ ;; ++ ++ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], ++[*-*-cygwin* | *-*-mingw* | *-*-pw32*) ++ AC_CHECK_TOOL(DLLTOOL, dlltool, false) ++ AC_CHECK_TOOL(AS, as, false) ++ AC_CHECK_TOOL(OBJDUMP, objdump, false) ++ ++ # recent cygwin and mingw systems supply a stub DllMain which the user ++ # can override, but on older systems we have to supply one ++ AC_CACHE_CHECK([if libtool should supply DllMain function], lt_cv_need_dllmain, ++ [AC_TRY_LINK([], ++ [extern int __attribute__((__stdcall__)) DllMain(void*, int, void*); ++ DllMain (0, 0, 0);], ++ [lt_cv_need_dllmain=no],[lt_cv_need_dllmain=yes])]) ++ ++ case $host/$CC in ++ *-*-cygwin*/gcc*-mno-cygwin*|*-*-mingw*) ++ # old mingw systems require "-dll" to link a DLL, while more recent ones ++ # require "-mdll" ++ SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -mdll" ++ AC_CACHE_CHECK([how to link DLLs], lt_cv_cc_dll_switch, ++ [AC_TRY_LINK([], [], [lt_cv_cc_dll_switch=-mdll],[lt_cv_cc_dll_switch=-dll])]) ++ CFLAGS="$SAVE_CFLAGS" ;; ++ *-*-cygwin* | *-*-pw32*) ++ # cygwin systems need to pass --dll to the linker, and not link ++ # crt.o which will require a WinMain@16 definition. ++ lt_cv_cc_dll_switch="-Wl,--dll -nostartfiles" ;; ++ esac ++ ;; ++ ]) ++esac ++ ++_LT_AC_LTCONFIG_HACK ++ ++]) ++ ++# AC_LIBTOOL_HEADER_ASSERT ++# ------------------------ ++AC_DEFUN([AC_LIBTOOL_HEADER_ASSERT], ++[AC_CACHE_CHECK([whether $CC supports assert without backlinking], ++ [lt_cv_func_assert_works], ++ [case $host in ++ *-*-solaris*) ++ if test "$GCC" = yes && test "$with_gnu_ld" != yes; then ++ case `$CC --version 2>/dev/null` in ++ [[12]].*) lt_cv_func_assert_works=no ;; ++ *) lt_cv_func_assert_works=yes ;; ++ esac ++ fi ++ ;; ++ esac]) ++ ++if test "x$lt_cv_func_assert_works" = xyes; then ++ AC_CHECK_HEADERS(assert.h) ++fi ++])# AC_LIBTOOL_HEADER_ASSERT ++ ++# _LT_AC_CHECK_DLFCN ++# -------------------- ++AC_DEFUN([_LT_AC_CHECK_DLFCN], ++[AC_CHECK_HEADERS(dlfcn.h) ++])# _LT_AC_CHECK_DLFCN ++ ++# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ++# --------------------------------- ++AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], ++[AC_REQUIRE([AC_CANONICAL_HOST]) ++AC_REQUIRE([AC_PROG_NM]) ++AC_REQUIRE([AC_OBJEXT]) ++# Check for command to grab the raw symbol name followed by C symbol from nm. ++AC_MSG_CHECKING([command to parse $NM output]) ++AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [dnl ++ ++# These are sane defaults that work on at least a few old systems. ++# [They come from Ultrix. What could be older than Ultrix?!! ;)] ++ ++# Character class describing NM global symbol codes. ++symcode='[[BCDEGRST]]' ++ ++# Regexp to match symbols that can be accessed directly from C. ++sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' ++ ++# Transform the above into a raw symbol and a C symbol. ++symxfrm='\1 \2\3 \3' ++ ++# Transform an extracted symbol line into a proper C declaration ++lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'" ++ ++# Transform an extracted symbol line into symbol name and symbol address ++lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ++# Define system-specific variables. ++case $host_os in ++aix*) ++ symcode='[[BCDT]]' ++ ;; ++cygwin* | mingw* | pw32*) ++ symcode='[[ABCDGISTW]]' ++ ;; ++hpux*) # Its linker distinguishes data from code symbols ++ lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ++ lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ;; ++irix* | nonstopux*) ++ symcode='[[BCDEGRST]]' ++ ;; ++osf*) ++ symcode='[[BCDEGQRST]]' ++ ;; ++solaris* | sysv5*) ++ symcode='[[BDT]]' ++ ;; ++sysv4) ++ symcode='[[DFNSTU]]' ++ ;; ++esac ++ ++# Handle CRLF in mingw tool chain ++opt_cr= ++case $host_os in ++mingw*) ++ opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ++ ;; ++esac ++ ++# If we're using GNU nm, then use its standard symbol codes. ++if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then ++ symcode='[[ABCDGISTW]]' ++fi ++ ++# Try without a prefix undercore, then with it. ++for ac_symprfx in "" "_"; do ++ ++ # Write the raw and C identifiers. ++lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" ++ ++ # Check to see that the pipe works correctly. ++ pipe_works=no ++ rm -f conftest* ++ cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then ++ # Try sorting and uniquifying the output. ++ if sort "$nlist" | uniq > "$nlist"T; then ++ mv -f "$nlist"T "$nlist" ++ else ++ rm -f "$nlist"T ++ fi ++ ++ # Make sure that we snagged all the symbols we need. ++ if egrep ' nm_test_var$' "$nlist" >/dev/null; then ++ if egrep ' nm_test_func$' "$nlist" >/dev/null; then ++ cat < conftest.$ac_ext ++#ifdef __cplusplus ++extern "C" { ++#endif ++ ++EOF ++ # Now generate the symbol file. ++ eval "$lt_cv_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext' ++ ++ cat <> conftest.$ac_ext ++#if defined (__STDC__) && __STDC__ ++# define lt_ptr void * ++#else ++# define lt_ptr char * ++# define const ++#endif ++ ++/* The mapping between symbol names and symbols. */ ++const struct { ++ const char *name; ++ lt_ptr address; ++} ++lt_preloaded_symbols[[]] = ++{ ++EOF ++ sed "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr) \&\2},/" < "$nlist" >> conftest.$ac_ext ++ cat <<\EOF >> conftest.$ac_ext ++ {0, (lt_ptr) 0} ++}; ++ ++#ifdef __cplusplus ++} ++#endif ++EOF ++ # Now try linking the two files. ++ mv conftest.$ac_objext conftstm.$ac_objext ++ save_LIBS="$LIBS" ++ save_CFLAGS="$CFLAGS" ++ LIBS="conftstm.$ac_objext" ++ CFLAGS="$CFLAGS$no_builtin_flag" ++ if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then ++ pipe_works=yes ++ fi ++ LIBS="$save_LIBS" ++ CFLAGS="$save_CFLAGS" ++ else ++ echo "cannot find nm_test_func in $nlist" >&AC_FD_CC ++ fi ++ else ++ echo "cannot find nm_test_var in $nlist" >&AC_FD_CC ++ fi ++ else ++ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AC_FD_CC ++ fi ++ else ++ echo "$progname: failed program was:" >&AC_FD_CC ++ cat conftest.$ac_ext >&5 ++ fi ++ rm -f conftest* conftst* ++ ++ # Do not use the global_symbol_pipe unless it works. ++ if test "$pipe_works" = yes; then ++ break ++ else ++ lt_cv_sys_global_symbol_pipe= ++ fi ++done ++]) ++global_symbol_pipe="$lt_cv_sys_global_symbol_pipe" ++if test -z "$lt_cv_sys_global_symbol_pipe"; then ++ global_symbol_to_cdecl= ++ global_symbol_to_c_name_address= ++else ++ global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl" ++ global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address" ++fi ++if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address"; ++then ++ AC_MSG_RESULT(failed) ++else ++ AC_MSG_RESULT(ok) ++fi ++]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ++ ++# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++# --------------------------------- ++AC_DEFUN([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR], ++[# Find the correct PATH separator. Usually this is `:', but ++# DJGPP uses `;' like DOS. ++if test "X${PATH_SEPARATOR+set}" != Xset; then ++ UNAME=${UNAME-`uname 2>/dev/null`} ++ case X$UNAME in ++ *-DOS) lt_cv_sys_path_separator=';' ;; ++ *) lt_cv_sys_path_separator=':' ;; ++ esac ++ PATH_SEPARATOR=$lt_cv_sys_path_separator ++fi ++])# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++ ++# _LT_AC_PROG_ECHO_BACKSLASH ++# -------------------------- ++# Add some code to the start of the generated configure script which ++# will find an echo command which doesn't interpret backslashes. ++AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], ++[ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], ++ [AC_DIVERT_PUSH(NOTICE)]) ++_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++ ++# Check that we are running under the correct shell. ++SHELL=${CONFIG_SHELL-/bin/sh} ++ ++case X$ECHO in ++X*--fallback-echo) ++ # Remove one level of quotation (which was required for Make). ++ ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ++ ;; ++esac ++ ++echo=${ECHO-echo} ++if test "X[$]1" = X--no-reexec; then ++ # Discard the --no-reexec flag, and continue. ++ shift ++elif test "X[$]1" = X--fallback-echo; then ++ # Avoid inline document here, it may be left over ++ : ++elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then ++ # Yippee, $echo works! ++ : ++else ++ # Restart under the correct shell. ++ exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} ++fi ++ ++if test "X[$]1" = X--fallback-echo; then ++ # used as fallback echo ++ shift ++ cat </dev/null && ++ echo_test_string="`eval $cmd`" && ++ (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null ++ then ++ break ++ fi ++ done ++fi ++ ++if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ : ++else ++ # The Solaris, AIX, and Digital Unix default echo programs unquote ++ # backslashes. This makes it impossible to quote backslashes using ++ # echo "$something" | sed 's/\\/\\\\/g' ++ # ++ # So, first we look for a working echo in the user's PATH. ++ ++ IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR ++ for dir in $PATH /usr/ucb; do ++ if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && ++ test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$dir/echo" ++ break ++ fi ++ done ++ IFS="$save_ifs" ++ ++ if test "X$echo" = Xecho; then ++ # We didn't find a better echo, so look for alternatives. ++ if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # This shell has a builtin print -r that does the trick. ++ echo='print -r' ++ elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && ++ test "X$CONFIG_SHELL" != X/bin/ksh; then ++ # If we have ksh, try running configure again with it. ++ ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} ++ export ORIGINAL_CONFIG_SHELL ++ CONFIG_SHELL=/bin/ksh ++ export CONFIG_SHELL ++ exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} ++ else ++ # Try using printf. ++ echo='printf %s\n' ++ if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # Cool, printf works ++ : ++ elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL ++ export CONFIG_SHELL ++ SHELL="$CONFIG_SHELL" ++ export SHELL ++ echo="$CONFIG_SHELL [$]0 --fallback-echo" ++ elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$CONFIG_SHELL [$]0 --fallback-echo" ++ else ++ # maybe with a smaller string... ++ prev=: ++ ++ for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do ++ if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null ++ then ++ break ++ fi ++ prev="$cmd" ++ done ++ ++ if test "$prev" != 'sed 50q "[$]0"'; then ++ echo_test_string=`eval $prev` ++ export echo_test_string ++ exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} ++ else ++ # Oops. We lost completely, so just stick with echo. ++ echo=echo ++ fi ++ fi ++ fi ++ fi ++fi ++fi ++ ++# Copy echo and quote the copy suitably for passing to libtool from ++# the Makefile, instead of quoting the original, which is used later. ++ECHO=$echo ++if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ++ ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" ++fi ++ ++AC_SUBST(ECHO) ++AC_DIVERT_POP ++])# _LT_AC_PROG_ECHO_BACKSLASH ++ ++# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, ++# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) ++# ------------------------------------------------------------------ ++AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], ++[if test "$cross_compiling" = yes; then : ++ [$4] ++else ++ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ++ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 ++ lt_status=$lt_dlunknown ++ cat > conftest.$ac_ext < ++#endif ++ ++#include ++ ++#ifdef RTLD_GLOBAL ++# define LT_DLGLOBAL RTLD_GLOBAL ++#else ++# ifdef DL_GLOBAL ++# define LT_DLGLOBAL DL_GLOBAL ++# else ++# define LT_DLGLOBAL 0 ++# endif ++#endif ++ ++/* We may have to define LT_DLLAZY_OR_NOW in the command line if we ++ find out it does not work in some platform. */ ++#ifndef LT_DLLAZY_OR_NOW ++# ifdef RTLD_LAZY ++# define LT_DLLAZY_OR_NOW RTLD_LAZY ++# else ++# ifdef DL_LAZY ++# define LT_DLLAZY_OR_NOW DL_LAZY ++# else ++# ifdef RTLD_NOW ++# define LT_DLLAZY_OR_NOW RTLD_NOW ++# else ++# ifdef DL_NOW ++# define LT_DLLAZY_OR_NOW DL_NOW ++# else ++# define LT_DLLAZY_OR_NOW 0 ++# endif ++# endif ++# endif ++# endif ++#endif ++ ++#ifdef __cplusplus ++extern "C" void exit (int); ++#endif ++ ++void fnord() { int i=42;} ++int main () ++{ ++ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); ++ int status = $lt_dlunknown; ++ ++ if (self) ++ { ++ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; ++ else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; ++ /* dlclose (self); */ ++ } ++ ++ exit (status); ++}] ++EOF ++ if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then ++ (./conftest; exit; ) 2>/dev/null ++ lt_status=$? ++ case x$lt_status in ++ x$lt_dlno_uscore) $1 ;; ++ x$lt_dlneed_uscore) $2 ;; ++ x$lt_unknown|x*) $3 ;; ++ esac ++ else : ++ # compilation failed ++ $3 ++ fi ++fi ++rm -fr conftest* ++])# _LT_AC_TRY_DLOPEN_SELF ++ ++# AC_LIBTOOL_DLOPEN_SELF ++# ------------------- ++AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], ++[if test "x$enable_dlopen" != xyes; then ++ enable_dlopen=unknown ++ enable_dlopen_self=unknown ++ enable_dlopen_self_static=unknown ++else ++ lt_cv_dlopen=no ++ lt_cv_dlopen_libs= ++ ++ case $host_os in ++ beos*) ++ lt_cv_dlopen="load_add_on" ++ lt_cv_dlopen_libs= ++ lt_cv_dlopen_self=yes ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ lt_cv_dlopen="LoadLibrary" ++ lt_cv_dlopen_libs= ++ ;; ++ ++ *) ++ AC_CHECK_FUNC([shl_load], ++ [lt_cv_dlopen="shl_load"], ++ [AC_CHECK_LIB([dld], [shl_load], ++ [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], ++ [AC_CHECK_FUNC([dlopen], ++ [lt_cv_dlopen="dlopen"], ++ [AC_CHECK_LIB([dl], [dlopen], ++ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], ++ [AC_CHECK_LIB([svld], [dlopen], ++ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], ++ [AC_CHECK_LIB([dld], [dld_link], ++ [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ++ ]) ++ ]) ++ ]) ++ ]) ++ ]) ++ ;; ++ esac ++ ++ if test "x$lt_cv_dlopen" != xno; then ++ enable_dlopen=yes ++ else ++ enable_dlopen=no ++ fi ++ ++ case $lt_cv_dlopen in ++ dlopen) ++ save_CPPFLAGS="$CPPFLAGS" ++ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ++ test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" ++ ++ save_LDFLAGS="$LDFLAGS" ++ eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" ++ ++ save_LIBS="$LIBS" ++ LIBS="$lt_cv_dlopen_libs $LIBS" ++ ++ AC_CACHE_CHECK([whether a program can dlopen itself], ++ lt_cv_dlopen_self, [dnl ++ _LT_AC_TRY_DLOPEN_SELF( ++ lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, ++ lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ++ ]) ++ ++ if test "x$lt_cv_dlopen_self" = xyes; then ++ LDFLAGS="$LDFLAGS $link_static_flag" ++ AC_CACHE_CHECK([whether a statically linked program can dlopen itself], ++ lt_cv_dlopen_self_static, [dnl ++ _LT_AC_TRY_DLOPEN_SELF( ++ lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, ++ lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ++ ]) ++ fi ++ ++ CPPFLAGS="$save_CPPFLAGS" ++ LDFLAGS="$save_LDFLAGS" ++ LIBS="$save_LIBS" ++ ;; ++ esac ++ ++ case $lt_cv_dlopen_self in ++ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; ++ *) enable_dlopen_self=unknown ;; ++ esac ++ ++ case $lt_cv_dlopen_self_static in ++ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; ++ *) enable_dlopen_self_static=unknown ;; ++ esac ++fi ++])# AC_LIBTOOL_DLOPEN_SELF ++ ++AC_DEFUN([_LT_AC_LTCONFIG_HACK], ++[AC_REQUIRE([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])dnl ++# Sed substitution that helps us do robust quoting. It backslashifies ++# metacharacters that are still active within double-quoted strings. ++Xsed='sed -e s/^X//' ++sed_quote_subst='s/\([[\\"\\`$\\\\]]\)/\\\1/g' ++ ++# Same as above, but do not quote variable references. ++double_quote_subst='s/\([[\\"\\`\\\\]]\)/\\\1/g' ++ ++# Sed substitution to delay expansion of an escaped shell variable in a ++# double_quote_subst'ed string. ++delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' ++ ++# Constants: ++rm="rm -f" ++ ++# Global variables: ++default_ofile=libtool ++can_build_shared=yes ++ ++# All known linkers require a `.a' archive for static linking (except M$VC, ++# which needs '.lib'). ++libext=a ++ltmain="$ac_aux_dir/ltmain.sh" ++ofile="$default_ofile" ++with_gnu_ld="$lt_cv_prog_gnu_ld" ++need_locks="$enable_libtool_lock" ++ ++old_CC="$CC" ++old_CFLAGS="$CFLAGS" ++ ++# Set sane defaults for various variables ++test -z "$AR" && AR=ar ++test -z "$AR_FLAGS" && AR_FLAGS=cru ++test -z "$AS" && AS=as ++test -z "$CC" && CC=cc ++test -z "$DLLTOOL" && DLLTOOL=dlltool ++test -z "$LD" && LD=ld ++test -z "$LN_S" && LN_S="ln -s" ++test -z "$MAGIC_CMD" && MAGIC_CMD=file ++test -z "$NM" && NM=nm ++test -z "$OBJDUMP" && OBJDUMP=objdump ++test -z "$RANLIB" && RANLIB=: ++test -z "$STRIP" && STRIP=: ++test -z "$ac_objext" && ac_objext=o ++ ++if test x"$host" != x"$build"; then ++ ac_tool_prefix=${host_alias}- ++else ++ ac_tool_prefix= ++fi ++ ++# Transform linux* to *-*-linux-gnu*, to support old configure scripts. ++case $host_os in ++linux-gnu*) ;; ++linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'` ++esac ++ ++case $host_os in ++aix3*) ++ # AIX sometimes has problems with the GCC collect2 program. For some ++ # reason, if we set the COLLECT_NAMES environment variable, the problems ++ # vanish in a puff of smoke. ++ if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++ fi ++ ;; ++esac ++ ++# Determine commands to create old-style static archives. ++old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' ++old_postinstall_cmds='chmod 644 $oldlib' ++old_postuninstall_cmds= ++ ++if test -n "$RANLIB"; then ++ case $host_os in ++ openbsd*) ++ old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds" ++ ;; ++ *) ++ old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds" ++ ;; ++ esac ++ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" ++fi ++ ++# Allow CC to be a program name with arguments. ++set dummy $CC ++compiler="[$]2" ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([for objdir]) ++rm -f .libs 2>/dev/null ++mkdir .libs 2>/dev/null ++if test -d .libs; then ++ objdir=.libs ++else ++ # MS-DOS does not allow filenames that begin with a dot. ++ objdir=_libs ++fi ++rmdir .libs 2>/dev/null ++AC_MSG_RESULT($objdir) ++## ++## END FIXME ++ ++ ++## FIXME: this should be a separate macro ++## ++AC_ARG_WITH(pic, ++[ --with-pic try to use only PIC/non-PIC objects [default=use both]], ++pic_mode="$withval", pic_mode=default) ++test -z "$pic_mode" && pic_mode=default ++ ++# We assume here that the value for lt_cv_prog_cc_pic will not be cached ++# in isolation, and that seeing it set (from the cache) indicates that ++# the associated values are set (in the cache) correctly too. ++AC_MSG_CHECKING([for $compiler option to produce PIC]) ++AC_CACHE_VAL(lt_cv_prog_cc_pic, ++[ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_shlib= ++ lt_cv_prog_cc_wl= ++ lt_cv_prog_cc_static= ++ lt_cv_prog_cc_no_builtin= ++ lt_cv_prog_cc_can_build_shared=$can_build_shared ++ ++ if test "$GCC" = yes; then ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-static' ++ ++ case $host_os in ++ aix*) ++ # Below there is a dirty hack to force normal static linking with -ldl ++ # The problem is because libdl dynamically linked with both libc and ++ # libC (AIX C++ library), which obviously doesn't included in libraries ++ # list by gcc. This cause undefined symbols with -static flags. ++ # This hack allows C programs to be linked with "-static -ldl", but ++ # not sure about C++ programs. ++ lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC" ++ ;; ++ amigaos*) ++ # FIXME: we need at least 68020 code to build shared libraries, but ++ # adding the `-m68020' flag to GCC prevents building anything better, ++ # like `-m68040'. ++ lt_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4' ++ ;; ++ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ++ # PIC is the default for these OSes. ++ ;; ++ darwin* | rhapsody*) ++ # PIC is the default on this platform ++ # Common symbols not allowed in MH_DYLIB files ++ lt_cv_prog_cc_pic='-fno-common' ++ ;; ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ lt_cv_prog_cc_pic=-Kconform_pic ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic='-fPIC' ++ ;; ++ esac ++ else ++ # PORTME Check for PIC flags for the system compiler. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ lt_cv_prog_cc_wl='-Wl,' ++ # All AIX code is PIC. ++ if test "$host_cpu" = ia64; then ++ # AIX 5 now supports IA64 processor ++ lt_cv_prog_cc_static='-Bstatic' ++ else ++ lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp' ++ fi ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ # Is there a better lt_cv_prog_cc_static that works with the bundled CC? ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive" ++ lt_cv_prog_cc_pic='+Z' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ # PIC (with -KPIC) is the default. ++ ;; ++ ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ ++ newsos6) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ osf3* | osf4* | osf5*) ++ # All OSF/1 code is PIC. ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ ;; ++ ++ sco3.2v5*) ++ lt_cv_prog_cc_pic='-Kpic' ++ lt_cv_prog_cc_static='-dn' ++ lt_cv_prog_cc_shlib='-belf' ++ ;; ++ ++ solaris*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ sunos4*) ++ lt_cv_prog_cc_pic='-PIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Qoption ld ' ++ ;; ++ ++ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ uts4*) ++ lt_cv_prog_cc_pic='-pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec ;then ++ lt_cv_prog_cc_pic='-Kconform_pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ fi ++ ;; ++ ++ *) ++ lt_cv_prog_cc_can_build_shared=no ++ ;; ++ esac ++ fi ++]) ++if test -z "$lt_cv_prog_cc_pic"; then ++ AC_MSG_RESULT([none]) ++else ++ AC_MSG_RESULT([$lt_cv_prog_cc_pic]) ++ ++ # Check to make sure the pic_flag actually works. ++ AC_MSG_CHECKING([if $compiler PIC flag $lt_cv_prog_cc_pic works]) ++ AC_CACHE_VAL(lt_cv_prog_cc_pic_works, [dnl ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC" ++ AC_TRY_COMPILE([], [], [dnl ++ case $host_os in ++ hpux9* | hpux10* | hpux11*) ++ # On HP-UX, both CC and GCC only warn that PIC is supported... then ++ # they create non-PIC objects. So, if there were any warnings, we ++ # assume that PIC is not supported. ++ if test -s conftest.err; then ++ lt_cv_prog_cc_pic_works=no ++ else ++ lt_cv_prog_cc_pic_works=yes ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic_works=yes ++ ;; ++ esac ++ ], [dnl ++ lt_cv_prog_cc_pic_works=no ++ ]) ++ CFLAGS="$save_CFLAGS" ++ ]) ++ ++ if test "X$lt_cv_prog_cc_pic_works" = Xno; then ++ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_can_build_shared=no ++ else ++ lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic" ++ fi ++ ++ AC_MSG_RESULT([$lt_cv_prog_cc_pic_works]) ++fi ++## ++## END FIXME ++ ++# Check for any special shared library compilation flags. ++if test -n "$lt_cv_prog_cc_shlib"; then ++ AC_MSG_WARN([\`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries]) ++ if echo "$old_CC $old_CFLAGS " | egrep -e "[[ ]]$lt_cv_prog_cc_shlib[[ ]]" >/dev/null; then : ++ else ++ AC_MSG_WARN([add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure]) ++ lt_cv_prog_cc_can_build_shared=no ++ fi ++fi ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([if $compiler static flag $lt_cv_prog_cc_static works]) ++AC_CACHE_VAL([lt_cv_prog_cc_static_works], [dnl ++ lt_cv_prog_cc_static_works=no ++ save_LDFLAGS="$LDFLAGS" ++ LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static" ++ AC_TRY_LINK([], [], [lt_cv_prog_cc_static_works=yes]) ++ LDFLAGS="$save_LDFLAGS" ++]) ++ ++# Belt *and* braces to stop my trousers falling down: ++test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static= ++AC_MSG_RESULT([$lt_cv_prog_cc_static_works]) ++ ++pic_flag="$lt_cv_prog_cc_pic" ++special_shlib_compile_flags="$lt_cv_prog_cc_shlib" ++wl="$lt_cv_prog_cc_wl" ++link_static_flag="$lt_cv_prog_cc_static" ++no_builtin_flag="$lt_cv_prog_cc_no_builtin" ++can_build_shared="$lt_cv_prog_cc_can_build_shared" ++## ++## END FIXME ++ ++ ++## FIXME: this should be a separate macro ++## ++# Check to see if options -o and -c are simultaneously supported by compiler ++AC_MSG_CHECKING([if $compiler supports -c -o file.$ac_objext]) ++AC_CACHE_VAL([lt_cv_compiler_c_o], [ ++$rm -r conftest 2>/dev/null ++mkdir conftest ++cd conftest ++echo "int some_variable = 0;" > conftest.$ac_ext ++mkdir out ++# According to Tom Tromey, Ian Lance Taylor reported there are C compilers ++# that will create temporary files in the current directory regardless of ++# the output directory. Thus, making CWD read-only will cause this test ++# to fail, enabling locking or at least warning the user not to do parallel ++# builds. ++chmod -w . ++save_CFLAGS="$CFLAGS" ++CFLAGS="$CFLAGS -o out/conftest2.$ac_objext" ++compiler_c_o=no ++if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s out/conftest.err; then ++ lt_cv_compiler_c_o=no ++ else ++ lt_cv_compiler_c_o=yes ++ fi ++else ++ # Append any errors to the config.log. ++ cat out/conftest.err 1>&AC_FD_CC ++ lt_cv_compiler_c_o=no ++fi ++CFLAGS="$save_CFLAGS" ++chmod u+w . ++$rm conftest* out/* ++rmdir out ++cd .. ++rmdir conftest ++$rm -r conftest 2>/dev/null ++]) ++compiler_c_o=$lt_cv_compiler_c_o ++AC_MSG_RESULT([$compiler_c_o]) ++ ++if test x"$compiler_c_o" = x"yes"; then ++ # Check to see if we can write to a .lo ++ AC_MSG_CHECKING([if $compiler supports -c -o file.lo]) ++ AC_CACHE_VAL([lt_cv_compiler_o_lo], [ ++ lt_cv_compiler_o_lo=no ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -c -o conftest.lo" ++ save_objext="$ac_objext" ++ ac_objext=lo ++ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ lt_cv_compiler_o_lo=no ++ else ++ lt_cv_compiler_o_lo=yes ++ fi ++ ]) ++ ac_objext="$save_objext" ++ CFLAGS="$save_CFLAGS" ++ ]) ++ compiler_o_lo=$lt_cv_compiler_o_lo ++ AC_MSG_RESULT([$compiler_o_lo]) ++else ++ compiler_o_lo=no ++fi ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# Check to see if we can do hard links to lock some files if needed ++hard_links="nottested" ++if test "$compiler_c_o" = no && test "$need_locks" != no; then ++ # do not overwrite the value of need_locks provided by the user ++ AC_MSG_CHECKING([if we can lock with hard links]) ++ hard_links=yes ++ $rm conftest* ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ touch conftest.a ++ ln conftest.a conftest.b 2>&5 || hard_links=no ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ AC_MSG_RESULT([$hard_links]) ++ if test "$hard_links" = no; then ++ AC_MSG_WARN([\`$CC' does not support \`-c -o', so \`make -j' may be unsafe]) ++ need_locks=warn ++ fi ++else ++ need_locks=no ++fi ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++if test "$GCC" = yes; then ++ # Check to see if options -fno-rtti -fno-exceptions are supported by compiler ++ AC_MSG_CHECKING([if $compiler supports -fno-rtti -fno-exceptions]) ++ echo "int some_variable = 0;" > conftest.$ac_ext ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext" ++ compiler_rtti_exceptions=no ++ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ compiler_rtti_exceptions=no ++ else ++ compiler_rtti_exceptions=yes ++ fi ++ ]) ++ CFLAGS="$save_CFLAGS" ++ AC_MSG_RESULT([$compiler_rtti_exceptions]) ++ ++ if test "$compiler_rtti_exceptions" = "yes"; then ++ no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions' ++ else ++ no_builtin_flag=' -fno-builtin' ++ fi ++fi ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# See if the linker supports building shared libraries. ++AC_MSG_CHECKING([whether the linker ($LD) supports shared libraries]) ++ ++allow_undefined_flag= ++no_undefined_flag= ++need_lib_prefix=unknown ++need_version=unknown ++# when you set need_version to no, make sure it does not cause -set_version ++# flags to be left without arguments ++archive_cmds= ++archive_expsym_cmds= ++old_archive_from_new_cmds= ++old_archive_from_expsyms_cmds= ++export_dynamic_flag_spec= ++whole_archive_flag_spec= ++thread_safe_flag_spec= ++hardcode_into_libs=no ++hardcode_libdir_flag_spec= ++hardcode_libdir_separator= ++hardcode_direct=no ++hardcode_minus_L=no ++hardcode_shlibpath_var=unsupported ++runpath_var= ++link_all_deplibs=unknown ++always_export_symbols=no ++export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' ++# include_expsyms should be a list of space-separated symbols to be *always* ++# included in the symbol list ++include_expsyms= ++# exclude_expsyms can be an egrep regular expression of symbols to exclude ++# it will be wrapped by ` (' and `)$', so one must not match beginning or ++# end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', ++# as well as any symbol that contains `d'. ++exclude_expsyms="_GLOBAL_OFFSET_TABLE_" ++# Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out ++# platforms (ab)use it in PIC code, but their linkers get confused if ++# the symbol is explicitly referenced. Since portable code cannot ++# rely on this symbol name, it's probably fine to never include it in ++# preloaded symbol tables. ++extract_expsyms_cmds= ++ ++case $host_os in ++cygwin* | mingw* | pw32*) ++ # FIXME: the MSVC++ port hasn't been tested in a loooong time ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ if test "$GCC" != yes; then ++ with_gnu_ld=no ++ fi ++ ;; ++openbsd*) ++ with_gnu_ld=no ++ ;; ++esac ++ ++ld_shlibs=yes ++if test "$with_gnu_ld" = yes; then ++ # If archive_cmds runs LD, not CC, wlarc should be empty ++ wlarc='${wl}' ++ ++ # See if GNU ld supports shared libraries. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ # On AIX, the GNU linker is very broken ++ # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available. ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: the GNU linker, at least up to release 2.9.1, is reported ++*** to be unable to reliably create shared libraries on AIX. ++*** Therefore, libtool is disabling shared libraries support. If you ++*** really care for shared libraries, you may want to modify your PATH ++*** so that a non-GNU linker is found, and then restart. ++ ++EOF ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ ++ # Samuel A. Falvo II reports ++ # that the semantics of dynamic libraries on AmigaOS, at least up ++ # to version 4, is to share data among multiple programs linked ++ # with the same dynamic library. Since this doesn't match the ++ # behavior of shared libraries on other platforms, we can use ++ # them. ++ ld_shlibs=no ++ ;; ++ ++ beos*) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ allow_undefined_flag=unsupported ++ # Joseph Beckenbach says some releases of gcc ++ # support --undefined. This deserves some investigation. FIXME ++ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec='-L$libdir' ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ ++ extract_expsyms_cmds='test -f $output_objdir/impgen.c || \ ++ sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~ ++ test -f $output_objdir/impgen.exe || (cd $output_objdir && \ ++ if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; \ ++ else $CC -o impgen impgen.c ; fi)~ ++ $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def' ++ ++ old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib' ++ ++ # cygwin and mingw dlls have different entry points and sets of symbols ++ # to exclude. ++ # FIXME: what about values for MSVC? ++ dll_entry=__cygwin_dll_entry@12 ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~ ++ case $host_os in ++ mingw*) ++ # mingw values ++ dll_entry=_DllMainCRTStartup@12 ++ dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~ ++ ;; ++ esac ++ ++ # mingw and cygwin differ, and it's simplest to just exclude the union ++ # of the two symbol sets. ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12 ++ ++ # recent cygwin and mingw systems supply a stub DllMain which the user ++ # can override, but on older systems we have to supply one (in ltdll.c) ++ if test "x$lt_cv_need_dllmain" = "xyes"; then ++ ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext " ++ ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~ ++ test -f $output_objdir/$soname-ltdll.$ac_objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~' ++ else ++ ltdll_obj= ++ ltdll_cmds= ++ fi ++ ++ # Extract the symbol export list from an `--export-all' def file, ++ # then regenerate the def file from the symbol export list, so that ++ # the compiled dll only exports the symbol export list. ++ # Be careful not to strip the DATA tag left be newer dlltools. ++ export_symbols_cmds="$ltdll_cmds"' ++ $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~ ++ sed -e "1,/EXPORTS/d" -e "s/ @ [[0-9]]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols' ++ ++ # If the export-symbols file already is a .def file (1st line ++ # is EXPORTS), use it as is. ++ # If DATA tags from a recent dlltool are present, honour them! ++ archive_expsym_cmds='if test "x`sed 1q $export_symbols`" = xEXPORTS; then ++ cp $export_symbols $output_objdir/$soname-def; ++ else ++ echo EXPORTS > $output_objdir/$soname-def; ++ _lt_hint=1; ++ cat $export_symbols | while read symbol; do ++ set dummy \$symbol; ++ case \[$]# in ++ 2) echo " \[$]2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;; ++ 4) echo " \[$]2 \[$]3 \[$]4 ; " >> $output_objdir/$soname-def; _lt_hint=`expr \$_lt_hint - 1`;; ++ *) echo " \[$]2 @ \$_lt_hint \[$]3 ; " >> $output_objdir/$soname-def;; ++ esac; ++ _lt_hint=`expr 1 + \$_lt_hint`; ++ done; ++ fi~ ++ '"$ltdll_cmds"' ++ $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~ ++ $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~ ++ $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags' ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' ++ wlarc= ++ else ++ archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ fi ++ ;; ++ ++ solaris* | sysv5*) ++ if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: The releases 2.8.* of the GNU linker cannot reliably ++*** create shared libraries on Solaris systems. Therefore, libtool ++*** is disabling shared libraries support. We urge you to upgrade GNU ++*** binutils to release 2.9.1 or newer. Another option is to modify ++*** your PATH or compiler configuration so that the native linker is ++*** used, and then restart. ++ ++EOF ++ elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ sunos4*) ++ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ wlarc= ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ esac ++ ++ if test "$ld_shlibs" = yes; then ++ runpath_var=LD_RUN_PATH ++ hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' ++ export_dynamic_flag_spec='${wl}--export-dynamic' ++ case $host_os in ++ cygwin* | mingw* | pw32*) ++ # dlltool doesn't understand --whole-archive et. al. ++ whole_archive_flag_spec= ++ ;; ++ *) ++ # ancient GNU ld didn't support --whole-archive et. al. ++ if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then ++ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ++ else ++ whole_archive_flag_spec= ++ fi ++ ;; ++ esac ++ fi ++else ++ # PORTME fill in a description of your system's linker (not GNU ld) ++ case $host_os in ++ aix3*) ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' ++ # Note: this linker hardcodes the directories in LIBPATH if there ++ # are no directories specified by -L. ++ hardcode_minus_L=yes ++ if test "$GCC" = yes && test -z "$link_static_flag"; then ++ # Neither direct hardcoding nor static linking is supported with a ++ # broken collect2. ++ hardcode_direct=unsupported ++ fi ++ ;; ++ ++ aix4* | aix5*) ++ if test "$host_cpu" = ia64; then ++ # On IA64, the linker does run time linking by default, so we don't ++ # have to do anything special. ++ aix_use_runtimelinking=no ++ exp_sym_flag='-Bexport' ++ no_entry_flag="" ++ else ++ aix_use_runtimelinking=no ++ ++ # Test if we are trying to use run time linking or normal ++ # AIX style linking. If -brtl is somewhere in LDFLAGS, we ++ # need to do runtime linking. ++ case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) ++ for ld_flag in $LDFLAGS; do ++ case $ld_flag in ++ *-brtl*) ++ aix_use_runtimelinking=yes ++ break ++ ;; ++ esac ++ done ++ esac ++ ++ exp_sym_flag='-bexport' ++ no_entry_flag='-bnoentry' ++ fi ++ ++ # When large executables or shared objects are built, AIX ld can ++ # have problems creating the table of contents. If linking a library ++ # or program results in "error TOC overflow" add -mminimal-toc to ++ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ++ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ++ ++ hardcode_direct=yes ++ archive_cmds='' ++ hardcode_libdir_separator=':' ++ if test "$GCC" = yes; then ++ case $host_os in aix4.[[012]]|aix4.[[012]].*) ++ collect2name=`${CC} -print-prog-name=collect2` ++ if test -f "$collect2name" && \ ++ strings "$collect2name" | grep resolve_lib_name >/dev/null ++ then ++ # We have reworked collect2 ++ hardcode_direct=yes ++ else ++ # We have old collect2 ++ hardcode_direct=unsupported ++ # It fails to find uninstalled libraries when the uninstalled ++ # path is not listed in the libpath. Setting hardcode_minus_L ++ # to unsupported forces relinking ++ hardcode_minus_L=yes ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_libdir_separator= ++ fi ++ esac ++ ++ shared_flag='-shared' ++ else ++ # not using gcc ++ if test "$host_cpu" = ia64; then ++ shared_flag='${wl}-G' ++ else ++ if test "$aix_use_runtimelinking" = yes; then ++ shared_flag='${wl}-G' ++ else ++ shared_flag='${wl}-bM:SRE' ++ fi ++ fi ++ fi ++ ++ # It seems that -bexpall can do strange things, so it is better to ++ # generate a list of symbols to export. ++ always_export_symbols=yes ++ if test "$aix_use_runtimelinking" = yes; then ++ # Warning - without using the other runtime loading flags (-brtl), ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='-berok' ++ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib' ++ archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" ++ else ++ if test "$host_cpu" = ia64; then ++ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' ++ allow_undefined_flag="-z nodefs" ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname ${wl}-h$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" ++ else ++ hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib' ++ # Warning - without using the other run time loading flags, ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='${wl}-berok' ++ # This is a bit strange, but is similar to how AIX traditionally builds ++ # it's shared libraries. ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"' ~$AR -crlo $output_objdir/$libname$release.a $output_objdir/$soname' ++ fi ++ fi ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ # see comment about different semantics on the GNU ld section ++ ld_shlibs=no ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec=' ' ++ allow_undefined_flag=unsupported ++ # Tell ltmain to make .lib files, not .a files. ++ libext=lib ++ # FIXME: Setting linknames here is a bad hack. ++ archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | sed -e '\''s/ -lc$//'\''` -link -dll~linknames=' ++ # The linker will automatically build a .lib file if we build a DLL. ++ old_archive_from_new_cmds='true' ++ # FIXME: Should let the user specify the lib program. ++ old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' ++ fix_srcfile_path='`cygpath -w "$srcfile"`' ++ ;; ++ ++ darwin* | rhapsody*) ++ case "$host_os" in ++ rhapsody* | darwin1.[[012]]) ++ allow_undefined_flag='-undefined suppress' ++ ;; ++ *) # Darwin 1.3 on ++ allow_undefined_flag='-flat_namespace -undefined suppress' ++ ;; ++ esac ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. Also zsh mangles ++ # `"' quotes if we put them in here... so don't! ++ archive_cmds='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs && $CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib ${lib}-master.o $deplibs$linker_flags $(test .$module != .yes && echo -install_name $rpath/$soname $verstring)' ++ # We need to add '_' to the symbols in $export_symbols first ++ #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ whole_archive_flag_spec='-all_load $convenience' ++ ;; ++ ++ freebsd1*) ++ ld_shlibs=no ++ ;; ++ ++ # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor ++ # support. Future versions do this automatically, but an explicit c++rt0.o ++ # does not break anything, and helps significantly (at the cost of a little ++ # extra space). ++ freebsd2.2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # Unfortunately, older versions of FreeBSD 2 do not have this feature. ++ freebsd2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # FreeBSD 3 and greater uses gcc -shared to do shared libraries. ++ freebsd*) ++ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ case $host_os in ++ hpux9*) archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;; ++ *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; ++ esac ++ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_direct=yes ++ hardcode_minus_L=yes # Not in the search PATH, but as the default ++ # location of the library. ++ export_dynamic_flag_spec='${wl}-E' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ link_all_deplibs=yes ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out ++ else ++ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF ++ fi ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ newsos6) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_shlibpath_var=no ++ ;; ++ ++ openbsd*) ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ export_dynamic_flag_spec='${wl}-E' ++ else ++ case "$host_os" in ++ openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ ;; ++ *) ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ ;; ++ esac ++ fi ++ ;; ++ ++ os2*) ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ allow_undefined_flag=unsupported ++ archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' ++ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ++ ;; ++ ++ osf3*) ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ fi ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ ;; ++ ++ osf4* | osf5*) # as osf3* with the addition of -msym flag ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "-exported_symbol " >> $lib.exp; echo "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ ++ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' ++ ++ #Both c and cxx compiler support -rpath directly ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ ;; ++ ++ sco3.2v5*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ export_dynamic_flag_spec='${wl}-Bexport' ++ ;; ++ ++ solaris*) ++ # gcc --version < 3.0 without binutils cannot create self contained ++ # shared libraries reliably, requiring libgcc.a to resolve some of ++ # the object symbols generated in some cases. Libraries that use ++ # assert need libgcc.a to resolve __eprintf, for example. Linking ++ # a copy of libgcc.a into every shared library to guarantee resolving ++ # such symbols causes other problems: According to Tim Van Holder ++ # , C++ libraries end up with a separate ++ # (to the application) exception stack for one thing. ++ no_undefined_flag=' -z defs' ++ if test "$GCC" = yes; then ++ case `$CC --version 2>/dev/null` in ++ [[12]].*) ++ cat <&2 ++ ++*** Warning: Releases of GCC earlier than version 3.0 cannot reliably ++*** create self contained shared libraries on Solaris systems, without ++*** introducing a dependency on libgcc.a. Therefore, libtool is disabling ++*** -no-undefined support, which will at least allow you to build shared ++*** libraries. However, you may find that when you link such libraries ++*** into an application without using GCC, you have to manually add ++*** \`gcc --print-libgcc-file-name\` to the link command. We urge you to ++*** upgrade to a newer version of GCC. Another option is to rebuild your ++*** current GCC to use the GNU linker from GNU binutils 2.9.1 or newer. ++ ++EOF ++ no_undefined_flag= ++ ;; ++ esac ++ fi ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_shlibpath_var=no ++ case $host_os in ++ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; ++ *) # Supported since Solaris 2.6 (maybe 2.5.1?) ++ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; ++ esac ++ link_all_deplibs=yes ++ ;; ++ ++ sunos4*) ++ if test "x$host_vendor" = xsequent; then ++ # Use $CC to link under sequent, because it throws in some extra .o ++ # files that make .init and .fini sections work. ++ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' ++ fi ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4) ++ case $host_vendor in ++ sni) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes # is this really true??? ++ ;; ++ siemens) ++ ## LD is ld it makes a PLAMLIB ++ ## CC just makes a GrossModule. ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ reload_cmds='$CC -r -o $output$reload_objs' ++ hardcode_direct=no ++ ;; ++ motorola) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=no #Motorola manual says yes, but my tests say they lie ++ ;; ++ esac ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4.3*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ export_dynamic_flag_spec='-Bexport' ++ ;; ++ ++ sysv5*) ++ no_undefined_flag=' -z text' ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec= ++ hardcode_shlibpath_var=no ++ runpath_var='LD_RUN_PATH' ++ ;; ++ ++ uts4*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ dgux*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ ld_shlibs=yes ++ fi ++ ;; ++ ++ sysv4.2uw2*) ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=no ++ hardcode_shlibpath_var=no ++ hardcode_runpath_var=yes ++ runpath_var=LD_RUN_PATH ++ ;; ++ ++ sysv5uw7* | unixware7*) ++ no_undefined_flag='${wl}-z ${wl}text' ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ fi ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ ld_shlibs=no ++ ;; ++ esac ++fi ++AC_MSG_RESULT([$ld_shlibs]) ++test "$ld_shlibs" = no && can_build_shared=no ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# Check hardcoding attributes. ++AC_MSG_CHECKING([how to hardcode library paths into programs]) ++hardcode_action= ++if test -n "$hardcode_libdir_flag_spec" || \ ++ test -n "$runpath_var"; then ++ ++ # We can hardcode non-existant directories. ++ if test "$hardcode_direct" != no && ++ # If the only mechanism to avoid hardcoding is shlibpath_var, we ++ # have to relink, otherwise we might link with an installed library ++ # when we should be linking with a yet-to-be-installed one ++ ## test "$hardcode_shlibpath_var" != no && ++ test "$hardcode_minus_L" != no; then ++ # Linking always hardcodes the temporary library directory. ++ hardcode_action=relink ++ else ++ # We can link without hardcoding, and we can hardcode nonexisting dirs. ++ hardcode_action=immediate ++ fi ++else ++ # We cannot hardcode anything, or else we can only hardcode existing ++ # directories. ++ hardcode_action=unsupported ++fi ++AC_MSG_RESULT([$hardcode_action]) ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++striplib= ++old_striplib= ++AC_MSG_CHECKING([whether stripping libraries is possible]) ++if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then ++ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" ++ test -z "$striplib" && striplib="$STRIP --strip-unneeded" ++ AC_MSG_RESULT([yes]) ++else ++ AC_MSG_RESULT([no]) ++fi ++## ++## END FIXME ++ ++reload_cmds='$LD$reload_flag -o $output$reload_objs' ++test -z "$deplibs_check_method" && deplibs_check_method=unknown ++ ++## FIXME: this should be a separate macro ++## ++# PORTME Fill in your ld.so characteristics ++AC_MSG_CHECKING([dynamic linker characteristics]) ++library_names_spec= ++libname_spec='lib$name' ++soname_spec= ++postinstall_cmds= ++postuninstall_cmds= ++finish_cmds= ++finish_eval= ++shlibpath_var= ++shlibpath_overrides_runpath=unknown ++version_type=none ++dynamic_linker="$host_os ld.so" ++sys_lib_dlsearch_path_spec="/lib /usr/lib" ++sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" ++ ++case $host_os in ++aix3*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix $libname.a' ++ shlibpath_var=LIBPATH ++ ++ # AIX has no versioning support, so we append a major version to the name. ++ soname_spec='${libname}${release}.so$major' ++ ;; ++ ++aix4* | aix5*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ hardcode_into_libs=yes ++ if test "$host_cpu" = ia64; then ++ # AIX 5 supports IA64 ++ library_names_spec='${libname}${release}.so$major ${libname}${release}.so$versuffix $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ else ++ # With GCC up to 2.95.x, collect2 would create an import file ++ # for dependence libraries. The import file would start with ++ # the line `#! .'. This would cause the generated library to ++ # depend on `.', always an invalid library. This was fixed in ++ # development snapshots of GCC prior to 3.0. ++ case $host_os in ++ aix4 | aix4.[[01]] | aix4.[[01]].*) ++ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' ++ echo ' yes ' ++ echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then ++ : ++ else ++ can_build_shared=no ++ fi ++ ;; ++ esac ++ # AIX (on Power*) has no versioning support, so currently we can ++ # not hardcode correct soname into executable. Probably we can ++ # add versioning support to collect2, so additional links can ++ # be useful in future. ++ if test "$aix_use_runtimelinking" = yes; then ++ # If using run time linking (on AIX 4.2 or later) use lib.so ++ # instead of lib.a to let people know that these are not ++ # typical AIX shared libraries. ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ else ++ # We preserve .a as extension for shared libraries through AIX4.2 ++ # and later when we are not doing run time linking. ++ library_names_spec='${libname}${release}.a $libname.a' ++ soname_spec='${libname}${release}.so$major' ++ fi ++ shlibpath_var=LIBPATH ++ fi ++ hardcode_into_libs=yes ++ ;; ++ ++amigaos*) ++ library_names_spec='$libname.ixlibrary $libname.a' ++ # Create ${libname}_ixlibrary.a entries in /sys/libs. ++ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' ++ ;; ++ ++beos*) ++ library_names_spec='${libname}.so' ++ dynamic_linker="$host_os ld.so" ++ shlibpath_var=LIBRARY_PATH ++ ;; ++ ++bsdi4*) ++ version_type=linux ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" ++ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" ++ export_dynamic_flag_spec=-rdynamic ++ # the default ld.so.conf also contains /usr/contrib/lib and ++ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow ++ # libtool to hard-code these into programs ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ version_type=windows ++ need_version=no ++ need_lib_prefix=no ++ case $GCC,$host_os in ++ yes,cygwin*) ++ library_names_spec='$libname.dll.a' ++ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll' ++ postinstall_cmds='dlpath=`bash 2>&1 -c '\''. $dir/${file}i;echo \$dlname'\''`~ ++ dldir=$destdir/`dirname \$dlpath`~ ++ test -d \$dldir || mkdir -p \$dldir~ ++ $install_prog .libs/$dlname \$dldir/$dlname' ++ postuninstall_cmds='dldll=`bash 2>&1 -c '\''. $file; echo \$dlname'\''`~ ++ dlpath=$dir/\$dldll~ ++ $rm \$dlpath' ++ ;; ++ yes,mingw*) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll' ++ sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g" -e "s,=/,/,g"` ++ ;; ++ yes,pw32*) ++ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll' ++ ;; ++ *) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll $libname.lib' ++ ;; ++ esac ++ dynamic_linker='Win32 ld.exe' ++ # FIXME: first we should search . and the directory the executable is in ++ shlibpath_var=PATH ++ ;; ++ ++darwin* | rhapsody*) ++ dynamic_linker="$host_os dyld" ++ version_type=darwin ++ need_lib_prefix=no ++ need_version=no ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. ++ library_names_spec='${libname}${release}${versuffix}.$(test .$module = .yes && echo so || echo dylib) ${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib) ${libname}.$(test .$module = .yes && echo so || echo dylib)' ++ soname_spec='${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib)' ++ shlibpath_overrides_runpath=yes ++ shlibpath_var=DYLD_LIBRARY_PATH ++ ;; ++ ++freebsd1*) ++ dynamic_linker=no ++ ;; ++ ++kfreebsd*-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ dynamic_linker='GNU/FreeBSD ld.so' ++ ;; ++ ++freebsd*) ++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` ++ version_type=freebsd-$objformat ++ case $version_type in ++ freebsd-elf*) ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so' ++ need_version=no ++ need_lib_prefix=no ++ ;; ++ freebsd-*) ++ library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix' ++ need_version=yes ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_os in ++ freebsd2*) ++ shlibpath_overrides_runpath=yes ++ ;; ++ *) ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ ;; ++ esac ++ ;; ++ ++gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ hardcode_into_libs=yes ++ ;; ++ ++hpux9* | hpux10* | hpux11*) ++ # Give a soname corresponding to the major version so that dld.sl refuses to ++ # link against other versions. ++ dynamic_linker="$host_os dld.sl" ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_var=SHLIB_PATH ++ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH ++ library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl' ++ soname_spec='${libname}${release}.sl$major' ++ # HP-UX runs *really* slowly unless shared libraries are mode 555. ++ postinstall_cmds='chmod 555 $lib' ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ nonstopux*) version_type=nonstopux ;; ++ *) version_type=irix ;; ++ esac ++ need_lib_prefix=no ++ need_version=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so $libname.so' ++ case $host_os in ++ irix5* | nonstopux*) ++ libsuff= shlibsuff= ++ ;; ++ *) ++ case $LD in # libtool.m4 will add one of these switches to LD ++ *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;; ++ *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; ++ *-64|*"-64 ") libsuff=64 shlibsuff=64 libmagic=64-bit;; ++ *) libsuff= shlibsuff= libmagic=never-match;; ++ esac ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" ++ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" ++ ;; ++ ++# No shared lib support for Linux oldld, aout, or coff. ++linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*) ++ dynamic_linker=no ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ # This implies no fast_install, which is unacceptable. ++ # Some rework will be needed to allow for fast_install ++ # before this can be enabled. ++ hardcode_into_libs=yes ++ ++ # We used to test for /lib/ld.so.1 and disable shared libraries on ++ # powerpc, because MkLinux only supported shared libraries with the ++ # GNU dynamic linker. Since this was broken with cross compilers, ++ # most powerpc-linux boxes support dynamic linking these days and ++ # people can always --disable-shared, the test was removed, and we ++ # assume the GNU/Linux dynamic linker is in use. ++ dynamic_linker='GNU/Linux ld.so' ++ ;; ++ ++netbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ dynamic_linker='NetBSD (a.out) ld.so' ++ else ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ dynamic_linker='NetBSD ld.elf_so' ++ fi ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ ;; ++ ++newsos6) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ ;; ++ ++openbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ case "$host_os" in ++ openbsd2.[[89]] | openbsd2.[[89]].*) ++ shlibpath_overrides_runpath=no ++ ;; ++ *) ++ shlibpath_overrides_runpath=yes ++ ;; ++ esac ++ else ++ shlibpath_overrides_runpath=yes ++ fi ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++os2*) ++ libname_spec='$name' ++ need_lib_prefix=no ++ library_names_spec='$libname.dll $libname.a' ++ dynamic_linker='OS/2 ld.exe' ++ shlibpath_var=LIBPATH ++ ;; ++ ++osf3* | osf4* | osf5*) ++ version_type=osf ++ need_version=no ++ need_lib_prefix=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" ++ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ++ hardcode_into_libs=yes ++ ;; ++ ++sco3.2v5*) ++ version_type=osf ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++solaris*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ # ldd complains unless libraries are executable ++ postinstall_cmds='chmod +x $lib' ++ ;; ++ ++sunos4*) ++ version_type=sunos ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ if test "$with_gnu_ld" = yes; then ++ need_lib_prefix=no ++ fi ++ need_version=yes ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_vendor in ++ sni) ++ shlibpath_overrides_runpath=no ++ need_lib_prefix=no ++ export_dynamic_flag_spec='${wl}-Blargedynsym' ++ runpath_var=LD_RUN_PATH ++ ;; ++ siemens) ++ need_lib_prefix=no ++ ;; ++ motorola) ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ++ ;; ++ esac ++ ;; ++ ++uts4*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++dgux*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++sysv4*MP*) ++ if test -d /usr/nec ;then ++ version_type=linux ++ library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so' ++ soname_spec='$libname.so.$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ fi ++ ;; ++ ++*) ++ dynamic_linker=no ++ ;; ++esac ++AC_MSG_RESULT([$dynamic_linker]) ++test "$dynamic_linker" = no && can_build_shared=no ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# Report the final consequences. ++AC_MSG_CHECKING([if libtool supports shared libraries]) ++AC_MSG_RESULT([$can_build_shared]) ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([whether to build shared libraries]) ++test "$can_build_shared" = "no" && enable_shared=no ++ ++# On AIX, shared libraries and static libraries use the same namespace, and ++# are all built from PIC. ++case "$host_os" in ++aix3*) ++ test "$enable_shared" = yes && enable_static=no ++ if test -n "$RANLIB"; then ++ archive_cmds="$archive_cmds~\$RANLIB \$lib" ++ postinstall_cmds='$RANLIB $lib' ++ fi ++ ;; ++ ++aix4*) ++ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then ++ test "$enable_shared" = yes && enable_static=no ++ fi ++ ;; ++esac ++AC_MSG_RESULT([$enable_shared]) ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++AC_MSG_CHECKING([whether to build static libraries]) ++# Make sure either enable_shared or enable_static is yes. ++test "$enable_shared" = yes || enable_static=yes ++AC_MSG_RESULT([$enable_static]) ++## ++## END FIXME ++ ++if test "$hardcode_action" = relink; then ++ # Fast installation is not supported ++ enable_fast_install=no ++elif test "$shlibpath_overrides_runpath" = yes || ++ test "$enable_shared" = no; then ++ # Fast installation is not necessary ++ enable_fast_install=needless ++fi ++ ++variables_saved_for_relink="PATH $shlibpath_var $runpath_var" ++if test "$GCC" = yes; then ++ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" ++fi ++ ++AC_LIBTOOL_DLOPEN_SELF ++ ++## FIXME: this should be a separate macro ++## ++if test "$enable_shared" = yes && test "$GCC" = yes; then ++ case $archive_cmds in ++ *'~'*) ++ # FIXME: we may have to deal with multi-command sequences. ++ ;; ++ '$CC '*) ++ # Test whether the compiler implicitly links with -lc since on some ++ # systems, -lgcc has to come before -lc. If gcc already passes -lc ++ # to ld, don't add -lc before -lgcc. ++ AC_MSG_CHECKING([whether -lc should be explicitly linked in]) ++ AC_CACHE_VAL([lt_cv_archive_cmds_need_lc], ++ [$rm conftest* ++ echo 'static int dummy;' > conftest.$ac_ext ++ ++ if AC_TRY_EVAL(ac_compile); then ++ soname=conftest ++ lib=conftest ++ libobjs=conftest.$ac_objext ++ deplibs= ++ wl=$lt_cv_prog_cc_wl ++ compiler_flags=-v ++ linker_flags=-v ++ verstring= ++ output_objdir=. ++ libname=conftest ++ save_allow_undefined_flag=$allow_undefined_flag ++ allow_undefined_flag= ++ if AC_TRY_EVAL(archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) ++ then ++ lt_cv_archive_cmds_need_lc=no ++ else ++ lt_cv_archive_cmds_need_lc=yes ++ fi ++ allow_undefined_flag=$save_allow_undefined_flag ++ else ++ cat conftest.err 1>&5 ++ fi]) ++ AC_MSG_RESULT([$lt_cv_archive_cmds_need_lc]) ++ ;; ++ esac ++fi ++need_lc=${lt_cv_archive_cmds_need_lc-yes} ++## ++## END FIXME ++ ++## FIXME: this should be a separate macro ++## ++# The second clause should only fire when bootstrapping the ++# libtool distribution, otherwise you forgot to ship ltmain.sh ++# with your package, and you will get complaints that there are ++# no rules to generate ltmain.sh. ++if test -f "$ltmain"; then ++ : ++else ++ # If there is no Makefile yet, we rely on a make rule to execute ++ # `config.status --recheck' to rerun these tests and create the ++ # libtool script then. ++ test -f Makefile && make "$ltmain" ++fi + +-# Actually configure libtool. ac_aux_dir is where install-sh is found. +-CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ +-LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \ +-LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \ +-DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \ +-${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \ +-$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target \ +-|| AC_MSG_ERROR([libtool configure failed]) ++if test -f "$ltmain"; then ++ trap "$rm \"${ofile}T\"; exit 1" 1 2 15 ++ $rm -f "${ofile}T" ++ ++ echo creating $ofile ++ ++ # Now quote all the things that may contain metacharacters while being ++ # careful not to overquote the AC_SUBSTed values. We take copies of the ++ # variables and quote the copies for generation of the libtool script. ++ for var in echo old_CC old_CFLAGS SED \ ++ AR AR_FLAGS CC LD LN_S NM SHELL \ ++ reload_flag reload_cmds wl \ ++ pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \ ++ thread_safe_flag_spec whole_archive_flag_spec libname_spec \ ++ library_names_spec soname_spec \ ++ RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \ ++ old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds \ ++ postuninstall_cmds extract_expsyms_cmds old_archive_from_expsyms_cmds \ ++ old_striplib striplib file_magic_cmd export_symbols_cmds \ ++ deplibs_check_method allow_undefined_flag no_undefined_flag \ ++ finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \ ++ global_symbol_to_c_name_address \ ++ hardcode_libdir_flag_spec hardcode_libdir_separator \ ++ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ ++ compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do ++ ++ case $var in ++ reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \ ++ old_postinstall_cmds | old_postuninstall_cmds | \ ++ export_symbols_cmds | archive_cmds | archive_expsym_cmds | \ ++ extract_expsyms_cmds | old_archive_from_expsyms_cmds | \ ++ postinstall_cmds | postuninstall_cmds | \ ++ finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) ++ # Double-quote double-evaled strings. ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ++ ;; ++ *) ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ++ ;; ++ esac ++ done + +-# Reload cache, that may have been modified by ltconfig +-AC_CACHE_LOAD ++ cat <<__EOF__ > "${ofile}T" ++#! $SHELL + +-# This can be used to rebuild libtool when needed +-LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh" ++# `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. ++# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) ++# NOTE: Changes made to this file will be lost: look at ltmain.sh. ++# ++# Copyright (C) 1996-2000 Free Software Foundation, Inc. ++# Originally by Gordon Matzigkeit , 1996 ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, but ++# WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# ++# As a special exception to the GNU General Public License, if you ++# distribute this file as part of a program that contains a ++# configuration script generated by Autoconf, you may include it under ++# the same distribution terms that you use for the rest of that program. + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' +-AC_SUBST(LIBTOOL)dnl ++# A sed that does not truncate output. ++SED=$lt_SED + +-# Redirect the config.log output again, so that the ltconfig log is not +-# clobbered by the next message. +-exec 5>>./config.log +-]) ++# Sed that helps us avoid accidentally triggering echo(1) options like -n. ++Xsed="${SED} -e s/^X//" + +-AC_DEFUN(AC_LIBTOOL_SETUP, +-[AC_PREREQ(2.13)dnl +-AC_REQUIRE([AC_ENABLE_SHARED])dnl +-AC_REQUIRE([AC_ENABLE_STATIC])dnl +-AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl +-AC_REQUIRE([AC_CANONICAL_HOST])dnl +-AC_REQUIRE([AC_CANONICAL_BUILD])dnl +-AC_REQUIRE([AC_PROG_RANLIB])dnl +-AC_REQUIRE([AC_PROG_CC])dnl +-AC_REQUIRE([AC_PROG_LD])dnl +-AC_REQUIRE([AC_PROG_NM])dnl +-AC_REQUIRE([AC_PROG_LN_S])dnl +-dnl ++# The HP-UX ksh and POSIX shell print the target directory to stdout ++# if CDPATH is set. ++if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi + +-case "$target" in +-NONE) lt_target="$host" ;; +-*) lt_target="$target" ;; +-esac ++# ### BEGIN LIBTOOL CONFIG + +-# Check for any special flags to pass to ltconfig. +-libtool_flags="" +-test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared" +-test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static" +-test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install" +-test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc" +-test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld" +-ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], +-[libtool_flags="$libtool_flags --enable-dlopen"]) +-ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], +-[libtool_flags="$libtool_flags --enable-win32-dll"]) +-AC_ARG_ENABLE(libtool-lock, +- [ --disable-libtool-lock avoid locking (might break parallel builds)]) +-test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock" +-test x"$silent" = xyes && libtool_flags="$libtool_flags --silent" ++# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: + +-# Some flags need to be propagated to the compiler or linker for good +-# libtool support. +-case "$lt_target" in +-*-*-irix6*) +- # Find out which ABI we are using. +- echo '[#]line __oline__ "configure"' > conftest.$ac_ext +- if AC_TRY_EVAL(ac_compile); then +- case "`/usr/bin/file conftest.o`" in +- *32-bit*) +- LD="${LD-ld} -32" +- ;; +- *N32*) +- LD="${LD-ld} -n32" +- ;; +- *64-bit*) +- LD="${LD-ld} -64" +- ;; +- esac +- fi +- rm -rf conftest* +- ;; ++# Shell to use when invoking shell scripts. ++SHELL=$lt_SHELL + +-*-*-sco3.2v5*) +- # On SCO OpenServer 5, we need -belf to get full-featured binaries. +- SAVE_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS -belf" +- AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, +- [AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])]) +- if test x"$lt_cv_cc_needs_belf" != x"yes"; then +- # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf +- CFLAGS="$SAVE_CFLAGS" +- fi +- ;; ++# Whether or not to build shared libraries. ++build_libtool_libs=$enable_shared + +-ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], +-[*-*-cygwin* | *-*-mingw*) +- AC_CHECK_TOOL(DLLTOOL, dlltool, false) +- AC_CHECK_TOOL(AS, as, false) +- AC_CHECK_TOOL(OBJDUMP, objdump, false) +- ;; +-]) +-esac +-]) ++# Whether or not to build static libraries. ++build_old_libs=$enable_static ++ ++# Whether or not to add -lc for building shared libraries. ++build_libtool_need_lc=$need_lc ++ ++# Whether or not to optimize for fast installation. ++fast_install=$enable_fast_install ++ ++# The host system. ++host_alias=$host_alias ++host=$host ++ ++# An echo program that does not interpret backslashes. ++echo=$lt_echo ++ ++# The archiver. ++AR=$lt_AR ++AR_FLAGS=$lt_AR_FLAGS ++ ++# The default C compiler. ++CC=$lt_CC ++ ++# Is the compiler the GNU C compiler? ++with_gcc=$GCC ++ ++# The linker used to build libraries. ++LD=$lt_LD ++ ++# Whether we need hard or soft links. ++LN_S=$lt_LN_S ++ ++# A BSD-compatible nm program. ++NM=$lt_NM ++ ++# A symbol stripping program ++STRIP="$STRIP" ++ ++# Used to examine libraries when file_magic_cmd begins "file" ++MAGIC_CMD=$MAGIC_CMD ++ ++# Used on cygwin: DLL creation program. ++DLLTOOL="$DLLTOOL" ++ ++# Used on cygwin: object dumper. ++OBJDUMP="$OBJDUMP" ++ ++# Used on cygwin: assembler. ++AS="$AS" ++ ++# The name of the directory that contains temporary libtool files. ++objdir=$objdir ++ ++# How to create reloadable object files. ++reload_flag=$lt_reload_flag ++reload_cmds=$lt_reload_cmds ++ ++# How to pass a linker flag through the compiler. ++wl=$lt_wl ++ ++# Object file suffix (normally "o"). ++objext="$ac_objext" ++ ++# Old archive suffix (normally "a"). ++libext="$libext" ++ ++# Executable file suffix (normally ""). ++exeext="$exeext" ++ ++# Additional compiler flags for building library objects. ++pic_flag=$lt_pic_flag ++pic_mode=$pic_mode ++ ++# Does compiler simultaneously support -c and -o options? ++compiler_c_o=$lt_compiler_c_o ++ ++# Can we write directly to a .lo ? ++compiler_o_lo=$lt_compiler_o_lo ++ ++# Must we lock files when doing compilation ? ++need_locks=$lt_need_locks ++ ++# Do we need the lib prefix for modules? ++need_lib_prefix=$need_lib_prefix ++ ++# Do we need a version for libraries? ++need_version=$need_version ++ ++# Whether dlopen is supported. ++dlopen_support=$enable_dlopen ++ ++# Whether dlopen of programs is supported. ++dlopen_self=$enable_dlopen_self ++ ++# Whether dlopen of statically linked programs is supported. ++dlopen_self_static=$enable_dlopen_self_static ++ ++# Compiler flag to prevent dynamic linking. ++link_static_flag=$lt_link_static_flag ++ ++# Compiler flag to turn off builtin functions. ++no_builtin_flag=$lt_no_builtin_flag ++ ++# Compiler flag to allow reflexive dlopens. ++export_dynamic_flag_spec=$lt_export_dynamic_flag_spec ++ ++# Compiler flag to generate shared objects directly from archives. ++whole_archive_flag_spec=$lt_whole_archive_flag_spec ++ ++# Compiler flag to generate thread-safe objects. ++thread_safe_flag_spec=$lt_thread_safe_flag_spec ++ ++# Library versioning type. ++version_type=$version_type ++ ++# Format of library name prefix. ++libname_spec=$lt_libname_spec ++ ++# List of archive names. First name is the real one, the rest are links. ++# The last name is the one that the linker finds with -lNAME. ++library_names_spec=$lt_library_names_spec ++ ++# The coded name of the library, if different from the real name. ++soname_spec=$lt_soname_spec ++ ++# Commands used to build and install an old-style archive. ++RANLIB=$lt_RANLIB ++old_archive_cmds=$lt_old_archive_cmds ++old_postinstall_cmds=$lt_old_postinstall_cmds ++old_postuninstall_cmds=$lt_old_postuninstall_cmds ++ ++# Create an old-style archive from a shared archive. ++old_archive_from_new_cmds=$lt_old_archive_from_new_cmds ++ ++# Create a temporary old-style archive to link instead of a shared archive. ++old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds ++ ++# Commands used to build and install a shared archive. ++archive_cmds=$lt_archive_cmds ++archive_expsym_cmds=$lt_archive_expsym_cmds ++postinstall_cmds=$lt_postinstall_cmds ++postuninstall_cmds=$lt_postuninstall_cmds ++ ++# Commands to strip libraries. ++old_striplib=$lt_old_striplib ++striplib=$lt_striplib ++ ++# Method to check whether dependent libraries are shared objects. ++deplibs_check_method=$lt_deplibs_check_method ++ ++# Command to use when deplibs_check_method == file_magic. ++file_magic_cmd=$lt_file_magic_cmd ++ ++# Flag that allows shared libraries with undefined symbols to be built. ++allow_undefined_flag=$lt_allow_undefined_flag ++ ++# Flag that forces no undefined symbols. ++no_undefined_flag=$lt_no_undefined_flag ++ ++# Commands used to finish a libtool library installation in a directory. ++finish_cmds=$lt_finish_cmds ++ ++# Same as above, but a single script fragment to be evaled but not shown. ++finish_eval=$lt_finish_eval ++ ++# Take the output of nm and produce a listing of raw symbols and C names. ++global_symbol_pipe=$lt_global_symbol_pipe ++ ++# Transform the output of nm in a proper C declaration ++global_symbol_to_cdecl=$lt_global_symbol_to_cdecl ++ ++# Transform the output of nm in a C name address pair ++global_symbol_to_c_name_address=$lt_global_symbol_to_c_name_address ++ ++# This is the shared library runtime path variable. ++runpath_var=$runpath_var ++ ++# This is the shared library path variable. ++shlibpath_var=$shlibpath_var ++ ++# Is shlibpath searched before the hard-coded library search path? ++shlibpath_overrides_runpath=$shlibpath_overrides_runpath ++ ++# How to hardcode a shared library path into an executable. ++hardcode_action=$hardcode_action ++ ++# Whether we should hardcode library paths into libraries. ++hardcode_into_libs=$hardcode_into_libs ++ ++# Flag to hardcode \$libdir into a binary during linking. ++# This must work even if \$libdir does not exist. ++hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec ++ ++# Whether we need a single -rpath flag with a separated argument. ++hardcode_libdir_separator=$lt_hardcode_libdir_separator ++ ++# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the ++# resulting binary. ++hardcode_direct=$hardcode_direct ++ ++# Set to yes if using the -LDIR flag during linking hardcodes DIR into the ++# resulting binary. ++hardcode_minus_L=$hardcode_minus_L ++ ++# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into ++# the resulting binary. ++hardcode_shlibpath_var=$hardcode_shlibpath_var ++ ++# Variables whose values should be saved in libtool wrapper scripts and ++# restored at relink time. ++variables_saved_for_relink="$variables_saved_for_relink" ++ ++# Whether libtool must link a program against all its dependency libraries. ++link_all_deplibs=$link_all_deplibs ++ ++# Compile-time system search path for libraries ++sys_lib_search_path_spec=$lt_sys_lib_search_path_spec ++ ++# Run-time system search path for libraries ++sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec ++ ++# Fix the shell variable \$srcfile for the compiler. ++fix_srcfile_path="$fix_srcfile_path" ++ ++# Set to yes if exported symbols are required. ++always_export_symbols=$always_export_symbols ++ ++# The commands to list exported symbols. ++export_symbols_cmds=$lt_export_symbols_cmds ++ ++# The commands to extract the exported symbol list from a shared archive. ++extract_expsyms_cmds=$lt_extract_expsyms_cmds ++ ++# Symbols that should not be listed in the preloaded symbols. ++exclude_expsyms=$lt_exclude_expsyms ++ ++# Symbols that must always be exported. ++include_expsyms=$lt_include_expsyms ++ ++# ### END LIBTOOL CONFIG ++ ++__EOF__ ++ ++ case $host_os in ++ aix3*) ++ cat <<\EOF >> "${ofile}T" ++ ++# AIX sometimes has problems with the GCC collect2 program. For some ++# reason, if we set the COLLECT_NAMES environment variable, the problems ++# vanish in a puff of smoke. ++if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++fi ++EOF ++ ;; ++ esac ++ ++ case $host_os in ++ cygwin* | mingw* | pw32* | os2*) ++ cat <<'EOF' >> "${ofile}T" ++ # This is a source program that is used to create dlls on Windows ++ # Don't remove nor modify the starting and closing comments ++# /* ltdll.c starts here */ ++# #define WIN32_LEAN_AND_MEAN ++# #include ++# #undef WIN32_LEAN_AND_MEAN ++# #include ++# ++# #ifndef __CYGWIN__ ++# # ifdef __CYGWIN32__ ++# # define __CYGWIN__ __CYGWIN32__ ++# # endif ++# #endif ++# ++# #ifdef __cplusplus ++# extern "C" { ++# #endif ++# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); ++# #ifdef __cplusplus ++# } ++# #endif ++# ++# #ifdef __CYGWIN__ ++# #include ++# DECLARE_CYGWIN_DLL( DllMain ); ++# #endif ++# HINSTANCE __hDllInstance_base; ++# ++# BOOL APIENTRY ++# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) ++# { ++# __hDllInstance_base = hInst; ++# return TRUE; ++# } ++# /* ltdll.c ends here */ ++ # This is a source program that is used to create import libraries ++ # on Windows for dlls which lack them. Don't remove nor modify the ++ # starting and closing comments ++# /* impgen.c starts here */ ++# /* Copyright (C) 1999-2000 Free Software Foundation, Inc. ++# ++# This file is part of GNU libtool. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# */ ++# ++# #include /* for printf() */ ++# #include /* for open(), lseek(), read() */ ++# #include /* for O_RDONLY, O_BINARY */ ++# #include /* for strdup() */ ++# ++# /* O_BINARY isn't required (or even defined sometimes) under Unix */ ++# #ifndef O_BINARY ++# #define O_BINARY 0 ++# #endif ++# ++# static unsigned int ++# pe_get16 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[2]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 2); ++# return b[0] + (b[1]<<8); ++# } ++# ++# static unsigned int ++# pe_get32 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[4]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 4); ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# static unsigned int ++# pe_as32 (ptr) ++# void *ptr; ++# { ++# unsigned char *b = ptr; ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# int ++# main (argc, argv) ++# int argc; ++# char *argv[]; ++# { ++# int dll; ++# unsigned long pe_header_offset, opthdr_ofs, num_entries, i; ++# unsigned long export_rva, export_size, nsections, secptr, expptr; ++# unsigned long name_rvas, nexp; ++# unsigned char *expdata, *erva; ++# char *filename, *dll_name; ++# ++# filename = argv[1]; ++# ++# dll = open(filename, O_RDONLY|O_BINARY); ++# if (dll < 1) ++# return 1; ++# ++# dll_name = filename; ++# ++# for (i=0; filename[i]; i++) ++# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':') ++# dll_name = filename + i +1; ++# ++# pe_header_offset = pe_get32 (dll, 0x3c); ++# opthdr_ofs = pe_header_offset + 4 + 20; ++# num_entries = pe_get32 (dll, opthdr_ofs + 92); ++# ++# if (num_entries < 1) /* no exports */ ++# return 1; ++# ++# export_rva = pe_get32 (dll, opthdr_ofs + 96); ++# export_size = pe_get32 (dll, opthdr_ofs + 100); ++# nsections = pe_get16 (dll, pe_header_offset + 4 +2); ++# secptr = (pe_header_offset + 4 + 20 + ++# pe_get16 (dll, pe_header_offset + 4 + 16)); ++# ++# expptr = 0; ++# for (i = 0; i < nsections; i++) ++# { ++# char sname[8]; ++# unsigned long secptr1 = secptr + 40 * i; ++# unsigned long vaddr = pe_get32 (dll, secptr1 + 12); ++# unsigned long vsize = pe_get32 (dll, secptr1 + 16); ++# unsigned long fptr = pe_get32 (dll, secptr1 + 20); ++# lseek(dll, secptr1, SEEK_SET); ++# read(dll, sname, 8); ++# if (vaddr <= export_rva && vaddr+vsize > export_rva) ++# { ++# expptr = fptr + (export_rva - vaddr); ++# if (export_rva + export_size > vaddr + vsize) ++# export_size = vsize - (export_rva - vaddr); ++# break; ++# } ++# } ++# ++# expdata = (unsigned char*)malloc(export_size); ++# lseek (dll, expptr, SEEK_SET); ++# read (dll, expdata, export_size); ++# erva = expdata - export_rva; ++# ++# nexp = pe_as32 (expdata+24); ++# name_rvas = pe_as32 (expdata+32); ++# ++# printf ("EXPORTS\n"); ++# for (i = 0; i> "${ofile}T" || (rm -f "${ofile}T"; exit 1) ++ ++ mv -f "${ofile}T" "$ofile" || \ ++ (rm -f "$ofile" && cp "${ofile}T" "$ofile" && rm -f "${ofile}T") ++ chmod +x "$ofile" ++fi ++## ++## END FIXME ++ ++])# _LT_AC_LTCONFIG_HACK + + # AC_LIBTOOL_DLOPEN - enable checks for dlopen support +-AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])]) ++AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])]) + + # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's +-AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])]) ++AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])]) + + # AC_ENABLE_SHARED - implement the --enable-shared flag + # Usage: AC_ENABLE_SHARED[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_SHARED, [dnl +-define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_SHARED], ++[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(shared, + changequote(<<, >>)dnl + << --enable-shared[=PKGS] build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) +@@ -167,21 +3062,22 @@ + ]) + + # AC_DISABLE_SHARED - set the default shared flag to --disable-shared +-AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_DISABLE_SHARED], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_SHARED(no)]) + + # AC_ENABLE_STATIC - implement the --enable-static flag + # Usage: AC_ENABLE_STATIC[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_STATIC, [dnl +-define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_STATIC], ++[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(static, + changequote(<<, >>)dnl + << --enable-static[=PKGS] build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) +@@ -200,7 +3096,8 @@ + ]) + + # AC_DISABLE_STATIC - set the default static flag to --disable-static +-AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_DISABLE_STATIC], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_STATIC(no)]) + + +@@ -208,14 +3105,14 @@ + # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl +-define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_FAST_INSTALL], ++[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(fast-install, + changequote(<<, >>)dnl + << --enable-fast-install[=PKGS] optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) +@@ -233,29 +3130,120 @@ + enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl + ]) + +-# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install +-AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++# AC_DISABLE_FAST_INSTALL - set the default to --disable-fast-install ++AC_DEFUN([AC_DISABLE_FAST_INSTALL], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_FAST_INSTALL(no)]) + ++# AC_LIBTOOL_PICMODE - implement the --with-pic flag ++# Usage: AC_LIBTOOL_PICMODE[(MODE)] ++# Where MODE is either `yes' or `no'. If omitted, it defaults to ++# `both'. ++AC_DEFUN([AC_LIBTOOL_PICMODE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++pic_mode=ifelse($#,1,$1,default)]) ++ ++ ++# AC_PATH_TOOL_PREFIX - find a file program which can recognise shared library ++AC_DEFUN([AC_PATH_TOOL_PREFIX], ++[AC_MSG_CHECKING([for $1]) ++AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, ++[case $MAGIC_CMD in ++ /*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ++ ;; ++ ?:/*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path. ++ ;; ++ *) ++ ac_save_MAGIC_CMD="$MAGIC_CMD" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++dnl $ac_dummy forces splitting on constant user-supplied paths. ++dnl POSIX.2 word splitting is done only on the output of word expansions, ++dnl not every word. This closes a longstanding sh security hole. ++ ac_dummy="ifelse([$2], , $PATH, [$2])" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$1; then ++ lt_cv_path_MAGIC_CMD="$ac_dir/$1" ++ if test -n "$file_magic_test_file"; then ++ case $deplibs_check_method in ++ "file_magic "*) ++ file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" ++ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | ++ egrep "$file_magic_regex" > /dev/null; then ++ : ++ else ++ cat <&2 ++ ++*** Warning: the command libtool uses to detect shared libraries, ++*** $file_magic_cmd, produces output that libtool cannot recognize. ++*** The result is that libtool may fail to recognize shared libraries ++*** as such. This will affect the creation of libtool libraries that ++*** depend on shared libraries, but programs linked with such libtool ++*** libraries will work regardless of this problem. Nevertheless, you ++*** may want to report the problem to your system manager and/or to ++*** bug-libtool@gnu.org ++ ++EOF ++ fi ;; ++ esac ++ fi ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ MAGIC_CMD="$ac_save_MAGIC_CMD" ++ ;; ++esac]) ++MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++if test -n "$MAGIC_CMD"; then ++ AC_MSG_RESULT($MAGIC_CMD) ++else ++ AC_MSG_RESULT(no) ++fi ++]) ++ ++ ++# AC_PATH_MAGIC - find a file program which can recognise a shared library ++AC_DEFUN([AC_PATH_MAGIC], ++[AC_REQUIRE([AC_CHECK_TOOL_PREFIX])dnl ++AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin:$PATH) ++if test -z "$lt_cv_path_MAGIC_CMD"; then ++ if test -n "$ac_tool_prefix"; then ++ AC_PATH_TOOL_PREFIX(file, /usr/bin:$PATH) ++ else ++ MAGIC_CMD=: ++ fi ++fi ++]) ++ ++ + # AC_PROG_LD - find the path to the GNU or non-GNU linker +-AC_DEFUN(AC_PROG_LD, ++AC_DEFUN([AC_PROG_LD], + [AC_ARG_WITH(gnu-ld, + [ --with-gnu-ld assume the C compiler uses GNU ld [default=no]], + test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no) + AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_CANONICAL_HOST])dnl + AC_REQUIRE([AC_CANONICAL_BUILD])dnl ++AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl + ac_prog=ld +-if test "$ac_cv_prog_gcc" = yes; then ++if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by GCC]) +- ac_prog=`($CC -print-prog-name=ld) 2>&5` +- case "$ac_prog" in ++ case $host in ++ *-*-mingw*) ++ # gcc leaves a trailing carriage return which upsets mingw ++ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; ++ *) ++ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; ++ esac ++ case $ac_prog in + # Accept absolute paths. +-changequote(,)dnl +- [\\/]* | [A-Za-z]:[\\/]*) +- re_direlt='/[^/][^/]*/\.\./' +-changequote([,])dnl ++ [[\\/]]* | [[A-Za-z]]:[[\\/]]*) ++ re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the path of ld + ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` + while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do +@@ -277,17 +3265,17 @@ + else + AC_MSG_CHECKING([for non-GNU ld]) + fi +-AC_CACHE_VAL(ac_cv_path_LD, ++AC_CACHE_VAL(lt_cv_path_LD, + [if test -z "$LD"; then +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then +- ac_cv_path_LD="$ac_dir/$ac_prog" ++ lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some GNU ld's only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. +- if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then ++ if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then + test "$with_gnu_ld" != no && break + else + test "$with_gnu_ld" != yes && break +@@ -296,9 +3284,9 @@ + done + IFS="$ac_save_ifs" + else +- ac_cv_path_LD="$LD" # Let the user override the test with a path. ++ lt_cv_path_LD="$LD" # Let the user override the test with a path. + fi]) +-LD="$ac_cv_path_LD" ++LD="$lt_cv_path_LD" + if test -n "$LD"; then + AC_MSG_RESULT($LD) + else +@@ -308,56 +3296,255 @@ + AC_PROG_LD_GNU + ]) + +-AC_DEFUN(AC_PROG_LD_GNU, +-[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld, ++# AC_PROG_LD_GNU - ++AC_DEFUN([AC_PROG_LD_GNU], ++[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld, + [# I'd rather use --version here, but apparently some GNU ld's only accept -v. + if $LD -v 2>&1 &5; then +- ac_cv_prog_gnu_ld=yes ++ lt_cv_prog_gnu_ld=yes + else +- ac_cv_prog_gnu_ld=no ++ lt_cv_prog_gnu_ld=no + fi]) ++with_gnu_ld=$lt_cv_prog_gnu_ld ++]) ++ ++# AC_PROG_LD_RELOAD_FLAG - find reload flag for linker ++# -- PORTME Some linkers may need a different reload flag. ++AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], ++[AC_CACHE_CHECK([for $LD option to reload object files], lt_cv_ld_reload_flag, ++[lt_cv_ld_reload_flag='-r']) ++reload_flag=$lt_cv_ld_reload_flag ++test -n "$reload_flag" && reload_flag=" $reload_flag" ++]) ++ ++# AC_DEPLIBS_CHECK_METHOD - how to check for library dependencies ++# -- PORTME fill in with the dynamic library characteristics ++AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], ++[AC_CACHE_CHECK([how to recognise dependent libraries], ++lt_cv_deplibs_check_method, ++[lt_cv_file_magic_cmd='$MAGIC_CMD' ++lt_cv_file_magic_test_file= ++lt_cv_deplibs_check_method='unknown' ++# Need to set the preceding variable on all platforms that support ++# interlibrary dependencies. ++# 'none' -- dependencies not supported. ++# `unknown' -- same as none, but documents that we really don't know. ++# 'pass_all' -- all dependencies passed with no checks. ++# 'test_compile' -- check by making test program. ++# 'file_magic [[regex]]' -- check by looking for files in library path ++# which responds to the $file_magic_cmd with a given egrep regex. ++# If you have `file' or equivalent on your system and you're not sure ++# whether `pass_all' will *always* work, you probably want this one. ++ ++case $host_os in ++aix4* | aix5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++beos*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++bsdi4*) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' ++ lt_cv_file_magic_cmd='$OBJDUMP -f' ++ ;; ++ ++darwin* | rhapsody*) ++ lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ case "$host_os" in ++ rhapsody* | darwin1.[[012]]) ++ lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1` ++ ;; ++ *) # Darwin 1.3 on ++ lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib' ++ ;; ++ esac ++ ;; ++ ++freebsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ case $host_cpu in ++ i*86 ) ++ # Not sure whether the presence of OpenBSD here was a mistake. ++ # Let's accept both of them until this is cleared up. ++ lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ ;; ++ esac ++ else ++ lt_cv_deplibs_check_method=pass_all ++ fi ++ ;; ++ ++gnu*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++hpux10.20*|hpux11*) ++ lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libc.sl ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ irix5* | nonstopux*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1" ++ ;; ++ *) ++ case $LD in ++ *-32|*"-32 ") libmagic=32-bit;; ++ *-n32|*"-n32 ") libmagic=N32;; ++ *-64|*"-64 ") libmagic=64-bit;; ++ *) libmagic=never-match;; ++ esac ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[[1234]] dynamic lib MIPS - version 1" ++ ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*` ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ case $host_cpu in ++ alpha* | hppa* | i*86 | mips | mipsel | powerpc* | sparc* | ia64* | arm* | m68k) ++ lt_cv_deplibs_check_method=pass_all ;; ++ *) ++ # glibc up to 2.1.1 does not perform some relocations on ARM ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so` ++ ;; ++ ++netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so\.[[0-9]]+\.[[0-9]]+$' ++ else ++ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so$' ++ fi ++ ;; ++ ++newos6*) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libnls.so ++ ;; ++ ++openbsd*) ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object' ++ else ++ lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' ++ fi ++ ;; ++ ++osf3* | osf4* | osf5*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method='file_magic COFF format alpha shared library' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sco3.2v5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++solaris*) ++ lt_cv_deplibs_check_method=pass_all ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ ++sysv5uw[[78]]* | sysv4*uw2*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ case $host_vendor in ++ motorola) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ++ ;; ++ ncr) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ sequent) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ++ ;; ++ sni) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ siemens) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ esac ++ ;; ++esac ++]) ++file_magic_cmd=$lt_cv_file_magic_cmd ++deplibs_check_method=$lt_cv_deplibs_check_method + ]) + ++ + # AC_PROG_NM - find the path to a BSD-compatible name lister +-AC_DEFUN(AC_PROG_NM, +-[AC_MSG_CHECKING([for BSD-compatible nm]) +-AC_CACHE_VAL(ac_cv_path_NM, ++AC_DEFUN([AC_PROG_NM], ++[AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl ++AC_MSG_CHECKING([for BSD-compatible nm]) ++AC_CACHE_VAL(lt_cv_path_NM, + [if test -n "$NM"; then + # Let the user override the test. +- ac_cv_path_NM="$NM" ++ lt_cv_path_NM="$NM" + else +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do + test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then ++ tmp_nm=$ac_dir/${ac_tool_prefix}nm ++ if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored +- if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -B" ++ # Tru64's nm complains that /dev/null is an invalid object file ++ if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -B" + break +- elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -p" ++ elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -p" + break + else +- ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but ++ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + fi + fi + done + IFS="$ac_save_ifs" +- test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm ++ test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm + fi]) +-NM="$ac_cv_path_NM" ++NM="$lt_cv_path_NM" + AC_MSG_RESULT([$NM]) + ]) + + # AC_CHECK_LIBM - check for math library +-AC_DEFUN(AC_CHECK_LIBM, ++AC_DEFUN([AC_CHECK_LIBM], + [AC_REQUIRE([AC_CANONICAL_HOST])dnl + LIBM= +-case "$lt_target" in +-*-*-beos* | *-*-cygwin*) ++case $host in ++*-*-beos* | *-*-cygwin* | *-*-pw32*) + # These system don't have libm + ;; + *-ncr-sysv4.3*) +@@ -371,37 +3558,41 @@ + ]) + + # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for +-# the libltdl convenience library and INCLTDL to the include flags for ++# the libltdl convenience library and LTDLINCL to the include flags for + # the libltdl header and adds --enable-ltdl-convenience to the +-# configure arguments. Note that LIBLTDL and INCLTDL are not ++# configure arguments. Note that LIBLTDL and LTDLINCL are not + # AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If DIR is not + # provided, it is assumed to be `libltdl'. LIBLTDL will be prefixed +-# with '${top_builddir}/' and INCLTDL will be prefixed with ++# with '${top_builddir}/' and LTDLINCL will be prefixed with + # '${top_srcdir}/' (note the single quotes!). If your package is not + # flat and you're not using automake, define top_builddir and + # top_srcdir appropriately in the Makefiles. +-AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl +- case "$enable_ltdl_convenience" in ++AC_DEFUN([AC_LIBLTDL_CONVENIENCE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++ case $enable_ltdl_convenience in + no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; + "") enable_ltdl_convenience=yes + ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; + esac + LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la +- INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ++ LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ++ # For backwards non-gettext consistent compatibility... ++ INCLTDL="$LTDLINCL" + ]) + + # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for +-# the libltdl installable library and INCLTDL to the include flags for ++# the libltdl installable library and LTDLINCL to the include flags for + # the libltdl header and adds --enable-ltdl-install to the configure +-# arguments. Note that LIBLTDL and INCLTDL are not AC_SUBSTed, nor is ++# arguments. Note that LIBLTDL and LTDLINCL are not AC_SUBSTed, nor is + # AC_CONFIG_SUBDIRS called. If DIR is not provided and an installed + # libltdl is not found, it is assumed to be `libltdl'. LIBLTDL will +-# be prefixed with '${top_builddir}/' and INCLTDL will be prefixed ++# be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed + # with '${top_srcdir}/' (note the single quotes!). If your package is + # not flat and you're not using automake, define top_builddir and + # top_srcdir appropriately in the Makefiles. + # In the future, this macro may have to be called after AC_PROG_LIBTOOL. +-AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_LIBLTDL_INSTALLABLE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_CHECK_LIB(ltdl, main, + [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], + [if test x"$enable_ltdl_install" = xno; then +@@ -413,22 +3604,115 @@ + if test x"$enable_ltdl_install" = x"yes"; then + ac_configure_args="$ac_configure_args --enable-ltdl-install" + LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la +- INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ++ LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) + else + ac_configure_args="$ac_configure_args --enable-ltdl-install=no" + LIBLTDL="-lltdl" +- INCLTDL= ++ LTDLINCL= + fi ++ # For backwards non-gettext consistent compatibility... ++ INCLTDL="$LTDLINCL" + ]) + +-dnl old names +-AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl +-AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl +-AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl +-AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl +-AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl +-AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl +-AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl ++# old names ++AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) ++AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) ++AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) ++AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) ++AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) ++AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) ++AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) ++ ++# This is just to silence aclocal about the macro not being used ++ifelse([AC_DISABLE_FAST_INSTALL]) ++ ++############################################################ ++# NOTE: This macro has been submitted for inclusion into # ++# GNU Autoconf as AC_PROG_SED. When it is available in # ++# a released version of Autoconf we should remove this # ++# macro and use it instead. # ++############################################################ ++# LT_AC_PROG_SED ++# -------------- ++# Check for a fully-functional sed program, that truncates ++# as few characters as possible. Prefer GNU sed if found. ++AC_DEFUN([LT_AC_PROG_SED], ++[AC_MSG_CHECKING([for a sed that does not truncate output]) ++AC_CACHE_VAL(lt_cv_path_SED, ++[# Loop through the user's path and test for sed and gsed. ++# Then use that list of sed's as ones to test for truncation. ++as_executable_p="test -f" ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_prog in sed gsed; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then ++ _sed_list="$_sed_list $as_dir/$ac_prog$ac_exec_ext" ++ fi ++ done ++ done ++done + +-dnl This is just to silence aclocal about the macro not being used +-ifelse([AC_DISABLE_FAST_INSTALL])dnl ++ # Create a temporary directory, and hook for its removal unless debugging. ++$debug || ++{ ++ trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 ++ trap '{ (exit 1); exit 1; }' 1 2 13 15 ++} ++ ++# Create a (secure) tmp directory for tmp files. ++: ${TMPDIR=/tmp} ++{ ++ tmp=`(umask 077 && mktemp -d -q "$TMPDIR/sedXXXXXX") 2>/dev/null` && ++ test -n "$tmp" && test -d "$tmp" ++} || ++{ ++ tmp=$TMPDIR/sed$$-$RANDOM ++ (umask 077 && mkdir $tmp) ++} || ++{ ++ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ++ { (exit 1); exit 1; } ++} ++ _max=0 ++ _count=0 ++ # Add /usr/xpg4/bin/sed as it is typically found on Solaris ++ # along with /bin/sed that truncates output. ++ for _sed in $_sed_list /usr/xpg4/bin/sed; do ++ test ! -f ${_sed} && break ++ cat /dev/null > "$tmp/sed.in" ++ _count=0 ++ echo ${ECHO_N-$ac_n} "0123456789${ECHO_C-$ac_c}" >"$tmp/sed.in" ++ # Check for GNU sed and select it if it is found. ++ if "${_sed}" --version 2>&1 < /dev/null | egrep '(GNU)' > /dev/null; then ++ lt_cv_path_SED=${_sed} ++ break ++ fi ++ while true; do ++ cat "$tmp/sed.in" "$tmp/sed.in" >"$tmp/sed.tmp" ++ mv "$tmp/sed.tmp" "$tmp/sed.in" ++ cp "$tmp/sed.in" "$tmp/sed.nl" ++ echo >>"$tmp/sed.nl" ++ ${_sed} -e 's/a$//' < "$tmp/sed.nl" >"$tmp/sed.out" || break ++ cmp -s "$tmp/sed.out" "$tmp/sed.nl" || break ++ # 40000 chars as input seems more than enough ++ test $_count -gt 10 && break ++ _count=`expr $_count + 1` ++ if test $_count -gt $_max; then ++ _max=$_count ++ lt_cv_path_SED=$_sed ++ fi ++ done ++ done ++ rm -rf "$tmp" ++]) ++if test "X$SED" != "X"; then ++ lt_cv_path_SED=$SED ++else ++ SED=$lt_cv_path_SED ++fi ++AC_MSG_RESULT([$SED]) ++]) +--- recode-3.6.orig/i18n/el.po ++++ recode-3.6/i18n/el.po +@@ -70,9 +70,9 @@ + "along with this program; if not, write to the Free Software Foundation,\n" + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + msgstr "" +-" \n" ++" \n" + "/ \n" +-" GNU Free Software Foundation \n" ++" GNU Free Software Foundation \n" + " 2 ( ) .\n" + "\n" + " ,\n" +@@ -81,7 +81,7 @@ + " GNU General Public License .\n" + "\n" + " GNU\n" +-" , Free Software Foundation,\n" ++" , Free Software Foundation,\n" + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + + # src/main.c:479 +@@ -92,21 +92,14 @@ + + # src/main.c:483 + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-" `recode' " +-" .\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr " `recode' .\n" + + # src/main.c:486 + #: src/main.c:241 + #, c-format +-msgid "" +-"\n" +-"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" +-msgstr "" +-"\n" +-": %s []... [ [Թ] | []...\n" ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\n: %s []... [ [Թ] | []...\n" + + # src/main.c:489 + #: src/main.c:244 +@@ -127,8 +120,7 @@ + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -140,8 +132,7 @@ + ":\n" + " -l, --list[=] \n" + " -k, --known= \n" +-" . -h, " +-"--header[=[LN/]] \n" ++" . -h, --header[=[LN/]] \n" + " LN, \n" + " -F, --freeze-tables C \n" + " -T, --find-subsets \n" +@@ -166,10 +157,8 @@ + " :\n" + " -v, --verbose \n" + " -q, --quiet, --silent - \n" +-" -f, --force " +-"\n" +-" -t, --touch " +-"\n" ++" -f, --force \n" ++" -t, --touch \n" + " \n" + " -i, --sequence=files \n" + " --sequence=memory \n" +@@ -198,17 +187,13 @@ + msgstr "" + "\n" + ":\n" +-" -s, --strict , " +-"\n" +-" -d, --diacritics " +-"HTML/LaTeX\n" ++" -s, --strict , \n" ++" -d, --diacritics HTML/LaTeX\n" + " -S, --source[=LN] \n" + " LN\n" +-" -c, --colons " +-"\n" ++" -c, --colons \n" + " -g, --graphics IBMPC ASCII \n" +-" -x, --ignore= () " +-" \n" ++" -x, --ignore= () \n" + + # src/main.c:294 + #: src/main.c:296 +@@ -226,8 +211,7 @@ + #: src/main.c:302 + #, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" + " DEFAULT_CHARSET,\n" +@@ -237,8 +221,7 @@ + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" + " -k, \n" +@@ -248,36 +231,26 @@ + + # src/main.c:318 + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" +-msgstr "" +-"LN , `c', `perl' `po' ' " +-"`c'.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN , `c', `perl' `po' ' `c'.\n" + + # src/main.c:321 + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" +-" [,]... " +-"[...]...\n" +-" [][/[]]... " +-"...,\n" ++" [,]... [...]...\n" ++" [][/[]]... ...,\n" + " . \n" +-" , " +-"[/]...\n" +-" , /\n" +-" . " +-".\n" ++" , [/]...\n" ++" , /\n" ++" . .\n" + + # src/main.c:556 + #: src/main.c:323 +@@ -288,20 +261,15 @@ + "FILE is specified, then act as a filter and recode stdin to stdout.\n" + msgstr "" + "\n" +-" -i -p , -p , " +-" -i.\n" ++" -i -p , -p , -i.\n" + " , .\n" + " , \n" + " .\n" + + # src/main.c:562 + #: src/main.c:329 +-msgid "" +-"\n" +-"Report bugs to .\n" +-msgstr "" +-"\n" +-" .\n" ++msgid "\nReport bugs to .\n" ++msgstr "\n .\n" + + #: src/main.c:430 + #, c-format +@@ -338,18 +306,12 @@ + #: src/main.c:621 + #, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-" Franc,ois Pinard .\n" ++msgstr "\n Franc,ois Pinard .\n" + + # src/main.c:622 + #: src/main.c:624 +-msgid "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" +-msgstr "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + + # src/main.c:850 + #: src/main.c:628 +@@ -357,9 +319,8 @@ + "This is free software; see the source for copying conditions. There is NO\n" + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" +-" " +-".\n" +-" \n" ++" .\n" ++" \n" + " .\n" + + #: src/main.c:669 +@@ -426,9 +387,7 @@ + #: src/names.c:831 + #, c-format + msgid "Cannot list `%s', no names available for this charset" +-msgstr "" +-" `%s', " +-" " ++msgstr " `%s', " + + # src/names.c:974 src/names.c:1020 + #. code counter +@@ -450,15 +409,13 @@ + #: src/outer.c:125 + #, c-format + msgid "Resurfacer set more than once for `%s'" +-msgstr "" +-" `%s'" ++msgstr " `%s'" + + # src/outer.c:102 + #: src/outer.c:133 + #, c-format + msgid "Unsurfacer set more than once for `%s'" +-msgstr "" +-" `%s'" ++msgstr " `%s'" + + # src/recode.c:117 src/recode.c:129 + #: src/recode.c:115 src/recode.c:127 +@@ -467,13 +424,13 @@ + + # src/recode.c:157 + #: src/recode.c:155 +-#, c-format, ycp-format ++#, c-format + msgid "Codes %3d and %3d both recode to %3d" + msgstr " %3d %3d %3d" + + # src/recode.c:171 + #: src/recode.c:169 +-#, c-format, ycp-format ++#, c-format + msgid "No character recodes to %3d" + msgstr " %3d" + +@@ -615,43 +572,39 @@ + + # src/debug.c:287 + #: src/testdump.c:298 +-msgid "" +-"UCS2 Mne Description\n" +-"\n" +-msgstr "" +-"UCS2 Mne \n" +-"\n" ++msgid "UCS2 Mne Description\n\n" ++msgstr "UCS2 Mne \n\n" + +-# src/main.c:308 ++#~ # src/main.c:308 + #~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" + #~ msgstr "" + #~ "O ( CHARSET) ' ,\n" + #~ " DEFAULT_CHARSET.\n" + +-# src/main.c:659 ++#~ # src/main.c:659 + #~ msgid "Ambiguous sequence `%s'" + #~ msgstr " `%s'" + +-# src/main.c:663 ++#~ # src/main.c:663 + #~ msgid "Unknown sequence `%s'" + #~ msgstr " `%s'" + +-# src/main.c:693 src/main.c:747 ++#~ # src/main.c:693 src/main.c:747 + #~ msgid "Ambiguous language `%s'" + #~ msgstr " `%s'" + +-# src/main.c:697 src/main.c:751 ++#~ # src/main.c:697 src/main.c:751 + #~ msgid "Unknown language `%s'" + #~ msgstr " `%s'" + +-# src/main.c:785 ++#~ # src/main.c:785 + #~ msgid "Ambiguous format `%s'" + #~ msgstr " `%s'" + +-# src/main.c:789 ++#~ # src/main.c:789 + #~ msgid "Unknown format `%s'" + #~ msgstr " `%s'" + +-# src/main.c:1005 ++#~ # src/main.c:1005 + #~ msgid "Erroneous request `%s'" + #~ msgstr " `%s'" +--- recode-3.6.orig/i18n/id.po ++++ recode-3.6/i18n/id.po +@@ -0,0 +1,511 @@ ++# recode 3.6 (Indonesian) ++# Copyright (C) 2001 Free Software Foundation, Inc. ++# Tedi Heriyanto , 2002 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2002-10-08 14:29GMT+0700\n" ++"Last-Translator: Tedi Heriyanto \n" ++"Language-Team: Indonesian \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 0.9.5\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "Tidak ada kesalahan" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Input non kanonikal" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Output ambigu" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Input tak dapat diterjemahkan" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Input tidak valid" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "Sistem mendeteksi masalah" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "Kesalahan penggunaan library recoding" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "Bug recoding internal" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Coba `%s %s' untuk informasi lengkap.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Free `recode' mengkonversi file antar berbagai set karakter dan permukaan.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Jika sebuah option long menunjukkan argumen sebagai mandatori, maka ia mandatori\n" ++"juga option short yang ekivalen. Demikian pula untuk argumen optional.\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] tampilkan satu atau semua charset dan alias yang dikenal\n" ++" -k, --known=PAIRS batasi charset sesuai daftar PAIRS yang dikenal\n" ++" -h, --header[=[LN/]NAME] tulis tabel NAME ke stdout menggunakan LN, kemudian keluar\n" ++" -F, --freeze-tables tulis sebuah modul C yang menyimpan semua tabel\n" ++" -T, --find-subsets laporkan semua charset yang menjadi subset yang lain\n" ++" -C, --copyright tampilkan kondisi Copyright dan copying\n" ++" --help tampilkan bantuan ini dan keluar\n" ++" --version tampilkan informasi versi dan keluar\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Mode operasi:\n" ++" -v, --verbose jelaskan urutan langkah dan laporkan kemajuan\n" ++" -q, --quiet, --silent tiadakan pesan tentang recoding yang tidak dapat dikembalikan\n" ++" -f, --force paksa recoding bahkan bila tidak dapat dikembalikan\n" ++" -t, --touch touch file ter-recoded setelah penggantian\n" ++" -i, --sequence=files gunakan file perantara untuk urutan pelewatan\n" ++" --sequence=memory gunakan buffer memori untuk urutan pelewatan\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=pipe gunakan mesin pipa untuk urutan pelewatan\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe sama seperti -i (pada sistem ini)\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict gunakan mapping yang ketat, bahkan hilangkan karakter\n" ++" -d, --diacritics konversi hanya diacritics atau yang serupa untuk HTML/LaTeX\n" ++" -S, --source[=LN] batasi recoding untuk string dan komentar sama seperti LN\n" ++" -c, --colons gunakan titik koma alih-alih kuotasi ganda untuk diaeresis\n" ++" -g, --graphics dekati penggaris IBMPC dengan grafik ASCII\n" ++" -x, --ignore=CHARSET abatikan CHARSET saat memilih jalur recoding\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT adalah `decimal', `octal', `hexadecimal' atau `full' (atau satu `dohf').\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"Kecuali DEFAULT_CHARSET diset dalam environment, CHARSET bakunya adalah lokal\n" ++"tergantung enkoding, yang ditentukan oleh LC_ALL, LC_CTYPE, LANG.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Dengan -k, yang mungkin sebelum charset ditampilkan setelah CHARSET,\n" ++"keduanya charset tabular, dengan PAIRS dalam bentuk `BEF1:AFT1,BEF2:AFT2,...'\n" ++"dan BEF dan AFT adalah kode yang diberikan dalam bilangan desimal.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN adalah bahasa, mungkin berupa `c', `perl' atau `po'; `c' adalah bakunya.\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Jika tidak diberikan -i dan -p, asumsikan -p jika tidak ada FILE, sebaliknya -i.\n" ++"Setiap FILE direcode dengan dirinya, menghancurkan aslinya. Jika tidak dispesifikasikan\n" ++"FILE, maka berfungsi sebagai filter dan recode stdin ke stdout.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Report bugs to .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "Urutan `%s' ambigu" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "Urutan `%s' tidak dikenal" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "Bahasa `%s' ambigu" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "Bahasa `%s' tidak dikenal" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "Format `%s' ambigu" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "Format `%s' tidak dikenal" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Ditulis oleh Franc,ois Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "Simbol `%s' tidak dikenal" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "Charset `%s' tidak dikenal atau ambigu" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Argumen yang dibutuhkan hilang" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Sintaks tidak digunakan lagi, silakan pilih `%s'" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "Permintaan `%s' salah" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "Merecoding %s..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " selesai\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " gagal: %s di langkah `%s..%s'\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s gagal: %s di langkah `%s..%s'" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s di langkah `%s..%s'" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "Charset %s sudah ada dan bukan %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "Tidak dapat medaftarkan `%s', tidak ada nama yang tersedia untuk charset ini" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Dec Oct Hex UCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "Maaf, tidak ada tersedia untuk `%s'" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "Resurfacer set lebih dari satu untuk `%s'" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "Unsurfacer set lebih dari satu untuk `%s'" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Memori virtual habis" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "Kode %3d dan %3d kedua direcode ke %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "Tidak ada karakter recode ke %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "Tidak dapat membalik saat diberikan tabel satu-ke-satu" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "Berikut ini diagnostik untuk `%s' ke `%s'" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "Pasangan no %d: <%3d,%3d> konflik dengan <%3d, %3d>" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "Tidak dapat menyelesaikan tabel dari sejumlah pasangan dikenal" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Recoding identitas, tidak perlu tabel" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Recoding terlalu kompleks untuk tabel" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sTabel konversi dihasilkan secara mekanis dengan Free `%s' %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%suntuk urutan %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Tidak ada tabel untuk dicetak" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "dapat dikembalikan" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s ke %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "byte" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "variabel" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Tidak dapat dicapai*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*mere copy*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Memori virtual habis!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "Gagal langkah inisialisasi" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "Gagal langkah inisialisasi (option tidak diproses)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Permintaan: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "Diperkecil jadi: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Nama surface tidak dikenal `%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "Tidak ada cara merecode dari `%s' ke `%s'" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "Mengharapkan `..' dalam permintaan" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "Status tunggu proses anak adalah 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 Mne Description\n" ++"\n" +--- recode-3.6.orig/i18n/nl.po ++++ recode-3.6/i18n/nl.po +@@ -1,50 +1,54 @@ +-# Dutch messages for GNU recode. +-# Copyright (C) 1996 Free Software Foundation, Inc. +-# Erick Branderhorst , 1996. ++# Translation of recode-3.6 to Dutch. ++# Copyright (C) 1996, 2004, 2005, 2006 Free Software Foundation, Inc. ++# This file is distributed under the same license as the recode package. ++# Erick Branderhorst , 1996 ++# Taco Witte , 2004, 2005. ++# Benno Schulenberg , 2006, 2007 + # + msgid "" + msgstr "" +-"Project-Id-Version: recode 3.4.2\n" ++"Project-Id-Version: recode 3.6\n" ++"Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1996-10-07 10:05 MET DST\n" +-"Last-Translator: Erick Branderhorst \n" +-"Language-Team: Dutch \n" ++"PO-Revision-Date: 2007-06-28 19:55+0200\n" ++"Last-Translator: Benno Schulenberg \n" ++"Language-Team: Dutch \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=ISO-8859-1\n" +-"Content-Transfer-Encoding: 8-bit\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 1.11\n" + + #: src/main.c:142 + msgid "No error" +-msgstr "" ++msgstr "Geen fout" + + #: src/main.c:145 + msgid "Non canonical input" +-msgstr "" ++msgstr "Niet-canonieke invoer" + + #: src/main.c:148 +-#, fuzzy + msgid "Ambiguous output" +-msgstr "Dubbelzinnig format `%s'" ++msgstr "Niet-eenduidige uitvoer" + + #: src/main.c:151 + msgid "Untranslatable input" +-msgstr "" ++msgstr "Onvertaalbare invoer" + + #: src/main.c:154 + msgid "Invalid input" +-msgstr "" ++msgstr "Ongeldige invoer" + + #: src/main.c:157 + msgid "System detected problem" +-msgstr "" ++msgstr "Systeem heeft fout gevonden" + + #: src/main.c:160 + msgid "Misuse of recoding library" +-msgstr "" ++msgstr "Verkeerd gebruik van hercoderings-bibliotheek" + + #: src/main.c:163 + msgid "Internal recoding bug" +-msgstr "" ++msgstr "Interne fout bij hercoderen" + + #: src/main.c:208 + msgid "" +@@ -62,38 +66,38 @@ + "along with this program; if not, write to the Free Software Foundation,\n" + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + msgstr "" +-"Dit programma is vrije software; het mag gedistribueerd en/of\n" +-"veranderd worden onder de voorwaarden van de GNU General Public\n" +-"License zoals gepubliceerd door de Free Software Foundation; versie 2,\n" +-"of (als je daar voor kiest) enig latere versie.\n" +-"\n" +-"Dit programma is gedistribueerd in de hoop dat het bruikbaar is, maar\n" +-"ZONDER ENIGE GARANTIE; zelfs zonder de geompliceerde garantie van\n" +-"MERCHANTABILITY of GESCHIKTHEID VOOR EEN SPECIFIEK GEBRUIKSDOEL. Zie\n" +-"de GNU General Public License voor verdere details.\n" +-"\n" +-"Samen met dit programma heb je een copie ontvangen van de GNU General\n" +-"Public License; zo niet, schrijf dan naar de Free Software Foundation,\n" +-"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++"Dit programma is vrije software; u mag het verder verspreiden en/of\n" ++"wijzigen onder de voorwaarden van de GNU General Public License zoals\n" ++"gepubliceerd door de Free Software Foundation, naar keuze ofwel onder\n" ++"versie 2 ofwel onder een nieuwere versie van die licentie.\n" ++"\n" ++"Dit programma wordt uitgegeven in de hoop dat het nuttig is,\n" ++"maar ZONDER ENIGE GARANTIE; zelfs zonder de impliciete garantie\n" ++"van VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD DOEL.\n" ++"Zie de GNU General Public License voor meer details.\n" ++"\n" ++"Bij dit programma hoort u een kopie van de GNU General Public License\n" ++"ontvangen te hebben; is dit niet het geval, schrijf dan naar\n" ++"Free Software Foundation, Inc., 51 Franklin Street, fifth floor,\n" ++"Boston, MA 02110-1301, USA.\n" + + #: src/main.c:233 + #, c-format + msgid "Try `%s %s' for more information.\n" +-msgstr "Probeer `%s %s' voor meer informatie.\n" ++msgstr "Probeer '%s %s' voor meer informatie.\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "'recode' converteert bestanden van en naar allerlei tekensets en oppervlakken.\n" + + #: src/main.c:241 +-#, fuzzy, c-format ++#, c-format + msgid "" + "\n" + "Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" + msgstr "" + "\n" +-"Gebruik: %s [OPTIE]... [KARAKTERSET]\n" ++"Gebruik: %s [OPTIE]... [ [TEKENSET] | VERZOEK [BESTAND]... ]\n" + + #: src/main.c:244 + msgid "" +@@ -101,14 +105,16 @@ + "If a long option shows an argument as mandatory, then it is mandatory\n" + "for the equivalent short option also. Similarly for optional arguments.\n" + msgstr "" ++"\n" ++"Een argument dat verplicht of optioneel is voor een lange optie, is dat\n" ++"ook voor de overeenkomstige korte optie.\n" + + #: src/main.c:250 + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -116,6 +122,19 @@ + " --help display this help and exit\n" + " --version output version information and exit\n" + msgstr "" ++"\n" ++"Opsommingen:\n" ++" -l, --list[=PRESENTATIE] alle bekende tekensets en aliassen opsommen,\n" ++" of een tekenset in tabelvorm presenteren\n" ++" -k, --known=PAREN opsomming beperken volgens deze bekende PAREN\n" ++" -h, --header[=[TL/]NAAM] tabel NAAM naar standaarduitvoer schrijven\n" ++" (in taal TL) en stoppen\n" ++" -F, --freeze-tables een C-module schrijven die alle tabellen bevat\n" ++" -T, --find-subsets alle tekensets opsommen die deelverzameling van\n" ++" anderen zijn\n" ++" -C, --copyright auteursrecht en kopieervoorwaarden tonen\n" ++" --help deze hulptekst tonen en stoppen\n" ++" --version versie-informatie tonen en stoppen\n" + + #: src/main.c:263 + msgid "" +@@ -128,20 +147,24 @@ + " -i, --sequence=files use intermediate files for sequencing passes\n" + " --sequence=memory use memory buffers for sequencing passes\n" + msgstr "" ++"\n" ++"Uitvoermodus:\n" ++" -v, --verbose tussenstappen uitleggen en voortgang tonen\n" ++" -q, --quiet, --silent niets zeggen over onomkeerbare hercoderingen\n" ++" -f, --force hercodering afdwingen, ook als deze onomkeerbaar is\n" ++" -t, --touch tijdsstempel van gehercodeerde bestanden aanpassen\n" ++" -i, --sequence=files tijdelijke bestanden gebruiken voor tussenstappen\n" ++" --sequence=memory geheugenbuffers gebruiken voor tussenstappen\n" + + #: src/main.c:275 + msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" +-msgstr "" +-" -p, --sequence=pipe gebruik pipe machinery for sequencing passes " +-"(FIXME)\n" ++msgstr " -p, --sequence=pipe 'pipes' gebruiken voor tussenstappen\n" + + #: src/main.c:280 +-#, fuzzy + msgid " -p, --sequence=pipe same as -i (on this system)\n" +-msgstr " -p, --sequence=pipe zelfde als -o (op dit systeem)\n" ++msgstr " -p, --sequence=pipe hetzelfde als -i (op dit systeem)\n" + + #: src/main.c:285 +-#, fuzzy + msgid "" + "\n" + "Fine tuning:\n" +@@ -153,21 +176,16 @@ + " -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" + msgstr "" + "\n" +-" -c, --colons gebruik punt in plaats van dubbele kwoots \n" +-" voor diakritische tekens\n" +-" -d, --diacritics limiteer conversie naar diakritische tekens of " +-"zoals \n" +-" voor LaTeX\n" +-" -f, --force forceer omzetting zelfs als deze niet omkeerbaar " +-"is\n" +-" (LET OP: in deze versie, wordt altijd -f " +-"gebruikt)\n" +-" -g, --graphics benadering IBMPC lijnen met ASCII grafische " +-"tekens\n" +-" -h, --header[=NAAM] schrijf C code met tabel NAAM naar " +-"standaarduitvoer\n" +-" -i, --sequence=files gebruik tussen bestanden voor achtereenvolgende \n" +-" sessies\n" ++"Fijnafstelling:\n" ++" -s, --strict strikt converteren, ook als dit tekens verliest\n" ++" -d, --diacritics alleen diakritische tekens en dergelijke converteren\n" ++" voor HTML/LaTeX\n" ++" -S, --source[=TL] hercoderen beperken tot commentaar en tekenreeksen\n" ++" als in taal TL ('c', 'perl', of 'po')\n" ++" -c, --colons voor een trema een dubbele punt in plaats van een\n" ++" dubbel aanhalingsteken gebruiken\n" ++" -g, --graphics IBMPC-lijntjes benaderen met ASCII-tekens\n" ++" -x, --ignore=TEKENSET TEKENSET negeren bij keuze van hercodeertraject\n" + + #: src/main.c:296 + msgid "" +@@ -175,39 +193,49 @@ + "Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" + "FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" + msgstr "" ++"\n" ++"Optie -l zonder PRESENTATIE of TEKENSET somt de beschikbare tekensets en\n" ++"oppervlakken op. PRESENTATIE is 'decimal', 'octal', 'hexadecimal' of\n" ++"'full' (volledig), die afgekort mogen worden tot 'd', 'o', 'h' en 'f'.\n" + + #: src/main.c:302 + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" ++"Tenzij omgevingsvariabele DEFAULT_CHARSET is ingesteld, gebruikt TEKENSET\n" ++"standaard de taalafhankelijke codering, bepaald door LC_ALL, LC_CTYPE, LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" ++"Met optie -k worden voor de gegeven NA-tekenset de mogelijke VOOR-tekensets\n" ++"opgesomd, als tabel van PAREN in de vorm 'VOOR1:NA1,VOOR2:NA2,...', waarbij\n" ++"de VOORs en NAs als decimale getallen gegeven worden.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" +-msgstr "" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "TL is een taal, en kan 'c', 'perl' of 'po' zijn; 'c' is standaard.\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" ++"\n" ++"VERZOEK is DEELVERZOEK[,DEELVERZOEK]...; DEELVERZOEK is CODERING[..CODERING]...\n" ++"CODERING is [TEKENSET][/[OPPERVLAK]]...; VERZOEK ziet er vaak uit als VOOR..NA,\n" ++"waarbij VOOR en NA tekensets zijn. Een weggelaten TEKENSET impliceert de\n" ++"gebruikelijke tekenset; een weggelaten [/OPPERVLAK]... betekent de impliciete\n" ++"oppervlakken voor TEKENSET; een / met een lege oppervlaknaam betekent helemaal\n" ++"geen oppervlak. Zie ook de handleiding.\n" + + #: src/main.c:323 + msgid "" +@@ -216,200 +244,201 @@ + "Each FILE is recoded over itself, destroying the original. If no\n" + "FILE is specified, then act as a filter and recode stdin to stdout.\n" + msgstr "" ++"\n" ++"Als er geen -i of -p gegeven is, wordt -p aangenomen als er geen BESTAND\n" ++"gegeven is, anders -i. Elk BESTAND wordt over zichzelf gehercodeerd; het\n" ++"origineel wordt dus overschreven.\n" ++"Als er geen BESTAND gegeven is, functioneert 'recode' als een filter en\n" ++"wordt van standaardinvoer naar standaarduitvoer gehercodeerd.\n" + + #: src/main.c:329 +-#, fuzzy + msgid "" + "\n" + "Report bugs to .\n" + msgstr "" + "\n" +-"Meld fouten via .\n" ++"Rapporteer programmafouten aan ,\n" ++"en fouten in de Nederlandse vertaling aan .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "Reeks '%s' is niet eenduidig" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "Reeks '%s' is onbekend" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Taal '%s' is niet eenduidig" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Taal '%s' is onbekend" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Presentatie '%s' is niet eenduidig" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Presentatie '%s' is onbekend" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Geschreven door Franois Pinard .\n" ++msgstr "Geschreven door François Pinard .\n" + + #: src/main.c:624 +-#, fuzzy + msgid "" + "\n" + "Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + msgstr "" + "\n" +-"Copyright (C) 1990, 1992, 1993, 1994, 1996 Free Software Foundation, Inc.\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + + #: src/main.c:628 + msgid "" + "This is free software; see the source for copying conditions. There is NO\n" + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" +-"Dit is vrije programmatuur; zie de broncode voor kopieer condities.\n" ++"Dit is vrije software; zie de brontekst voor de kopieervoorwaarden.\n" + "Er is GEEN garantie; zelfs niet voor VERKOOPBAARHEID of GESCHIKTHEID\n" +-"VOOR EEN BEPAALDE TOEPASSING.\n" ++"VOOR EEN BEPAALD DOEL.\n" + + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Symbool '%s' is onbekend" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Tekenset '%s' is onbekend of niet eenduidig" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Een vereist argument ontbreekt" + + #: src/main.c:797 + #, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "" ++msgstr "Deze syntax is verouderd; gebruik liever '%s'" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "Verzoek '%s' is onjuist" + + #: src/main.c:903 + #, c-format + msgid "Recoding %s..." +-msgstr "Omzetten %s..." ++msgstr "Bezig met hercoderen van %s..." + + #: src/main.c:913 + msgid " done\n" +-msgstr " klaar\n" ++msgstr " voltooid\n" + + #: src/main.c:954 + #, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr "" ++msgstr " mislukt: %s in stap '%s..%s'\n" + + #: src/main.c:961 + #, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "" ++msgstr "%s mislukt: %s in stap '%s..%s'" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%svoor reeks %s.%s" ++msgstr "%s in stap '%s..%s'" + + #: src/names.c:335 + #, c-format + msgid "Charset %s already exists and is not %s" +-msgstr "Karakterset %s bestaat reeds en is niet %s" ++msgstr "Tekenset '%s' bestaat al en is niet %s" + + #: src/names.c:831 +-#, fuzzy, c-format ++#, c-format + msgid "Cannot list `%s', no names available for this charset" +-msgstr "" +-"Kan `%s' niet tonen, geen RFC 1345 namen beschikbaar voor deze karakterset" ++msgstr "Kan '%s' niet opsommen; geen namen beschikbaar voor deze tekenset" + + #. code counter + #. expected value for code counter + #. insert a while line before printing + #. Print the long table according to explode data. + #: src/names.c:984 src/names.c:1030 +-#, fuzzy, c-format ++#, c-format + msgid "Dec Oct Hex UCS2 Mne %s\n" +-msgstr "dec oct hex ch %s\n" ++msgstr "Dec Oct Hex UCS2 Mne %s\n" + + #: src/names.c:1049 +-#, fuzzy, c-format ++#, c-format + msgid "Sorry, no names available for `%s'" +-msgstr "Sorry, geen RFC 1345 namen beschikbaar voor `%s'" ++msgstr "Sorry, geen namen beschikbaar voor '%s'" + + #: src/outer.c:125 + #, c-format + msgid "Resurfacer set more than once for `%s'" +-msgstr "" ++msgstr "Her-oppervlakker meer dan eens gezet voor '%s'" + + #: src/outer.c:133 + #, c-format + msgid "Unsurfacer set more than once for `%s'" +-msgstr "" ++msgstr "Ont-oppervlakker meer dan eens gezet voor '%s'" + + #: src/recode.c:115 src/recode.c:127 + msgid "Virtual memory exhausted" +-msgstr "" ++msgstr "Onvoldoende virtueel geheugen" + + #: src/recode.c:155 + #, c-format, ycp-format + msgid "Codes %3d and %3d both recode to %3d" +-msgstr "Code %3d en %3d beide omgezet naar %3d" ++msgstr "Codes %3d en %3d hercoderen beide naar %3d" + + #: src/recode.c:169 + #, c-format, ycp-format + msgid "No character recodes to %3d" +-msgstr "Geen karakter omzetting naar %3d" ++msgstr "Geen teken hercodeert naar %3d" + + #: src/recode.c:170 + msgid "Cannot invert given one-to-one table" +-msgstr "Kan een-op-een tabel niet inverteren" ++msgstr "Kan de gegeven één-op-één tabel niet omkeren" + + #: src/recode.c:224 src/recode.c:236 + #, c-format + msgid "Following diagnostics for `%s' to `%s'" +-msgstr "Volg diagnostiek (FIXME) van `%s' naar `%s'" ++msgstr "Foutmeldingen voor '%s' naar '%s'" + + #: src/recode.c:229 src/recode.c:241 +-#, fuzzy, c-format ++#, c-format + msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" +-msgstr "Paar nummer %d: { %3d, %3d } conflictueerd met { %3d, %3d }" ++msgstr "Paarnummer %d: <%3d, %3d> conflicteert met <%3d, %3d>" + + #: src/recode.c:272 + msgid "Cannot complete table from set of known pairs" +-msgstr "Kan tabel niet compleet maken uit set van bekende paren" ++msgstr "Kan tabel niet afmaken met de verzameling bekende paren" + + #: src/recode.c:497 + msgid "Identity recoding, not worth a table" +-msgstr "Codering is identiek, geen tabel waardig" ++msgstr "Identiteitshercodering; is geen tabel waard" + + #: src/recode.c:504 + msgid "Recoding is too complex for a mere table" +-msgstr "Omzetting is te complex voor een mere tabel (FIXME)" ++msgstr "Hercoderen is te complex voor slechts een tabel" + + #. Print the header of the header file. + #: src/recode.c:536 +-#, fuzzy, c-format ++#, c-format + msgid "%sConversion table generated mechanically by Free `%s' %s" +-msgstr "%sConversietabel mechanisch gegenereerd door GNU %s %s" ++msgstr "%sConversietabel gegenereerd door '%s' %s" + + #: src/recode.c:538 + #, c-format +@@ -418,261 +447,82 @@ + + #: src/recode.c:744 + msgid "No table to print" +-msgstr "Geen tabel om te tonen" ++msgstr "Geen tabel om weer te geven" + + #: src/request.c:34 + msgid "reversible" + msgstr "omkeerbaar" + + #: src/request.c:36 +-#, fuzzy, c-format ++#, c-format + msgid "%s to %s" +-msgstr "%svoor reeks %s.%s" ++msgstr "%s naar %s" + + #: src/request.c:37 src/request.c:39 + msgid "byte" +-msgstr "" ++msgstr "byte" + + #: src/request.c:38 src/request.c:40 + msgid "ucs2" +-msgstr "" ++msgstr "ucs2" + + #: src/request.c:38 src/request.c:40 +-#, fuzzy + msgid "variable" +-msgstr "omkeerbaar" ++msgstr "variabel" + + #: src/request.c:111 + msgid "*Unachievable*" +-msgstr "*Onmogelijk*" ++msgstr "*Kan niet*" + + #: src/request.c:113 + msgid "*mere copy*" +-msgstr "*gewone kopie*" ++msgstr "*simpele kopie*" + + #: src/request.c:246 + msgid "Virtual memory exhausted!" +-msgstr "" ++msgstr "Onvoldoende virtueel geheugen!" + + #: src/request.c:265 + msgid "Step initialisation failed" +-msgstr "" ++msgstr "Stap-initialisatie is mislukt" + + #: src/request.c:272 + msgid "Step initialisation failed (unprocessed options)" +-msgstr "" ++msgstr "Stap-initialisatie is mislukt (onverwerkte opties)" + + #: src/request.c:568 + #, c-format + msgid "Request: %s\n" +-msgstr "" ++msgstr "Verzoek: %s\n" + + #: src/request.c:720 + #, c-format + msgid "Shrunk to: %s\n" +-msgstr "" ++msgstr "Gekrompen tot: %s\n" + + #: src/request.c:823 src/request.c:932 + #, c-format + msgid "Unrecognised surface name `%s'" +-msgstr "" ++msgstr "Onbekende oppervlaknaam '%s'" + + #: src/request.c:903 +-#, fuzzy, c-format ++#, c-format + msgid "No way to recode from `%s' to `%s'" +-msgstr "Geen mogelijkheid voor omzetting van %s naar %s" ++msgstr "Er is geen manier om te hercoderen van '%s' naar '%s'" + + #: src/request.c:1013 + msgid "Expecting `..' in request" +-msgstr "" ++msgstr "'..' werd verwacht in verzoek" + + #: src/task.c:826 src/task.c:1002 + #, c-format + msgid "Child process wait status is 0x%0.2x" +-msgstr "Wacht status proces kind is 0x%0.2x" ++msgstr "Wachtstatus van dochterproces is 0x%0.2x" + + #: src/testdump.c:298 + msgid "" + "UCS2 Mne Description\n" + "\n" + msgstr "" +- +-#~ msgid "Ambiguous sequence `%s'" +-#~ msgstr "Dubbelzinnig `sequence' `%s'" +- +-#~ msgid "Unknown sequence `%s'" +-#~ msgstr "Onbekende `sequence' `%s' (FIXME)" +- +-#~ msgid "Ambiguous language `%s'" +-#~ msgstr "Dubbelzinnige taal `%s'" +- +-#~ msgid "Unknown language `%s'" +-#~ msgstr "Onbekende taal `%s'" +- +-#~ msgid "Ambiguous format `%s'" +-#~ msgstr "Dubbelzinnig format `%s'" +- +-#~ msgid "Unknown format `%s'" +-#~ msgstr "Onbekende format `%s'" +- +-#~ msgid "Hash stats: %d names using %d buckets out of %d\n" +-#~ msgstr "Hash stats: %d names using %d buckets out of %d (FIXME)\n" +- +-#~ msgid "Currently, -s is ignored when -g is selected" +-#~ msgstr "Op dit moment wordt -s genegeerd als -g is geselecteerd" +- +-#~ msgid "one to one" +-#~ msgstr "een op een" +- +-#~ msgid "one to many" +-#~ msgstr "een naar veel (FIXME)" +- +-#~ msgid "many to one" +-#~ msgstr "veel naar een (FIXME)" +- +-#~ msgid "many to many" +-#~ msgstr "veel te veel" +- +-#~ msgid "MAX_CHARSETS is too small" +-#~ msgstr "MAX_CHARSETS is te klein" +- +-#~ msgid "Ambiguous charset or encoding `%s'" +-#~ msgstr "Dubbelzinnige karakterset of codering `%s'" +- +-#~ msgid "Unknown charset or encoding `%s'" +-#~ msgstr "Onbekende karakterset of codering `%s'" +- +-#~ msgid "Simplified to: %s\n" +-#~ msgstr "Versimpeld naar: %s\n" +- +-#~ msgid "Unbalanced quotes in request" +-#~ msgstr "Niet overeenkomstige kwoots in vraag" +- +-#~ msgid "Illegal backslash" +-#~ msgstr "Ongeldige backslash" +- +-#~ msgid "Internal error - strategy undecided" +-#~ msgstr "Interne fout - besluiteloze strategie" +- +-#~ msgid "ONE to SAME" +-#~ msgstr "ONE naar SAME" +- +-#~ msgid "steps: %d" +-#~ msgstr "stappen: %d" +- +-#~ msgid ", %d saved by merging" +-#~ msgstr ", %d bewaard door samenvoegen" +- +-#~ msgid " UNACHIEVABLE\n" +-#~ msgstr " ONBEREIKBAAR\n" +- +-#~ msgid "Cannot auto check the ignored charset" +-#~ msgstr "Kan de genegeerde karakterset niet automatisch kontroleren" +- +-#~ msgid "Cannot auto check on %s" +-#~ msgstr "Kan %s niet automatisch kontroleren" +- +-#~ msgid "" +-#~ "Mandatory or optional arguments to long options are mandatory or optional\n" +-#~ "for short options too.\n" +-#~ "\n" +-#~ " -C, --copyright display Copyright and copying conditions\n" +-#~ " -a, --auto-check report about some or all recoding paths, then exit\n" +-#~ " -l, --list[=FORMAT] list one or all known charsets\n" +-#~ " -k, --known=PAIRS restrict charsets according to known PAIRS list\n" +-#~ " --help display this help and exit\n" +-#~ " --version output version information and exit\n" +-#~ "\n" +-#~ "FORMAT is a word among decimal, octal, hexadecimal or full (which may be\n" +-#~ "abbreviated to one of `dohf'), it defaults to just the canonical name.\n" +-#~ "With -k, possible before charsets are listed for the given after CHARSET,\n" +-#~ "both being RFC1345 charsets, with PAIRS of the form " +-#~ "`BEF1:AFT1,BEF2:AFT2,...\n" +-#~ "and BEFs and AFTs being codes. All codes are given as decimal numbers.\n" +-#~ msgstr "" +-#~ "Verplichte of optionele argumenten bij lange opties, zijn ook\n" +-#~ "verplicht of optioneel bij korte opties.\n" +-#~ "\n" +-#~ " -C, --copyright toon Copyright en copieer kondities\n" +-#~ " -a, --auto-check bericht over sommige of alle omzettingstrajecten\n" +-#~ " -l, --list[=FORMAT] toon een of alle bekende karaktersets\n" +-#~ " -k, --known=PAREN beperk karaktersets volgens bekende PAREN lijst\n" +-#~ " --help toon hulp-tekst en bekindig programma\n" +-#~ " --version toon versie-informatie en bekindig programma\n" +-#~ "\n" +-#~ "FORMAT is een woord zoals decimaal, octaal, hexadecimaal of volledig\n" +-#~ "(full) (wat mag worden afgekort als een van `dohf'), gewoonlijk wordt\n" +-#~ "de standaardnaam gebruikt.\n" +-#~ "\n" +-#~ "(FIXME) With -k, possible before charsets are listed for the given\n" +-#~ "after CHARSET, both being RFC1345 charsets, with PAIRS of the form\n" +-#~ "`BEF1:AFT1,BEF2:AFT2,... and BEFs and AFTs being codes. All codes\n" +-#~ "are given as decimal numbers.\n" +- +-#~ msgid "" +-#~ "Option -l with no FORMAT nor CHARSET list all charsets, also see the " +-#~ "Texinfo\n" +-#~ "documentation. My preferred charsets are (each user has preferences):\n" +-#~ "\n" +-#~ " ascii-bs ASCII (7-bit), using backspace to apply diacritics\n" +-#~ " ibmpc IBM-PC 8-bit characters, with proper newlines\n" +-#~ " latex LaTeX coding of foreign and diacriticized characters\n" +-#~ " latin1 ISO Latin-1 8-bit extension of ASCII\n" +-#~ " texte Easy French convention for transmitting email messages\n" +-#~ msgstr "" +-#~ "Optie -l met geen FORMAT noch CHARSET laat alle karaktersets zien, zie\n" +-#~ "ook de Texinfo documentatie. Mijn preferente karaktersets zijn (elke\n" +-#~ "gebruiker heeft voorkeuren):\n" +-#~ "\n" +-#~ " ascii-bs ASCII (7-bit), gebruik backspace to apply diacritics\n" +-#~ " ibmpc IBM-PC 8-bit karakter, met juiste nieuwe regels\n" +-#~ " latex LaTeX codering van vreemde en dia-kritische karrakters\n" +-#~ " latin1 ISO Latin-1 8-bit uitbreiding van ASCII\n" +-#~ " texte Makkelijk franse conventie voor versturen email berichten\n" +- +-#~ msgid "" +-#~ "\n" +-#~ "Usage: %s [OPTION]... [BEFORE]:[AFTER] [FILE]...\n" +-#~ msgstr "" +-#~ "\n" +-#~ "Gebruik: %s [OPTIE]... [VOOR]:[NA] [BESTAND]...\n" +- +-#~ msgid "" +-#~ " -o, --sequence=popen use popen machinery for sequencing passes\n" +-#~ msgstr "" +-#~ " -o, --sequence=popen gebruiken popen machinery for sequencing passes " +-#~ "(FIXME)\n" +- +-#~ msgid " -o, --sequence=popen same as -i (on this system)\n" +-#~ msgstr " -o, --sequence=popen zelfde als -i (op dit systeem)\n" +- +-#~ msgid "" +-#~ " -q, --quiet, --silent inhibit messages about irreversible recodings\n" +-#~ " -s, --strict use strict mappings, even loose characters\n" +-#~ " -t, --touch touch the recoded files after replacement\n" +-#~ " -v, --verbose explain sequence of steps and report progress\n" +-#~ " -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" +-#~ "\n" +-#~ "If none of -i, -o and -p are given, presume -p if no FILE, else -i.\n" +-#~ "Each FILE is recoded over itself, destroying the original. If no\n" +-#~ "FILE is specified, then act as a filter and recode stdin to stdout.\n" +-#~ msgstr "" +-#~ " -q, --quiet, --silent laat meldingen over onomkeerbaarheid achterwege\n" +-#~ " -s, --strict gebruik strikte omzetting, zelfs voor loose chars\n" +-#~ " -t, --touch verander de tijd van omgezette bestanden\n" +-#~ " -v, --verbose laat zien wat er gebeurt\n" +-#~ " -x, --ignore=CHARSET negeer CHARSET bij kiezen van omzettingstraject\n" +-#~ "\n" +-#~ "Als geen van -i, -o en -p gegeven zijn, veronderstel -p als geen\n" +-#~ "BESTAND, anders -i. Elk BESTAND is omgezet over zichzelf, het\n" +-#~ "origineel vernietigend. Als geen BESTAND is gespecificeerd, werk dan\n" +-#~ "als een filter en zet standaardinvoer om naar standaarduitvoer.\n" +- +-#~ msgid "BEFORE and AFTER both default to `%s' when needed.\n" +-#~ msgstr "VOOR en NA beiden `%s' indien noodzakelijk.\n" +- +-#~ msgid "%s: Recoding is not reversible" +-#~ msgstr "%s: Omzetting is niet omkeerbaar" +- +-#~ msgid "Recoding is not reversible" +-#~ msgstr "Omzetting is niet omkeerbaar" ++"UCS2 Mne Omschrijving\n" ++"\n" +--- recode-3.6.orig/i18n/zh_CN.po ++++ recode-3.6/i18n/zh_CN.po +@@ -0,0 +1,509 @@ ++# Simplified Chinese translation for recode. ++# Copyright (C) 2005 Free Software Foundation, Inc. ++# Meng Jie , 2005. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2005-12-03 21:43+0800\n" ++"Last-Translator: Meng Jie \n" ++"Language-Team: Chinese (simplified) \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Poedit-Basepath: z:\\recode-3.6\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "没有错误" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "不正规的输入" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "有歧义的输出" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "无法翻译的输入" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "无效的输入" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "系统问题" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "对重新编码库的使用不正确" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "内部重新编码缺陷" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"此程序是自由软件;您可以在自由软件基金会发布的 GNU 通用公共许\n" ++"可证的条款下重新分发和(或)修改它;您可以选择使用 GPL 第二版,\n" ++"或(按照您的意愿)任何更新的版本。\n" ++"\n" ++"该程序分发的目的是为了其他人可以使用它,但是没有任何担保;也没\n" ++"有对其适销性和某一特定目的下的适用性的担保。请查阅 GNU 通用公\n" ++"共许可证来获得更多的信息。\n" ++"\n" ++"你应该已经跟本程序一起收到一份 GNU 通用公共许可证;如果没有,\n" ++"请写信至:Free Software Foundation, Inc., \n" ++"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "请尝试执行‘%s %s’以得到更多信息。\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "自由的‘recode’将文件在不同的字符集和外在编码间转换。\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"用法:%s [选项]... [ [字符集] | 请求 [文件]...]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"长选项必须带的参数在使用与之等价的短选项时也是必须的。可选参数亦是如此。\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"列表:\n" ++" -l,--list[=格式] 列出某个或所有已知的字符集和别名\n" ++" -k,--known=映射 仅列出匹配已知“映射”列表的字符集\n" ++" -h,--header[=[语言/]表名] 在标准输出上输出符合某语言语法的转换表,然后退出\n" ++" -F,--freeze-tables 输出一个包括所有转换表的 C 模块\n" ++" -T,--find-subsets 报告所有是其他字符集子集的字符集\n" ++" -C,--copyright 显示版权信息和复制条件\n" ++" --help 显示本帮助信息后退出\n" ++" --version 输出版本信息后退出\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"操作模式:\n" ++" -v,--verbose 报告转换步骤序列和过程\n" ++" -q,--quiet,--silent 不报告不可逆的重新编码\n" ++" -f,--force 强制进行不可逆的重新编码\n" ++" -t,--touch 在替换之后 touch 重新编码的文件\n" ++" -i,--sequence=files 为系列转换使用中间文件\n" ++" --sequence=memory 为系列转换使用内存缓冲区\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p,--sequence=pipe 为系列转换使用管道机制\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p,--sequence=pipe 在此系统下与 -i 等效\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"细节调整:\n" ++" -s,--strict 即使为可放松的字符也使用严格映射\n" ++" -d,--diacritics 只为 HTML/LaTeX 转换变音记号等\n" ++" -S,--source[=语言] 将重新编码的范围限制在某编程语言的字符串和注释中\n" ++" -c,--colons 使用冒号而不是双引号来表示分音符\n" ++" -g,--graphics 用 ASCII 符号模拟 IBMPC 标尺\n" ++" -x,--ignore=字符集 在选择重新编码途径时忽略某字符集\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"选项 -l 后如果没有指定“格式”或“字符集”,则列出所有可用的字符集和外在编码。\n" ++"“格式”可以为‘decimal’、‘octal’、‘hexadecimal’或‘full’(或者‘dohf’\n" ++"中的任一个字母)。\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"如果没有设置 DEFAULT_CHARSET 环境变量,字符集默认为区域选项的编码,由 LC_ALL、\n" ++"LC_CTYPE、LANG 决定。\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"使用 -k 时,目标字符集可能对应的所有的源字符集都将列出,两者均为表格化的字符\n" ++"集,“映射”具有‘源1:目标1,源2:目标2,...’的形式,其中“源x”和“目标x”均\n" ++"须以十进制数的形式给出。\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "“语言”是某种编码语言,可以为‘c’、‘perl’或‘po’,‘c’为默认值。\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"“请求”格式为“子请求[,子请求]...”;“子请求”格式为“编码[..编码]...”\n" ++"“编码”格式为“[字符集][/[外在编码]]...”;“请求”一般有“源..目的”的形式,\n" ++"“源”和“目的”均为字符集名。如果省略“字符集”,则表示通常的字符集;如果省略\n" ++"“[/外在编码]...”则表示“字符集”默认的外在编码;只给出“/”而在其后不给出任\n" ++"何外在编码则表示没有任何外在编码。详情请参见手册。\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"如果没有给出 -i 或 -p,当命令行中有文件时使用 -p,否则使用 -i。\n" ++"为每个文件就地重新编码,丢弃其原始内容。如果没有在命令行中指定文件,\n" ++"则将标准输入的内容重新编码为标准输出。\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"请向 报告程序缺陷。\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "序列‘%s’意义不明确" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "序列‘%s’未知" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "语言‘%s’意义不明确" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "语言‘%s’未知" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "格式‘%s’意义不明确" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "格式‘%s’未知" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "由 Francois Pinard 编写。\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"版权所有 (C) 1990,92,93,94,96,97,99 自由软件基金会。\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"本程序是自由软件;请参看源代码的版权声明。本软件不提供任何担保;\n" ++"包括没有适销性和某一专用目的下的适用性担保。\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "符号‘%s’未知" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "字符集‘%s’未知或有歧义" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "缺少需要的参数" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "语法已过时,请改用‘%s’" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "请求‘%s’有错误" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "重新编码 %s..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " 完成\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " 失败:%s 在步骤‘%s..%s’中\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s 失败:%s 在步骤‘%s..%s’中" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s 在步骤‘%s..%s’中" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "字符集 %s 已存在且并非 %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "无法列出‘%s’,此字符集没有可用的字符名" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "十 八 十六 UCS2 助记 %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "对不起,‘%s’没有可用的字符名" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "为‘%s’施加了多于一个的外在编码" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "为‘%s’去除了多于一个的外在编码" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "虚拟内存耗尽" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "代码 %3d 和 %3d 都将被重新编码为 %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "没有字符集可重新编码到 %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "无法求出给定的一一对应转换表的逆" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "‘%s’到‘%s’的诊断信息" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "第 %d 号映射:<%3d,%3d> 与 <%3d,%3d> 冲突" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "无法从已知映射集中形成完整的转换表" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "恒等变换,不需要转换表" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "重新编码太过复杂,无法以一张转换表表示" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sConversion table generated mechanically by Free `%s' %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%s为转换系列 %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "没有可以打印的转换表" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "可逆的" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s 到 %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "字节" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "变量" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*无法到达*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*仅复制*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "虚拟内存耗尽!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "步骤初始化失败" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "步骤初始化失败(未处理的选项)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "请求:%s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "缩减到:%s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "无法识别的外在编码‘%s’" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "没有从‘%s’重新编码至‘%s’的途径" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "请求中要有‘..’" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "子进程等待状态为 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 助记 描述\n" ++"\n" +--- recode-3.6.orig/i18n/pl.po ++++ recode-3.6/i18n/pl.po +@@ -1,14 +1,15 @@ + # Polish translations for the GNU recode messages + # Copyright (C) 1996 Free Software Foundation, Inc. +-# Pawe Krawczyk , 1996, 1997, 1998, 1999 ++# Pawe Krawczyk , 1996, 1997, 1998, 1999. ++# Jakub Bogusz , 2002. + # + msgid "" + msgstr "" +-"Project-Id-Version: recode 3.4r\n" ++"Project-Id-Version: recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1999-05-26 14:49+02:00\n" +-"Last-Translator: Pawe Krawczyk \n" +-"Language-Team: Polish \n" ++"PO-Revision-Date: 2002-10-27 12:22+0100\n" ++"Last-Translator: Jakub Bogusz \n" ++"Language-Team: Polish \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=ISO-8859-2\n" + "Content-Transfer-Encoding: 8-bit\n" +@@ -81,13 +82,12 @@ + msgstr "Polecenie `%s %s' wywietli wicej informacji.\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" + msgstr "" + "Program `recode' konwertuje pliki pomidzy rnymi zestawami znakw\n" + "i sposobami kodowania.\n" + +-# REQUEST tumacz wszdzie konsekwentnie jako POLECENIE, a nie 'danie' ++# REQUEST tumacz wszdzie konsekwentnie jako POLECENIE, a nie 'danie' --pk + #: src/main.c:241 + #, c-format + msgid "" +@@ -108,13 +108,11 @@ + "obowizkowe dla krtkich wersji. Analogicznie dla argumentw opcjonalnych.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -125,7 +123,7 @@ + "\n" + "Listy:\n" + " -l, --list[=FORMAT] wywietla jeden lub wszystkie znane zestawy\n" +-" znakw\n" ++" znakw i aliasy\n" + " -k, --known=PARY ogranicza list zestaww do znanych PAR\n" + " -h, --header[=[LN/]NAZWA] wywietla tablic NAZWA na standardowe wyjcie\n" + " uywajc LN i koczy prac\n" +@@ -135,8 +133,8 @@ + " innych zestaww\n" + " -C, --copyright wywietla informacje o prawach autorskich\n" + " oraz warunkach kopiowania\n" +-" --version wywietla wersj programu i koczy prac\n" + " --help wywietla ten tekst pomocy i koczy prac\n" ++" --version wywietla wersj programu i koczy prac\n" + + #: src/main.c:263 + msgid "" +@@ -187,8 +185,7 @@ + " znakw\n" + " -d, --diacritics konwertuje tylko znaki diakrytyczne oraz symbole\n" + " znakw (takie jak w HTML i LaTeX)\n" +-" -c, --colons uywa dwukropkw zamiast cudzysoww dla " +-"oznaczenia\n" ++" -c, --colons uywa dwukropkw zamiast cudzysoww dla oznaczenia\n" + " umlautu\n" + " -g, --graphics prbuje przyblia ramki IBMPC znakami ASCII\n" + " -x, --ignore=ZESTAW ignoruje ZESTAW znakw podczas okrelania drogi\n" +@@ -206,20 +203,18 @@ + "(lub jedna z liter `dohf').\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" + "Jeli zmienna rodowiskowa DEFAULT_CHARSET nie jest ustawiona, domylnym\n" +-"zestawem znakw jest `%s'.\n" ++"zestawem znakw jest kodowanie zalene od lokalizacji, okrelonej przez\n" ++"zmienne LC_ALL, LC_CTYPE i LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" + "Jeli podano opcj -k, program wywietla zestawy znakw z ktrych mona\n" +@@ -228,8 +223,7 @@ + "SKD i DOKD s kodami podanymi jako liczby dziesitne.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" + msgstr "" + "LN jest jzykiem programowania, do wyboru `c', `perl' lub `po'.\n" + "Domyln wartoci jest `c'.\n" +@@ -237,13 +231,10 @@ + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" +@@ -279,40 +270,37 @@ + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "Sekwencja `%s' jest niejednoznaczna" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "Sekwencja `%s' jest nieznana" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Jzyk `%s' jest niejednoznaczny" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Jzyk `%s' jest nieznany" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Format `%s' jest niejednoznaczny" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Format `%s' jest nieznany" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Autorem jest Franc,ois Pinard .\n" ++msgstr "Autorem jest Franois Pinard .\n" + + #: src/main.c:624 + msgid "" +@@ -327,57 +315,57 @@ + "This is free software; see the source for copying conditions. There is NO\n" + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" +-"Oprogramowanie darmowe; warunki jego kopiowania znajdziesz w kodzie\n" ++"Oprogramowanie darmowe; warunki jego kopiowania znajduj si w kodzie\n" + "rdowym. Nie podlega adnej gwarancji, nawet gwarancji przydatnoci\n" + "do jakiegokolwiek zastosowania lub sprzeday.\n" + + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Symbol `%s' jest nieznany" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Zestaw znakw `%s' jest nieznany lub niejednoznaczny" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Brak wymaganego parametru" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" + msgstr "Odradza si stosowanie tej skadni, prosz uywa `%s'" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "Polecenie `%s' jest bdne" + + #: src/main.c:903 + #, c-format + msgid "Recoding %s..." +-msgstr "Przekodowanie %s..." ++msgstr "Przekodowywanie %s..." + + #: src/main.c:913 + msgid " done\n" + msgstr " skoczone\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " nie powiodo si: %s w %s..%s\n" ++msgstr " nie powiodo si: %s w `%s..%s'\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s nie powiodo si: %s w %s..%s" ++msgstr "%s nie powiodo si: %s w `%s..%s'" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s w %s..%s" ++msgstr "%s w `%s..%s'" + + #: src/names.c:335 + #, c-format +@@ -531,7 +519,7 @@ + + #: src/request.c:1013 + msgid "Expecting `..' in request" +-msgstr "Spodziewane `..' w poleceniu" ++msgstr "Oczekiwano `..' w poleceniu" + + #: src/task.c:826 src/task.c:1002 + #, c-format +@@ -545,236 +533,3 @@ + msgstr "" + "UCS2 Mne Description\n" + "\n" +- +-#~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "ZESTAW znakw nie ma wartoci domylnej, ustaw zmienn rodowiskow\n" +-#~ "DEFAULT_CHARSET.\n" +- +-#~ msgid "Ambiguous sequence `%s'" +-#~ msgstr "Nierozpoznana sekwencja `%s'" +- +-#~ msgid "Unknown sequence `%s'" +-#~ msgstr "Nieznana sekwencja `%s'" +- +-#~ msgid "Ambiguous language `%s'" +-#~ msgstr "Nierozpoznany jzyk `%s'" +- +-#~ msgid "Unknown language `%s'" +-#~ msgstr "Nieznany jzyk `%s'" +- +-#~ msgid "Ambiguous format `%s'" +-#~ msgstr "Nierozpoznany format `%s'" +- +-#~ msgid "Unknown format `%s'" +-#~ msgstr "Nieznany format `%s'" +- +-#~ msgid "Erroneous request `%s'" +-#~ msgstr "Bdne polecenie `%s'" +- +-#~ msgid " Each input char transforms into an output string,\n" +-#~ msgstr " Kady znak wejciowy jest konwertowany na acuch wyjciowy,\n" +- +-#~ msgid " Each input char transforms into an output string.\n" +-#~ msgstr " Kady znak wejciowy jest konwertowany na acuch wyjciowy.\n" +- +-#~ msgid " Programming is needed to handle multichar input.\n" +-#~ msgstr "" +-#~ " Do obsugi kodw wieloznakowych potrzebna jest umiejtno " +-#~ "programowania.\n" +- +-#~ msgid " The recoding might not be reversible.\n" +-#~ msgstr " Konwersja moe by nieodwracalna.\n" +- +-#~ msgid " The recoding should be reversible.\n" +-#~ msgstr " Konwersja powinna by odwracalna.\n" +- +-#~ msgid " programming is needed to handle multichar input.\n" +-#~ msgstr "" +-#~ " do obsugi kodw wieloznakowych potrzebna jest umiejtno " +-#~ "programowania.\n" +- +-#~ msgid " UNACHIEVABLE\n" +-#~ msgstr " NIEOSIGALNE\n" +- +-#~ msgid "%s: Recoding is not reversible" +-#~ msgstr "%s: Konwersja jest nieodwracalna" +- +-#~ msgid ", %d saved by merging" +-#~ msgstr ", %d zachowane przez zczenie" +- +-#~ msgid "/* Conversion table from `%s' charset to `%s' charset.\n" +-#~ msgstr "/* Tablica konwersji zestawow znakow `%s' na `%s'.\n" +- +-#~ msgid "Cannot auto check on %s" +-#~ msgstr "Nie mog automatycznie sprawdzi %s" +- +-#~ msgid "Cannot auto check the ignored charset" +-#~ msgstr "Nie mog automatycznie sprawdzi ignorowanego zestawu znakw" +- +-#~ msgid "Currently, -s is ignored when -g is selected" +-#~ msgstr "Opcja -s jest wyczana przez opcj -g" +- +-#~ msgid "Hash stats: %d names using %d buckets out of %d\n" +-#~ msgstr "Wyniki przeszukiwania: %d uywa %d spord %d zbiorw\n" +- +-#~ msgid "Internal error - strategy undecided" +-#~ msgstr "Bd wewntrzy - niezdecydowana strategia" +- +-#~ msgid "MAX_CHARSETS is too small" +-#~ msgstr "MAX_CHARSETS jest za mae" +- +-#~ msgid "MAX_SEQUENCE is too small" +-#~ msgstr "MAX_SEQUENCE jest za mae" +- +-#~ msgid "MAX_SINGLE_STEPS is too small" +-#~ msgstr "MAX_SINGLE_STEPS jest za mae" +- +-#~ msgid "Mere copy for the trivial recoding\n" +-#~ msgstr "Zwyka kopia do prostego przekodowania\n" +- +-#~ msgid "ONE to SAME" +-#~ msgstr "ONE na SAME" +- +-#~ msgid "Recoding is not reversible" +-#~ msgstr "Przekodowanie jest nieodwracalne" +- +-#~ msgid "Simplified to: " +-#~ msgstr "Uproszczone do: " +- +-#~ msgid "UNACHIEVABLE recoding!\n" +-#~ msgstr "NIEOSIGALNE przekodowanie!\n" +- +-#~ msgid "You may not explicitly recode from RFC 1345" +-#~ msgstr "Nie ma potrzebt cisego przekodowania z RFC 1345" +- +-#~ msgid " -o, --sequence=popen same as -i (on this system)\n" +-#~ msgstr " -o, --sequence=popen identyczne jak -i (w tym systemie)\n" +- +-#~ msgid "" +-#~ " -o, --sequence=popen use popen machinery for sequencing passes\n" +-#~ msgstr "" +-#~ " -o, --sequence=popen uycie techniki popen w przebiegach sekwencyjnych\n" +- +-#~ msgid "" +-#~ " -q, --quiet, --silent inhibit messages about irreversible recodings\n" +-#~ " -s, --strict use strict mappings, even loose characters\n" +-#~ " -t, --touch touch the recoded files after replacement\n" +-#~ " -v, --verbose explain sequence of steps and report progress\n" +-#~ " -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" +-#~ "\n" +-#~ "If none of -i, -o and -p are given, presume -p if no FILE, else -i.\n" +-#~ "Each FILE is recoded over itself, destroying the original. If no\n" +-#~ "FILE is specified, then act as a filter and recode stdin to stdout.\n" +-#~ msgstr "" +-#~ " -q, --quiet, --silent blokuj komunikaty o nieodwracalnych konwersjach\n" +-#~ " -s, --strict uywaj cisych odwzorowa, nawet dla wtpliwych " +-#~ "znakw\n" +-#~ " -t, --touch uaktualnij dat przekodowanego, podstawionego " +-#~ "pliku\n" +-#~ " -v, --verbose pokazuj kolejne kroki i postp konwersji\n" +-#~ " -x, --ignore=ZESTAW ignoruj ZESTAW znakw przy wyborze konwersji\n" +-#~ "\n" +-#~ "Jeli nie wybrano adnej z opcji -i, -o lub -p, i nie ma agumentu PLIK,\n" +-#~ "domylnie przyjmowana jest opcja -p, w przeciwnym wypadku -i. Kady PLIK\n" +-#~ "po konwersji jest zapisywany pod t sam nazw, z usuniciem oryginau.\n" +-#~ "Jeli brak PLIKu, recode dziaa jak filtr i konwertuje z stdin na stdout.\n" +- +-#~ msgid "BEFORE and AFTER both default to `%s' when needed.\n" +-#~ msgstr "PRZED i PO w razie potrzeby s ustawiane domylnie na `%s'.\n" +- +-#~ msgid "" +-#~ "Mandatory or optional arguments to long options are mandatory or optional\n" +-#~ "for short options too.\n" +-#~ "\n" +-#~ " -C, --copyright display Copyright and copying conditions\n" +-#~ " -a, --auto-check report about some or all recoding paths, then exit\n" +-#~ " -l, --list[=FORMAT] list one or all known charsets\n" +-#~ " -k, --known=PAIRS restrict charsets according to known PAIRS list\n" +-#~ " --help display this help and exit\n" +-#~ " --version output version information and exit\n" +-#~ "\n" +-#~ "FORMAT is a word among decimal, octal, hexadecimal or full (which may be\n" +-#~ "abbreviated to one of `dohf'), it defaults to just the canonical name.\n" +-#~ "With -k, possible before charsets are listed for the given after CHARSET,\n" +-#~ "both being RFC1345 charsets, with PAIRS of the form " +-#~ "`BEF1:AFT1,BEF2:AFT2,...\n" +-#~ "and BEFs and AFTs being codes. All codes are given as decimal numbers.\n" +-#~ msgstr "" +-#~ "Obowizkowe lub opcjonalne argumenty dugich form opcji maj tak sam\n" +-#~ "posta dla krtkich form.\n" +-#~ "\n" +-#~ " -C, --copyright wywietl informacje licencyjne i warunki kopiowania\n" +-#~ " -a, --auto-check wywietl cieki konwersji i zakocz prac\n" +-#~ " -l, --list[=FORMAT] wywietl znane zestawy znakw\n" +-#~ " -k, --known=PARY ogranicz zestawy znakw wg. podanych PAR\n" +-#~ " --help wywietl ten tekst pomocy i zakocz prac\n" +-#~ " --version wywietl wersj programu i zakocz prac\n" +-#~ "\n" +-#~ "FORMAT jest jednym z: decimal, octal, hexadecimal oraz full (skrty: dohf)\n" +-#~ "Domylnie wywietlane s tylko nazwy kanoniczne wszystkich standardw.\n" +-#~ "Dla opcj -k podaje si dla danego zestawu PO pary decymalnych kodw znakw\n" +-#~ "z zestaww RFC1345, postaci: PRZED1:PO2,PRZED2:PO2,...\n" +- +-#~ msgid "" +-#~ "Option -l with no FORMAT nor CHARSET list all charsets, also see the " +-#~ "Texinfo\n" +-#~ "documentation. My preferred charsets are (each user has preferences):\n" +-#~ "\n" +-#~ " ascii-bs ASCII (7-bit), using backspace to apply diacritics\n" +-#~ " ibmpc IBM-PC 8-bit characters, with proper newlines\n" +-#~ " latex LaTeX coding of foreign and diacriticized characters\n" +-#~ " latin1 ISO Latin-1 8-bit extension of ASCII\n" +-#~ " texte Easy French convention for transmitting email messages\n" +-#~ msgstr "" +-#~ "Opcja -l bez podania FORMATu i ZESTAWu wywietla list wszystkich zestaww\n" +-#~ "(szczegy w dokumentacji). Ulubione zestawy Autora to:\n" +-#~ "\n" +-#~ " ascii-bs ASCII (7-bitowy), znak BS uywany do dodawania ogonkw\n" +-#~ " ibmpc IBM-PC 8-bitowe znaki, z odpowiednimi znakami nowej linii\n" +-#~ " latex kodowanie znakw diakrytycznych w formacie LaTeXa\n" +-#~ " latin1 ISO Latin-1 8-bitowe rozszerzenie ASCII\n" +-#~ " texte popularny francuski standard stosowany w emailu\n" +- +-#~ msgid "" +-#~ "\n" +-#~ " -c, --colons use colons instead of double quotes for diaeresis\n" +-#~ " -d, --diacritics limit conversion to diacritics or alike for LaTeX\n" +-#~ " -f, --force force recodings even if they are not reversible\n" +-#~ " (BEWARE: in this version, -f is always selected)\n" +-#~ " -g, --graphics approximate IBMPC rulers by ASCII graphics\n" +-#~ " -h, --header[=NAME] write C code with table NAME on stdout, then exit\n" +-#~ " -i, --sequence=files use intermediate files for sequencing passes\n" +-#~ msgstr "" +-#~ "\n" +-#~ " -c, --colons uywaj dwukropkw zamiast cudzysoww\n" +-#~ " -d, --diacritics ogranicz konwersj do zn. diakryt. itp. dla " +-#~ "LaTeXa\n" +-#~ " -f, --force wymuszaj konwersje, nawet jeli s nieodwracalne\n" +-#~ " (UWAGA: w tej wersji -f zawsze obowizuje)\n" +-#~ " -g, --graphics przybliaj ramki IBMPC za pomoc znakw ASCII\n" +-#~ " -h, --header[=NAZWA] wypisz zestaw NAZWA w postaci kodu C na stdout\n" +-#~ " -i, --sequence=pliki uywaj plikw porednich do przebiegw " +-#~ "sekwencyjnych\n" +- +-#~ msgid "" +-#~ "\n" +-#~ "Usage: %s [OPTION]... [BEFORE]:[AFTER] [FILE]...\n" +-#~ msgstr "" +-#~ "\n" +-#~ "Skadnia: %s [OPCJA]... [PRZED]:[PO] [PLIK]...\n" +- +-#~ msgid "many to many" +-#~ msgstr "wiele na wiele" +- +-#~ msgid "many to one" +-#~ msgstr "wiele na jeden" +- +-#~ msgid "one to many" +-#~ msgstr "jeden na wiele" +- +-#~ msgid "one to one" +-#~ msgstr "jeden na jeden" +- +-#~ msgid "steps: %d" +-#~ msgstr "krokw: %d" +--- recode-3.6.orig/i18n/it.po ++++ recode-3.6/i18n/it.po +@@ -1,6 +1,6 @@ +-# MESSAGGI IN ITALIANO PER GNU RECODE. +-# Copyright (C) 1999 Free Software Foundation, Inc. +-# Lorenzo Cappelletti , 1999. ++# PO FILE FOR GNU'S RECODE. ++# Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. ++# Lorenzo Cappelletti , 1999, 2000, 2001. + # + # table -> tabella + # character set -> insieme di caratteri +@@ -10,11 +10,11 @@ + # + msgid "" + msgstr "" +-"Project-Id-Version: GNU recode 3.5\n" ++"Project-Id-Version: GNU recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1999-11-19 23:30+01:00\n" +-"Last-Translator: Lorenzo Cappelletti \n" +-"Language-Team: Italian \n" ++"PO-Revision-Date: 2001-07-01 09:41+02:00\n" ++"Last-Translator: Lorenzo Cappelletti \n" ++"Language-Team: Italian \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=ISO-8859-1\n" + "Content-Transfer-Encoding: 8-bit\n" +@@ -86,22 +86,16 @@ + msgid "Try `%s %s' for more information.\n" + msgstr "Usare `%s %s' per ulteriori informazioni.\n" + +-# Libero `recode' non mi piace +-# Cosa sono le surfaces in questo contesto? ++# I dislike "Libero `recode'" as tranlation ++# What does surface mean in this context? + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-"`recode' gratuito converte file fra vari insiemi di caratteri e surface.\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "`recode' gratuito converte file fra vari insiemi di caratteri e surface.\n" + + #: src/main.c:241 + #, c-format +-msgid "" +-"\n" +-"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" +-msgstr "" +-"\n" +-"Uso: %s [OPZIONI]... [ [CHARSET] | RICHIESTA [FILE]... ]\n" ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\nUso: %s [OPZIONI]... [ [CHARSET] | RICHIESTA [FILE]... ]\n" + + #: src/main.c:244 + msgid "" +@@ -115,13 +109,11 @@ + "opzionali.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -131,16 +123,14 @@ + msgstr "" + "\n" + "Elenchi:\n" +-" -l, --list[=FORMATO] lista uno o tutti i charset conosciuti\n" +-" -k, --known=COPPIE restringe i charset secondo le COPPIE " +-"conosciute\n" ++" -l, --list[=FORMATO] lista uno o tutti i charset e alias conosciuti\n" ++" -k, --known=COPPIE restringe i charset secondo le COPPIE conosciute\n" + " -h, --header[=[LN/]NOME] scrive la tabella NOME sullo stdout usando LN,\n" +-" poi esce\n" +-" -F, --freeze-tables riporta un modulo C contenente tutte le " +-"tabelle\n" ++" quindi esce\n" ++" -F, --freeze-tables riporta un modulo C contenente tutte le tabelle\n" + " -T, --find-subsets riporta tutti i charset sottoinsiemi di altri\n" +-" -C, --copyright mostra le condizioni del Copyright e " +-"riproduzione\n" ++" charset\n" ++" -C, --copyright mostra le condizioni di Copyright e riproduzione\n" + " --help mostra questo aiuto ed esce\n" + " --version informazioni sulla versione ed uscita\n" + +@@ -157,8 +147,7 @@ + msgstr "" + "\n" + "Modi operativi:\n" +-" -v, --verbose spiega le sequenze dei passi e riporta i " +-"progressi\n" ++" -v, --verbose spiega le sequenze dei passi e riporta i progressi\n" + " -q, --quiet, --silent inibisce i messaggi di ricodifiche inreversibili\n" + " -f, --force forza le ricodifiche anche quando non reversibili\n" + " -t, --touch touch dei file ricodificati dopo la sostituzione\n" +@@ -167,8 +156,7 @@ + + #: src/main.c:275 + msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" +-msgstr "" +-" -p, --sequence=pipe usa il sistema dei pipe per i passi sequenziali\n" ++msgstr " -p, --sequence=pipe usa il sistema dei pipe per i passi sequenziali\n" + + #: src/main.c:280 + msgid " -p, --sequence=pipe same as -i (on this system)\n" +@@ -187,17 +175,12 @@ + msgstr "" + "\n" + "Regolazioni fini:\n" +-" -s, --strict usa mappature strettamente conformi, anche con " +-"caratteri slegati\n" +-" -d, --diacritics converte solo segni diacritici o simili per " +-"HTML/LaTeX\n" +-" -S, --source[=LN] limita la ricodifica a stringhe e commenti come per " +-"LN\n" +-" -c, --colons usa i due punti al posto delle virgolette per le " +-"dieresi\n" ++" -s, --strict usa mappature strettamente conformi, anche con caratteri slegati\n" ++" -d, --diacritics converte solo segni diacritici o simili per HTML/LaTeX\n" ++" -S, --source[=LN] limita la ricodifica a stringhe e commenti come per LN\n" ++" -c, --colons usa i due punti al posto delle virgolette per le dieresi\n" + " -g, --graphics approssima le regole IBMPC con grafica ASCII\n" +-" -x, --ignore=CHARSET ignora CHARSET quando sceglie un percorso di " +-"ricodifica\n" ++" -x, --ignore=CHARSET ignora CHARSET quando sceglie un percorso di ricodifica\n" + + #: src/main.c:296 + msgid "" +@@ -211,46 +194,33 @@ + "`esadecimale'(h) o `pieno'(f) (oppure uno tra `dohf').\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" +-msgstr "" +-"Se DEFAULT_CHARSET non specificato nell'ambiente, il CHARSET predefinito\n" +-" `%s`.\n" ++msgstr "A meno che DEFAULT_CHARSET non sia specificato nell'ambiente, il CHARSET viene predefinito secondo la codifica locale, determinata da LC_ALL, LC_TYPE, LANG.\n" + +-# Non riesco assolutamente a capire la costruzione logica di questa frase ++# I am not able to understand the logical structure of this sentence. + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" +-"Con -k, possibile prima, charset vengono listati per quelli dati dopo " +-"CHARSET,\n" +-"entrambi essendo charset tabulari, con COPPIE nella foram " +-"`BEF1:AFT1,BEF2:AFT2,...',\n" ++"Con -k, possibile prima, charset vengono listati per quelli dati dopo CHARSET,\n" ++"entrambi essendo charset tabulari, con COPPIE nella foram `BEF1:AFT1,BEF2:AFT2,...',\n" + "dove BEF e AFT sono codici forniti come numeri decimali.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" +-msgstr "" +-"LN qualche lingua, pu essere `c', `perl' o `po'; quella predefinita " +-"`c'.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN qualche lingua, pu essere `c', `perl' o `po'; quella predefinita `c'.\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" +@@ -269,66 +239,53 @@ + "FILE is specified, then act as a filter and recode stdin to stdout.\n" + msgstr "" + "\n" +-"Se non dato -i n -p, si presume -p se FILE non presente, altrimenti " +-"-i.\n" +-"Ogni FILE ricodificato su se stesso, ditruggendo l'originale. Se non " +-"viene\n" ++"Se non dato -i n -p, si presume -p se FILE non presente, altrimenti -i.\n" ++"Ogni FILE ricodificato su se stesso, ditruggendo l'originale. Se non viene\n" + "specificato nessun FILE, allora si comporta come un filtro ricodificando lo\n" + "stdin sullo stdout.\n" + + #: src/main.c:329 +-msgid "" +-"\n" +-"Report bugs to .\n" +-msgstr "" +-"\n" +-"Segnalare i bug a .\n" ++msgid "\nReport bugs to .\n" ++msgstr "\nSegnalare i bug a .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "La sequenza `%s' ambigua" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "La sequenza `%s' sconosciuta" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Il linguaggio `%s' ambiguo" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Il linguaggio `%s' sconosciuto" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Il formato `%s' ambiguo" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Il formato `%s' sconosciuto" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Scritto da Franc,ois Pinard .\n" ++msgstr "Scritto da Franc,ois Pinard .\n" + + #: src/main.c:624 +-msgid "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" +-msgstr "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + + #: src/main.c:628 + msgid "" +@@ -342,26 +299,26 @@ + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Il simbolo `%s' sconosciuto" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Il charset `%s' sconosciuto o ambiguo" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Manca un argomento indispensabile" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "Sintassi sconsigliata, si preferisca `%s'" ++msgstr "La sintassi sconsigliata, si preferisca `%s'" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "La richiesta `%s' errata" + + #: src/main.c:903 + #, c-format +@@ -373,19 +330,19 @@ + msgstr " fatto\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " fallito: %s in %s..%s\n" ++msgstr " fallito: %s al passo `%s..%s'\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s fallito: %s in %s..%s" ++msgstr "%s fallito: %s al passo `%s..%s'" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s in %s..%s" ++msgstr "%s al passo `%s..%s'" + + #: src/names.c:335 + #, c-format +@@ -426,12 +383,12 @@ + msgstr "Memoria virtuale esaurita" + + #: src/recode.c:155 +-#, c-format, ycp-format ++#, c-format + msgid "Codes %3d and %3d both recode to %3d" + msgstr "Entrambi i codici %3d e %3d si ricodificano in %3d" + + #: src/recode.c:169 +-#, c-format, ycp-format ++#, c-format + msgid "No character recodes to %3d" + msgstr "Nessun carattere si ricodifica in %3d" + +@@ -453,7 +410,6 @@ + msgid "Cannot complete table from set of known pairs" + msgstr "Impossibile completare la tabella dall'insieme delle coppie conosciute" + +-# Una forma migliore per identity recoding? + #: src/recode.c:497 + msgid "Identity recoding, not worth a table" + msgstr "Sto ricodificando nell'identit, tabella non significativa" +@@ -490,7 +446,7 @@ + msgid "byte" + msgstr "byte" + +-# Verificare il significato della sigla ++# Chech out the meaning of the acronym + #: src/request.c:38 src/request.c:40 + msgid "ucs2" + msgstr "ucs2" +@@ -549,14 +505,11 @@ + msgstr "Lo stato di attesa del processo figlio 0x%0.2x" + + #: src/testdump.c:298 +-msgid "" +-"UCS2 Mne Description\n" +-"\n" ++msgid "UCS2 Mne Description\n\n" + msgstr "UCS2 Mne Descrizione\n" + + #~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "Nessun CHARSET predefinito, definire DEFAULT_CHARSET nell'ambiente.\n" ++#~ msgstr "Nessun CHARSET predefinito, definire DEFAULT_CHARSET nell'ambiente.\n" + + #~ msgid "Ambiguous sequence `%s'" + #~ msgstr "Sequenza ambigua `%s'" +--- recode-3.6.orig/i18n/tr.po ++++ recode-3.6/i18n/tr.po +@@ -0,0 +1,517 @@ ++# Recode Turkish Translation ++# Copyright (C) 2002 Free Software Foundation, Inc. ++# İrfan Macit , 2002. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2002-06-20 11:00EET\n" ++"Last-Translator: İrfan Macit \n" ++"Language-Team: Turkish \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "Hata yok" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Ana biçem olmayan girdi" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Belirsiz çıktı" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Çevrilemeyen girdi" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Geçersiz girdi" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "Sistem hata buldu" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "Yeniden kodlama kitaplığı hatalı kullanılmış" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "İçsel yeniden kodlama hatası" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"Bu bir serbest yazılımdır; Free Software Foundation tarafından yayınlanan\n" ++"GNU Genel Kamu Lisansı'nın 2. veya (sizin tercihinize bağlı olarak) daha\n" ++"sonraki bir sürümü altında yeniden dağıtabilir ve/veya değiştirebilirsiniz\n" ++"\n" ++"Bu yazılım faydalı olacağı umularak dağıtılmaktadır, fakat\n" ++"HİÇ BİR GARANTİSİ YOKTUR; SATILABİLİRLİĞİ veya\n" ++"HERHANGİ BİR AMACA UYGUNLUĞU için dahi zımni bir garanti\n" ++"içermez. Daha fazla bilgi için GNU Genel Kamu Lisansı'na bakın.\n" ++"\n" ++"Bu yazılımla birlikte GNU Genel Kamu Lisansı'nın bir kopyası gelmiş\n" ++"olmalıdır; eğer yok ise, lütfen Free Software Foundation, Inc., 59 Temple\n" ++"Place - Suite 330, Boston, MA 02111-1307, USA/ABD adresine yazın.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Daha fazla bilgi için '%s %s'.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Serbest `recode', dosyaları değişik karakter kümeleri ve yüzeylere dönüştürür.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"Kullanım: %s [SEÇENEK]...[[KARKÜME] | İSTEK [DOSYA]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Uzun seçenekler için zorunlu olan argümanlar kısa seçenekler için de\n" ++"zorunludur. Aynı şey bütün argümanlar için geçerlidir.\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Seçenekler:\n" ++" -l, --list[=BİÇEM] bilinen karakter kümeleri ve rumuzların birini ya da hepsini listeler\n" ++" -k, --known=ÇİFT karakter kümelerini bilinen ÇİFT listesine göre sınırlar.\n" ++" -h, --header[=[LN/]İSİM] standart çıktıya LN'i kullanarak tablonun İSMİ'ni yazar ve çıkar\n" ++" -F, --freeze-tables bütün tabloları içeren bir C modülü yazdırır\n" ++" -T, --find-subsets bir başka kümenin alt kümesi olan bütün karakter kümelerini raporlar\n" ++" -C, --copyright telif hakkı ve kopyalama koşullarını gösterir\n" ++" --help bu yardımı gösterir ve çıkar\n" ++" --version sürüm bilgisini gösterir ve çıkar\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Çalışma Kipleri:\n" ++" -v, --verbose adım sıralarını anlatır ve durum bilgisi gösterir\n" ++" -q, --quiet, --silent geri dönüşsüz yeniden kodlamalar hakkında bilgi vermez\n" ++" -f, --force geri dönüşsüz bile olsa yeniden kodlamaları yapar\n" ++" -t, --touch değişiklikten sonra yeniden kodlanmış dosyalara `touch' uygular\n" ++" -i, --sequence=files çevrimleri sıralamak için ara dosyalar kullanır\n" ++" --sequence=memory çevrimleri sıralamak için bellek yastıkları kullanır\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=pipe çevrimleri sıralamak için veriyolu (pipe) kullanır\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe (bu sistemde) -i ile aynı\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"İnce ayar:\n" ++" -s, --strict kesin olmayan harflerde bile kesin eşlemeler kullanır\n" ++" -d, --diacritics HTML/LaTeX için yalnız aksan v.b.'yi yeniden kodlar\n" ++" -S, --source[=LN] yeniden kodlamayı dizgeler ve LN gibi açıklamalarla sınırlar\n" ++" -c, --colons ö,ü'nin iki noktası için çift tırnak yerine iki nokta üstüste kullanır\n" ++" -g, --graphics IBMPC cetvellerini ASCII grafikleriyle değiştirir\n" ++" -x, --ignore=KARKÜME yeniden kodlama seçilirken KARKÜME dikkate alınmaz\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"-l seçeneği, BİÇEM veya KARKÜME verilmezse mevcut karakter kümelerini listeler\n" ++"BİÇEM, `decimal' (onluk), `octal' (sekizlik), `hexadecimal' (onaltılık), \n" ++"`full' (tam) veya `dohf' seçeneklerinden birisi olabilir.\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"Eğer DEFAULT_CHARSET çevre değişkeni atanmamışsa, KARKÜME yerel\n" ++"ayarlarına bağlı kodlama olarak atanır ve LC_ALL, LC_CTYPE, LANG çevre\n" ++"değişkenlerinden etkilenir.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"-k seçeneği ile, dönüşecek karakter kümeleri, dönüştürülecek karakter kümeleri\n" ++"ile birlikte ÇİFT'ler halinde listelenir: `ÖNC1:SON1,ÖNC2:SON2,...'\n" ++"ÖNC ve SON karakter kümesi isimleri, ondalık sayı halinde kodlardan oluşur.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN bir bilgisayar dilidir, `c', `perl' veya `po' olabilir; öntanımlı: `c'\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"İSTEK: ALTİSTEK,[ALTİSTEK]...; ALTİSTEK ise KODLAMA[..KODLAMA]...\n" ++"KODLAMA: [KARKÜME][/YÜZEY]]...; İSTEK genelde ÖNCE..SONRA\n" ++"biçeminde olur, ÖNCE ve SONRA karakter kümeleridir. Belirtilmemiş bir\n" ++"karakter kümesi öntanımlı karakter kümesinin kullanılacağına işaret eder.\n" ++"Belirtilmemiş [/YÜZEY]..., o KARKÜME için öntanımlı yüzeyin kullanılacağına\n" ++"işaret eder. Yalnız / kullanılır ve yüzey belirtilmezse, hiç yüzey kullanılmaz.\n" ++"Lütfen el kitabını inceleyin.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Eğer -i ve -p'nin hiç birisi verilmemiş ve DOSYA yok ise, -p, aksi\n" ++"halde -i varsayılır. Her DOSYA kendi üstüne yeniden kodlanır ve orjinali\n" ++"yok edilir. Eğer DOSYA verilmemişse, bir filtre görevi yapar ve standart\n" ++"girdiyi, standart çıktıya yeniden kodlar.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Yazılım hatalarını adresine,\n" ++"Çeviri hatalarını adresine yollayın.\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "`%s' sırası belirsiz" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "`%s' sırası bilinmiyor" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "`%s' dili belirsiz" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "`%s' dili bilinmiyor" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "`%s' biçemi belirsiz" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "`%s' biçemi bilinmiyor" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Yazan: François Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Telif Hakkı (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Bu bir serbest yazılımdır; kopyalama koşulları için kaynak koduna bakınız.\n" ++"HİÇ BİR GARANTİSİ YOKTUR; SATILABİLİRLİĞİ veya\n" ++"HERHANGİ BİR AMACA UYGUNLUĞU için dahi zımni bir garanti\n" ++"içermez.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "`%s' sembolü bilinmiyor" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "`%s' karakter kümesi bilinmiyor veya belirsiz" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Zorunlu argüman eksik" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Biçem eski, lütfen `%s'i tercih edin" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "`%s' isteği hatalı" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "%s yeniden kodlanıyor..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " bitti\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr "başarısız: `%2$s..%3$s' adımında %1$s\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%1$s başarısız: `%3$s..%4$s' adımında %2$s" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "`%2$s..%3$s' adımında %1$s" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "%s karakter kümesi zaten mevcut ve %s değil" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "`%s' listelenemiyor, bu karakter kümesi için isim yok" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Ond Sek OnaltıUCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "`%s' için hiç isim mevcut değil" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "`%s' için yüzeyleyici birden fazla defa atanmış" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "`%s' için yüzey yokedici birden fazla defa atanmış" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Sanal bellek tükendi" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "%3d ve %3d kodlarının ikisi de %3d'ye yeniden kodluyor" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "%3d'ye yeniden kodlanan harf yok" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "Verilen birebir eşlemeli tablo tersine çevrilemez" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "`%s'den `%s'e durum bildirimleri inceleniyor" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "%d no'lu çift <%3d, %3d>, <%3d, %3d> ile çakışıyor" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "Tablo bilinen çiftler kümesinden tamamlanamıyor" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Birebir yeniden kodlama, tabloya gerek yok" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Yeniden kodlama bir tablo için fazla karmaşık" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sDönüşüm tablosu mekanik olarak Free `%s' %s tarafından oluşturulmuştur" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%2$s.%3$s sırası için %1$s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Yazdırılacak tablo yok" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "geri dönüşümlü" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s'den %s'e" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "bayt" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "değişken" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Ulaşılamaz*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*yalnızca kopya*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Sanal bellek tükendi!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "Adım başlangıcı başarısız" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "Adım başlangıcı başarısız (işlenmemiş seçenekler)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "İstek: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "%s'e küçüldü\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Bilinmeyen yüzey adı `%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "`%s'den `%s'e yeniden kodlamanın yolu yok" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "İstekte `..' bekleniyordu" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "Ast işlem bekleme durumu: 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 Mne Açıklama\n" ++"\n" +--- recode-3.6.orig/i18n/de.po ++++ recode-3.6/i18n/de.po +@@ -1,18 +1,18 @@ + # recode. +-# Copyright (C) 1995, 1996 Free Software Foundation, Inc. ++# Copyright (C) 1995, 1996, 2006 Free Software Foundation, Inc. + # Ulrich Drepper , 1995. +-# Karl Eichwalder , 1996 ++# Karl Eichwalder , 1996, 2006 + # + msgid "" + msgstr "" +-"Project-Id-Version: recode 3.5\n" ++"Project-Id-Version: recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1999-09-14 22:51+01:00\n" +-"Last-Translator: Daniel Naber \n" +-"Language-Team: German \n" ++"PO-Revision-Date: 2006-12-09 19:25+0100\n" ++"Last-Translator: Karl Eichwalder \n" ++"Language-Team: German \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=ISO-8859-1\n" +-"Content-Transfer-Encoding: 8-bit\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" + + #: src/main.c:142 + msgid "No error" +@@ -20,7 +20,7 @@ + + #: src/main.c:145 + msgid "Non canonical input" +-msgstr "Keine gltige Eingabe" ++msgstr "Keine gültige Eingabe" + + #: src/main.c:148 + msgid "Ambiguous output" +@@ -28,15 +28,15 @@ + + #: src/main.c:151 + msgid "Untranslatable input" +-msgstr "Nicht bersetzbare Eingabe" ++msgstr "Nicht übersetzbare Eingabe" + + #: src/main.c:154 + msgid "Invalid input" +-msgstr "Ungltige Eingabe" ++msgstr "Ungültige Eingabe" + + #: src/main.c:157 + msgid "System detected problem" +-msgstr "Das System ist auf ein Problem gestossen" ++msgstr "Das System ist auf ein Problem gestoßen" + + #: src/main.c:160 + msgid "Misuse of recoding library" +@@ -62,23 +62,22 @@ + "along with this program; if not, write to the Free Software Foundation,\n" + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + msgstr "" +-"Der folgende Text ist eine nicht berprfte bersetzung, die zur\n" ++"Der folgende Text ist eine nicht überprüfte Übersetzung, die zur\n" + "Information dient; in rechtlichen Fragen ist immer das englische\n" + "Original ausschlaggebend.\n" + "\n" +-"Dieses Program ist freie Software; Sie knnen es nach den Bedingungen\n" ++"Dieses Programm ist freie Software; Sie können es nach den Bedingungen\n" + "der von der Free Software Foundation als \"GNU General Public License\"\n" +-"verffentlichten Lizenz weitergeben und/oder verndern; dabei gilt\n" +-"die Version 2 oder (frei nach ihrer Wahl) jede sptere Version.\n" ++"veröffentlichten Lizenz weitergeben und/oder verändern; dabei gilt\n" ++"die Version 2 oder (frei nach ihrer Wahl) jede spätere Version.\n" + "\n" +-"Dieses Programm wird in der Hoffnung verteilt, da es ntzlich ist,\n" ++"Dieses Programm wird in der Hoffnung verteilt, daß es nützlich ist,\n" + "jedoch OHNE JEGLICHE GARANTIE; sogar ohne die implizite Garantie der\n" +-"MARKTFHIGKEIT oder der ERFLLUNG EINES BESTIMMTEN ZWECKES. In der\n" +-"\"GNU General Public License\" knnen weitere Einzelheiten nachgelesen\n" ++"MARKTFÄHIGKEIT oder der ERFÜLLUNG EINES BESTIMMTEN ZWECKES. In der\n" ++"\"GNU General Public License\" können weitere Einzelheiten nachgelesen\n" + "werden.\n" + "\n" +-"Sie sollten mit diesem Programm eine Kopie der \"GNU General Public " +-"License\"\n" ++"Sie sollten mit diesem Programm eine Kopie der \"GNU General Public License\"\n" + "erhalten haben; wenn nicht, schreiben Sie an die Free Software Foundation,\n" + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + +@@ -88,10 +87,9 @@ + msgstr "`%s %s' zeigt weitere Informationen.\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" + msgstr "" +-"`recode' konvertiert Dateien zwischen diversen Zeichenstzen und\n" ++"`recode' konvertiert Dateien zwischen diversen Zeichensätzen und\n" + "-formaten.\n" + + #: src/main.c:241 +@@ -110,18 +108,16 @@ + "for the equivalent short option also. Similarly for optional arguments.\n" + msgstr "" + "\n" +-"Wenn eine Option ein Argument zwingend braucht, gilt das unabhngig\n" ++"Wenn eine Option ein Argument zwingend braucht, gilt das unabhängig\n" + "davon, ob die Kurz- oder Langschreibweise der Option benutzt wird.\n" +-"Entsprechendes gilt fr optionale Argumente.\n" ++"Entsprechendes gilt für optionale Argumente.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -131,15 +127,12 @@ + msgstr "" + "\n" + "Auflistungen:\n" +-" -l, --list[=FORMAT] Einen oder alle bekannten Zeichenstze " +-"auflisten\n" +-" -k, --known=PAARE Zeichenstze auf Liste bekannter PAARE " +-"beschrnken\n" +-" -h, --header[=[LN/]NAME] LN-Code fr Tabelle NAME ausgeben\n" ++" -l, --list[=FORMAT] Einen oder alle bekannten Zeichensätze auflisten\n" ++" -k, --known=PAARE Zeichensätze auf Liste bekannter PAARE beschränken\n" ++" -h, --header[=[LN/]NAME] LN-Code für Tabelle NAME ausgeben\n" + " -F, --freeze-tables Ein C-Modul mit allen Tabellen ausgeben\n" +-" -T, --find-subsets Alle Zeichenstze ausgeben, die Untermengen " +-"von\n" +-" anderen Zeichenstzen sind\n" ++" -T, --find-subsets Alle Zeichensätze ausgeben, die Untermengen von\n" ++" anderen Zeichensätzen sind\n" + " -C, --copyright Copyright und Kopierbedingungen anzeigen\n" + " --help Diese Hilfe anzeigen\n" + " --version Versionsnummer ausgeben\n" +@@ -157,23 +150,18 @@ + msgstr "" + "\n" + "Funktionsmodi:\n" +-" -v, --verbose Reihenfolge der Umkodierungsschritte und " +-"Fortschritt\n" ++" -v, --verbose Reihenfolge der Umkodierungsschritte und Fortschritt\n" + " anzeigen\n" +-" -q, --quiet, --silent Keine Meldungen ber nicht umkehrbare " +-"Umkodierungen\n" +-" -f, --force Umkodierung vornehmen, auch wenn sie nicht " +-"umkehrbar ist\n" +-" -t, --touch Nach der Umkodierung ein 'touch' auf die " +-"umkodierte\n" +-" Datei ausfhren\n" +-" -i, --sequence=files Fr Zwischenschritte temporre Dateien anlegen\n" +-" --sequence=memory Fr Zwischenschritte Speicherpuffer verwenden\n" ++" -q, --quiet, --silent Keine Meldungen über nicht umkehrbare Umkodierungen\n" ++" -f, --force Umkodierung vornehmen, auch wenn sie nicht umkehrbar ist\n" ++" -t, --touch Nach der Umkodierung ein 'touch' auf die umkodierte\n" ++" Datei ausführen\n" ++" -i, --sequence=files Für Zwischenschritte temporäre Dateien anlegen\n" ++" --sequence=memory Für Zwischenschritte Speicherpuffer verwenden\n" + + #: src/main.c:275 + msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" +-msgstr "" +-" -p, --sequence=pipe benutze \"pipe\" fr Abarbeitung der Schritte\n" ++msgstr " -p, --sequence=pipe benutze \"pipe\" für Abarbeitung der Schritte\n" + + #: src/main.c:280 + msgid " -p, --sequence=pipe same as -i (on this system)\n" +@@ -192,19 +180,14 @@ + msgstr "" + "\n" + "Feineinstellungen:\n" +-" -s, --strict Strikte Abbildung benutzen, auch bei " +-"Zeichenverlust\n" +-" -d, --diacritics Nur Akzente/Umlaute umkodieren (z.B. fr " +-"HTML/LaTeX)\n" ++" -s, --strict Strikte Abbildung benutzen, auch bei Zeichenverlust\n" ++" -d, --diacritics Nur Akzente/Umlaute umkodieren (z.B. für HTML/LaTeX)\n" + " -S, --source[=LN] Bei LN nur Zeichenketten und Kommentare umkodieren\n" +-" -c, --colons benutze ':' statt '\"' fr Umlaute (z.B. 'fu:r' " +-"statt\n" ++" -c, --colons benutze ':' statt '\"' für Umlaute (z.B. 'fu:r' statt\n" + " ('fu\"r')\n" +-" -g, --graphics 'Linienzeichen' des IBMPC-Zeichensatzes durch " +-"hnliche\n" ++" -g, --graphics 'Linienzeichen' des IBMPC-Zeichensatzes durch ähnliche\n" + " ASCII-Zeichen darstellen\n" +-" -x, --ignore=ZEISATZ ZEISATZ bei der Wahl der Kodierungsschritte " +-"ignorieren\n" ++" -x, --ignore=ZEISATZ ZEISATZ bei der Wahl der Kodierungsschritte ignorieren\n" + + #: src/main.c:296 + msgid "" +@@ -213,36 +196,30 @@ + "FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" + msgstr "" + "\n" +-"Die Option -l ohne FORMAT und ZEISATZ listet alle Zeichenstze und -formate\n" +-"auf. FORMAT ist `decimal', `octal', `hexadecimal' oder `full' (knnen durch " +-"den\n" +-"Anfangsbuchstaben abgekrzt werden)\n" ++"Die Option -l ohne FORMAT und ZEISATZ listet alle Zeichensätze und -formate\n" ++"auf. FORMAT ist `decimal', `octal', `hexadecimal' oder `full' (können durch den\n" ++"Anfangsbuchstaben abgekürzt werden)\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" +-"Wenn die Umgebungsvariable DEFAULT_CHARSET nicht gesetzt ist,\n" +-"gilt fr ZEISATZ ist die Voreinstellung `%s'.\n" ++"Wenn die Umgebungsvariable DEFAULT_CHARSET nicht gesetzt ist, gilt für ZEISATZ\n" ++"die lokale-abhängiges Kodierung, festgelegt von LC_ALL, LC_CTYPE. LANG wird.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" +-"Mit '-k' werden mgliche 'Vorher'-Zeichenstze fr den 'Nachher'-ZEISATZ\n" +-"ausgegeben, mit PAAREn der Form 'VOR1:NACH1,VOR2:NACH2,...', wobei die VORs " +-"und\n" ++"Mit '-k' werden mögliche 'Vorher'-Zeichensätze für den 'Nachher'-ZEISATZ\n" ++"ausgegeben, mit PAAREn der Form 'VOR1:NACH1,VOR2:NACH2,...', wobei die VORs und\n" + "NACHs Kodes sind. Alle Kodes werden als Dezimalzahlen angegeben.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" + msgstr "" + "LN ist eine Programmiersprache, z.B. `c', `perl' oder `po', wobei `c' die\n" + "Voreinstellung ist.\n" +@@ -250,24 +227,18 @@ + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" +-"ANFRAGE ist UNTERANFRAGE[,UNTERANFRAGE]...; UNTERANFRAGE ist " +-"KODIERUNG[..KODIERUNG]...\n" +-"KODIERUNG ist [ZEISATZ][/[SURFACE]]...; ANFRAGE ist meistens " +-"VORHER..NACHHER,\n" +-"wobei VORHER und NACHHER Zeichenstze sind. Ohne ZEISATZ wird der bliche\n" +-"Zeichensatz benutzt; ohne [/SURFACE]... wird das fr ZEISATZ bliche Format\n" +-"angenommen; ein / ohne Angabe eines Formats heisst, dass kein Format " +-"angenommen\n" ++"ANFRAGE ist UNTERANFRAGE[,UNTERANFRAGE]...; UNTERANFRAGE ist KODIERUNG[..KODIERUNG]...\n" ++"KODIERUNG ist [ZEISATZ][/[SURFACE]]...; ANFRAGE ist meistens VORHER..NACHHER,\n" ++"wobei VORHER und NACHHER Zeichensätze sind. Ohne ZEISATZ wird der übliche\n" ++"Zeichensatz benutzt; ohne [/SURFACE]... wird das für ZEISATZ übliche Format\n" ++"angenommen; ein / ohne Angabe eines Formats heißt, dass kein Format angenommen\n" + "wird. Siehe Anleitung.\n" + + #: src/main.c:323 +@@ -280,7 +251,7 @@ + "\n" + "Wenn weder -i noch -p angegeben sind, wird -p angenommen wenn keine DATEI\n" + "angegeben ist, sonst -i.\n" +-"Jede DATEI wird bei mit der umkodierten Datei berschrieben. Wenn keine\n" ++"Jede DATEI wird bei mit der umkodierten Datei überschrieben. Wenn keine\n" + "DATEI angegen ist wird die Standardeingabe umkodiert und auf der\n" + "Standardausgabe ausgegeben.\n" + +@@ -290,45 +261,42 @@ + "Report bugs to .\n" + msgstr "" + "\n" +-"Berichte ber Programmfehler bitte an .\n" ++"Berichte über Programmfehler bitte an .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "Abfolge »%s« ist zweideutig" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "Abfolge »%s« ist unbekannt" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Sprache »%s« ist zweideutig" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Sprache »%s« ist unbekannt" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Format »%s« ist zweideutig" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Format »%s« ist unbekannt" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Geschrieben von Franc,ois Pinard .\n" ++msgstr "Geschrieben von François Pinard .\n" + + #: src/main.c:624 + msgid "" +@@ -344,33 +312,33 @@ + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" + "Dieses Programm ist freie Software; die genauen Nutzungsbedingungen\n" +-"sind der Datei COPYING in den Quellen zu entnehmen.\n" +-"Es wird keinerlei Gewhrleistung bernommen; auch nicht fr gewerbliche\n" ++"sind der Datei »COPYING« in den Quellen zu entnehmen.\n" ++"Es wird keinerlei Gewährleistung übernommen; auch nicht für gewerbliche\n" + "Nutzbarkeit oder Tauglichkeit zu einem anderen Zweck.\n" + + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Symbol »%s« ist unbekannt" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Zeichensatz »%s« ist unbekannt oder zweideutig" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Erforderliches Argument fehlt" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "Veraltete Syntax, bitte `%s' benutzen" ++msgstr "Veraltete Syntax, bitte »%s« bevorzugen" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "Anfrage »%s« ist fehlerhaft" + + #: src/main.c:903 + #, c-format +@@ -382,19 +350,19 @@ + msgstr " fertig\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " fehlgeschlagen: %s in %s..%s\n" ++msgstr " fehlgeschlagen: %s bei Schritt »%s..%s«\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s fehlgeschlagen: %s in %s..%s" ++msgstr "%s fehlgeschlagen: %s bei Schritt »%s..%s«" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s bei %s..%s" ++msgstr "%s bei Schritt »%s..%s«" + + #: src/names.c:335 + #, c-format +@@ -405,8 +373,8 @@ + #, c-format + msgid "Cannot list `%s', no names available for this charset" + msgstr "" +-"Kann `%s' nicht anzeigen, keine Namen fr diesen Zeichensatz\n" +-" verfgbar" ++"Kann `%s' nicht anzeigen, keine Namen für diesen Zeichensatz\n" ++" verfügbar" + + #. code counter + #. expected value for code counter +@@ -420,17 +388,17 @@ + #: src/names.c:1049 + #, c-format + msgid "Sorry, no names available for `%s'" +-msgstr "Tut mir leid, aber es sind fr `%s' keine Namen verfgbar" ++msgstr "Tut mir leid, aber es sind für `%s' keine Namen verfügbar" + + #: src/outer.c:125 + #, c-format + msgid "Resurfacer set more than once for `%s'" +-msgstr "`Resurfacer' fr `%s' mehr als einmal gesetzt." ++msgstr "`Resurfacer' für `%s' mehr als einmal gesetzt." + + #: src/outer.c:133 + #, c-format + msgid "Unsurfacer set more than once for `%s'" +-msgstr "`Unsurfacer' fr `%s' mehr als einmal gesetzt." ++msgstr "`Unsurfacer' für `%s' mehr als einmal gesetzt." + + #: src/recode.c:115 src/recode.c:127 + msgid "Virtual memory exhausted" +@@ -453,7 +421,7 @@ + #: src/recode.c:224 src/recode.c:236 + #, c-format + msgid "Following diagnostics for `%s' to `%s'" +-msgstr "Folgende Diagnose fr Konvertierung von `%s' nach `%s'" ++msgstr "Folgende Diagnose für Konvertierung von `%s' nach `%s'" + + #: src/recode.c:229 src/recode.c:241 + #, c-format +@@ -462,27 +430,26 @@ + + #: src/recode.c:272 + msgid "Cannot complete table from set of known pairs" +-msgstr "" +-"Kann die Tabelle aus der Menge der bekannten Paare nicht vervollstndigen" ++msgstr "Kann die Tabelle aus der Menge der bekannten Paare nicht vervollständigen" + + #: src/recode.c:497 + msgid "Identity recoding, not worth a table" +-msgstr "Umkodierung ohne nderung, zu trivial fr eine Tabelle" ++msgstr "Umkodierung ohne Änderung, zu trivial für eine Tabelle" + + #: src/recode.c:504 + msgid "Recoding is too complex for a mere table" +-msgstr "Umkodierung ist fr eine einfache Tabelle zu kompliziert" ++msgstr "Umkodierung ist für eine einfache Tabelle zu kompliziert" + + #. Print the header of the header file. + #: src/recode.c:536 + #, c-format + msgid "%sConversion table generated mechanically by Free `%s' %s" +-msgstr "%sKonvertierung automatisch generiert von GNU %s %s" ++msgstr "%sKonvertierung automatisch generiert von »GNU %s %s«" + + #: src/recode.c:538 + #, c-format + msgid "%sfor sequence %s.%s" +-msgstr "%sfr Folge %s.%s" ++msgstr "%sfür Folge %s.%s" + + #: src/recode.c:744 + msgid "No table to print" +@@ -511,7 +478,7 @@ + + #: src/request.c:111 + msgid "*Unachievable*" +-msgstr "*unmglich*" ++msgstr "*unmöglich*" + + #: src/request.c:113 + msgid "*mere copy*" +@@ -547,7 +514,7 @@ + #: src/request.c:903 + #, c-format + msgid "No way to recode from `%s' to `%s'" +-msgstr "Keine Mglichkeit, von `%s' nach `%s' umzukodieren" ++msgstr "Keine Möglichkeit, von `%s' nach `%s' umzukodieren" + + #: src/request.c:1013 + msgid "Expecting `..' in request" +@@ -565,29 +532,3 @@ + msgstr "" + "UCS2 Mne Beschreibung\n" + "\n" +- +-#~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "Fr ZEISATZ existiert keine Voreinstellung, bitte die Umgebungsvariable\n" +-#~ "DEFAULT_CHARSET setzen.\n" +- +-#~ msgid "Ambiguous sequence `%s'" +-#~ msgstr "Mehrdeutige Folge `%s'" +- +-#~ msgid "Unknown sequence `%s'" +-#~ msgstr "Unbekannte Folge `%s'" +- +-#~ msgid "Ambiguous language `%s'" +-#~ msgstr "Mehrdeutiger Zeichensatz `%s'" +- +-#~ msgid "Unknown language `%s'" +-#~ msgstr "Unbekannter Zeichensatz `%s'" +- +-#~ msgid "Ambiguous format `%s'" +-#~ msgstr "Mehrdeutiges Format `%s'" +- +-#~ msgid "Unknown format `%s'" +-#~ msgstr "Unbekanntes Format `%s'" +- +-#~ msgid "Erroneous request `%s'" +-#~ msgstr "Fehlerhafte Anfrage `%s'" +--- recode-3.6.orig/i18n/pt_BR.po ++++ recode-3.6/i18n/pt_BR.po +@@ -0,0 +1,522 @@ ++# recode: translation to Brazilian Portuguese (pt_BR) ++# Copyright (C) 2002 Free Software Foundation, Inc. ++# Alexandre Folle de Menezes , 2002. ++# based on the translation to Portuguese (pt) by ++# Vitor Duarte , maio de 1996. ++# also based on the translation to Galician (gl) by ++# Jacobo Tarro Barreiro , 2000. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: GNU recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2002-12-14 02:00-0300\n" ++"Last-Translator: Alexandre Folle de Menezes \n" ++"Language-Team: Brazilian Portuguese \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8-bit\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "Sem erro" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Entrada no-cannica" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Sada ambgua" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Entrada intraduzvel" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Entrada invlida" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "O sistema detectou um problema" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "Uso incorreto da biblioteca de recodificao" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "Erro interno de recodificao" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"Este programa software livre; a sua redistribuio e/ou modificao\n" ++"nos termos da Licena Geral Pblica GNU como publicada pela\n" ++"Free Software Foundation, permitida; de acordo com a verso 2 ou\n" ++"(opcionalmente) qualquer outra verso posterior.\n" ++"\n" ++"Este programa distribudo na esperana de que possa ser til, mas\n" ++"SEM QUALQUER GARANTIA; sem mesmo a garantia implcita de COMERCIABILIDADE ou\n" ++"ADEQUAO QUALQUER FINALIDADE PARTICULAR. Veja a Licena Geral Pblica GNU\n" ++"para mais detalhes.\n" ++"\n" ++"Deve ter sido recebida uma cpia da Licena Geral Pblica GNU\n" ++"junto com este programa; seno, escreva para a Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Tente `%s %s' para obter mais informaes.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "O `recode' converte arquivos entre vrios conjuntos de caracteres e superfcies.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"Uso: %s [OPO]... [ [CHARSET] | REQUISIO [ARQUIVO]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Os argumentos obrigatrios para as opes longas so tambm obrigatrios\n" ++"para as opes curtas. O mesmo vale para argumentos opcionais\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Listagens:\n" ++" -l, --list[=FORMATO] lista um ou todos os conjuntos de caracteres e\n" ++" apelidos conhecidos\n" ++" -k, --known=PARES restringe os conjuntos de caracteres com a lista\n" ++" de PARES conhecidos\n" ++" -h, --header[=[LN/]NOME] escreve a tabela NOME na sada padro usando LN,\n" ++" depois sai\n" ++" -F, --freeze-tables escreve um mdulo C contendo todas as tabelas\n" ++" -T, --find-subsets reporta todos os conjuntos de carcteres que so\n" ++" subconjuntos de outros\n" ++" -C, --copyright exibe Copyright e condies de cpia\n" ++" --help exibe esta ajuda e sai\n" ++" --version mostra informaes de verso e sai\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Modos de operao:\n" ++" -v, --verbose Explica a sequncia de passos e relata o progresso\n" ++" -q, --quiet, --silent inibe mensagens sobre recodificaes irreversveis\n" ++" -f, --force fora recodificaes mesmo quando irreversveis\n" ++" -t, --touch atualiza horrio dos arquivos processados\n" ++" -i, --sequence=files usa arquivos intermedirios na seqncia de passos\n" ++" --sequence=memory usa buffers na memria na seqncia de passos\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=pipe usa redirecionamentos para seqenciar os passos\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe o mesmo que -i (neste sistema)\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Ajuste fino:\n" ++" -s, --strict usa mapeamentos estritos, mesmo perdendo caracteres\n" ++" -d, --diacritics converte apenas os diacrticos ou semelhantes\n" ++" para HTML/LaTeX\n" ++" -S, --source[=LN] limita a recodificao strings e comentrios, como\n" ++" para o LN\n" ++" -c, --colons usa dois pontos em vez de aspas para o trema\n" ++" -g, --graphics aproxima os grficos do IBMPC com grficos ASCII\n" ++" -x, --ignore=CHARSET ignora o CHARSET na escolha da rota de recodificao\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"A opo -l sem FORMATO ou CHARSET lista conjuntos de carcteres disponveis.\n" ++"FORMATO `decimal', `octal', `hexadecimal' ou `full' (ou uma letra de `dohf').\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"A menos que DEFAULT_CHARSET esteja setado no ambiente, o CHARSET padro o\n" ++"local, determinado por LC_ALL, LC_CTYPE, LANG.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Com -k, so listados os conjuntos de caracteres de entrada possveis para o\n" ++"CHARSET charset fornecido, com PARES no formato `INI1:FIN1,INI2:BEF2,...'\n" ++"sendo INIs e FINs os respectivos cdigos em notao decimal.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN alguma linguagem, pode ser `c', `perl' ou `po'; `c' o padro.\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"REQUEST SUBREQUEST[,SUBREQUEST]...; SUBREQUEST ENCODING[..ENCODING]...\n" ++"ENCODING [CHARSET][/[SURFACE]]...; REQUEST geralmente BEFORE..AFTER,\n" ++"sendo BEFORE e AFTER conjuntos de caracters. Se CHARSET for omitido, \n" ++"assumido o conjunto de caracteres usual; se [/SURFACE]... for omitida, so\n" ++"assumidas as superfcies implicadas para o CHARSET; uma / com um nome vazio de\n" ++"superfcie significa nenhuma superfcie. Veja a documentao.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Na ausncia de -i e -p, assumir -p se no houver ARQUIVO, ou ento -i.\n" ++"Cada ARQUIVO recodificado para ele nesmo, destruindo o original. Se no for\n" ++"indicado ARQUIVO, atua como um filtro convertendo do stdin para stdout.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Informe os erros para .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "A seqencia `%s' ambgua" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "A seqencia `%s' desconhecida" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "A linguagem `%s' ambgua" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "A linguagem `%s' desconhecida" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "O formato `%s' ambguo" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "O formato `%s' desconhecido" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Escrito por Franois Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Copyright 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Este programa software livre; veja o cdigo fonte para condies de cpia.\n" ++"NO H GARANTIA; nem mesmo de COMERCIABILIDADE ou ADEQUAO A QUALQUER\n" ++"FIM PARTICULAR.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "O smbolo `%s' desconhecido" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "O conjunto de caracteres `%s' desconhecido ou ambguo" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Falta argumento obrigatrio" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Sintaxe obsoleta, por favor use `%s'" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "Requisio `%s' est errada" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "Recodificando %s..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " feito\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " falhou: %s no passo `%s..%s'\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s falhou: %s no passo `%s..%s'" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s no passo %s..%s" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "O conjunto de caracteres %s j existe e no %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "Impossvel listar `%s', no existem nomes disponveis para este charset" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Dec Oct Hex UCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "Desculpe, no existem nomes disponveis para `%s'" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "Resurfacer setado mais de uma vez para `%s'" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "Unsurfacer setado mais de uma vez para `%s'" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Memria virtual esgotada" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "Ambos os cdigos %3d e %3d so recodificados para %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "Nenhum caracter recodificado para %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "Impossvel inverter a tabela um-para-um fornecida" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "Os seguintes diagnsticos aplica-se de `%s' para `%s'" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "Par n %d: <%3d, %3d> em conflito com <%3d, %3d>" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "Impossvel completar a tabela a partir do conjunto de pares conhecidos" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "A recodificao identidade no precisa de uma tabela" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Recodificao muito complexa para uma mera tabela" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sTabela de converso gerada automaticamente por Free `%s' %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%spara a sequncia %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Nenhuma tabela para imprimir" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "reversvel" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s para %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "byte" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "varivel" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Impossvel*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*simples cpia*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Memria virtual esgotada!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "A inicializao dos passos falhou" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "A inicializao dos passos falhou (opes no foram processadas)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Requisio: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "Encolhido para: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Nome de superfcie `%s' no reconhecido" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "Impossvel recodificar de `%s' para `%s'" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "Esperado `..' na requisio" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "O estado de espera do processo filho 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 Mne Descrio\n" ++"\n" +--- recode-3.6.orig/i18n/sv.po ++++ recode-3.6/i18n/sv.po +@@ -1,13 +1,13 @@ + # Swedish messages for recode +-# Copyright 1996, 1998 Free Software Foundation, Inc. +-# Jan Djrv , 1996, 1998. +-# $Revision: 1.14 $ ++# Copyright 1996, 1998, 2001 Free Software Foundation, Inc. ++# Jan Djrv , 1996, 1998, 2001. ++# Revision: 1.16 + # + msgid "" + msgstr "" +-"Project-Id-Version: recode 3.5\n" ++"Project-Id-Version: recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1999-10-16 13:42 +02:00\n" ++"PO-Revision-Date: 2001-06-12 12:54+0100\n" + "Last-Translator: Jan Djrv \n" + "Language-Team: Swedish \n" + "MIME-Version: 1.0\n" +@@ -66,8 +66,7 @@ + "informativt syfte. Fr alla juridiska tolkningar gller den engelska\n" + "originaltexten.\n" + "\n" +-"Detta program r fri programvara. Du kan distribuera den och/eller " +-"modifiera\n" ++"Detta program r fri programvara. Du kan distribuera den och/eller modifiera\n" + "den under villkoren i GNU General Public License, publicerad av\n" + "Free Software Foundation, antingen version 2 eller (om du s vill)\n" + "ngon senare version.\n" +@@ -78,8 +77,7 @@ + "Public License fr ytterligare information.\n" + "\n" + "Du br ha ftt en kopia av GNU General Public License\n" +-"tillsammans med detta program. Om inte, skriv till Free Software " +-"Foundation,\n" ++"tillsammans med detta program. Om inte, skriv till Free Software Foundation,\n" + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + + #: src/main.c:233 +@@ -88,19 +86,13 @@ + msgstr "Frsk med \"%s %s\" fr mer information\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-"Fria \"recode\" konverterar filer mellan olika teckenuppsttningar och ytor\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Fria \"recode\" konverterar filer mellan olika teckenuppsttningar och ytor.\n" + + #: src/main.c:241 + #, c-format +-msgid "" +-"\n" +-"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" +-msgstr "" +-"\n" +-"Anvndning: %s [FLAGGA]... [ [TECKENUPPSTTNING] | BEGRAN [FIL]...]\n" ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\nAnvndning: %s [FLAGGA]... [ [TECKENUPPSTTNING] | BEGRAN [FIL]...]\n" + + #: src/main.c:244 + msgid "" +@@ -110,17 +102,14 @@ + msgstr "" + "\n" + "Om en lng flagga har ett obligatoriskt argument s r argumentet ven\n" +-"obligatoriskt fr motsvarade korta flagga. Motsvarande fr valfria " +-"argument.\n" ++"obligatoriskt fr motsvarade korta flagga. Motsvarande fr valfria argument.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -131,15 +120,13 @@ + "\n" + "Listningar:\n" + " -l, --list[=FORMAT] visa en eller alla knda teckenuppsttningar\n" +-" -k, --known=PAR begrnsa teckenuppsttningar till de i PAR " +-"listan\n" ++" -k, --known=PAR begrnsa teckenuppsttningar till de i PAR-listan\n" + " -h, --header[=[LN/]NAMN] skriv tabell NAMN fr LN till standard ut\n" + " och avsluta.\n" + " -F, --freeze-tables skriv ut en C modul med alla tabeller\n" + " -T, --find-subsets skriv ut teckenuppsttningar som r delmngder\n" + " av andra\n" +-" -C, --copyright visa copyrightinformation och " +-"kopieringsvillkor\n" ++" -C, --copyright visa copyrightinformation och kopieringsvillkor\n" + " --help visa denna hjlptext och avsluta\n" + " --version visa versionsinformation och avsluta\n" + +@@ -157,11 +144,9 @@ + "\n" + "Exekveringsalternativ:\n" + " -v, --verbose frklara delsteg och rapportera framsteg\n" +-" -q, --quiet, --silent undertryck meddelanden om irreversibla " +-"omkodningar\n" ++" -q, --quiet, --silent undertryck meddelanden om irreversibla omkodningar\n" + " -f, --force gr omkodning ven nr den r irreversibel\n" +-" -t, --touch gr \"touch\" p filer som omkodas ver sig " +-"sjlva\n" ++" -t, --touch gr \"touch\" p filer som omkodas ver sig sjlva\n" + " -i, --sequence=files anvnd temporrfiler mellan delsteg\n" + " --sequence=memory anvnd minnesbuffertar mellan delsteg\n" + +@@ -204,25 +189,22 @@ + msgstr "" + "\n" + "Flagga -l utan FORMAT och TECKENUPPSTTNING visar alla tillgngliga\n" +-"teckenuppsttningar och ytor. FORMAT r \"decimal\", \"octal\", " +-"\"hexadecimal\"\n" ++"teckenuppsttningar och ytor. FORMAT r \"decimal\", \"octal\", \"hexadecimal\"\n" + "eller \"full\" (eller en av \"dohf\").\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" + "Om miljvariabeln DEFAULT_CHARSET inte r satt blir standardvrdet fr\n" +-"TECKENUPPSTTNING \"%s\"\n" ++"TECKENUPPSTTNING den lokalspecifika kodningen, som bestms av\n" ++"miljvariablerna LC_ALL, LC_CTYPE och LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" + "Med -k, mjliga startuppsttningar visas fr den givna slutuppsttningen,\n" +@@ -231,28 +213,21 @@ + "som anges med decimala tal.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" +-msgstr "" +-"LN r ett sprk, det kan vara \"c\", \"perl\" eller \"po\"; \"c\" r " +-"standardvrde.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN r ett sprk, det kan vara \"c\", \"perl\" eller \"po\"; \"c\" r standardvrde.\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" + "BEGRAN r DELBEGRAN[,DELBEGRAN]..., DELBEGRAN r KODNING[..KODNING]...\n" +-"KODNING r [TECKENUPPSTTNING][/[YTA]].... BEGRAN ser ofta ut som " +-"START..SLUT,\n" ++"KODNING r [TECKENUPPSTTNING][/[YTA]].... BEGRAN ser ofta ut som START..SLUT,\n" + "dr START och SLUT r teckenuppsttningar. Ett utelmnat TECKENUPPSTTNING\n" + "innebr den normala teckenuppsttningen,\n" + "en utelmnad [/YTA]... innebr den normala ytan fr TECKENUPPSTTNING.\n" +@@ -272,9 +247,7 @@ + "till standard ut.\n" + + #: src/main.c:329 +-msgid "" +-"\n" +-"Report bugs to .\n" ++msgid "\nReport bugs to .\n" + msgstr "" + "\n" + "Rapportera fel till .\n" +@@ -283,48 +256,41 @@ + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "Sekvens \"%s\" r tvetydig" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "Sekvens \"%s\" r oknd" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Sprk \"%s\" r tvetydigt" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Sprk \"%s\" r oknt" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Format \"%s\" r tvetydigt" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Format \"%s\" r oknt" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Skriven av Franois Pinard .\n" ++msgstr "Skriven av Franois Pinard .\n" + + #: src/main.c:624 +-msgid "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" +-msgstr "" +-"\n" +-"Copyright 1990, 92, 93, 94, 96, 97, 1999 Free Software Foundation, Inc.\n" ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nCopyright 1990, 92, 93, 94, 96, 97, 1999 Free Software Foundation, Inc.\n" + + #: src/main.c:628 + msgid "" +@@ -338,26 +304,26 @@ + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Symbol \"%s\" r oknd" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Teckenuppsttning \"%s\" r oknd eller tvetydig" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Obligatoriskt argument saknas" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" + msgstr "Frldrad syntax, anvnd hellre \"%s\"" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "Begran \"%s\" r felaktig" + + #: src/main.c:903 + #, c-format +@@ -369,19 +335,19 @@ + msgstr " klart\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " misslyckades: %s i %s..%s\n" ++msgstr " misslyckades: %s i steg \"%s..%s\"\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s misslyckades: %s i %s..%s" ++msgstr "%s misslyckades: %s i steg \"%s..%s\"" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s i %s..%s" ++msgstr "%s i steg \"%s..%s\"" + + #: src/names.c:335 + #, c-format +@@ -391,8 +357,7 @@ + #: src/names.c:831 + #, c-format + msgid "Cannot list `%s', no names available for this charset" +-msgstr "" +-"Kan inte visa \"%s\", inga namn tillgngliga fr denna teckenuppsttning" ++msgstr "Kan inte visa \"%s\", inga namn tillgngliga fr denna teckenuppsttning" + + #. code counter + #. expected value for code counter +@@ -423,12 +388,12 @@ + msgstr "Virtuellt minne slut" + + #: src/recode.c:155 +-#, c-format, ycp-format ++#, c-format + msgid "Codes %3d and %3d both recode to %3d" + msgstr "Teckenkoderna %3d och %3d omkodas bda till %3d" + + #: src/recode.c:169 +-#, c-format, ycp-format ++#, c-format + msgid "No character recodes to %3d" + msgstr "Inget tecken omkodas till %3d" + +@@ -504,7 +469,7 @@ + + #: src/request.c:246 + msgid "Virtual memory exhausted!" +-msgstr "Virtuellt minne slut" ++msgstr "Virtuellt minne slut!" + + #: src/request.c:265 + msgid "Step initialisation failed" +@@ -527,7 +492,7 @@ + #: src/request.c:823 src/request.c:932 + #, c-format + msgid "Unrecognised surface name `%s'" +-msgstr "Oknt ytnamn: \"%s\"" ++msgstr "Oknt ytnamn \"%s\"" + + #: src/request.c:903 + #, c-format +@@ -541,38 +506,8 @@ + #: src/task.c:826 src/task.c:1002 + #, c-format + msgid "Child process wait status is 0x%0.2x" +-msgstr "Barnprocess slutstatus r 0x%0.2x" ++msgstr "Barnprocessens slutstatus r 0x%0.2x" + + #: src/testdump.c:298 +-msgid "" +-"UCS2 Mne Description\n" +-"\n" +-msgstr "" +-"UCS2 Mne Beskrivning\n" +-"\n" +- +-#~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "TECKENUPPSTTNING har inget standardvrde, stt miljvariabeln " +-#~ "DEFAULT_CHARSET.\n" +- +-#~ msgid "Ambiguous sequence `%s'" +-#~ msgstr "Tvetydig sekvens \"%s\"" +- +-#~ msgid "Unknown sequence `%s'" +-#~ msgstr "Oknd sekvens \"%s\"" +- +-#~ msgid "Ambiguous language `%s'" +-#~ msgstr "Tvetydigt sprk \"%s\"" +- +-#~ msgid "Unknown language `%s'" +-#~ msgstr "Oknt sprk \"%s\"" +- +-#~ msgid "Ambiguous format `%s'" +-#~ msgstr "Tvetydigt format \"%s\"" +- +-#~ msgid "Unknown format `%s'" +-#~ msgstr "Oknt format \"%s\"" +- +-#~ msgid "Erroneous request `%s'" +-#~ msgstr "Felaktig begran \"%s\"" ++msgid "UCS2 Mne Description\n\n" ++msgstr "UCS2 Mne Beskrivning\n\n" +--- recode-3.6.orig/i18n/fr.po ++++ recode-3.6/i18n/fr.po +@@ -1,17 +1,18 @@ + # Messages franais pour Free recode. +-# Copyright 1996, 1998, 1999 Free Software Foundation, Inc. +-# Franois Pinard , 1996. ++# Copyright 2004 Free Software Foundation, Inc. ++# Michel Robitaille , traduction depuis/since 1996. + # + msgid "" + msgstr "" +-"Project-Id-Version: Free recode 3.5\n" ++"Project-Id-Version: Free recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1999-08-17 14:14-04:00\n" +-"Last-Translator: Franois Pinard \n" ++"PO-Revision-Date: 2004-05-10 08:00-0500\n" ++"Last-Translator: Michel Robitaille \n" + "Language-Team: French \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=ISO-8859-1\n" + "Content-Transfer-Encoding: 8-bit\n" ++"Plural-Forms: nplurals=2; plural=(n > 1);\n" + + #: src/main.c:142 + msgid "No error" +@@ -27,7 +28,7 @@ + + #: src/main.c:151 + msgid "Untranslatable input" +-msgstr "Entre non traductible" ++msgstr "Entre non traduisible" + + #: src/main.c:154 + msgid "Invalid input" +@@ -78,14 +79,11 @@ + #: src/main.c:233 + #, c-format + msgid "Try `%s %s' for more information.\n" +-msgstr "Pour plus d'information, essayez %s %s.\n" ++msgstr "Pour plus d'information, essayez %s %s .\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-" Free recode transforme les jeux de caractres et les surfaces de " +-"fichiers\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr " Free recode transforme les jeux de caractres et les surfaces de fichiers\n" + + #: src/main.c:241 + #, c-format +@@ -103,20 +101,16 @@ + "for the equivalent short option also. Similarly for optional arguments.\n" + msgstr "" + "\n" +-"Un paramtre obligatoire pour une option de forme longue l'est aussi pour " +-"une\n" +-"option de forme courte. La mme rgle s'applique un paramtre indiqu " +-"comme\n" ++"Un paramtre obligatoire pour une option de forme longue l'est aussi pour une\n" ++"option de forme courte. La mme rgle s'applique un paramtre indiqu comme\n" + "tant optionnel.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -126,16 +120,11 @@ + msgstr "" + "\n" + "Listes:\n" +-" -l, --list[=FORMAT] afficher un charset donn, ou fournir toute la " +-"liste\n" +-" -k, --known=PAIRES choisir les charsets selon quelques PAIRES " +-"connues\n" +-" -h, --header[=[LN/]NOM] tabuler NOM sur stdout, utilisant LN, puis " +-"terminer\n" +-" -F, --freeze-tables produire un module C contenant toutes les " +-"tables\n" +-" -T, --find-subsets lister tout charset qui est sous-ensemble d'un " +-"autre\n" ++" -l, --list[=FORMAT] afficher un charset donn, ou fournir toute la liste\n" ++" -k, --known=PAIRES choisir les charsets selon quelques PAIRES connues\n" ++" -h, --header[=[LN/]NOM] tabuler NOM sur stdout, utilisant LN, puis terminer\n" ++" -F, --freeze-tables produire un module C contenant toutes les tables\n" ++" -T, --find-subsets lister tout charset qui est sous-ensemble d'un autre\n" + " -C, --copyright afficher les conditions de copie, puis terminer\n" + " --help fournir ce message d'aide, puis terminer\n" + " --version identifier la programme, puis terminer\n" +@@ -153,20 +142,16 @@ + msgstr "" + "\n" + "Modes d'opration:\n" +-" -v, --verbose afficher les tapes prvues, suivre la " +-"progression\n" +-" -q, --quiet, --silent taire les messages sur les recodages " +-"irrversibles\n" ++" -v, --verbose afficher les tapes prvues, suivre la progression\n" ++" -q, --quiet, --silent taire les messages sur les recodages irrversibles\n" + " -f, --force effectuer mme les recodages irrversibles\n" +-" -t, --touch toucher les fichiers aprs leur remplacement\n" +-" -i, --sequence=files fabriquer des fichiers pour ordonnancer les " +-"passes\n" ++" -t, --touch toucher les fichiers aprs leur remplacement\n" ++" -i, --sequence=files fabriquer des fichiers pour ordonnancer les passes\n" + " --sequence=memory utiliser des tampons pour ordonnancer les passes\n" + + #: src/main.c:275 + msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" +-msgstr "" +-" -p, --sequence=pipe utiliser pipe pour ordonnancer les passes\n" ++msgstr " -p, --sequence=pipe utiliser pipe pour ordonnancer les passes\n" + + #: src/main.c:280 + msgid " -p, --sequence=pipe same as -i (on this system)\n" +@@ -188,8 +173,8 @@ + " -s, --strict recoder strictement, perte possible de caractres\n" + " -d, --diacritics se restreindre aux diacritiques pour HTML/LaTeX\n" + " -S, --source[=LN] ne recoder que les chanes et les commentaires LN\n" +-" -c, --colons utiliser : plutt que \\\" pour les trmas\n" +-" -g, --graphics convertir au mieux possible les rulers IBMPC\n" ++" -c, --colons utiliser : plutt que \\\" pour les trmas\n" ++" -g, --graphics convertir au mieux possible les rulers IBMPC\n" + " -x, --ignore=CHARSET ignorer CHARSET durant le choix des tapes\n" + + #: src/main.c:296 +@@ -199,60 +184,48 @@ + "FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" + msgstr "" + "\n" +-"L'option -l sans FORMAT ni CHARSET donne les charsets et surfaces " +-"disponibles.\n" +-"FORMAT vaut decimal, octal, hexadecimal ou full, ou encore un " +-"caractre\n" +-"dans dohf.\n" ++"L'option -l sans FORMAT ni CHARSET donne les charsets et surfaces disponibles.\n" ++"FORMAT vaut decimal , octal , hexadecimal ou full , ou encore un caractre\n" ++"dans dohf .\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" +-"%s est prsum sii DEFAULT_CHARSET n'est pas dfini dans l'environnement.\n" ++" moins que DEFAULT_CHARSET ne soit initialis dans l'environnement,\n" ++"le CHARSET par dfaut est locale selon l'encodage, dtermin par LC_ALL, LC_CTYPE, LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" + "Avec -k, les charsets antcdents possibles sont lists pour le CHARSET\n" + "consquent, tous deux tant des charsets RFC1345, restreints par les PAIRES\n" +-"dites selon la syntaxe AVANT1:APRS1,AVANT2:APRS2,...; chaque code AVANT\n" ++"dites selon la syntaxe AVANT1:APRS1,AVANT2:APRS2,... ; chaque code AVANT\n" + "et APRS est exprim en dcimal.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" +-msgstr "" +-"LN est un langage de programmation, valant `c' (implicite), `perl' ou `po'.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN est un langage de programmation, valant c (implicite), perl ou po .\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" +-"DEMANDE est SOUS-DEMANDE[,SOUS-DEMANDE]...; SOUS-DEMANDE est " +-"CODAGE[..CODAGE]...\n" +-"CODAGE est [CHARSET][/[SURFACE]]...; DEMANDE ressemble souvent " +-"AVANT..APRs,\n" ++"DEMANDE est SOUS-DEMANDE[,SOUS-DEMANDE]...; SOUS-DEMANDE est CODAGE[..CODAGE]...\n" ++"CODAGE est [CHARSET][/[SURFACE]]...; DEMANDE ressemble souvent AVANT..APRs,\n" + "AVANT et APRS tant des charsets. Un CHARSET omis sous-entend le charset\n" + "habituel; une [/SURFACE]... omise sous-entend les surfaces habituelles pour\n" +-"CHARSET; un / sans surface indique l'absence de toute surface. Voir le " +-"manuel!\n" ++"CHARSET; un / sans surface indique l'absence de toute surface. Voir le manuel!\n" + + #: src/main.c:323 + msgid "" +@@ -262,10 +235,9 @@ + "FILE is specified, then act as a filter and recode stdin to stdout.\n" + msgstr "" + "\n" +-"En l'absence de -i ou -p, choisir -i avec FICHIER, sinon -p.\n" ++"En l'absence de -i ou -p , choisir -i avec FICHIER, sinon -p .\n" + "Chaque FICHIER est recod sur lui-mme, dtruisant l'original. Si aucun\n" +-"FICHIER n'est donn, alors agir comme un filtre et recoder stdin sur " +-"stdout.\n" ++"FICHIER n'est donn, alors agir comme un filtre et recoder stdin sur stdout.\n" + + #: src/main.c:329 + msgid "" +@@ -273,46 +245,42 @@ + "Report bugs to .\n" + msgstr "" + "\n" +-"Rapporter tout disfonctionnement mailto:recode-bugs@iro.umontreal.ca;\n" +-"et rapporter les problmes de francisation mailto:traduc@traduc.org.\n" ++"Rapporter toutes anomalies .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "Squence %s est ambigu" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "Squence %s est inconnue" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Langage %s est ambigu" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Langage %s est inconnu" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Format %s est ambigu" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Format %s est inconnu" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"crit par Franois Pinard .\n" ++msgstr "crit par Franois Pinard .\n" + + #: src/main.c:624 + msgid "" +@@ -334,50 +302,50 @@ + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Symbole %s est inconnu" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Charset %s est inconnu ou ambigu" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Argument requis est manquant" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "Syntaxe dsute, veuillez prfrer %s" ++msgstr "Syntaxe dsute, veuillez prfrer %s " + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "Requte %s est errone" + + #: src/main.c:903 + #, c-format + msgid "Recoding %s..." +-msgstr "Recodage de %s..." ++msgstr "Recodage de %s ..." + + #: src/main.c:913 + msgid " done\n" + msgstr " complt\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " non-russi: %s dans %s..%s\n" ++msgstr " non-russi: %s dans %s..%s \n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s non-russi: %s dans %s..%s" ++msgstr "%s non-russi: %s dans %s..%s " + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s dans %s..%s" ++msgstr "%s dans %s..%s " + + #: src/names.c:335 + #, c-format +@@ -387,7 +355,7 @@ + #: src/names.c:831 + #, c-format + msgid "Cannot list `%s', no names available for this charset" +-msgstr "Incapable de lister %s: les noms n'y sont pas disponibles" ++msgstr "Incapable de lister %s : les noms n'y sont pas disponibles" + + #. code counter + #. expected value for code counter +@@ -401,17 +369,17 @@ + #: src/names.c:1049 + #, c-format + msgid "Sorry, no names available for `%s'" +-msgstr "Dsol, aucun nom disponible pour %s" ++msgstr "Dsol, aucun nom disponible pour %s " + + #: src/outer.c:125 + #, c-format + msgid "Resurfacer set more than once for `%s'" +-msgstr "Plus d'un re-surfaceur pour `%s'" ++msgstr "Plus d'un re-surfaceur pour %s " + + #: src/outer.c:133 + #, c-format + msgid "Unsurfacer set more than once for `%s'" +-msgstr "Plus d'un d-surfaceur pour `%s'" ++msgstr "Plus d'un d-surfaceur pour %s " + + #: src/recode.c:115 src/recode.c:127 + msgid "Virtual memory exhausted" +@@ -434,7 +402,7 @@ + #: src/recode.c:224 src/recode.c:236 + #, c-format + msgid "Following diagnostics for `%s' to `%s'" +-msgstr "Les diagnostics suivants s'appliquent pour %s vers %s" ++msgstr "Les diagnostics suivants s'appliquent pour %s vers %s " + + #: src/recode.c:229 src/recode.c:241 + #, c-format +@@ -457,12 +425,12 @@ + #: src/recode.c:536 + #, c-format + msgid "%sConversion table generated mechanically by Free `%s' %s" +-msgstr "%sTable de conversion engendre mcaniquement par Free %s %s" ++msgstr "%sTable de conversion engendre mcaniquement par Free %s %s" + + #: src/recode.c:538 + #, c-format + msgid "%sfor sequence %s.%s" +-msgstr "%spour squence %s.%s" ++msgstr "%spour squence %s .%s" + + #: src/recode.c:744 + msgid "No table to print" +@@ -531,12 +499,12 @@ + + #: src/request.c:1013 + msgid "Expecting `..' in request" +-msgstr "Chane `..' attendue dans la demande" ++msgstr "Chane .. attendue dans la demande" + + #: src/task.c:826 src/task.c:1002 + #, c-format + msgid "Child process wait status is 0x%0.2x" +-msgstr "Le constat wait du processus fils est 0x%0.2x" ++msgstr "L'tat du processus fils en attente est 0x%0.2x" + + #: src/testdump.c:298 + msgid "" +@@ -547,8 +515,7 @@ + "\n" + + #~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "CHARSET ne peut tre omis, dfinir DEFAULT_CHARSET dans l'environment.\n" ++#~ msgstr "CHARSET ne peut tre omis, dfinir DEFAULT_CHARSET dans l'environment.\n" + + #~ msgid "Ambiguous sequence `%s'" + #~ msgstr "La squence %s est ambigu" +@@ -611,5 +578,4 @@ + #~ msgstr "Recodage irrversible" + + #~ msgid "BEFORE and AFTER both default to `%s' when needed.\n" +-#~ msgstr "" +-#~ "AVANT et APRS ont implicitement la valeur canonique %s, lorsqu'absents.\n" ++#~ msgstr "AVANT et APRS ont implicitement la valeur canonique %s, lorsqu'absents.\n" +--- recode-3.6.orig/i18n/sl.po ++++ recode-3.6/i18n/sl.po +@@ -2,13 +2,13 @@ + # Copyright (C) 1996 Free Software Foundation, Inc. + # Primoz Peterlin , 1996. + # +-# $Id: recode-3.5.sl.po,v 1.2 1999/12/21 16:04:38 peterlin Exp peterlin $ ++# $Id: recode-3.6.sl.po,v 1.2 2001/06/08 10:41:42 peterlin Exp $ + # + msgid "" + msgstr "" +-"Project-Id-Version: recode 3.5\n" ++"Project-Id-Version: recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1999-12-21 17:01 MET\n" ++"PO-Revision-Date: 2001-06-08 12:41+02:00\n" + "Last-Translator: Primoz Peterlin \n" + "Language-Team: Slovenian \n" + "MIME-Version: 1.0\n" +@@ -67,11 +67,9 @@ + msgstr "" + "Ta program je prosta programska oprema; lahko ga redistribuirate in/ali\n" + "spreminjate po pogojih, doloenih v ,,GNU General Public License``, izdani\n" +-"pri Free Software Foundation; 2. izdaja (ali noveja, e razpolagate z " +-"njo).\n" ++"pri Free Software Foundation; 2. izdaja (ali noveja, e razpolagate z njo).\n" + "\n" +-"Ta program se distribuira v upanju, da je uporaben, vendar BREZ " +-"KAKRNEGAKOLI\n" ++"Ta program se distribuira v upanju, da je uporaben, vendar BREZ KAKRNEGAKOLI\n" + "JAMSTVA; vkljuno z impliciranim jamstvom prodajnosti ali uporabnosti za\n" + "izbrani namen. Za podrobnosti si oglejte ,,GNU General Public License``.\n" + "\n" +@@ -85,20 +83,13 @@ + msgstr "Poskusite ,%s %s` za dodatne informacije.\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-"Prosti ,recode` pretvarja datoteke med razlinimi kodnimi nabori in " +-"prerkovanji.\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Prosti ,recode` pretvarja datoteke med razlinimi kodnimi nabori in prerkovanji.\n" + + #: src/main.c:241 + #, c-format +-msgid "" +-"\n" +-"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" +-msgstr "" +-"\n" +-"Uporaba: %s [IZBIRA]... [ [NABOR] | ZAHTEVA [DATOTEKA]... ]\n" ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\nUporaba: %s [IZBIRA]... [ [NABOR] | ZAHTEVA [DATOTEKA]... ]\n" + + #: src/main.c:244 + msgid "" +@@ -111,13 +102,11 @@ + "obveza tudi za kratko obliko. Podobno tudi za neobvezne argumente.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -127,14 +116,11 @@ + msgstr "" + "\n" + "Seznami:\n" +-" -l, --list[=OBLIKA] izpii en ali vse kodirane nabore znakov\n" +-" -k, --known=PARI izpii nabore, ki ustrezajo podanim PAROM " +-"pretvorb\n" +-" -h, --header[=[JEZIK/]IME] izpii pretvorno tabelo z danim IMENOM v prog. " +-"JEZIKU\n" ++" -l, --list[=OBLIKA] izpii enega ali vse kodirane nabore znakov\n" ++" -k, --known=PARI izpii nabore, ki ustrezajo podanim PAROM pretvorb\n" ++" -h, --header[=[JEZIK/]IME] izpii pretvorno tabelo z danim IMENOM v prog. JEZIKU\n" + " -F, --freeze-tables izpii modul v C z vsemi pretvornimi tabelami\n" +-" -T, --find-subsets poroaj o vseh naborih, ki so podmnoica " +-"drugih\n" ++" -T, --find-subsets poroaj o vseh naborih, ki so podmnoica drugih\n" + " -C, --copyright izpii dovoljenje za uporabo in razirjanje\n" + " --help ta navodila\n" + " --version razliica programa\n" +@@ -152,8 +138,7 @@ + msgstr "" + "\n" + "Naini dela:\n" +-" -v, --verbose med potekom razlagaj korake in komentiraj " +-"napredek\n" ++" -v, --verbose med potekom razlagaj korake in komentiraj napredek\n" + " -q, --quiet, --silent brez opozoril o neobrnljivih pretvorbah\n" + " -f, --force pretvorbo izvedi, etudi ni obrnljiva\n" + " -t, --touch pretvorjena datoteka naj nosi datum pretvorbe,\n" +@@ -182,16 +167,11 @@ + msgstr "" + "\n" + "Natanneje nastavljanje:\n" +-" -s, --strict uporabi strogo pretvorbo, celo na raun izgube " +-"znakov\n" +-" -d, --diacritics pretvori samo preglaene in podobne znake za " +-"HTML/LaTeX\n" +-" -S, --source[=JEZIK] omeji pretvorbe na nize in komentarje, kot v " +-"JEZIKU\n" +-" -c, --colons nadomesti dierezo z dvopijem, ne z dvojnim " +-"narekovajem\n" +-" -g, --graphics semigrafine znake s PC pribl. nadomestimo z znaki " +-"ASCII\n" ++" -s, --strict uporabi strogo pretvorbo, celo na raun izgube znakov\n" ++" -d, --diacritics pretvori samo preglaene in podobne znake za HTML/LaTeX\n" ++" -S, --source[=JEZIK] omeji pretvorbe na nize in komentarje, kot v JEZIKU\n" ++" -c, --colons nadomesti dierezo z dvopijem, ne z dvojnim narekovajem\n" ++" -g, --graphics semigrafine znake s PC pribl. nadomestimo z znaki ASCII\n" + " -x, --ignore=NABOR pri pretvorbi se izogni navedenemu vmesnemu NABORU\n" + + #: src/main.c:296 +@@ -201,26 +181,22 @@ + "FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" + msgstr "" + "\n" +-"Izbira -l brez podane OBLIKE ali NABORA izpie seznam vseh znanih kodnih " +-"naborov\n" +-"in prerkovalnih shem. OBLIKA je lahko ,decimal` (desetika), ,octal` " +-"(osmika),\n" ++"Izbira -l brez podane OBLIKE ali NABORA izpie seznam vseh znanih kodnih naborov\n" ++"in prerkovalnih shem. OBLIKA je lahko ,decimal` (desetika), ,octal` (osmika),\n" + ",hexadecimal` (estnajstika) ali ,full` (polna), ali ena od rk ,dohf`.\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" +-"e ni doloena spremenljivka DEFAULT_CHARSET, je privzeti NABOR ,%s`.\n" ++"e ni doloena spremenljivka DEFAULT_CHARSET, se privzame NABOR,\n" ++"doloen s spremenljivkami LC_ALL, LC_CTYPE ali LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" + "Pri izbiri -k se izpiejo vsi moni startni nabori za podani ciljni nabor.\n" +@@ -229,30 +205,24 @@ + "znakov v startnem in ciljnem kodnem naboru.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" + msgstr "JEZIK je lahko ,c`, ,perl` ali ,po`; privzeto je ,c`.\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" + "ZAHTEVEK ima obliko PODZAHTEVEK[,PODZAHTEVEK]...; PODZAHTEVEK ima obliko\n" + "KODIRANJE[,KODIRANJE]...; KODIRANJE ima obliko [NABOR][/[SHEMA]]. ZAHTEVEK\n" +-"ima pogosto obliko PREJ..POTEM, kjer sta PREJ in POTEM kodirana nabora " +-"znakov.\n" ++"ima pogosto obliko PREJ..POTEM, kjer sta PREJ in POTEM kodirana nabora znakov.\n" + "Izpueni NABOR pomeni privzetega; izpuena [/SHEMA] pomeni privzeto\n" +-"prerkovalno shemo za dani NABOR. Poevnica / brez sheme pomeni brez " +-"prerkovalne\n" ++"prerkovalno shemo za dani NABOR. Poevnica / brez sheme pomeni brez prerkovalne\n" + "sheme. Podrobnosti so v prironiku.\n" + + #: src/main.c:323 +@@ -265,96 +235,83 @@ + "\n" + "e nista podana niti -i niti -p, se uporabi -p, kadar ni podana DATOTEKA, \n" + "sicer pa -i. Pretvorba vsake DATOTEKE se zapie prek izvorne razliice. e\n" +-"DATOTEKA ni podana, recode deluje kot filter med standardnim vhodom in " +-"izhodom.\n" ++"DATOTEKA ni podana, recode deluje kot filter med standardnim vhodom in izhodom.\n" + + #: src/main.c:329 +-msgid "" +-"\n" +-"Report bugs to .\n" +-msgstr "" +-"\n" +-"Sporoila o napakah javite na .\n" ++msgid "\nReport bugs to .\n" ++msgstr "\nSporoila o napakah javite na .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "Zaporedje ,%s` je dvoumno" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "Zaporedje ,%s` je neznano" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Jezik ,%s` je dvoumen" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Jezik ,%s` je neznan" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Oblika ,%s` je dvoumna" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Oblika ,%s` je neznana" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Avtor Franc,ois Pinard .\n" ++msgstr "Avtor Franc,ois Pinard .\n" + + #: src/main.c:624 +-msgid "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" +-msgstr "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + + #: src/main.c:628 + msgid "" + "This is free software; see the source for copying conditions. There is NO\n" + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" +-"To je prost program; pogoji, pod katerimi ga lahko uporabljate, " +-"razmnoujete\n" ++"To je prost program; pogoji, pod katerimi ga lahko uporabljate, razmnoujete\n" + "in razirjate so navedeni v izvorni kodi. Za program ni NOBENEGA jamstva,\n" + "niti jamstev USTREZNOSTI ZA PRODAJO ali PRIMERNOSTI ZA UPORABO.\n" + + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Znak ,%s` je neznan" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Nabor znakov ,%s` je neznan ali dvoumen" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Zahtevani argument manjka" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "Neodobravana skladnja: prosimo, uporabljajte ,%s`" ++msgstr "Neodobravana skladnja; prosimo, uporabljajte ,%s`" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "Zahteva ,%s` je napana" + + #: src/main.c:903 + #, c-format +@@ -366,19 +323,19 @@ + msgstr " opravljeno\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " neuspeno: %s v %s..%s\n" ++msgstr " neuspeno: %s v koraku ,%s..%s`\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s neuspeno: %s v %s..%s" ++msgstr "%s neuspeno: %s v koraku ,%s..%s`" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s v %s..%s" ++msgstr "%s v koraku ,%s..%s`" + + #: src/names.c:335 + #, c-format +@@ -419,12 +376,12 @@ + msgstr "Virtualni pomnilnik porabljen" + + #: src/recode.c:155 +-#, c-format, ycp-format ++#, c-format + msgid "Codes %3d and %3d both recode to %3d" + msgstr "Kodi %3d in %3d se obe preslikata v %3d" + + #: src/recode.c:169 +-#, c-format, ycp-format ++#, c-format + msgid "No character recodes to %3d" + msgstr "Noben znak se ne preslika v %3d" + +@@ -540,17 +497,11 @@ + msgstr "akalni status procesa potomca je 0x%0.2x" + + #: src/testdump.c:298 +-msgid "" +-"UCS2 Mne Description\n" +-"\n" +-msgstr "" +-"UCS2 Mne Opis\n" +-"\n" ++msgid "UCS2 Mne Description\n\n" ++msgstr "UCS2 Mne Opis\n\n" + + #~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "NABOR nima privzete vrednosti; doloite spremenljivko okolja " +-#~ "DEFAULT_CHARSET.\n" ++#~ msgstr "NABOR nima privzete vrednosti; doloite spremenljivko okolja DEFAULT_CHARSET.\n" + + #~ msgid "Ambiguous sequence `%s'" + #~ msgstr "Dvoumno zaporedje ,%s`" +@@ -613,8 +564,7 @@ + #~ msgstr "Za zdaj je izbira -s ignorirana, kadar je izbrano -g" + + #~ msgid "Hash stats: %d names using %d buckets out of %d\n" +-#~ msgstr "" +-#~ "Statistika za razpritveno tabelo: %d imen porabilo %d od %d koev\n" ++#~ msgstr "Statistika za razpritveno tabelo: %d imen porabilo %d od %d koev\n" + + #~ msgid "Internal error - strategy undecided" + #~ msgstr "Interna napaka - neodloen o strategiji" +@@ -649,8 +599,7 @@ + #~ msgid " -o, --sequence=popen same as -i (on this system)\n" + #~ msgstr " -o, --sequence=popen isto kot -I (na tem sistemu)\n" + +-#~ msgid "" +-#~ " -o, --sequence=popen use popen machinery for sequencing passes\n" ++#~ msgid " -o, --sequence=popen use popen machinery for sequencing passes\n" + #~ msgstr " -o, --sequence=popen uporabi mehanizem ,popen'\n" + + #~ msgid "" +@@ -665,22 +614,19 @@ + #~ "FILE is specified, then act as a filter and recode stdin to stdout.\n" + #~ msgstr "" + #~ " -q, --quiet, --silent brez sporoil o neobrnljivih pretvorbah\n" +-#~ " -s, --strict striktna pretvorba, tudi na kodo izgubljenih " +-#~ "znakov\n" +-#~ " -t, --touch konna datoteka naj nosi datum pretvorbe, ne " +-#~ "nastanka\n" ++#~ " -s, --strict striktna pretvorba, tudi na kodo izgubljenih znakov\n" ++#~ " -t, --touch konna datoteka naj nosi datum pretvorbe, ne nastanka\n" + #~ " -v, --verbose z razlago poteka pretvorbe\n" + #~ " -x, --ignore=NABOR izpusti NABOR pri izbiri poti pretvorbe\n" + #~ "\n" +-#~ "e ni podan -i, -o, ali -p, se privzame -p, kadar ni podana DATOTEKA, sicer " +-#~ "-i.\n" ++#~ "e ni podan -i, -o, ali -p, se privzame -p, kadar ni podana DATOTEKA, sicer -i.\n" + #~ "Vsaka DATOTEKA se pretvori ez samo sebe in unii izvirnik. e DATOTEKA\n" + #~ "ni podana, deluje kot filter in pretvarja podatke z vhoda na izhod.\n" + + #~ msgid "BEFORE and AFTER both default to `%s' when needed.\n" + #~ msgstr "e nabor PREJ ali POTEM ni podan, se nadomesti z ,%s'\n" + +-# POZOR ++#~ # POZOR + #~ msgid "" + #~ "Mandatory or optional arguments to long options are mandatory or optional\n" + #~ "for short options too.\n" +@@ -695,12 +641,10 @@ + #~ "FORMAT is a word among decimal, octal, hexadecimal or full (which may be\n" + #~ "abbreviated to one of `dohf'), it defaults to just the canonical name.\n" + #~ "With -k, possible before charsets are listed for the given after CHARSET,\n" +-#~ "both being RFC1345 charsets, with PAIRS of the form " +-#~ "`BEF1:AFT1,BEF2:AFT2,...\n" ++#~ "both being RFC1345 charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...\n" + #~ "and BEFs and AFTs being codes. All codes are given as decimal numbers.\n" + #~ msgstr "" +-#~ "Argumenti, ki so obvezni za dolge oblike izbir so obvezni tudi za kratke " +-#~ "oblike,\n" ++#~ "Argumenti, ki so obvezni za dolge oblike izbir so obvezni tudi za kratke oblike,\n" + #~ "in enako velja za neobvezne argumente.\n" + #~ "\n" + #~ " -C, --copyright obvestilo avtorskih pravicah\n" +@@ -710,18 +654,14 @@ + #~ " --help ta navodila\n" + #~ " --version verzija programa\n" + #~ "\n" +-#~ "FORMAT izpisa je eden od naslednjih: decimal, octal, hexadecimal ali full " +-#~ "(mona\n" +-#~ "je okrajava na prvo rko: dohf), privzeta izbira je samo kanonino ime " +-#~ "nabora.\n" ++#~ "FORMAT izpisa je eden od naslednjih: decimal, octal, hexadecimal ali full (mona\n" ++#~ "je okrajava na prvo rko: dohf), privzeta izbira je samo kanonino ime nabora.\n" + #~ "With -k, possible before charsets are listed for the given after CHARSET,\n" +-#~ "both being RFC1345 charsets, with PAIRS of the form " +-#~ "`BEF1:AFT1,BEF2:AFT2,...\n" ++#~ "both being RFC1345 charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...\n" + #~ "and BEFs and AFTs being codes. All codes are given as decimal numbers.\n" + + #~ msgid "" +-#~ "Option -l with no FORMAT nor CHARSET list all charsets, also see the " +-#~ "Texinfo\n" ++#~ "Option -l with no FORMAT nor CHARSET list all charsets, also see the Texinfo\n" + #~ "documentation. My preferred charsets are (each user has preferences):\n" + #~ "\n" + #~ " ascii-bs ASCII (7-bit), using backspace to apply diacritics\n" +@@ -730,10 +670,8 @@ + #~ " latin1 ISO Latin-1 8-bit extension of ASCII\n" + #~ " texte Easy French convention for transmitting email messages\n" + #~ msgstr "" +-#~ "Izbira -l brez podanih FORMAT ali NABOR d seznam vseh naborov, oglejte si " +-#~ "e\n" +-#~ "dokumentacijo v Texinfo. Moji priljubljeni nabori (vsak uporabnik ima " +-#~ "svoje):\n" ++#~ "Izbira -l brez podanih FORMAT ali NABOR d seznam vseh naborov, oglejte si e\n" ++#~ "dokumentacijo v Texinfo. Moji priljubljeni nabori (vsak uporabnik ima svoje):\n" + #~ "\n" + #~ " ascii-bs 7-bitni ASCII, z uporabo Backspace za tisk diakritinih znakov\n" + #~ " ibmpc 8-bitni nabor IBM-PC, zakljuek vrstice CR LF\n" +@@ -760,12 +698,8 @@ + #~ " -h, --header[=NAME] write C code with table NAME on stdout, then exit\n" + #~ " -i, --sequence=files use intermediate files for sequencing passes\n" + +-#~ msgid "" +-#~ "\n" +-#~ "Usage: %s [OPTION]... [BEFORE]:[AFTER] [FILE]...\n" +-#~ msgstr "" +-#~ "\n" +-#~ "Uporaba: %s [IZBIRA]... [PREJ]:[POTEM] [DATOTEKA]...\n" ++#~ msgid "\nUsage: %s [OPTION]... [BEFORE]:[AFTER] [FILE]...\n" ++#~ msgstr "\nUporaba: %s [IZBIRA]... [PREJ]:[POTEM] [DATOTEKA]...\n" + + #~ msgid "many to many" + #~ msgstr "ve v ve" +--- recode-3.6.orig/i18n/pt.po ++++ recode-3.6/i18n/pt.po +@@ -2,50 +2,50 @@ + # Copyright (C) 1996 Free Software Foundation, Inc. + # Vitor Duarte , Maio de 1996. + # Thanks to Nuno Oliveira , 1996. ++# Helder Correia , 2005. + # + msgid "" + msgstr "" +-"Project-Id-Version: GNU recode 3.4.3\n" ++"Project-Id-Version: GNU recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1996-11-25 10:00-0000\n" +-"Last-Translator: Vitor Duarte \n" +-"Language-Team: Portuguese \n" ++"PO-Revision-Date: 2005-11-13 15:20+0000\n" ++"Last-Translator: Helder Correia \n" ++"Language-Team: Portuguese \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=ISO-8859-1\n" +-"Content-Transfer-Encoding: 8-bit\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" + + #: src/main.c:142 + msgid "No error" +-msgstr "" ++msgstr "Sem erros" + + #: src/main.c:145 + msgid "Non canonical input" +-msgstr "" ++msgstr "Entrada não canónica" + + #: src/main.c:148 +-#, fuzzy + msgid "Ambiguous output" +-msgstr "O formato %s ambiguo" ++msgstr "Saída ambígua" + + #: src/main.c:151 + msgid "Untranslatable input" +-msgstr "" ++msgstr "Entrada não traduzível" + + #: src/main.c:154 + msgid "Invalid input" +-msgstr "" ++msgstr "Entrada inválida" + + #: src/main.c:157 + msgid "System detected problem" +-msgstr "" ++msgstr "O sistema detectou um problema" + + #: src/main.c:160 + msgid "Misuse of recoding library" +-msgstr "" ++msgstr "Uso incorrecto da biblioteca de recodificação" + + #: src/main.c:163 + msgid "Internal recoding bug" +-msgstr "" ++msgstr "Erro de recodificação interno" + + #: src/main.c:208 + msgid "" +@@ -63,38 +63,37 @@ + "along with this program; if not, write to the Free Software Foundation,\n" + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + msgstr "" +-"Este programa free software; pode redistribuir-lo e/ou modific-lo\n" +-"nos termos previstos na licena da GNU (GNU General Public License),\n" +-"publicada pela Free Software Foundation; de acordo com a verso 2 ou,\n" +-"se preferir, alguma mais recente.\n" +-"\n" +-"Este programa distribuido na esperana de que lhe seja til, mas\n" +-"SEM QUALQUER GARANTIA; nem mesmo a garantia implcita de COMERCIABILIDADE\n" +-"ou UTILIDADE PARA QUALQUER UTILIZAO. Para mais informaes consulte a\n" +-"GNU General Public License.\n" ++"Este programa é livre; pode redistribuí-lo e/ou modificá-lo\n" ++"nos termos previstos na Licença Pública Geral GNU,\n" ++"publicada pela Free Software Foundation; de acordo com a versão 2 ou,\n" ++"se preferir, alguma versão mais recente.\n" ++"\n" ++"Este programa é distribuído na esperança que seja útil, mas\n" ++"SEM QUALQUER GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE\n" ++"ou UTILIDADE PARA UM PROPÓSITO PARTICULAR. Para mais informações consulte a\n" ++"Licença Pública Geral GNU.\n" + "\n" +-"Deve ter recebido uma cpia da licena GNU General Public License junto\n" +-"com este programa; se assim no for, escreva para Free Software\n" ++"Deve ter recebido uma cópia da Licença Pública Geral GNU junttamente\n" ++"com este programa; se assim não for, escreva para Free Software\n" + "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, EUA.\n" + + #: src/main.c:233 + #, c-format + msgid "Try `%s %s' for more information.\n" +-msgstr "Para mais informao tente %s %s.\n" ++msgstr "Para mais informação, tente '%s %s'.\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Free 'recode' converte ficheiros entre vários conjuntos de caracteres e superfícies.\n" + + #: src/main.c:241 +-#, fuzzy, c-format ++#, c-format + msgid "" + "\n" + "Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" + msgstr "" + "\n" +-"Uso: %s [OPO]... [CHARSET]\n" ++"Utilização: %s [OPÇÃO]... [ [CONJCAR] | PEDIDO [FICHEIRO]... ]\n" + + #: src/main.c:244 + msgid "" +@@ -102,14 +101,16 @@ + "If a long option shows an argument as mandatory, then it is mandatory\n" + "for the equivalent short option also. Similarly for optional arguments.\n" + msgstr "" ++"\n" ++"Se uma opção longa mostrar um argumento como mandatório, então é igualmente\n" ++"mandatório para a versão curta. Similarmente para argumentos opcionais.\n" + + #: src/main.c:250 + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -117,6 +118,16 @@ + " --help display this help and exit\n" + " --version output version information and exit\n" + msgstr "" ++"\n" ++"Listagens:\n" ++" -l, --list[=FORMATO] listar um ou todos os conj. caracteres conhecidos e pseudónimos\n" ++" -k, --known=PARES restringir conj. caracteres de acordo com lista de PARES conhecidos\n" ++" -h, --header[=[LN/]NOME] escrever NOME tabela usando LN e sair\n" ++" -F, --freeze-tables escrever um módulo C com todas as tabelas\n" ++" -T, --find-subsets reportar conj. de caracteres subconj. de outros\n" ++" -C, --copyright exibir direitos de autor e condições de cópia\n" ++" --help exibir esta ajuda e sair\n" ++" --version exibir versão e sair\n" + + #: src/main.c:263 + msgid "" +@@ -129,18 +140,24 @@ + " -i, --sequence=files use intermediate files for sequencing passes\n" + " --sequence=memory use memory buffers for sequencing passes\n" + msgstr "" ++"\n" ++"Modos de operação:\n" ++" -v, --verbose explicar sequência de passos e relatar progresso\n" ++" -q, --quiet, --silent inibir mensagens acerca de recodificações irreversíveis\n" ++" -f, --force forçar recodificações mesmo quando irreversíveis\n" ++" -t, --touch actualizar data dos ficheiros após recodificação\n" ++" -i, --sequence=files usar ficheiros intermédios para passos sequenciais\n" ++" --sequence=memory usar memória para passos sequenciais\n" + + #: src/main.c:275 + msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" +-msgstr " -p, --sequence=pipe usar pipe para sequenciar os passos\n" ++msgstr " -p, --sequence=pipe usar pipe para sequenciar os passos\n" + + #: src/main.c:280 +-#, fuzzy + msgid " -p, --sequence=pipe same as -i (on this system)\n" +-msgstr " -p, --sequence=pipe o mesmo que -o (neste sistema)\n" ++msgstr " -p, --sequence=pipe o mesmo que -i (neste sistema)\n" + + #: src/main.c:285 +-#, fuzzy + msgid "" + "\n" + "Fine tuning:\n" +@@ -152,16 +169,13 @@ + " -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" + msgstr "" + "\n" +-" -c, --colons usa : em vez de \" para o trema\n" +-" -d, --diacritics restringir a converso aos diacrilicos do LaTeX\n" +-" -f, --force efectuar mesmo as converses irreversveis\n" +-" (ATENO: actualmente -f sempre assumido)\n" +-" -g, --graphics aproxima as caixas do IBMPC com caracteres " +-"ASCII\n" +-" -h, --header[=NAME] produzir apenas, no stdout, a tabela NAME em\n" +-" cdigo C\n" +-" -i, --sequence=files usar ficheiros intermdios para os passos " +-"sucessivos\n" ++"Afinação:\n" ++" -s, --strict usar mapeamentos severos, até perder caracteres\n" ++" -d, --diacritics converter apenas diacríticos ou afins para HTML/LaTeX\n" ++" -S, --source[=LN] limitar recodificação de expressões e comentários como para LN\n" ++" -c, --colons usar dois pontos em vez de aspas para diérese\n" ++" -g, --graphics aproximar réguas IBMPC por gráficos ASCII\n" ++" -x, --ignore=CONJCAR ignorar CONJCAR ao escolher um caminho a recodificar\n" + + #: src/main.c:296 + msgid "" +@@ -169,39 +183,47 @@ + "Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" + "FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" + msgstr "" ++"\n" ++"A opção -l sem FORMATO nem CONJCAR lista os conjuntos de caracteres e superfícies disponíveis.\n" ++"FORMATO é 'decimal', 'octal', 'hexadecimal' ou 'full' (ou um de 'dohf').\n" + + #: src/main.c:302 + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" ++"A não ser que DEFAULT_CHARSET esteja definido no ambiente, CONJCAR toma o valor\n" ++"da codificação por omissão da localização, determinado por LC_ALL, LC_CTYPE, LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" ++"Com -k, possível antes de conj. caracteres serem listados para dados após CONJCAR,\n" ++"sendo ambos tabulares, com PARES da forma `BEF1:AFT1,BEF2:AFT2,...'\n" ++"e BEFs e AFTs sendo códigos são dados como números decimais.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" +-msgstr "" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN é uma linguagem, podendo ser 'c', 'perl' ou 'po'; 'c' é predefinido.\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" ++"\n" ++"PEDIDO é SUBPEDIDO[,SUBPEDIDO]...; SUBPEDIDO é CODIFICAÇÃO[..CODIFICAÇÃO]...\n" ++"CODIFICAÇÃO é [CONJCAR][/[SUPERFÍCIE]]...; PEDIDO pode parecer-se com ANTES..DEPOIS,\n" ++"com ANTES e DEPOIS sendo conjuntos de caracteres. Um CONJCAR omitido implica o conjunto\n" ++"habitual; um [/SURFACE]... omitido implica as superfćies para CONJCAR; um /\n" ++"com um nome de superfície vazio significa ausência de superfícies. Veja o manual manual.\n" + + #: src/main.c:323 + msgid "" +@@ -210,95 +232,93 @@ + "Each FILE is recoded over itself, destroying the original. If no\n" + "FILE is specified, then act as a filter and recode stdin to stdout.\n" + msgstr "" ++"\n" ++"Se nem -i nem -p forem dados, presume-se -p sem FICHEIRO, senão -i.\n" ++"Cada FICHEIRO é recodificado sobre si próprio, destruindo-se o original. Se\n" ++"FICHEIRO não for especificado, actue-se como um filtro e recidifique-se a entrada padrão para a saída padrão.\n" + + #: src/main.c:329 +-#, fuzzy + msgid "" + "\n" + "Report bugs to .\n" + msgstr "" + "\n" +-"Reporte os bugs para .\n" ++"Reporte erros para .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "A sequência '%s' é ambígua" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "A sequência '%s' é desconhecida" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "A linguagem '%s' é ambígua" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "A linguagem '%s' é desconhecida" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "O formato '%s' é ambíguo" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "O formato '%s' é desconhecido" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Escrito por Franc,ois Pinard .\n" ++msgstr "Escrito por François Pinard .\n" + + #: src/main.c:624 +-#, fuzzy + msgid "" + "\n" + "Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + msgstr "" + "\n" +-"Copyright (C) 1990, 1992, 1993, 1994, 1996 Free Software Foundation, Inc.\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + + #: src/main.c:628 + msgid "" + "This is free software; see the source for copying conditions. There is NO\n" + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" +-"Este programa free software; veja o cdigo fonte para saber em que\n" +-"condies o pode copiar. SEM GARANTIA; nem mesmo de COMERCIABILIDADE ou\n" +-"de UTILIDADE PARA QUALQUER UTILIZAO.\n" ++"Este programa é livre; veja o código fonte para saber as condições de cópia.\n" ++"NÃO HÁ GARANTIA; nem mesmo de COMERCIABILIDADE ou de UTILIDADE PARA UM PROPÓSITO PARTICULAR.\n" + + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "O símbolo '%s' é desconhecido" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "O conjunto de caracteres '%s' é desconhecido ou ambíguo" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Argumento requerido em falta" + + #: src/main.c:797 + #, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "" ++msgstr "A sintaxe está desaprovada, por favor prefira '%s'" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "O pedido '%s' é erróneo" + + #: src/main.c:903 + #, c-format +@@ -312,359 +332,181 @@ + #: src/main.c:954 + #, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr "" ++msgstr " falhou: %s no passo '%s..%s'\n" + + #: src/main.c:961 + #, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "" ++msgstr "%s falhou: %s no passo '%s..%s'" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%spara a sequncia %s.%s" ++msgstr "%s no passo '%s..%s'" + + #: src/names.c:335 + #, c-format + msgid "Charset %s already exists and is not %s" +-msgstr "O conjunto de caracteres %s j existe e no %s" ++msgstr "O conjunto de caracteres %s j�existe e n� �%s" + + #: src/names.c:831 +-#, fuzzy, c-format ++#, c-format + msgid "Cannot list `%s', no names available for this charset" +-msgstr "" +-" impossvel listar %s. No existem nomes no `RFC 1345' para os caracteres" ++msgstr "Não é possível listar '%s', sem nomes para este conjunto de caracteres" + + #. code counter + #. expected value for code counter + #. insert a while line before printing + #. Print the long table according to explode data. + #: src/names.c:984 src/names.c:1030 +-#, fuzzy, c-format ++#, c-format + msgid "Dec Oct Hex UCS2 Mne %s\n" +-msgstr "dec oct hex ch %s\n" ++msgstr "Dec Oct Hex UCS2 Mne %s\n" + + #: src/names.c:1049 +-#, fuzzy, c-format ++#, c-format + msgid "Sorry, no names available for `%s'" +-msgstr "Desculpe, no existem nomes `RFC 1345' para %s" ++msgstr "Desculpe, sem nomes para '%s'" + + #: src/outer.c:125 + #, c-format + msgid "Resurfacer set more than once for `%s'" +-msgstr "" ++msgstr "Repolidor definido mais do que uma vez para '%s'" + + #: src/outer.c:133 + #, c-format + msgid "Unsurfacer set more than once for `%s'" +-msgstr "" ++msgstr "Despolidor definido mais do que uma vez para '%s'" + + #: src/recode.c:115 src/recode.c:127 + msgid "Virtual memory exhausted" +-msgstr "" ++msgstr "Memória virtual esgotada" + + #: src/recode.c:155 + #, c-format, ycp-format + msgid "Codes %3d and %3d both recode to %3d" +-msgstr "Ambos os cdigos %3d e %3d so convertidos em %3d" ++msgstr "Ambos os c�igos %3d e %3d s� convertidos em %3d" + + #: src/recode.c:169 + #, c-format, ycp-format + msgid "No character recodes to %3d" +-msgstr "Nenhum carcter convertido em %3d" ++msgstr "Nenhum car�ter �convertido em %3d" + + #: src/recode.c:170 + msgid "Cannot invert given one-to-one table" +-msgstr "No se pode inverter a tabela de um-para-um dada" ++msgstr "N� se pode inverter a tabela de um-para-um dada" + + #: src/recode.c:224 src/recode.c:236 + #, c-format + msgid "Following diagnostics for `%s' to `%s'" +-msgstr "Os diagnosticos seguintes aplicam-se de %s para %s" ++msgstr "Os diagnosticos seguintes aplicam-se de %s para %s" + + #: src/recode.c:229 src/recode.c:241 +-#, fuzzy, c-format ++#, c-format + msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" +-msgstr "Par n %d: { %3d, %3d } em conflito com { %3d, %3d }" ++msgstr "Par nº %d: <%3d, %3d> em conflito com <%3d, %3d>" + + #: src/recode.c:272 + msgid "Cannot complete table from set of known pairs" +-msgstr "No posso completar a tabela a partir do conjunto de pares conhecidos" ++msgstr "Não é possível completar a tabela a partir do conjunto de pares conhecidos" + + #: src/recode.c:497 + msgid "Identity recoding, not worth a table" +-msgstr "A converso no necessita de tabela" ++msgstr "Recodificação identidade, tabela desnecessária" + + #: src/recode.c:504 + msgid "Recoding is too complex for a mere table" +-msgstr "Converso demasiado complexa para uma simples tabela" ++msgstr "A recodificação é demasiado complexa para uma mera tabela" + + #. Print the header of the header file. + #: src/recode.c:536 +-#, fuzzy, c-format ++#, c-format + msgid "%sConversion table generated mechanically by Free `%s' %s" +-msgstr "%sTabela de converso gerada automaticamente por GNU %s %s" ++msgstr "%sTabela de conversão gerada mecanicamente por Free '%s' %s" + + #: src/recode.c:538 + #, c-format + msgid "%sfor sequence %s.%s" +-msgstr "%spara a sequncia %s.%s" ++msgstr "%spara a sequência %s.%s" + + #: src/recode.c:744 + msgid "No table to print" +-msgstr "Nenhuma tabela a imprimir" ++msgstr "Nenhuma tabela para exibir" + + #: src/request.c:34 + msgid "reversible" +-msgstr "reversvel" ++msgstr "reversível" + + #: src/request.c:36 +-#, fuzzy, c-format ++#, c-format + msgid "%s to %s" +-msgstr "%spara a sequncia %s.%s" ++msgstr "%s para %s" + + #: src/request.c:37 src/request.c:39 + msgid "byte" +-msgstr "" ++msgstr "byte" + + #: src/request.c:38 src/request.c:40 + msgid "ucs2" +-msgstr "" ++msgstr "ucs2" + + #: src/request.c:38 src/request.c:40 +-#, fuzzy + msgid "variable" +-msgstr "reversvel" ++msgstr "variável" + + #: src/request.c:111 + msgid "*Unachievable*" +-msgstr "*Impossvel*" ++msgstr "*Impossível*" + + #: src/request.c:113 + msgid "*mere copy*" +-msgstr "*simples cpia*" ++msgstr "*mera cópia*" + + #: src/request.c:246 + msgid "Virtual memory exhausted!" +-msgstr "" ++msgstr "Memória virtual esgotada!" + + #: src/request.c:265 + msgid "Step initialisation failed" +-msgstr "" ++msgstr "A inicialização falhou" + + #: src/request.c:272 + msgid "Step initialisation failed (unprocessed options)" +-msgstr "" ++msgstr "A inicialização falhou (opções não processadas)" + + #: src/request.c:568 + #, c-format + msgid "Request: %s\n" +-msgstr "" ++msgstr "Pedido: %s\n" + + #: src/request.c:720 + #, c-format + msgid "Shrunk to: %s\n" +-msgstr "" ++msgstr "Diminuição para: %s\n" + + #: src/request.c:823 src/request.c:932 + #, c-format + msgid "Unrecognised surface name `%s'" +-msgstr "" ++msgstr "Nome de superfície '%s' não reconhecido" + + #: src/request.c:903 +-#, fuzzy, c-format ++#, c-format + msgid "No way to recode from `%s' to `%s'" +-msgstr " impossvel passar de %s para %s" ++msgstr "Não é possível recodificar de '%s' para '%s'" + + #: src/request.c:1013 + msgid "Expecting `..' in request" +-msgstr "" ++msgstr "À espera de '..' no pedido" + + #: src/task.c:826 src/task.c:1002 + #, c-format + msgid "Child process wait status is 0x%0.2x" +-msgstr "O processo filho terminou com estado 0x%0.2x" ++msgstr "O estado de espera do processo filho é 0x%0.2x" + + #: src/testdump.c:298 + msgid "" + "UCS2 Mne Description\n" + "\n" + msgstr "" +- +-#~ msgid "Ambiguous sequence `%s'" +-#~ msgstr "A sequncia %s ambgua" +- +-#~ msgid "Unknown sequence `%s'" +-#~ msgstr "Sequncia %s desconhecida" +- +-#~ msgid "Ambiguous language `%s'" +-#~ msgstr "Linguagem %s ambgua" +- +-#~ msgid "Unknown language `%s'" +-#~ msgstr "Lingua %s desconhecida" +- +-#~ msgid "Ambiguous format `%s'" +-#~ msgstr "O formato %s ambiguo" +- +-#~ msgid "Unknown format `%s'" +-#~ msgstr "Formato %s desconhecido" +- +-#~ msgid "Hash stats: %d names using %d buckets out of %d\n" +-#~ msgstr "Estatsticas de disperso: %d nomes, usando %d de %d posies\n" +- +-#~ msgid "Currently, -s is ignored when -g is selected" +-#~ msgstr "Actualmente, -s ignorado quando -g seleccionado" +- +-#~ msgid "one to one" +-#~ msgstr "de um para um" +- +-#~ msgid "one to many" +-#~ msgstr "de um para vrios" +- +-#~ msgid "many to one" +-#~ msgstr "de vrios para um" +- +-#~ msgid "many to many" +-#~ msgstr "de vrios para vrios" +- +-#~ msgid "MAX_CHARSETS is too small" +-#~ msgstr "MAX_CHARSETS demasiado pequeno" +- +-#~ msgid "Ambiguous charset or encoding `%s'" +-#~ msgstr "Caracteres ou codificao %s ambiguos" +- +-#~ msgid "Unknown charset or encoding `%s'" +-#~ msgstr "Conjunto de caracteres ou codificao %s desconhecido" +- +-#~ msgid "Simplified to: %s\n" +-#~ msgstr "Reduzido a: %s\n" +- +-#~ msgid "Unbalanced quotes in request" +-#~ msgstr "Plicas desemparelhadas no pedido" +- +-#~ msgid "Illegal backslash" +-#~ msgstr "Barra invertida ilegal" +- +-#~ msgid "Internal error - strategy undecided" +-#~ msgstr "Erro interno - estratgia no decidvel" +- +-#~ msgid "ONE to SAME" +-#~ msgstr "UM para o MESMO" +- +-#~ msgid "steps: %d" +-#~ msgstr "passos: %d" +- +-#~ msgid ", %d saved by merging" +-#~ msgstr ", %d gravado por fuso" +- +-#~ msgid " UNACHIEVABLE\n" +-#~ msgstr " IMPOSSVEL\n" +- +-#~ msgid "Cannot auto check the ignored charset" +-#~ msgstr "" +-#~ "Verificao automtica do conjunto de caracteres ignorados impossvel" +- +-#~ msgid "Cannot auto check on %s" +-#~ msgstr "Verificao automtica em %s impossvel" +- +-#~ msgid "" +-#~ "Mandatory or optional arguments to long options are mandatory or optional\n" +-#~ "for short options too.\n" +-#~ "\n" +-#~ " -C, --copyright display Copyright and copying conditions\n" +-#~ " -a, --auto-check report about some or all recoding paths, then exit\n" +-#~ " -l, --list[=FORMAT] list one or all known charsets\n" +-#~ " -k, --known=PAIRS restrict charsets according to known PAIRS list\n" +-#~ " --help display this help and exit\n" +-#~ " --version output version information and exit\n" +-#~ "\n" +-#~ "FORMAT is a word among decimal, octal, hexadecimal or full (which may be\n" +-#~ "abbreviated to one of `dohf'), it defaults to just the canonical name.\n" +-#~ "With -k, possible before charsets are listed for the given after CHARSET,\n" +-#~ "both being RFC1345 charsets, with PAIRS of the form " +-#~ "`BEF1:AFT1,BEF2:AFT2,...\n" +-#~ "and BEFs and AFTs being codes. All codes are given as decimal numbers.\n" +-#~ msgstr "" +-#~ "Os argumentos obrigatrios ou opcionais na forma longa das opes, tambm " +-#~ "oso nas respectivas formas abreviadas.\n" +-#~ "\n" +-#~ " -C, --copyright afixar os direitos e condies de cpia\n" +-#~ " -a, --auto-check verificar os passos para a converso e terminar\n" +-#~ " -l, --list[=FORMAT] listar os conjuntos de caracteres conhecidos\n" +-#~ " -k, --known=PAIRES restringir os conjuntos de caracteres com PAIRES\n" +-#~ " --help afixar esta ajuda e terminar\n" +-#~ " --version afixar a verso do programa e terminar\n" +-#~ "\n" +-#~ "FORMAT decimal, octal, hexadecimal ou full (que pode abreviar\n" +-#~ "usando uma letra de `dohf'), se omitido, o nome cannico assumido.\n" +-#~ "Com -k, so listados os caracteres possveis para cada CHARSET de sada,\n" +-#~ "de acordo com o RFC1345, com PAIRES da forma BEF1:AFT1,BEF2:AFT2,...\n" +-#~ "sendo BEFs e AFTs os respectivos cdigos em notao decimal.\n" +- +-#~ msgid "" +-#~ "Option -l with no FORMAT nor CHARSET list all charsets, also see the " +-#~ "Texinfo\n" +-#~ "documentation. My preferred charsets are (each user has preferences):\n" +-#~ "\n" +-#~ " ascii-bs ASCII (7-bit), using backspace to apply diacritics\n" +-#~ " ibmpc IBM-PC 8-bit characters, with proper newlines\n" +-#~ " latex LaTeX coding of foreign and diacriticized characters\n" +-#~ " latin1 ISO Latin-1 8-bit extension of ASCII\n" +-#~ " texte Easy French convention for transmitting email messages\n" +-#~ msgstr "" +-#~ "A opo -l sem FORMAT nem CHARSET lista todos os conjuntos de caracteres\n" +-#~ "(ver manual). Alguns conjuntos de caracteres bastante comuns:\n" +-#~ "\n" +-#~ " ascii-bs ASCII (7-bit), usando backspace para a acentuao\n" +-#~ " ibmpc IBM-PC (8-bit), com CR LF a marcar o fim das linhas\n" +-#~ " latex codificao LaTeX para os caracteres acentuados e outros\n" +-#~ " latin1 ISO Latin-1 8-bits (extenso do ASCII)\n" +-#~ " texte convenso Easy French para mensagens email\n" +- +-#~ msgid "" +-#~ "\n" +-#~ "Usage: %s [OPTION]... [BEFORE]:[AFTER] [FILE]...\n" +-#~ msgstr "" +-#~ "\n" +-#~ "Uso: %s [OPO]... [BEFORE]:[AFTER] [FILE]...\n" +- +-#~ msgid "" +-#~ " -o, --sequence=popen use popen machinery for sequencing passes\n" +-#~ msgstr " -o, --sequence=popen usar popen para sequenciar os passos\n" +- +-#~ msgid " -o, --sequence=popen same as -i (on this system)\n" +-#~ msgstr " -o, --sequence=popen o mesmo que -i (neste sistema)\n" +- +-#~ msgid "" +-#~ " -q, --quiet, --silent inhibit messages about irreversible recodings\n" +-#~ " -s, --strict use strict mappings, even loose characters\n" +-#~ " -t, --touch touch the recoded files after replacement\n" +-#~ " -v, --verbose explain sequence of steps and report progress\n" +-#~ " -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" +-#~ "\n" +-#~ "If none of -i, -o and -p are given, presume -p if no FILE, else -i.\n" +-#~ "Each FILE is recoded over itself, destroying the original. If no\n" +-#~ "FILE is specified, then act as a filter and recode stdin to stdout.\n" +-#~ msgstr "" +-#~ " -q, --quiet, --silent no afixar mensagens sobre converses " +-#~ "irreversveis\n" +-#~ " -s, --strict converso estrita, podendo perder alguns " +-#~ "caracteres\n" +-#~ " -t, --touch actualizar a hora dos ficheiros processados\n" +-#~ " -v, --verbose afixar a sequncia de passos e relatar o " +-#~ "progresso\n" +-#~ " -x, --ignore=CHARSET ignorar CHARSET na escolha da sequncia de passos\n" +-#~ "\n" +-#~ "Na ausncia de -i, -o e -p, assumir -i se no der FILE, ou ento -p.\n" +-#~ "Cada FILE convertido para ele nesmo, destruindo o original. Se no " +-#~ "indicar\n" +-#~ "qualquer FILE, actuar como um filtro convertendo do stdin para stdout.\n" +- +-#~ msgid "BEFORE and AFTER both default to `%s' when needed.\n" +-#~ msgstr "BEFORE e AFTER so ambos assumidos como %s quando necessrio.\n" +- +-#~ msgid "%s: Recoding is not reversible" +-#~ msgstr "%s: Converso irreversvel" +- +-#~ msgid "Recoding is not reversible" +-#~ msgstr "Converso irreversvel" ++"UCS2 Mne Descrição\n" ++"\n" +--- recode-3.6.orig/i18n/vi.po ++++ recode-3.6/i18n/vi.po +@@ -0,0 +1,512 @@ ++# Vietnamese translation for recode-3.6. ++# Copyright (C) 2005 Free Software Foundation, Inc. ++# Clytie Siddall , 2005. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2005-02-20 18:44+0950\n" ++"Last-Translator: Clytie Siddall \n" ++"Language-Team: Vietnamese \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "Không có lỗi" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Dữ liệụ gõ không đúng tiêu chuẩn" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Dữ liệu xuất là mơ hồ" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Dữ liệu gõ không dịch được" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Dữ liệu gõ không hợp lệ" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "Hệ thống mới gặp lỗi" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "Không sử dụng thư viện mã hóa lại cho đúng" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "Lỗi mã hóa lại nội bộ" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"Chương trình này là phần mềm tự do; bạn có thể phân phối và/hay sửa đổí\n" ++"nó với điều kiện cua Quyền Công Chung Gnu (GPL) như được xuất do\n" ++"Free Software Foundation; hoặc phiên bản 2, hoặc (tùy chọn)\n" ++"bất cứ phiên bản sau nào.\n" ++"\n" ++"Chúng tôi phân phối chương trình này vì mong nó có ích, nhưng\n" ++"không bảo đảm gì cả, không bảo đảm một cách ngụ ý\n" ++"khả năng bán hay khả năng làm việc dứt khoát. Hãy xem\n" ++"Quyền Công Chung Gnu để tim thấy chi tiết thêm.\n" ++"\n" ++"Bạn nên được nhận một bản Quyền Công Chung Gnu với\n" ++"chương trình này; nếu không thì hãy viết thư cho Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA (Mỹ).\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Thử lệnh `%s %s' để tìm thấy thông tin thêm.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Chương trình `recode' (mã hóa lại) tự do thì chuyển đổi tập tin giữa nhiều bộ ký tự và mặt khác nhau.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"Cách sử dụng: %s [TÙY_CHỌN]... [ [BỘ_KÝ_TỰ] | LỜI_YÊU_CẦU [TẬP_TIN]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Nếu tùy chọn dài phải có đối số thì tùy chọn ngắn thích hợp cũng vậy.\n" ++"Đối với đối số tùy chọn thì cách giống nhau.\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Danh sách:\n" ++" -l, --list[=DẠNG] _ghi danh sach_ một hay tất cả bộ ký tự và biệt hiệu được biết\n" ++" -k, --known=CẶP hạn chế bộ ký tự theo danh sách CẶP _được biết_\n" ++" -h, --header[=[NGÔN_NGỮ/]TÊN] ghi TÊN bảng ra thiết bị xuất chuẩn bằng sử dụng ngôn ngữ ấy rồi thoát (_đầu đề_)\n" ++" -F, --freeze-tables ghi ra mô-đun C chứa tất cả _bảng_ (_làm đông đặc_)\n" ++" -T, --find-subsets thông báo tât cả bộ ký tự là _nhóm phụ_ của bộ khác (_tìm_)\n" ++" -C, --copyright hiển thị các điều kiện _bản quyền_ và sao chép\n" ++" --help hiển thị _trợ giúp_ này rồi thoát\n" ++" --version xuất thông tin _phiên bản_ rồi thoát\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Chế độ thi hành:\n" ++" -v, --verbose giải thích dãy bước và thông báo tiến trình (_chi tiết_)\n" ++" -q, --quiet, --silent thu hồi các thông điệp về việc mã hóa lại không hoàn tác (_im_)\n" ++" -f, --force _buộc_ tất cả việc mã hóa lại ngay cả khi không thể hoàn tác\n" ++" -t, --touch _sờ_ mọi tập tin được mã hóa lại sau khi thay thế\n" ++" -i, --sequence=files sử dụng _tâp tin_ trung cấp cho việc _sắp xếp_ \n" ++" --sequence=memory sử dụng bộ đệm _nhớ_ cho việc _sắp xếp_\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=pipe sử dụng thiết bị _ống_ cho việc _sắp xếp_\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe bằng cờ -i (trên hệ điều hành này)\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Điều hưởng tinh:\n" ++" -s, --strict sử dụng ánh xạ _chặt chẽ_, ngay cả ký tự phóng\n" ++" -d, --diacritics chuyển đổi chỉ _dấu phụ_ hay điều như nhau đối với HTML/LaTeX\n" ++" -S, --source[=NGÔN_NGỮ] hạn chế việc ma hóa lại nên chỉ xử lý chuỗi và chú thích như ngôn ngữ ấy (_nguồn_)\n" ++" -c, --colons sử dụng _dấu hai chấm_ thay thế dấu nháy kép cho dấu tách đôi\n" ++" -g, --graphics ước các thước đo IBMPC bằng _đồ họa_ ASCII\n" ++" -x, --ignore=BÔ_KÝ_TỰ _bỏ qua_ bộ ký tự ấy khi chọn đường dẫn mã hóa lại\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"Khi tùy chọn -l không có DẠNG hay BỘ KÝ TỰ thi ghi danh sách tất cả bộ ký tự và mặt sẵn sàng.\n" ++"DẠNG là `decimal' (thập phân), `octal' (bát phân), `hexadecimal' (thập lục phân) hay `full' (toàn) (hay một của chữ đầu `dohf').\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"Nếu chưa lập BỘ_KÝ_TỰ_MẶC_ĐỊNH trong môi trường thì LC_ALL, LC_CTYPE, LANG\n" ++"quyết định biên mã phụ thuộc vào miền địa phương, là BỘ_KÝ_TỰ mặc định\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Có thể sử dụng tùy chọn -k trước khi ghi danh sách bộ ký tự sau BỘ_KÝ_TỰ,\n" ++"cả hai bộ ký tự ấy có dạng bảng, có mọi đôi dạng `BEF1:AFT1,BEF2:AFT2,...'\n" ++"và cả hai BEF và AFT là mã dạng số thập phân.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN hay NGÔN_NGỮ là một ngôn ngữ, có thể `c', `perl' hay `po'; còn `c' là mặc định.\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"LỜI_YÊU_CẦU là PHỤ_LỜI_YÊU_CẦU[,PHỤ_LỜI_YÊU_CẦU]...;\n" ++"PHỤ_LỜI_YÊU_CẦU là BIÊN_MÃ [..BIÊN_MÃ]... BIÊN_MÃ là [BỘ_KÝ_TỰ][/[MẶT]]...;\n" ++"LỜI_YÊU_CẦU thường hình như TRƯỚC..SAU, mà cả hai TRƯỚC và SAU là bô ký tự.\n" ++"Khi không nhập BỘ_KÝ_TỰ nên sử dụng bộ ký tự thường; khi không nhập [/MẶT]...\n" ++"nên sử dụng những mặt ngụ ý cho BỘ_KÝ_TỰ; ký tự / có tên mặt trống có nghĩa là\n" ++"không có mặt nào. Hãy xem sổ hướng dẫn.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Nếu chưa nhận -i và -p thì giả sử -p nếu không có TẬP_TIN, nếu có thì -i.\n" ++"Sẽ mã hóa lại mỗi TẬP_TIN trên mình nên xóa bỏ điều trước. Nếu chưa ghi rõ TẬP_TIN\n" ++"thì thay quyền trình lọc và mã hóa lại dữ liệu gõ chuẩn ra thiết bị xuất chuẩn.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Hãy thông báo lỗi cho .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "Dãy `%s' mơ hồ" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "Chưa biết dãy `%s' " ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "Ngôn ngữ `%s' mơ hồ" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "Chưa biết ngôn ngữ `%s'" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "Dạng `%s' mơ hồ" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "Chưa biết dạng `%s' " ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Tác giả: François Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Bản quyền (C) năm 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Đây là phần mềm tự do; hãy xem mã nguồn để thấy điều kiện sao chép.\n" ++"Không bảo đảm gì cả, dù khả năng bán hay khả năng làm việc dứt khoát.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "Chưa biết ký hiệu `%s' " ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "Bộ ký tự `%s' là chưa được biệt hoặc mơ hồ" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Thiếu đốí số bắt buộc" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Phản đối cú pháp ấy, hãy sử dụng `%s' thay thế" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "Lời yêu cầu `%s' không đúng" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "Đang mã hóa lại %s..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " xong rồi\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " không xong được: %s trong bước `%s..%s'\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s không xong được: %s trong bước `%s..%s'" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s trong bước `%s..%s'" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "Bộ ký tự %s tồn tại rồi, không là %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "Không ghi `%s' được vì không có tên nào cho bộ ký tự này" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Hệ2 Hệ8 Hệ16 UCS2 Nhớ %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "Tiếc là không có tên nào cho `%s'" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "Đã lập việc tạo mặt lại hơn một lần cho `%s'" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "Đã lập việc bỏ mặt hơn một lần cho `%s'" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Hết bộ nhớ ảo rồì" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "Có mã hóa lại cả hai mã %3d và %3d thành %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "Không mã hóa lại ký tự nào thành %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "Không đảo được bảng một-đối-một đã cho" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "Đang theo phương pháp chẩn đoán cho `%s' đến `%s'" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "Số cặp %d: <%3d, %3d> xung đột với <%3d, %3d>" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "Không thể xong tạo bảng từ bộ cặp được biết" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Việc mã hóa lại chỉ giống hệt, không cần bảng toàn" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Việc mã hóa lại quá phức tạp đối với bảng" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sBảng chuyển đổi được tạo ra tự động do Free (Tự do) `%s' %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%sđối với dãy %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Không có bảng nào để in" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "có thể hoàn tác" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s thành %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "byte" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "biến đổi" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Không xong đươc*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*chỉ bản sao*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Hết bộ nhớ ảo rồi." ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "Không khởi động bước được" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "Không khởi động bước được (chưa xử lý tùy chọn)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Lời yêu cầu: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "Đã co lại cho: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Chưa chấp nhận tên mặt `%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "Không có cách mã hóa lại tư `%s' sang `%s'" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "Đang ngờ `..' trong lời yêu cầu" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "Trạng thái đời của xử lý con là 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 Nhớ Mô tả\n" ++"\n" +--- recode-3.6.orig/i18n/gl.po ++++ recode-3.6/i18n/gl.po +@@ -4,9 +4,9 @@ + # + msgid "" + msgstr "" +-"Project-Id-Version: recode 3.5\n" ++"Project-Id-Version: recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 2000-05-06 01:44+02:00\n" ++"PO-Revision-Date: 2001-06-09 17:28+0200\n" + "Last-Translator: Jacobo Tarro Barreiro \n" + "Language-Team: Galician \n" + "MIME-Version: 1.0\n" +@@ -81,20 +81,13 @@ + msgstr "Escriba `%s %s' para obter mis informacin.\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-"O `recode' libre convirte ficheiros entre varios xogos de caracteres e " +-"superficies.\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "O `recode' libre convirte ficheiros entre varios xogos de caracteres e superficies.\n" + + #: src/main.c:241 + #, c-format +-msgid "" +-"\n" +-"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" +-msgstr "" +-"\n" +-"Uso: %s [OPCIN]... [ [XOGO-DE-CARACTERES] | PETICIN [FICHEIRO]... ]\n" ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\nUso: %s [OPCIN]... [ [XOGO-DE-CARACTERES] | PETICIN [FICHEIRO]... ]\n" + + #: src/main.c:244 + msgid "" +@@ -104,18 +97,15 @@ + msgstr "" + "\n" + "Se unha opcin longa amosa un parmetro como obrigatorio, entn tamn \n" +-"obrigatorio para a opcin curta equivalente. Do mesmo xeito para " +-"parmetros\n" ++"obrigatorio para a opcin curta equivalente. Do mesmo xeito para parmetros\n" + "opcionais.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -125,15 +115,13 @@ + msgstr "" + "\n" + "Listados:\n" +-" -l, --list[=FORMATO] listar un ou tdolos xogos de caracteres " +-"coecidos\n" +-" -k, --known=PARES restrinxi-los xogos de acordo coa lista de " +-"PARES\n" ++" -l, --list[=FORMATO] listar un ou tdolos xogos de caracteres e alias\n" ++" coecidos\n" ++" -k, --known=PARES restrinxi-los xogos de acordo coa lista de PARES\n" + " coecidos\n" + " -h, --header[=[LN/]NOME] escribi-la tboa NOME na sada estndar usando\n" + " LN, e logo sair\n" +-" -F, --freeze-tables escribir un mdulo en C que contn tdalas " +-"tboas\n" ++" -F, --freeze-tables escribir un mdulo en C que contn tdalas tboas\n" + " -T, --find-subsets informar dos xogos que son subconxuntos doutros\n" + " -C, --copyright amosa-lo copyright e as condicins de copia\n" + " --help amosar esta axuda e sair\n" +@@ -160,14 +148,12 @@ + " reversibles\n" + " -t, --touch toca-los ficheiros recodificados despois de\n" + " cambialos\n" +-" -i, --sequence=files usar ficheiros intermedios para pasos " +-"secuenciais\n" ++" -i, --sequence=files usar ficheiros intermedios para pasos secuenciais\n" + " --sequence=memory usa-la memoria para pasos secuenciais\n" + + #: src/main.c:275 + msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" +-msgstr "" +-" -p, --sequence=pipe usar canalizacins para pasos secuenciais\n" ++msgstr " -p, --sequence=pipe usar canalizacins para pasos secuenciais\n" + + #: src/main.c:280 + msgid " -p, --sequence=pipe same as -i (on this system)\n" +@@ -188,13 +174,10 @@ + "Axustes finos:\n" + " -s, --strict usar mapeados estrictos, incluso perder caracteres\n" + " -d, --diacritics converter s diacrticos ou similares para HTML/LaTeX\n" +-" -S, --source[=LN] limita-la recodificacin a cadeas e comentarios para " +-"LN\n" +-" -c, --colon usar dous puntos no canto de comias dobres para " +-"direse\n" ++" -S, --source[=LN] limita-la recodificacin a cadeas e comentarios para LN\n" ++" -c, --colon usar dous puntos no canto de comias dobres para direse\n" + " -g, --graphics aproxima-las lias de IBMPC con grficos ASCII\n" +-" -x, --ignore=XOGO ignora-lo XOGO ao escoller unha rota de " +-"recodificacin\n" ++" -x, --ignore=XOGO ignora-lo XOGO ao escoller unha rota de recodificacin\n" + + #: src/main.c:296 + msgid "" +@@ -208,20 +191,15 @@ + "letra entre `dofh'.\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" +-msgstr "" +-"A menos que se estableza a variable DEFAULT_CHARSET, XOGO `%s' se non se " +-"indica o contrario.\n" ++msgstr "A menos que se estableza a variable de ambiente DEFAULT_CHARSET, XOGO o do `locale'.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" + "Con -k, os posibles xogos iniciais lstanse para o XOGO final indicado,\n" +@@ -229,31 +207,25 @@ + "e os cdigos INI e FIN dndose coma nmeros decimais.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" + msgstr "LN unha linguaxe, pode ser `c', `perl' ou `po'; `c' por defecto.\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" + "PETICIN SUBPETICIN[,SUBPETICIN]...; SUBPETICIN \n" + "CODIFICACIN[..CODIFICACIN]...; CODIFICACIN [XOGO][/[SUPERFICIE]]...;\n" + "PETICIN adoita parecer INICIAL..FINAL, sendo INICIAL e FINAL uns xogos de\n" +-"caracteres. Se non se indica un XOGO tmase o xogo normal; se non se " +-"indica\n" ++"caracteres. Se non se indica un XOGO tmase o xogo normal; se non se indica\n" + "unha [/SUPERFICIE]... tmanse as superficies implicadas en XOGO; cunha /\n" +-"cun nome de superficie baleiro non se toma ningunha superficie. Lea o " +-"manual.\n" ++"cun nome de superficie baleiro non se toma ningunha superficie. Lea o manual.\n" + + #: src/main.c:323 + msgid "" +@@ -263,98 +235,84 @@ + "FILE is specified, then act as a filter and recode stdin to stdout.\n" + msgstr "" + "\n" +-"Se non se indica -i nin -p, suponse -p se non se indica un FICHEIRO, senn " +-"-i.\n" ++"Se non se indica -i nin -p, suponse -p se non se indica un FICHEIRO, senn -i.\n" + "Cada FICHEIRO recodifcase sobre si mesmo, destrundose o orixinal. Se non\n" + "se indica un FICHEIRO, traballa coma un filtro e recodifica stdin a stdout.\n" + + #: src/main.c:329 +-msgid "" +-"\n" +-"Report bugs to .\n" +-msgstr "" +-"\n" +-"Informe dos erros en .\n" ++msgid "\nReport bugs to .\n" ++msgstr "\nInforme dos erros en .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "A secuencia `%s' ambigua" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "A secuencia `%s' descoecida" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "A linguaxe `%s' ambigua" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "A linguaxe `%s' descoecida" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "O formato `%s' ambiguo" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "O formato `%s' descoecido" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Escrito por Franois Pinard .\n" ++msgstr "Escrito por Franois Pinard .\n" + + #: src/main.c:624 +-msgid "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" +-msgstr "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + + #: src/main.c:628 + msgid "" + "This is free software; see the source for copying conditions. There is NO\n" + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" +-"Isto software libre; vexa o cdigo fonte polas condicins de copia. NON " +-"hai\n" +-"garanta; nin sequera de COMERCIABILIDADE ou APTITUDE PARA UN FIN " +-"DETERMINADO.\n" ++"Isto software libre; vexa o cdigo fonte polas condicins de copia. NON hai\n" ++"garanta; nin sequera de COMERCIABILIDADE ou APTITUDE PARA UN FIN DETERMINADO.\n" + + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "O smbolo `%s' descoecido" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Xogo de caracteres `%s' descoecido ou ambiguo" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Falla o argumento requirido" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" + msgstr "Sintaxe a estinguir, prefrese `%s'" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "A peticin `%s' errnea" + + #: src/main.c:903 + #, c-format +@@ -366,19 +324,19 @@ + msgstr " feito\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " fallou: %s en %s..%s\n" ++msgstr " fallou: %s no paso `%s..%s'\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s fallou: %s en %s..%s" ++msgstr "%s fallou: %s no paso `%s..%s'" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s en %s..%s" ++msgstr "%s no paso `%s..%s'" + + #: src/names.c:335 + #, c-format +@@ -419,12 +377,12 @@ + msgstr "Memoria virtual esgotada" + + #: src/recode.c:155 +-#, c-format, ycp-format ++#, c-format + msgid "Codes %3d and %3d both recode to %3d" + msgstr "mbolos dous cdigos %3d e %3d recodifcanse a %3d" + + #: src/recode.c:169 +-#, c-format, ycp-format ++#, c-format + msgid "No character recodes to %3d" + msgstr "Non hai caracteres que se recodifiquen a %3d" + +@@ -540,17 +498,11 @@ + msgstr "O estado de espera do proceso fillo 0x%0.2x" + + #: src/testdump.c:298 +-msgid "" +-"UCS2 Mne Description\n" +-"\n" +-msgstr "" +-"UCS2 Mne Descripcin\n" +-"\n" ++msgid "UCS2 Mne Description\n\n" ++msgstr "UCS2 Mne Descripcin\n\n" + + #~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "XOGO non ten valor por defecto, defina a variable de ambiente " +-#~ "DEFAULT_CHARSET.\n" ++#~ msgstr "XOGO non ten valor por defecto, defina a variable de ambiente DEFAULT_CHARSET.\n" + + #~ msgid "Ambiguous sequence `%s'" + #~ msgstr "Secuencia `%s' ambigua" +--- recode-3.6.orig/i18n/ga.po ++++ recode-3.6/i18n/ga.po +@@ -0,0 +1,520 @@ ++# Irish translations for recode. ++# Copyright (C) 2005 Free Software Foundation, Inc. ++# Kevin Patrick Scannell , 2005. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2005-09-13 18:45-0500\n" ++"Last-Translator: Kevin Patrick Scannell \n" ++"Language-Team: Irish \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "N raibh aon earrid" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Ionchur neamhchannta" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Aschur dbhroch" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Aschur neamh-inaistrithe" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Ionchur neamhbhail" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "Bhraith an cras fadhb" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "M-sid den leabharlann ath-ionchdaithe" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "Fabht inmhenach ath-ionchdaithe" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"Is saorbhogearra an romhchlr seo; is fidir leat a scaipeadh agus/n\n" ++"a athr de rir na gcoinnollacha den GNU General Public License mar at\n" ++"foilsithe ag an Free Software Foundation; faoi leagan 2 den cheadnas,\n" ++"n (ms mian leat) aon leagan nos dana.\n" ++"\n" ++"Scaiptear an romhchlr seo le sil go mbeidh s isiil,\n" ++"ach GAN AON BARNTA; go fi gan an barntas intuigthe de\n" ++"INDOLTACHT n FEILINACHT DO FHEIDHM AR LEITH. Fach ar an\n" ++"GNU General Public License chun nos m sonra a fhil.\n" ++"\n" ++"Ba chomhair go mbeife tar is cip den GNU General Public License a fhil in\n" ++"ineacht leis an romhchlr seo; mura bhfuair, scrobh chuig an Free Software\n" ++"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Bain triail as `%s %s' chun tuilleadh eolais a fhil.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Tiontaonn saorbhogearra `recode' comhaid idir tacair charachtar agus craicne agsla.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"sid: %s [ROGHA]... [ [TACAR] | IARRATAS [COMHAD]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Is riachtanach le rogha ghearr aon argint at riachtanach\n" ++"leis an rogha fhada, agus ar an ns canna leis na hargint roghnacha.\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Liost:\n" ++" -l, --list[=FORMID] taispein tacair charachtar agus ailiasanna ar eolas\n" ++" -k, --known=PIR sid tacair charachtar n liosta PIR amhin\n" ++" -h, --header[=[TN/]AINM] scrobh tbla AINM ar stdout le TN, agus scoir\n" ++" -F, --freeze-tables scrobh modl C le gach tbla ann\n" ++" -T, --find-subsets taispein gach tacar carachtar at i gceann eile\n" ++" -C, --copyright taispein Cipcheart agus coinnollacha cipela\n" ++" --help taispein an chabhair seo agus scoir\n" ++" --version taispein eolas faoin leagan agus scoir\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Mid oibrochta:\n" ++" -v, --verbose taispein na cimeanna agus dul chun cinn\n" ++" -q, --quiet, --silent n taispein teachtaireachta maidir le\n" ++" ath-ionchduithe dochlaithe\n" ++" -f, --force frsil ath-ionchd fi ms dochlaithe \n" ++" -t, --touch teagmhil na comhaid ath-ionchdaithe tar is\n" ++" iad a athshuomh\n" ++" -i, --sequence=comhaid sid comhaid idirmhenacha le linn seicheamhaithe\n" ++" --sequence=cuimhne sid maolin chuimhne le linn seicheamhaithe\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=popa sid popa le linn seicheamhaithe\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=popa ar comhbhr le -i (ar an gcras seo)\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Mionchoigeart:\n" ++" -s, --strict sid dianmhapil, fi le carachtair neamhchruinn\n" ++" -d, --diacritics tiontaigh diaicritic amhin le haghaidh HTML/LaTeX\n" ++" -S, --source[=TN] ath-ionchdaigh teaghrin agus nta amhin, mar le TN\n" ++" -c, --colons sid idirstadanna in ionad \" le haghaidh dirise\n" ++" -g, --graphics neasaigh rialir IBMPC le grafaic ASCII\n" ++" -x, --ignore=TACAR n hsid TACAR agus conair ath-ionchdaithe roghn\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"Taispenann rogha -l (gan FORMID gan TACAR) gach tacar carachtar agus\n" ++"gach craiceann at ar fil. Is FORMID ceann de `decimal', `octal',\n" ++"`hexadecimal' n `full' (n ceann de `dohf').\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"Mura bhfuil DEFAULT_CHARSET socraithe mar athrg thimpeallachta, sid an\n" ++"t-ionchd n logchaighden mar luach ramhshocraithe ar CHARSET;\n" ++"socratear an t-ionchd seo leis na hathrga LC_ALL, LC_CTYPE, agus LANG.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Le -k, taispentar gach tacar tosaithe gur fidir a sid leis\n" ++"an TACAR deiridh, gach ina tacar tblach. Is san fhoirm\n" ++"`TOS1:DEIR1,TOS2:DEIR2,...' iad na PIR, agus na cid TOS1, DEIR1,\n" ++"srl. tugtha mar uimhreacha deachlacha.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "Is teanga TN, ceann de `c', `perl' n `po'; is `c' an ramhshocr .\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"Is san fhoirm FOIARRATAS[,FOIARRATAS]... IARRATAS, is san fhoirm\n" ++"IONCHD[..IONCHD]... FOIARRATAS, agus is san fhoirm\n" ++"[TACARCARACHTAR][/CRAICEANN]]... IONCHD; is IARRATAS cosil le\n" ++"TOSACH..DEIREADH go minic, le TOSACH agus DEIREADH ina dtacair\n" ++"charachtar. M t TACAR ligthe ar lr, sid an gnth-thacar;\n" ++"M t [/CRAICEANN] ar lr, sid an craiceann intuigthe le TACAR;\n" ++"Mura bhfuil ach `/' ann gan chraiceann, n hsid craiceann ar chor ar bith.\n" ++"Fach ar an lmhleabhar.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Mura bhfuil -i n -p ann, glac le -p mura bhfuil COMHAD ann, agus\n" ++"le -i i ngach cs eile. Ath-ionchdatear gach COMHAD anuas air fin,\n" ++"agus beidh na bunchipeanna scriosta. Mura bhfuil COMHAD sonraithe,\n" ++"oibronn recode mar scagaire, agus ath-ionchdatear stdin go stdout.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Seol tuairisc fabhtanna chuig .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "T an seicheamh `%s' dbhroch" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "T an seicheamh `%s' anaithnid" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "T an teanga `%s' dbhroch" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "Teanga anaithnid `%s'" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "Formid dhbhroch `%s'" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "Formid anaithnid `%s'" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Le Franois Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Copyright 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Is saorbhogearra an romhchlr seo; fach ar an bhunchd le haghaidh\n" ++"coinnollacha cipela. Nl barnta ar bith ann; go fi nl barnta ann\n" ++"d'INDOLTACHT n FEILINACHT DO FHEIDHM AR LEITH.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "Siombail anaithnid `%s'" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "Tacar carachtar `%s' anaithnid n dbhroch" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Argint riachtanach ar iarraidh" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Comhrir i lig, sid `%s' ina hionad" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "Iarratas lochtach `%s'" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "%s ath-ionchd..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " crochnaithe\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " teipthe: %s i gcim `%s..%s'\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "theip ar %s: %s i gcim `%s..%s'" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s i gcim `%s..%s'" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "T tacar carachtar %s ann cheana, agus n %s " ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "N fidir `%s' a liost; nl aon ainm ar fil le haghaidh an tacair carachtar seo" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Deach Ocht Heics UCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "T brn orm, nl aon ainm ar fil le haghaidh `%s'" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "Athchraiceannadir socraithe nos m n uair amhin le haghaidh `%s'" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "Feannadir socraithe nos m n uair amhin le haghaidh `%s'" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Cuimhne fhoril dithe" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "Ath-ionchdaonn na cid %3d agus %3d go dt %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "Nl aon charachtar a ath-ionchdatear go dt %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "N fidir an tbla tugtha aon-le-haon a inbhart" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "Diagnisic le haghaidh `%s' go `%s'" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "Pire uimh. %d: tagann <%3d, %3d> agus <%3d, %3d> salach ar a chile" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "N fidir an tbla a chur i gcrch le tacar de phir at ar eolas" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Ath-ionchd ionannais; n fi tbla " ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Is rchasta an t-ath-ionchd mura bhfuil ach tbla ann" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sTbla tiontaithe ginte go huathoibroch ag saorbhogearr `%s' %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%sle haghaidh sheichimh %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Nl tbla ann le priontil" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "inchlaithe" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s go %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "beart" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "athrg" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Dodhanta*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*lomchip*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Cuimhne fhoril dithe!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "Theip ar ths na cime" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "Theip ar ths na cime (roghanna gan phriseil)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Iarratas: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "Crapadh go: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Ainm anaithnid craicinn `%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "N fidir `%s' a ath-ionchd mar `%s'" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "Bhothas ag sil le `..' san iarratas" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "Is 0x%0.2x stdas feithimh le haghaidh an mhacphrisis" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 Mne Cur Sos\n" ++"\n" +--- recode-3.6.orig/i18n/eo.po ++++ recode-3.6/i18n/eo.po +@@ -0,0 +1,496 @@ ++# Esperantaj mesaoj por recode. ++# Copyright (C) 2001 Free Software Foundation, Inc. ++# Edmund GRIMLEY EVANS , 2001. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2001-06-06 20:34+01:00\n" ++"Last-Translator: Edmund GRIMLEY EVANS \n" ++"Language-Team: Esperanto \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=iso-8859-3\n" ++"Content-Transfer-Encoding: 8-bit\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "Neniu eraro" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Nekanoneca enigo" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Plursenca eligo" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Netradukebla enigo" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Nevalida enigo" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "Sistemo trovis problemon" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "Misuzo de la rekodado-biblioteko" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "Interna eraro dum rekodado" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"i tiu programo estas libera; vi povas pludoni kopiojn kaj modifi\n" ++"in sub la kondioj de la enerala Publika Rajtigilo de GNU,\n" ++"kiel tio estas eldonita de Free Software Foundation; a versio 2\n" ++"de la Rajtigilo, a (la via elekto) iu sekva versio.\n" ++"\n" ++"i tiu programo estas disdonita kun la espero, ke i estos utila,\n" ++"sed SEN IA AJN GARANTIO; e sen la implicita garantio de\n" ++"KOMERCA KVALITO a ADEKVATECO POR DIFINITA CELO. Vidu la\n" ++"eneralan Publikan Rajtigilon de GNU por pli da detaloj.\n" ++"\n" ++"Vi devus esti ricevinta kopion de la enerala Publika Rajtigilo de\n" ++"GNU kun i tiu programo; se ne, skribu al Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, Usono.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Provu '%s %s' por pli da informoj.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Libera 'recode' konvertas dosierojn inter diversaj signaroj kaj surfacoj.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\nUzado: %s [OPCIO]... [ [SIGNARO] | PETO [DOSIERO]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Se longa opcio montras argumenton kiel devigan, tiam i estas deviga\n" ++"anka por la ekvivalenta mallonga opcio. Simile por nedevigaj argumentoj.\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Listigoj:\n" ++" -l, --list[=FORMO] Listigi unu a iujn signarojn kaj kromnomojn\n" ++" -k, --known=PAROJ Limigi signarojn la konataj PAROJ\n" ++" -h, --header[=[LN/]NOMO] Skribi tabelon NOMO al normala eligo per LN\n" ++" -F, --freeze-tables Eligi C-modulon kun iuj tabeloj\n" ++" -T, --find-subsets Raporti signarojn, kiuj estas subaroj de aliaj\n" ++" -C, --copyright Montri kopirajton kaj kopikondiojn\n" ++" --help Montri i tiun helpon kaj eliri\n" ++" --version Montri versiinformon kaj eliri\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Funkcimanieroj:\n" ++" -v, --verbose klarigi sinsekvon de paoj kaj raporti progreson\n" ++" -q, --quiet, --silent subpremi mesaojn pri neinversigeblaj rekodadoj\n" ++" -f, --force fari rekodadon, anka kiam ne inversigebla\n" ++" -t, --touch fari 'touch' al konvertitaj dosieroj\n" ++" -i, --sequence=files uzi dumtempajn dosierojn por internaj paoj\n" ++" --sequence=memory uzi bufrojn en memoro por internaj paoj\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=pipe uzi tubojn (\"pipe\") por internaj paoj\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe same kiel -i (en i tiu sistemo)\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Fajnaj agordoj:\n" ++" -s, --strict uzi striktajn mapojn, e e signoperdo\n" ++" -d, --diacritics konverti nur kromsignojn a simile por HTML/LaTeX\n" ++" -S, --source[=LN] limigi rekodadon al signoenoj kaj komentoj por LN\n" ++" -c, --colons uzi ':' anstata '\"' por diarezoj\n" ++" -g, --graphics prezenti IBMPC-liniilojn per askiaj bildoj\n" ++" -x, --ignore=SIGNARO ignori SIGNAROn dum elekto de rekodado-vojo\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"La opcio -l kun neniu FORMO a SIGNARO listigas iujn disponatajn\n" ++"signarojn kaj surfacojn. FORMO estas 'decimal', 'octal', 'hexadecimal'\n" ++"a 'full' (a unu el 'dohf').\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"Se la media variablo DEFAULT_CHARSET ne estas agordita, SIGNARO implicite\n" ++"estas tiu de la lokaaro, determinita de LC_ALL, LC_CTYPE, LANG.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Kun -k, eblaj antaaj signaroj por la donita posta SIGNARO estas listigitaj,\n" ++"kun PAROJ en la formo 'ANT1:POST1,ANT2,POST2,...', kie ANT-oj kaj POST-oj\n" ++"estas kodoj donitaj kiel dekumaj nombroj.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN estas programlingvo, ekzemple 'c', 'perl' a 'po'; implicite estas 'c'.\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"PETO estas SUBPETO[,SUBPETO]...; SUBPETO estas KODO[..KODO]...\n" ++"KODO estas [SIGNARO][/[SURFACO]]...; PETO ofte aspektas kiel ANTA...POST,\n" ++"kie ANTA kaj POST estas signaroj. Ellasita SIGNARO implicas la kutiman\n" ++"signaron; ellasita [/SURFACO]... signifas la implicitan surfacon por SIGNARO;\n" ++"/ kun malplena surfaco-nomo signifas neniajn surfacojn. Vidu la manlibron.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Se neniu el -i kaj -p estas donita, supozi -p, se neniu DOSIERO, alie -i.\n" ++"iu DOSIERO estas rekodita surloke, anstataante la originalon. Se neniu\n" ++"DOSIERO estas specifita, agi kiel filtrilo kaj rekodi de la normala enigo\n" ++"al la normala eligo.\n" ++ ++#: src/main.c:329 ++msgid "\nReport bugs to .\n" ++msgstr "\nRaportu cimojn al .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "Sinsekvo '%s' estas plursenca" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "Sinsekvo '%s' estas nekonata" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "Lingvo '%s' estas plursenca" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "Lingvo '%s' estas nekonata" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "Formo '%s' estas plursenca" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "Formo '%s' estas nekonata" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Verkita de Franois Pinard .\n" ++ ++#: src/main.c:624 ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nKopirajto (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"i tio estas libera programo; vidu la fonton por kopikondioj. Estas\n" ++"NENIA GARANTIO; e ne por KOMERCA KVALITO a ADEKVATECO POR DIFINITA CELO.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "Simbolo '%s' estas nekonata" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "Signaro '%s' estas nekonata a plursenca" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Bezonata argumento mankas" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Malrekomendata sintakso; bonvolu uzi '%s'" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "Peto '%s' estas erara" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "Rekodas '%s' ..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " preta\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " malsukcesis: %s en pao '%s..%s'\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s malsukcesis: %s en pao '%s..%s'" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s en pao '%s..%s'" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "La signaro %s jam ekzistas kaj ne estas %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "Ne povas montri '%s'; neniuj nomoj disponataj por i tiu signaro" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Dec Oct Hex UCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "Pardonu, sed neniaj nomoj disponataj por '%s'" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "Resurfacigilo agordita pli ol unufoje por '%s'" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "Malsurfacigilo por '%s' agordita pli ol unufoje" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Vituala memoro elerpiis" ++ ++#: src/recode.c:155 ++#, c-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "La kodoj %3d kaj %3d estas amba konvertataj al %3d" ++ ++#: src/recode.c:169 ++#, c-format ++msgid "No character recodes to %3d" ++msgstr "Neniu signo estas konvertata al %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "Ne povas inversigi la donitan unusencan tabelon" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "Jena diagnozo por konvertado de '%s' al '%s'" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "Paro numero %d: <%3d, %3d> konfliktas kun <%3d, %3d>" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "Ne povas kompletigi tabelon el aro de konataj paroj" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Senana rekodado ne indas je tabelo" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Rekodado estas tro komplika por nura tabelo" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sKonvertotabelo kreita atomate de Free '%s' %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%spor sinsekvo %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Mankas tabelo por eligado" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "inversigebla" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s al %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "bitoko" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "variablo" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*neebla*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*nura kopio*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Virtuala memoro estas plena!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "Komencado de pao malsukcesis" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "Komencado de pao malsukcesis (netraktitaj opcioj)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Peto: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "rumpis is: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Nekonata nomo de surfaco '%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "Mankas eblo por konverti de '%s' al '%s'" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "Atendas '..' en peto" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "Atendostatuso de ido-procezo estas 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "UCS2 Mne Description\n\n" ++msgstr "UCS2 Mne Priskribo\n\n" +--- recode-3.6.orig/i18n/he.po ++++ recode-3.6/i18n/he.po +@@ -0,0 +1,500 @@ ++# Hebrew messages for Free recode -*- coding: hebrew-iso-8bit -*- ++# Copyright (C) 2001 Free Software Foundation, Inc. ++# Eli Zaretskii , 2001. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: Free recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2001-05-27 17:06+0300\n" ++"Last-Translator: Eli Zaretskii \n" ++"Language-Team: Hebrew \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-8\n" ++"Content-Transfer-Encoding: 8-bit\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr " " ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr " " ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "- " ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr " " ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr " " ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr " " ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr " " ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr " " ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++" / ; \n" ++" \" ,GNU General Public License \n" ++" , 2 ;Free Software Foundation\n" ++" . ( )\n" ++"\n" ++" , \n" ++" - ; \n" ++" , . \n" ++" .GNU General Public License- \n" ++"\n" ++";GNU General Public License \n" ++" Free Software Foundation, Inc.- , \n" ++" .59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr ".`%s %s' , \n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr " . Free `recode' \n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\n%s []... [ [ | []... ] : \n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++" , \n" ++" . . \n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++" :\n" ++" -l, --list[=]\n" ++" -k, --known=\n" ++" LN NAME -h, --header[=[LN/]NAME]\n" ++" C -F, --freeze-tables\n" ++" - -T, --find-subsets\n" ++" -C, --copyright\n" ++" --help\n" ++" --version\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++" : \n" ++" -v, --verbose\n" ++" - -q, --quiet, --silent\n" ++" -f, --force\n" ++" -t, --touch\n" ++" -i, --sequence=files\n" ++" --sequence=memory\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " (pipe) -p, --sequence=pipe\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " ( ) -i -p, --sequence=pipe\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++" \n" ++" , -s, --strict\n" ++" LaTeX- HTML -d, --diacritics\n" ++" LN -S, --source[=LN]\n" ++" -c, --colons\n" ++" ASCII \" IBM -g, --graphics\n" ++" CHARSET -x, --ignore=CHARSET\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++". -l \n" ++" ) `full' `hexadecimal' ,`octal' ,`decimal' \n" ++" .(`dohf' \n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++" , DEFAULT_CHARSET \n" ++".LANG, LC_CTYPE, LC_ALL \" \n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++" ,-k \n" ++". AFT- BEF- ,`BEF1:AFT1,BEF2:AFT2,...'- \n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr " .`c' ;`po' ,`perl' ,`c' : LN\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++": SUBREQUEST SUBREQUEST[,SUBREQUEST]...: (REQUEST) \n" ++" .[CHARSET][/[SURFACE]]... : () ENCODING .ENCODING[..ENCODING]...\n" ++" . AFTER- BEFORE ;BEFORE..AFTER- \"\n" ++" [/SURFACE] ; CHARSET \n" ++" / . \n" ++" . , .\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++".-i ,FILE -p ,-p -i \n" ++" . , FILE \n" ++" . : ,FILE\n" ++ ++#: src/main.c:329 ++msgid "\nReport bugs to .\n" ++msgstr "\n . (bugs) \n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "--sequence - `%s'" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "--sequence `%s'" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr " - `%s'" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr " `%s'" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr " - `%s'" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr " `%s'" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr ".Franc,ois Pinard \" \n" ++ ++#: src/main.c:624 ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nFree Software Foundation- (C) 1990,92,93,94,96,97,99\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++" ; . , ; \n" ++" . - \n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr " `%s'" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr " - `%s'" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr " " ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "`%s' , " ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr " `%s' " ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "`%s' " ++ ++# FIXME: this is lame! The method of printing "Frobbing...done" ++# does not lend itself to good translations into languages where ++# such sentences have a different structure, and should be rethought. ++#: src/main.c:913 ++msgid " done\n" ++msgstr " \n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr "%s : `%s..%s' \n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s %s `%s..%s' " ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s :`%s..%s' " ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr " (alias) %s %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr " ,`%s' " ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Dec Oct Hex UCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr " `%s' ," ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "`%s' " ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "`%s' " ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr " " ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "%3d- %3d %3d " ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "%3d- " ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr " " ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "`%s'- `%s'- " ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "%d <%3d, %3d> <%3d, %3d> " ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr " " ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr " ,() " ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr " " ++ ++# FIXME: this goes into a comment; is it really worth translating? ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sFree `%s' %s \" " ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%s .%s %s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr " " ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "" ++ ++# FIXME: these assume left-to-right direction. What else can I do? ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s -> %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "byte" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "variable" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr " -*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "* *" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "! " ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr " " ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "( ) " ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "%s :\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "%s -: \n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr " `%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "`%s'- `%s'- " ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "`..' " ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "0x%0.2x - " ++ ++#: src/testdump.c:298 ++msgid "UCS2 Mne Description\n\n" ++msgstr "UCS2 \n\n" +--- recode-3.6.orig/i18n/da.po ++++ recode-3.6/i18n/da.po +@@ -1,12 +1,15 @@ + # Danish message catalog for GNU recode. + # Copyright (C) 1997 Free Software Foundation, Inc. + # Niels Kristian Bech Jensen , 1997-2000. ++# Keld Simonsen , 2001. ++# ++# Reviewed: 2000-09-09: byrial@image.dk + # + msgid "" + msgstr "" +-"Project-Id-Version: recode 3.5\n" ++"Project-Id-Version: recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 2000-05-31 22:02+02:00\n" ++"PO-Revision-Date: 2001-09-12 11:05+02:00\n" + "Last-Translator: Niels Kristian Bech Jensen \n" + "Language-Team: Danish \n" + "MIME-Version: 1.0\n" +@@ -19,7 +22,7 @@ + + #: src/main.c:145 + msgid "Non canonical input" +-msgstr "Ualmindelige inddata" ++msgstr "Unormale inddata" + + #: src/main.c:148 + msgid "Ambiguous output" +@@ -62,8 +65,7 @@ + "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" + msgstr "" + "Dette program er fri software; du m redistribuere det og/eller modificere\n" +-"det under betingelserne givet i GNU General Public License som publiceret " +-"af\n" ++"det under betingelserne givet i GNU General Public License som publiceret af\n" + "Free Software Foundation; enten version 2, eller (efter dit valg) en senere\n" + "version.\n" + "\n" +@@ -79,22 +81,16 @@ + #: src/main.c:233 + #, c-format + msgid "Try `%s %s' for more information.\n" +-msgstr "Prv \"%s %s\" for mere information.\n" ++msgstr "Prv '%s %s' for mere information.\n" + + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-"Fri \"recode\" konverterer filer mellem forskellige tegnst og pakninger.\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Fri 'recode' konverterer filer mellem forskellige tegnst og indpakninger.\n" + + #: src/main.c:241 + #, c-format +-msgid "" +-"\n" +-"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" +-msgstr "" +-"\n" +-"Brug: %s [TILVALG]... [ [TEGNST] | FORESPRGSEL [FIL]... ]\n" ++msgid "\nUsage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "\nBrug: %s [TILVALG]... [ [TEGNST] | FORESPRGSEL [FIL]... ]\n" + + #: src/main.c:244 + msgid "" +@@ -108,13 +104,11 @@ + "argumenter.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -145,13 +139,12 @@ + " --sequence=memory use memory buffers for sequencing passes\n" + msgstr "" + "\n" +-"Operationsmder:\n" +-" -v, --verbose vis rkkeflgen af gennemlb, og rapportr " +-"fremskridt\n" +-" -q, --quiet, --silent udelad meddelelser om irreversible oversttelser\n" +-" -f, --force gennemtving oversttelser, selv hvis de ikke er\n" ++"Virkemder:\n" ++" -v, --verbose vis rkkeflgen af gennemlb, og rapportr fremskridt\n" ++" -q, --quiet, --silent udelad meddelelser om irreversible omkodninger\n" ++" -f, --force gennemtving omkodninger, selv hvis de ikke er\n" + " reversible\n" +-" -t, --touch giv den oversatte fil system-urets tid\n" ++" -t, --touch giv den omkodede fil system-urets tid\n" + " -i, --sequence=files brug midlertidige filer mellem gennemlbene\n" + " --sequence=memory brug hukommelsesbuffere mellem gennemlbene\n" + +@@ -175,16 +168,14 @@ + " -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" + msgstr "" + "\n" +-"Fintuning:\n" ++"Finjustering:\n" + " -s, --strict brug kun njagtige tegnst selvom der mistes tegn\n" +-" -d, --diacritics overst kun diakritiske/specielle tegn i " +-"HTML/LaTeX\n" +-" -S, --source[=SPR] begrns omodning til strenge og kommentarer som\n" ++" -d, --diacritics omkod kun diakritiske/specielle tegn i HTML/LaTeX\n" ++" -S, --source[=SPR] begrns omkodning til strenge og kommentarer som\n" + " for SPR\n" +-" -c, --colons brug koloner i stedet for anfrselstegn som trema " +-"()\n" +-" -g, --graphics tilnrm IBMPC linie- og kassetegn med ASCII grafik\n" +-" -x, --ignore=TEGNST ignorr TEGNST nr en omkodningssti vlges\n" ++" -c, --colons brug koloner i stedet for anfrselstegn som trema ()\n" ++" -g, --graphics tilnrm IBMPC linie- og kassetegn med ASCII-grafik\n" ++" -x, --ignore=TEGNST ignorr TEGNST nr en omkodningsrute vlges\n" + + #: src/main.c:296 + msgid "" +@@ -194,56 +185,47 @@ + msgstr "" + "\n" + "Tilvalg -l uden FORMAT eller TEGNST viser en liste over alle tegnst og\n" +-"pakninger. FORMAT er et af ordene 'decimal', 'octal', 'hexadecimal' eller\n" ++"indpakninger. FORMAT er et af ordene 'decimal', 'octal', 'hexadecimal' eller\n" + "'full' (eller et af bogstaverne d, o, h eller f).\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" +-msgstr "Standard TEGNST er \"%s\", med mindre DEFAULT_CHARSET er angivet.\n" ++msgstr "" ++"Med mindre DEFAULT_CHARSET er angivet i miljet, er\n" ++"Standard TEGNST det lokaleafhngige tegnst, bestemt ud fra LC_ALL, LC_CTYPE og LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" +-"Med -k vises en liste over mulige fr tegnst for det givne efter TEGNST,\n" +-"begge tabellariske tegnst, med PAR af typen " +-"\"FR1:EFTER1,FR2:EFTER2,...\"\n" +-"hvor FR'er og EFTER'e er tegnkoder givet efter titalssystemet.\n" ++"Med -k vises en liste over mulige fr-tegnst for det givne efter-TEGNST,\n" ++"begge tabellariske tegnst, med PAR af typen 'FR1:EFTER1,FR2:EFTER2,...'\n" ++"hvor FR'er og EFTER'e er givet som decimale tal.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" +-msgstr "" +-"SPR er et programmeringssprog, f.eks. \"c\", \"perl\" eller \"po\"; \"c\" er " +-"standard.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "SPR er et programmeringssprog, f.eks. 'c', 'perl' eller 'po'; 'c' er standard.\n" + + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" +-"FORESPRGSEL er UNDERFORESPRGSEL[,UNDERFORESPRGSEL]...; UNDERFORESPRGSEL " +-"er\n" +-"INDKODNING[..INDKODNING]...; INDKODNING er [TEGNST][/[PAKNING]]...\n" ++"FORESPRGSEL er UNDERFORESPRGSEL[,UNDERFORESPRGSEL]...; UNDERFORESPRGSEL er\n" ++"INDPAKNING[..INDPAKNING]...; INDPAKNING er [TEGNST][/[INDPAKNING]]...\n" + "FORESPRGSEL har ofte formen FR..EFTER, hvor FR og EFTER er tegnst.\n" +-"Hvis et TEGNST udelades, anvendes det normale tegnst; hvis [/PAKNING]...\n" ++"Hvis et TEGNST udelades, anvendes det normale tegnst; hvis [/INDPAKNING]...\n" + "udelades, anvendes den normale pakning af TEGNST; / uden navnet p en\n" +-"pakning betyder ingen pakning. Se manualen.\n" ++"indpakning betyder ingen indpakninger. Se manualen.\n" + + #: src/main.c:323 + msgid "" +@@ -253,65 +235,52 @@ + "FILE is specified, then act as a filter and recode stdin to stdout.\n" + msgstr "" + "\n" +-"Hvis ingen af -i eller -p er valgt, bruges -p hvis ingen FIL, ellers -i.\n" +-"Hver FIL bliver oversat oveni sig selv og overskriver originalen. Hvis " +-"ingen\n" +-"FIL er valgt, er programmet et filter, der overstter fra std-ind til " +-"std-ud.\n" ++"Hvis hverken -i eller -p er valgt, bruges -p hvis ingen FIL, ellers -i.\n" ++"Hver FIL bliver omkodet oven i sig selv og overskriver originalen. Hvis ingen\n" ++"FIL er valgt, er programmet et filter, der omkoder fra std-ind til std-ud.\n" + + #: src/main.c:329 +-msgid "" +-"\n" +-"Report bugs to .\n" +-msgstr "" +-"\n" +-"Rapportr fejl til .\n" ++msgid "\nReport bugs to .\n" ++msgstr "\nRapportr fejl til .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "Sekvens '%s' er flertydig" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "Sekvens '%s' er ukendt" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "Sprog '%s' er flertydigt" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "Sprog '%s' er ukendt" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "Format '%s' er flertydigt" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "Format '%s' er ukendt" + + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Skrevet af Franois Pinard .\n" ++msgstr "Skrevet af Franois Pinard .\n" + + #: src/main.c:624 +-msgid "" +-"\n" +-"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" +-msgstr "" +-"\n" +-"Ophavsret (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgid "\nCopyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "\nOphavsret (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" + + #: src/main.c:628 + msgid "" +@@ -319,32 +288,31 @@ + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + msgstr "" + "Dette er fri software; se kopieringsbetingelserne i kildeteksten. Der gives\n" +-"INGEN garanti; end ikke for SALGBARHED eller ANVENDELIGHED TIL NOGET " +-"FORML.\n" ++"INGEN garanti; end ikke for SALGBARHED eller ANVENDELIGHED TIL NOGET FORML.\n" + + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "Symbol '%s' er ukendt" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "Tegnst '%s' er ukendt eller flertydigt" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Krvet argument mangler" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "Forldet syntaks, brug hellere \"%s\"" ++msgstr "Forldet syntaks, brug hellere '%s'" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "Foresprgsel '%s' er fejlagtig" + + #: src/main.c:903 + #, c-format +@@ -356,19 +324,19 @@ + msgstr " frdig\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " fejlede: %s i %s..%s\n" ++msgstr " fejlede: %s i trin '%s..%s'\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s fejlede: %s i %s..%s" ++msgstr "%s fejlede: %s i trin '%s..%s'" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s i %s..%s" ++msgstr "%s i trin '%s..%s'" + + #: src/names.c:335 + #, c-format +@@ -378,7 +346,7 @@ + #: src/names.c:831 + #, c-format + msgid "Cannot list `%s', no names available for this charset" +-msgstr "Kan ikke vise \"%s\", ingen navne tilgngelige for dette tegnst" ++msgstr "Kan ikke vise '%s', ingen navne tilgngelige for dette tegnst" + + #. code counter + #. expected value for code counter +@@ -392,31 +360,31 @@ + #: src/names.c:1049 + #, c-format + msgid "Sorry, no names available for `%s'" +-msgstr "Beklager, ingen navne tilgngelige for \"%s\"" ++msgstr "Beklager, ingen navne tilgngelige for '%s'" + + #: src/outer.c:125 + #, c-format + msgid "Resurfacer set more than once for `%s'" +-msgstr "Genpakker indstillet flere gange for \"%s\"" ++msgstr "Genindpakker indstillet flere gange for '%s'" + + #: src/outer.c:133 + #, c-format + msgid "Unsurfacer set more than once for `%s'" +-msgstr "Udpakker indstillet flere gange for \"%s\"" ++msgstr "Udpakker indstillet flere gange for '%s'" + + #: src/recode.c:115 src/recode.c:127 + msgid "Virtual memory exhausted" + msgstr "Virtuel hukommelse opbrugt" + + #: src/recode.c:155 +-#, c-format, ycp-format ++#, c-format + msgid "Codes %3d and %3d both recode to %3d" +-msgstr "Tegnkoderne %3d og %3d oversttes begge til %3d" ++msgstr "Tegnkoderne %3d og %3d omkodes begge til %3d" + + #: src/recode.c:169 +-#, c-format, ycp-format ++#, c-format + msgid "No character recodes to %3d" +-msgstr "Ingen tegn oversttes til %3d" ++msgstr "Ingen tegn omkodes til %3d" + + #: src/recode.c:170 + msgid "Cannot invert given one-to-one table" +@@ -425,7 +393,7 @@ + #: src/recode.c:224 src/recode.c:236 + #, c-format + msgid "Following diagnostics for `%s' to `%s'" +-msgstr "Flgende fejl er for \"%s\" til \"%s\"" ++msgstr "Flgende fejl er for '%s' til '%s'" + + #: src/recode.c:229 src/recode.c:241 + #, c-format +@@ -434,7 +402,7 @@ + + #: src/recode.c:272 + msgid "Cannot complete table from set of known pairs" +-msgstr "Kan ikke fuldende tabellen udfra mngden af kendte par" ++msgstr "Kan ikke fuldende tabellen ud fra mngden af kendte par" + + #: src/recode.c:497 + msgid "Identity recoding, not worth a table" +@@ -448,7 +416,7 @@ + #: src/recode.c:536 + #, c-format + msgid "%sConversion table generated mechanically by Free `%s' %s" +-msgstr "%sOmkodningstabellen er genereret automatisk af Free \"%s\" %s" ++msgstr "%sOmkodningstabellen er genereret automatisk af Fri '%s' %s" + + #: src/recode.c:538 + #, c-format +@@ -513,16 +481,16 @@ + #: src/request.c:823 src/request.c:932 + #, c-format + msgid "Unrecognised surface name `%s'" +-msgstr "Ukendt pakkenavn \"%s\"" ++msgstr "Ukendt indpakningsnavn '%s'" + + #: src/request.c:903 + #, c-format + msgid "No way to recode from `%s' to `%s'" +-msgstr "Umuligt at overstte fra \"%s\" til \"%s\"" ++msgstr "Umuligt at omkode fra '%s' til '%s'" + + #: src/request.c:1013 + msgid "Expecting `..' in request" +-msgstr "Forventer \"..\" i foresprgsel" ++msgstr "Forventer '..' i foresprgsel" + + #: src/task.c:826 src/task.c:1002 + #, c-format +@@ -530,33 +498,5 @@ + msgstr "Underprocessens ventestatus er 0x%0.2x" + + #: src/testdump.c:298 +-msgid "" +-"UCS2 Mne Description\n" +-"\n" +-msgstr "" +-"UCS2 Mne Beskrivelse\n" +-"\n" +- +-#~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "Der findes ikke et standard TEGNST, angiv DEFAULT_CHARSET.\n" +- +-#~ msgid "Ambiguous sequence `%s'" +-#~ msgstr "Flertydig sekvens \"%s\"" +- +-#~ msgid "Unknown sequence `%s'" +-#~ msgstr "Ukendt sekvens \"%s\"" +- +-#~ msgid "Ambiguous language `%s'" +-#~ msgstr "Flertydigt sprog \"%s\"" +- +-#~ msgid "Unknown language `%s'" +-#~ msgstr "Ukendt sprog \"%s\"" +- +-#~ msgid "Ambiguous format `%s'" +-#~ msgstr "Flertydigt format \"%s\"" +- +-#~ msgid "Unknown format `%s'" +-#~ msgstr "Ukendt format \"%s\"" +- +-#~ msgid "Erroneous request `%s'" +-#~ msgstr "Fejlagtig foresprgsel \"%s\"" ++msgid "UCS2 Mne Description\n\n" ++msgstr "UCS2 Mnem Beskrivelse\n\n" +--- recode-3.6.orig/i18n/be.po ++++ recode-3.6/i18n/be.po +@@ -0,0 +1,522 @@ ++# SOME DESCRIPTIVE TITLE ++# Copyright (C) 2003 Free Software Foundation, Inc. ++# Hleb Valoska , 2003. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2003-04-06 23:16+0300\n" ++"Last-Translator: Ales Nyakhaychyk \n" ++"Language-Team: Belarusian \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 0.9.6\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "Без памылак" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Некананічнасьць на ўваходзе" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Двухсэнсоўнасьць на выхадзе" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Неперакладальнае на ўваходзе" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Няправільнае на ўваходзе" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "Сыстэма выявіла праблему" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "Няправільнае ўжываньне бібліятэкі перакадаваньня" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "Нутраная памылка перакадаваньня" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"Гэтая праграма зьяўляецца свабодным праграмным забесьпячэньнем, яе\n" ++"можна распаўсюджваць і/ці зьмяняць паводле ўмоваў Агульнай Публічнай\n" ++"Ліцэнзіі (GPL) GNU, надрукаванай Free Software Foundation; другой ці\n" ++"(на твой погляд) пазьнейшай вэрсіі.\n" ++"\n" ++"Гэтая праграма разпаўсюджваецца з надзеяй, што яна будзе карыснай,\n" ++"але БЕЗЬ НІЯКАЕ ГАРАНТЫІ; нават без гарантыі КАШТОЎНАСЬЦІ ці\n" ++"ПРЫДАТНАСЬЦІ ДЛЯ КАНКРЭТНАЕ МЭТЫ. Глядзі падрабязнасьці ў GNU GPL.\n" ++"\n" ++"Ты мусіш атрымаць копію Агульнай Публічнай Ліцэнзіі (GPL) GNU разам\n" ++"з гэтай праграмай, калі не, напішы на адрас Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Паспрабуй `%s %s', каб атрымаць болей інфармацыі.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Свабодная `recode' зьмяняе знаказбор ці спосаб кадаваньня файла.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"Ужывай: %s [ОПЦЫІ]... [ [ЗНАКАЗБОР] | ЗАПЫТ [ФАЙЛ]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Калі парамэтар абавязковы для доўгае опцыі, то ён абавязковы й для\n" ++"кароткае опцыі таксама. Аналягічна для неабавязковых парамэтраў.\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Адлюстраваньне:\n" ++" -l, --list[=ФАРМАТ] паказаць адзін ці ўсе вядомыя знаказборы\n" ++" -k, --known=ПАРЫ абмежаваць знаказборы адпаведна сьпісу ПАР\n" ++" -h, --header[=[МОВА/]ІМЯ] запісаць табліцу ІМЯ у stdout на МОВЕ й выйсьці\n" ++" -F, --freeze-tables запісаць модуль С, які ўтрымлівае ўсе знаказборы\n" ++" -T, --find-subsets паведаміць, якія знаказборы зьяўляюцца падмноствам \n" ++" іншых\n" ++" -C, --copyright надрукаваць зьвесткі аб аўтарскіх правох і ўмовах\n" ++" капіяваньня\n" ++" --help надрукаваць гэты экран даведкі й выйсьці\n" ++" --version надрукаваць зьвесткі аб вэрсіі праграмы й выйсьці\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Рэжымы працы:\n" ++" -v, --verbose інфармаваць пра пасьлядоўнасьць крокаў і \n" ++" зьдзейсьненую працу\n" ++" -q, --quiet, --silent не паведамляць пра незваротныя перакадаваньні\n" ++" -f, --force зьдзяйсьняць перакадаваньне нават у выпадку\n" ++" атрыманьня незваротнага выніку\n" ++" -t, --touch абнавіць час перакадаваных файлаў пасьля іх\n" ++" замены\n" ++" -i, --sequence=files ужываць часовыя файлы для працы\n" ++" --sequence=memory ужываць буфэры памяці для працы\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=pipe ужываць каналы пры апрацоўцы\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe аналягічнае -i (на гэтай сыстэме)\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Зьмяненьне парамэтраў працы:\n" ++" -s, --strict строгая адпаведнасьць, нават са стратай знакаў\n" ++" -d, --diacritics канвэртаваць толькі дыякрытычныя знакі, кшталту\n" ++" ўжываных у HTML ці LaTeX\n" ++" -S, --source[=МОВА] перакадоўваць толькі радкі й камэнтары МОВЫ\n" ++" -c, --colons ужываць двухкроп'е замест двухкосься ў дыякрытычных\n" ++" знаках\n" ++" -g, --graphics справаць замяніць рамкі IBMPC знакамі ASCII\n" ++" -x, --ignore=ЗНАКАЗБОР ігнараваць ЗНАКАЗБОР, абіраючы шлях кадаваньня\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"Опцыя -l без ФАРМАТУ ні ЗНАКАЗБОРУ паказвае вядомыя табліцы знакаў і спосабы\n" ++"кадаваньня.\n" ++"ФАРМАТ -- `decimal', `octal', `hexadecimal' ці `full' (ці адзін з `dohf').\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"Калі не атачэньне ня мае усталёўкі DEFAULT_CHARSET, то ЗНАКАЗБОР адпавядае\n" ++"кадзіроўцы лякалі, якая вызначаецца з LC_ALL, LC_CTYPE, LANG.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Опцыя -k адлюстроўвае магчымыя `зыходныя' знаказборы для зададзенага\n" ++"`выніковага' ЗНАКАЗБОРУ, з ПАРАМІ перакадаваньня ў фармаце ДА1:ПА1,\n" ++"ДА2:ПА2,..., дзе ДА і ПА зьяўляюцца кодамі, зададзенымі дзесятковымі лікамі.\n" ++"І зыходныя, і выніковыя знаказборы мусяць быць таблічнымі.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "МОВА задае мову праграмаваньня, прыкладам `c', `perl' ці `po'; даўнята `c'.\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"ЗАПЫТ: ПАДЗАПЫТ[,ПАДЗАПЫТ]...; ПАДЗАПЫТ: КАДЗІРОЎКА[..КАДЗІРОЎКА]...;\n" ++"КАДЗІРОЎКА: [ЗНАКАЗБОР][/[СПОСАБ КАДАВАНЬНЯ]]...; ЗАПЫТ часта выглядае\n" ++"як ПЕРАД..ПАСЬЛЯ, дзе ПЕРАД і ПАСЬЛЯ -- знаказборы. Замест прапушчанага\n" ++"ЗНАКАЗБОРУ ужываецца даўняты знаказбор сыстэмы; замест прапушчанага\n" ++"СПОСАБУ ўжываецца спосаб, стандартны для ЗНАКАЗБОРА; адзін / без зададзенага\n" ++"СПОСАБУ азначае адсутнасьць СПОСАБАЎ увогуле. Глядзі кіраўніцтва.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Калі ня ўжытыя ані -i, ані -p, мяркуецца -p, калі ня дадзены ФАЙЛ, ці -i у \n" ++"адваротным выпадку.\n" ++"Кожны ФАЙЛ перакадоўваецца паверх самога сябе, зьнішчаючы арыгінал. Калі ФАЙЛ\n" ++"ня дадзены, то праграма працуе фільтрам і перакадоўвае з stdin на stdout.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Паведамляй пра памылкі на адрас .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "Двухсэнсоўная пасьлядоўнасьць: `%s'" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "Невядомая пасьлядоўнасьць: `%s'" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "Невядомая мова: `%s'" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "Невядомая мова: `%s'" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "Двухсэнсоўны фармат: `%s'" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "Невядомы фармат: `%s'" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Напісаў: Franc,ois Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Гэта свабоднае праграмовае забесьпячэньне; глядзі ўмовы капіяваньня ў\n" ++"зыходным кодзе. Няма НІЯКАЕ гарантыі, нават гарантыі КАШТОЎНАСЬЦІ ці\n" ++"ПРЫДАТНАСЬЦІ ДЛЯ КАНКРЭТНАЕ МЭТЫ.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "Невядомы знак: `%s'" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "Знаказбор `%s' невядомы ці двухсэнсоўны" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Прапушчаны патрэбны парамэтар" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Сынтаксыс не найлепшы, ужывай, калі ласка, `%s'" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "Памылковы запыт: `%s'" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "Перакадаваньне %s..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " зроблена\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " няўдалае: %s у кроку `%s..%s'\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "Няўдалае %s: %s у кроку `%s..%s'" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s у кроку `%s..%s'" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "Знаказбор %s ужо існуе і не зьяўляецца %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "Немагчыма адлюстраваць `%s', бо няма імёнаў для гэтага знаказбора" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Дзес Вас Шасн UCS2 Мнэма %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "Нажаль няма імёнаў для `%s'" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "Працэдура закадаваньня ўжываецца часьцей, як адзін раз для `%s'" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "Працэдура раскадаваньня ўжываецца часьцей, як адзін раз для `%s'" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Скончылася віртуальная памяць" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "Коды %3d і %3d абодва кадуюцца ў %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "Ніводзін знак не кадуецца ў %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "Зваротнае пераўтварэньне па дадзенай табліцы `адзін-у-адзін'" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "Дыягностыка пераўтварэньня з `%s' у `%s'" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "Пара нумар %d: <%3d, %3d> канфліктуе з <%3d, %3d>" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "Не магу ўтварыць табліцу з мноства вядомых пар" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Простае перакадаваньне, якому не патрэбная табліца" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Перакадаваньне заскладанае для простай табліцы" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sТабліца перакадаваньня, аўтаматычна створаная з дапамогай GNU `%s' %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%sдля пасьлядоўнасьці %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Няма табліцы для друку" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "зваротная" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s у %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "байт" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "пераменная" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Недасяжна*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*простая копія*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Скончылася віртуальная памяць!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "Няўдалая ініцыялізацыя кроку" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "Няўдалая ініцыялізацыя кроку (неапрацаваныя опцыі)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Запыт: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "Скарочаны да: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Невядомае імя спосабу кадаваньня `%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "Немагчыма перакадаваць з `%s' у `%s'" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "У запыце чакалася `..'" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "Статус чаканьня даччынага працэсу -- 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 Мнэма Апісаньне\n" ++"\n" +--- recode-3.6.orig/i18n/ro.po ++++ recode-3.6/i18n/ro.po +@@ -0,0 +1,517 @@ ++# Mesajele n limba romn pentru pachetul recode. ++# Copyright (C) 2003 Free Software Foundation, Inc. ++# Eugen Hoanca , 2003. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode-3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2003-05-04 08:45+0300\n" ++"Last-Translator: Eugen Hoanca \n" ++"Language-Team: Romanian \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-2\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "Nici o eroare" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "Intrare(input) non canonic" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "Output ambiguu" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "Intrare(input) intraductibil" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "Input invalid" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "Sistemul a detectat o problem" ++ ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "Folosire necorespunztoare a bibliotecii de recoding" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "Bug intern de recoding" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"Acest program este free software; putei s-l redistribuii i/sau\n" ++"modificai sub termenii Licenei Publice Generale GNU publicat de\n" ++"Free Software Foundation; ori versiunea 2, sau (opiunea dumneavoastr)\n" ++"orice versiune ulterioar.\n" ++"\n" ++"Acest program este distribuit n sperana c va fi de folos,\n" ++"dar FR NICI O GARANIE; chiar fr presupusa garanie a\n" ++"VANDABILITII sau MODIFICRII PENTRU UN SCOP PRIVAT. Citii\n" ++"Licena Public General GNU pentru mai multe detalii.\n" ++"\n" ++"Ar fi trebuit s fi primit o copie a Licenei Publice Generale GNU\n" ++"mpreun cu acest program; dac nu, scriei la Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "ncercai `%s %s' pentru mai multe informaii.\n" ++ ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "`recode' este free i convertete fiiere ntre diferite seturi de caractere i nfiri(surfaces).\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"Folosire: %s [OPIUNE]... [ [SET_CARACTERE] | CERERE [FIIER]... ]\n" ++ ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Dac o opiune lung afieaz un parametru obligatoriu, atunci este\n" ++"obligatoriu i pentru opiunea scurt echivalent. Similar i n cazul\n" ++"parametrilor opionali.\n" ++ ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Listri:\n" ++" -l, --list[=FORMAT] listeaz unul sau toate seturile de caractere i aliasurile cunoscute\n" ++" -k, --known=PERECHI restricioneaza seturile de caractere potrivit listei de PERECHIcunoscute\n" ++" -h, --header[=[LN/]NUME] scrie tabelul NUME la stdout folosind LN, apoi termin\n" ++" -F, --freeze-tables scrie un modul C ce pstreaz toate tabelele\n" ++" -T, --find-subsets raporteaz toate seturile de caractere care sunt subseturi ale altora\n" ++" -C, --copyright afieaz Copyright i condiii de copiere\n" ++" --help afieaz acest ajutor i termin\n" ++" --version afieaz informaii versiune i termin\n" ++ ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Moduri operaie:\n" ++" -v, --verbose explic secvena de pai i raporteaz desfurarea\n" ++" -q, --quiet, --silent suprim mesajele despre recodinguri ireversibile\n" ++" -f, --force foreaz recodingurile chiar i cnd nu sunt reversibile\n" ++" -t, --touch efectueaz `touch' pe fiierele recodate dup nlocuire\n" ++" -i, --sequence=files folosete fiiere intermediare pentru treceri secveniale\n" ++" --sequence=memory folosete bufferele de memorie pentru trecerile secveniale\n" ++ ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr " -p, --sequence=pipe folosete mecanismul de `pipe' pentru treceri secveniale\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe la fel ca -i(pe acest system)\n" ++ ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Setri de precizie(fine tuning):\n" ++" -s, --strict folosete mapri stricte, chiar dac se pierd caractere\n" ++" -d, --diacritics convertete doar diacritice sau asemntor pentru HTML/LaTeX\n" ++" -S, --source[=LN] limiteaz recodinguri n iruri i comentarii ca pentru LN\n" ++" -c, --colons folosete coloane n loc de ghilimele pentru diaeresis\n" ++" -g, --graphics aproximeaz rigle(rulers) IBMPC prin grafic ASCII\n" ++" -x, --ignore=SET_CARACTERE ignor SET_CARACTERE n alegerea cilor de recoding\n" ++ ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"Opiunea -l fr FORMAT sau SET_CARACTERE listeaz seturile de caractere i\n" ++"nfirile(surfaces) disponibile. FORMAT is `decimal', `octal',\n" ++"`hexadecimal' sau `full' (sau unul din `dohf').\n" ++ ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"Dac DEFAULT_CHARSET nu este setat n mediu (environment) CHARSET va fi encodarea specific\n" ++"determinat de LC_ALL, LC_CTYPE, LANG.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Cu -k, seturile de caractere posibile dinainte sunt listate dup\n" ++"SET_CARACTERE specificat, ambele fiind seturi de caractere tabulare,\n" ++"cu PERECHI de forma `BEF1:AFT1,BEF2: AFT2,...'\n" ++"unde BEF i AFT sunt coduri ce trebuie date ca numere zecimale.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN e un limbaj de programare, poate fi `c', `perl' sau `po'; `c' este implicit.\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"CERERE(REQUEST) este SUBCERERE[,SUBCERERE]...; SUBCERERE este ENCODING[..ENCODING]...\n" ++"ENCODING is [SET_CARACTERE][/[NFIARE]]...; CERERE se prezint ca\n" ++"PRECEDENT..ULTERIOR, cu PRECEDENT i ULTERIOR fiind seturi de caractere.\n" ++"Un SET_CARACTERE omis sugereaz setul de caractere obinuit; o [/NFIARE]\n" ++"omis reprezint infiarea sugerat pentru SET_CARACTERE; un /\n" ++"fr nume de nfiare nseamn fr nfiri. Vedei manualul.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Dac nu sunt dai nici unul dintre-i i -p, se presupune -p dac nu FIIER,\n" ++"altfel -i. Fiecare FIIER este recodat(recoded) peste sine, originalul\n" ++"pierzndu-se. Dac nu este specificat FIIER, atunci se comport ca un\n" ++"filtru i recodeaz stdin n stdout.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Raportai bug-urile la .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "Secvena `%s' este ambigu" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "Secvena `%s' nu este cunoscut" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "Limba `%s' este ambigu" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "Limba `%s' nu este cunoscut" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "Formatul `%s' este ambiguu" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "Formatul `%s' nu este cunoscut" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Scris de Franc,ois Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Acesta este free software; vedei sursele pentur condiiile de copiere.\n" ++"NU exist NICI o garanie; nici mcar pentru VANDABILITATE sau MODIFICARE\n" ++"PENTRU UN SCOP PRIVAT.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "Simbolul `%s' nu este cunoscut" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "Setul de caractere `%s' nu este cunoscut sau este ambiguu" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Lipsete parametrul solicitat" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Sintax nvechit(deprecated), utilizai `%s'" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "Cererea `%s' este greit" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "Recodare %s..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " finalizat\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " euat: %s n pasul `%s..%s'\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s a euat: %s n pasul `%s..%s'" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s n pasul `%s..%s'" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "Setul de caractere %s exist deja i nu este %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "Nu se poate lista `%s', nici un nume disponibil pentru acest set de caractere" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Zec Oct Hex UCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "Ne pare ru, nici un nume disponibil pentru `%s'" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "Schimbtorul de nfiri(resurfacer) setat mai multe dect o dat pentru `%s'" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "Schimbtorul de nfiri(unsurfacer) setat mai mult dect o dat pentru `%s'" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "Memorie virtual plin" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "Codurile %3d i %3d ambele recodate n %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "Nici un caracter recodat n %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "Nu se poate inversa tabela unu la unu dat" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "Se urmresc diagnosticele pentru `%s' n `%s'" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "Perechea numrul %d <%3d, %3d> n conflict cu <%3d, %3d>" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "Nu s-a putut completa tabelul din setul de perechi cunoscute" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Recodare de identitate, nu necesit tabel" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "Recodarea este prea complex pentru un tabel simplu" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sTabelul de conversie generat mecanic de `%s' Free %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%s pentru secvena %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "Nu exist tabel de tiprit" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "reversibil" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s n %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "octet" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "variabil()" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Nendeplinibil*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*copiere-simpl*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "Memorie virtual plin!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "Pas de iniializare euat" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "Pas de iniializare euat (opiuni neprocesate)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Cerere: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "Micorat la: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "Nume nfiare necunoscut: `%s'" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "Nici o ans de recodare din `%s' n `%s'" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "Se ateapt `..' n cerere" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "Starea de ateptare a procesului derivat(child) este 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "" ++"UCS2 Mne Descriere\n" ++"\n" +--- recode-3.6.orig/i18n/ca.po ++++ recode-3.6/i18n/ca.po +@@ -0,0 +1,578 @@ ++# Catalan translation of GNU recode. ++# Copyright 2002, 2003 Free Software Foundation, Inc. ++# Jordi Mallach , 2002, 2003. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: recode 3.6\n" ++"POT-Creation-Date: 2001-01-02 22:35+0100\n" ++"PO-Revision-Date: 2003-08-30 16:48+0200\n" ++"Last-Translator: Jordi Mallach \n" ++"Language-Team: Catalan \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 0.9.6\n" ++ ++#: src/main.c:142 ++msgid "No error" ++msgstr "No hi ha cap error" ++ ++#: src/main.c:145 ++msgid "Non canonical input" ++msgstr "L'entrada no s cannica" ++ ++#: src/main.c:148 ++msgid "Ambiguous output" ++msgstr "L'eixida s ambigua" ++ ++#: src/main.c:151 ++msgid "Untranslatable input" ++msgstr "L'entrada no s convertible" ++ ++#: src/main.c:154 ++msgid "Invalid input" ++msgstr "L'entrada s invlida" ++ ++#: src/main.c:157 ++msgid "System detected problem" ++msgstr "El sistema ha detectat un problema" ++ ++# El verb "to misuse" vol dir "desaprofitar" o tamb "fer mal s". Crec ++# que en aquest cas la traducci ms correcta seria: "Mal s de la ++# biblioteca de recodificaci" o, si es prefereix, "s incorrecte de ++# la biblioteca de recodificaci". mvs ++# B, les teues frases sn en "indi", que diem Ivan i jo... ++# es a dir, no sn frases completes. No veig massa diferncia entre ++# s incorrecte de la biblioteca de recodificaci i la forma que he ++# fet servir jo... jm ++#: src/main.c:160 ++msgid "Misuse of recoding library" ++msgstr "L's de la biblioteca de recodificaci s incorrecte" ++ ++#: src/main.c:163 ++msgid "Internal recoding bug" ++msgstr "S'ha produt un error intern de recodificaci" ++ ++#: src/main.c:208 ++msgid "" ++"This program is free software; you can redistribute it and/or modify\n" ++"it under the terms of the GNU General Public License as published by\n" ++"the Free Software Foundation; either version 2, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" ++"GNU General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License\n" ++"along with this program; if not, write to the Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" ++msgstr "" ++"A s programari lliure; podeu redistribuir-lo i/o modificar-lo\n" ++"sota els termes de la Llicncia Pblica General GNU tal i com ha estat\n" ++"publicada per la Free Software Foundation; b sota la versi 2 de la\n" ++"Llicncia o b (si ho preferiu) sota qualsevol versi posterior.\n" ++"\n" ++"Aquest programa es distribueix amb l'expectativa de que ser til,\n" ++"per SENSE CAP GARANTIA; ni tan sols la garantia implcita de\n" ++"COMERCIABILITAT o ADEQUACI PER UN PROPSIT PARTICULAR. Vegeu la\n" ++"Llicncia Pblica General GNU per obtenir-ne ms detalls.\n" ++"\n" ++"Haureu d'haver rebut una cpia de la Llicncia Pblica General GNU\n" ++"juntament amb aquest programa; en cas contrari, escriviu a la Free\n" ++"Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" ++"MA 02111, USA.\n" ++ ++#: src/main.c:233 ++#, c-format ++msgid "Try `%s %s' for more information.\n" ++msgstr "Proveu %s %s per a obtindre ms informaci.\n" ++ ++# On posa "entre varios", a no s un castellanisme?. ++# Em sembla que seria ms correcte posar "diversos" en voltes de "varios". mvs ++# I tant... jm ++#: src/main.c:237 ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "El recode lliure converteix fitxers entre diversos jocs de carcters i superfcies.\n" ++ ++#: src/main.c:241 ++#, c-format ++msgid "" ++"\n" ++"Usage: %s [OPTION]... [ [CHARSET] | REQUEST [FILE]... ]\n" ++msgstr "" ++"\n" ++"Forma d's: %s [OPCI]... [ [JOC DE CARCTERS] | PETICI [FITXER]... ]\n" ++ ++# Aquest programa s'executa en terminal o en un ++# servidor x?. Si s per a una terminal potser caldria respectar ++# un salt de lnia fins la columna nm. 70. S'edita el missatge ++# a un editor de textos que aplique salt de lnia automticament, ++# i el copiem al programa traductor (si feu servir kbabel, no ++# oblideu d'afegir "\n" al final de cada lnia). mvs ++# S, s en mode text, i corregit. El kbabel us fa ficar el salt ++# de lnia a ma? Qu mal... :) jm ++#: src/main.c:244 ++msgid "" ++"\n" ++"If a long option shows an argument as mandatory, then it is mandatory\n" ++"for the equivalent short option also. Similarly for optional arguments.\n" ++msgstr "" ++"\n" ++"Si una opci llarga mostra un argument com requerit, aleshores tamb s\n" ++"requerit per a l'opci curta equivalent, i de forma similar per als\n" ++"arguments opcionals.\n" ++ ++# Que tal si traduim "copyright", per "drets reservats"?. ++# Tamb on posa "copying conditions", aix no vol dir ++# "condicions de l'autor" en voltes de "condicions de cpia"? mvs ++# copyright != drets reservats, aix seria all rights reserved ++# o similar. Crec que copying conditions s l'evident: condicions ++# de cpia. El tema de traduir o no copyright s'ha discutit alguna ++# vegada si no recorde mal, i sempre s'ha preferit no traduir-ho. jm ++#: src/main.c:250 ++msgid "" ++"\n" ++"Listings:\n" ++" -l, --list[=FORMAT] list one or all known charsets and aliases\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" ++" -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" ++" -F, --freeze-tables write out a C module holding all tables\n" ++" -T, --find-subsets report all charsets being subset of others\n" ++" -C, --copyright display Copyright and copying conditions\n" ++" --help display this help and exit\n" ++" --version output version information and exit\n" ++msgstr "" ++"\n" ++"Llistats:\n" ++" -l, --list[=FORMAT] llista un o tots els jocs de carcters i lies\n" ++" coneguts\n" ++" -k, --known=PARELLES limita els jocs de carcters d'acord amb la\n" ++" llista de PARELLES conegudes\n" ++" -h, --header=[={LN/}NOM} mostra la taula NOM a l'eixida estndard\n" ++" utilitzant LN, i surt a continuaci\n" ++" -F, --freeze-tables mostra un mdul de C contenint totes les taules\n" ++" -T, --find-subsets informa de tots els jocs de carcters que sn\n" ++" subconjunts d'altres\n" ++" -C, --copyright mostra el Copyright i les condicions de cpia\n" ++" --help mostra aquesta ajuda i ix\n" ++" --version mostra la informaci sobre la versi i ix\n" ++ ++# Una "passa" no s un "pas". "Passa" es un sinnim de ++# epidmia. Per tant, hauria de posar-se "passos" i no "passes". ++# Concretant: ++# "step" s "pas" ("passos") o "iteraci" ++# "pass" s "passi" ("passis"), sinnim de perms ++# ("cinema session pass" = "passi de sessi de cinema"). mvs ++# Uff. Aquesta errada l'arrossegue en altres traduccions, aleshores. ++# Caldr fer una bonica sessi de greps. jm ++#: src/main.c:263 ++msgid "" ++"\n" ++"Operation modes:\n" ++" -v, --verbose explain sequence of steps and report progress\n" ++" -q, --quiet, --silent inhibit messages about irreversible recodings\n" ++" -f, --force force recodings even when not reversible\n" ++" -t, --touch touch the recoded files after replacement\n" ++" -i, --sequence=files use intermediate files for sequencing passes\n" ++" --sequence=memory use memory buffers for sequencing passes\n" ++msgstr "" ++"\n" ++"Modes d'operaci:\n" ++" -v, --verbose explica la seqncia de passos i informa del progrs\n" ++" -q, --quiet, --silent inhabilita els missatges sobre recodificacions\n" ++" irreversibles\n" ++" -f, --force fora les recodificacions incls si sn irreversibles\n" ++" -t, --touch toca els fitxers recodificats desprs del reempla\n" ++" -i, --sequence=files utilitza fitxers intermedis per als passos\n" ++" --sequence=memory utilitza bfers de memria per als passos\n" ++ ++# Vegeu la mateixa observaci que vaig fer al missatge nm 15. mvs ++#: src/main.c:275 ++msgid " -p, --sequence=pipe use pipe machinery for sequencing passes\n" ++msgstr "" ++" -p, --sequence=pipe utilitza conductes per als passos de\n" ++" seqncies\n" ++ ++#: src/main.c:280 ++msgid " -p, --sequence=pipe same as -i (on this system)\n" ++msgstr " -p, --sequence=pipe el mateix que -i (en aquest sistema)\n" ++ ++# A l'opci "-g" has obviat la paraula "rules", que ++# voldria dir "normes". Aix, "IBMPC rulers" voldria dir ++# "normes IBMPC", encara que no estic del tot segur. mvs ++# No, he tradut rules per grfics. Es refereix als carcters ++# amb els que es dibuixen les caixetes i tal. jm ++#: src/main.c:285 ++msgid "" ++"\n" ++"Fine tuning:\n" ++" -s, --strict use strict mappings, even loose characters\n" ++" -d, --diacritics convert only diacritics or alike for HTML/LaTeX\n" ++" -S, --source[=LN] limit recoding to strings and comments as for LN\n" ++" -c, --colons use colons instead of double quotes for diaeresis\n" ++" -g, --graphics approximate IBMPC rulers by ASCII graphics\n" ++" -x, --ignore=CHARSET ignore CHARSET while choosing a recoding path\n" ++msgstr "" ++"\n" ++"Ajustament afinat:\n" ++" -s, --strict utilitza coincidncies estrictes, encara que es\n" ++" perden carcters\n" ++" -d, --diacritics converteix noms els accents o pareguts per a\n" ++" HTML/LaTeX\n" ++" -S, --source[=LN] limita la recodificaci a cadenes i comentaris\n" ++" segons LN\n" ++" -c, --colons utilitza dos punts en comptes de cometes dobles\n" ++" per a la diresis\n" ++" -g, --graphics aproxima els grfics IBMPC amb grfics ASCII\n" ++" -x, --ignore=JOC descarta JOC al escollir un cam de recodificaci\n" ++ ++# "L'opci "-l" sense cap FORMAT ni JOC DE CARACTERS llista..." mvs ++# Fet. jm ++#: src/main.c:296 ++msgid "" ++"\n" ++"Option -l with no FORMAT nor CHARSET list available charsets and surfaces.\n" ++"FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" ++msgstr "" ++"\n" ++"L'opci -l sense cap FORMAT o JOC DE CARCTERS llista els jocs de carcters\n" ++"i facetes disponibles. FORMAT s decimal, octal, hexadecimal o full\n" ++"(o un de dohf).\n" ++ ++# "... de la que depn...", aix s un castellanisme. ++# El correcte s dir: "... de la qual depn...", o ++# "... de qu depn...", (ull!: amb laccent tancat). mvs ++# Oops. Volia haver ficat de la qual. jm ++#: src/main.c:302 ++msgid "" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" ++"dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" ++msgstr "" ++"A no ser que s'establisca DEFAULT_CHARSET a l'entorn, el valor\n" ++"predeterminat de CHARSET s la codificaci de la qual depen el locale,\n" ++"determinat per LC_ALL, LC_CTYPE, LANG.\n" ++ ++#: src/main.c:307 ++msgid "" ++"With -k, possible before charsets are listed for the given after CHARSET,\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" ++"and BEFs and AFTs being codes are given as decimal numbers.\n" ++msgstr "" ++"Amb -k, es mostren els possibles jocs de carcters abans per al JOC\n" ++"desprs donat, sent ambds jocs de carcters tabulars, amb PARELLES de la\n" ++"forma ABAN1:DESP1,ABAN2:DESP2,... i sent els ABAN i DESP codis donats com\n" ++"nmeros decimals.\n" ++ ++#: src/main.c:312 ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgstr "LN s un llenguatge, pot ser c, perl o po; c s el predeterminat.\n" ++ ++#: src/main.c:315 ++msgid "" ++"\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" ++"with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" ++"with an empty surface name means no surfaces at all. See the manual.\n" ++msgstr "" ++"\n" ++"PETICI s SUBPETICI[,SUBPETICI]...;\n" ++"SUBPETICI s CODIFICACI[..CODIFICACI]...\n" ++"CODIFICACI s [JOC DE CARCTERS[/[FACETA]]...;\n" ++"PETICI sovint s ABANS..DESPRS,\n" ++"amb ABANS i DESPRS sent jocs de carcters. Un JOC DE CARCTERS oms\n" ++"implica el joc de carcters habitual; una [/FACETA] omesa vol dir la faceta\n" ++"implcita per al JOC DE CARCTERS; un / amb una faceta buida vol dir que no\n" ++"hi ha faceta. Vegeu el manual.\n" ++ ++#: src/main.c:323 ++msgid "" ++"\n" ++"If none of -i and -p are given, presume -p if no FILE, else -i.\n" ++"Each FILE is recoded over itself, destroying the original. If no\n" ++"FILE is specified, then act as a filter and recode stdin to stdout.\n" ++msgstr "" ++"\n" ++"Si no es dona cap de -i i -p, es suposa -p si no hi ha cap FITXER, si no, -i.\n" ++"Cada FITXER es recodifica damunt d'ell mateix, destrunt l'original. Si no\n" ++"s'especifica cap FITXER, aleshores actua com un filtre i recodifica\n" ++"l'entrada estndard a l'eixida estndard.\n" ++ ++#: src/main.c:329 ++msgid "" ++"\n" ++"Report bugs to .\n" ++msgstr "" ++"\n" ++"Informeu dels errors a .\n" ++ ++#: src/main.c:430 ++#, c-format ++msgid "Sequence `%s' is ambiguous" ++msgstr "La seqncia %s s ambgua" ++ ++#: src/main.c:434 ++#, c-format ++msgid "Sequence `%s' is unknown" ++msgstr "La seqncia %s s desconeguda" ++ ++#: src/main.c:464 src/main.c:522 ++#, c-format ++msgid "Language `%s' is ambiguous" ++msgstr "El llenguatge %s s ambigu" ++ ++#. -1 ++#: src/main.c:468 src/main.c:526 ++#, c-format ++msgid "Language `%s' is unknown" ++msgstr "El llenguatge %s s desconegut" ++ ++#: src/main.c:560 ++#, c-format ++msgid "Format `%s' is ambiguous" ++msgstr "El format %s s ambigu" ++ ++#: src/main.c:564 ++#, c-format ++msgid "Format `%s' is unknown" ++msgstr "El format %s s desconegut" ++ ++#: src/main.c:621 ++msgid "Written by Franc,ois Pinard .\n" ++msgstr "Escrit per Franois Pinard .\n" ++ ++#: src/main.c:624 ++msgid "" ++"\n" ++"Copyright (C) 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++msgstr "" ++"\n" ++"Copyright 1990, 92, 93, 94, 96, 97, 99 Free Software Foundation, Inc.\n" ++ ++#: src/main.c:628 ++msgid "" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"A s Programari Lliure; vegeu el codi font per les condicions de\n" ++"cpia. NO hi ha CAP garantia; ni tan sols de COMERCIABILITAT o ADEQUACI\n" ++"PER UN PROPSIT DETERMINAT.\n" ++ ++#: src/main.c:669 ++#, c-format ++msgid "Symbol `%s' is unknown" ++msgstr "El smbol %s s desconegut" ++ ++#: src/main.c:709 src/main.c:723 ++#, c-format ++msgid "Charset `%s' is unknown or ambiguous" ++msgstr "El joc de carcters %s s desconegut o ambigu" ++ ++#: src/main.c:754 ++msgid "Required argument is missing" ++msgstr "Manca un argument requerit" ++ ++#: src/main.c:797 ++#, c-format ++msgid "Syntax is deprecated, please prefer `%s'" ++msgstr "Aquesta sintaxi s desaconsellada, si us plau, utilitzeu %s" ++ ++#: src/main.c:803 ++#, c-format ++msgid "Request `%s' is erroneous" ++msgstr "La petici %s s errnia" ++ ++#: src/main.c:903 ++#, c-format ++msgid "Recoding %s..." ++msgstr "S'est recodificant %s..." ++ ++#: src/main.c:913 ++msgid " done\n" ++msgstr " fet\n" ++ ++#: src/main.c:954 ++#, c-format ++msgid " failed: %s in step `%s..%s'\n" ++msgstr " ha fallat: %s al pas %s..%s\n" ++ ++#: src/main.c:961 ++#, c-format ++msgid "%s failed: %s in step `%s..%s'" ++msgstr "%s ha fallat: %s al pas %s..%s" ++ ++#: src/main.c:984 ++#, c-format ++msgid "%s in step `%s..%s'" ++msgstr "%s al pas %s..%s" ++ ++#: src/names.c:335 ++#, c-format ++msgid "Charset %s already exists and is not %s" ++msgstr "El joc de carcters %s ja existeix i no s %s" ++ ++#: src/names.c:831 ++#, c-format ++msgid "Cannot list `%s', no names available for this charset" ++msgstr "" ++"No es pot llistar %s, no hi ha noms disponibles per a aquest\n" ++"joc de carcters" ++ ++#. code counter ++#. expected value for code counter ++#. insert a while line before printing ++#. Print the long table according to explode data. ++#: src/names.c:984 src/names.c:1030 ++#, c-format ++msgid "Dec Oct Hex UCS2 Mne %s\n" ++msgstr "Dec Oct Hex UCS2 Mne %s\n" ++ ++#: src/names.c:1049 ++#, c-format ++msgid "Sorry, no names available for `%s'" ++msgstr "No hi ha noms disponibles per a %s" ++ ++#: src/outer.c:125 ++#, c-format ++msgid "Resurfacer set more than once for `%s'" ++msgstr "S'ha establert resurfacer ms d'una vegada per a %s" ++ ++#: src/outer.c:133 ++#, c-format ++msgid "Unsurfacer set more than once for `%s'" ++msgstr "S'ha establert unsurfacer ms d'una vegada per a %s" ++ ++#: src/recode.c:115 src/recode.c:127 ++msgid "Virtual memory exhausted" ++msgstr "La memria virtual s'ha exhaurit" ++ ++#: src/recode.c:155 ++#, c-format, ycp-format ++msgid "Codes %3d and %3d both recode to %3d" ++msgstr "Els codis %3d i %3d es recodifiquen ambds a %3d" ++ ++#: src/recode.c:169 ++#, c-format, ycp-format ++msgid "No character recodes to %3d" ++msgstr "Cap carcter es recodifica a %3d" ++ ++#: src/recode.c:170 ++msgid "Cannot invert given one-to-one table" ++msgstr "No es pot invertir la taula un-a-un donada" ++ ++#: src/recode.c:224 src/recode.c:236 ++#, c-format ++msgid "Following diagnostics for `%s' to `%s'" ++msgstr "S'estan seguint els diagnstics per %s a %s" ++ ++#: src/recode.c:229 src/recode.c:241 ++#, c-format ++msgid "Pair no. %d: <%3d, %3d> conflicts with <%3d, %3d>" ++msgstr "La parella no. %d: <%3d, %3d> s conflictiu amb <%3d, %3d>" ++ ++#: src/recode.c:272 ++msgid "Cannot complete table from set of known pairs" ++msgstr "No es pot completar la taula des del joc de parelles conegudes" ++ ++#: src/recode.c:497 ++msgid "Identity recoding, not worth a table" ++msgstr "Recodificaci identitat, no mereix una taula" ++ ++#: src/recode.c:504 ++msgid "Recoding is too complex for a mere table" ++msgstr "La recodificaci s massa complexa per a una simple taula" ++ ++#. Print the header of the header file. ++#: src/recode.c:536 ++#, c-format ++msgid "%sConversion table generated mechanically by Free `%s' %s" ++msgstr "%sTaula de conversi generada mecnicament per Free %s %s" ++ ++#: src/recode.c:538 ++#, c-format ++msgid "%sfor sequence %s.%s" ++msgstr "%sper la seqncia %s.%s" ++ ++#: src/recode.c:744 ++msgid "No table to print" ++msgstr "No hi ha cap taula a imprimir" ++ ++#: src/request.c:34 ++msgid "reversible" ++msgstr "reversible" ++ ++#: src/request.c:36 ++#, c-format ++msgid "%s to %s" ++msgstr "%s a %s" ++ ++#: src/request.c:37 src/request.c:39 ++msgid "byte" ++msgstr "byte" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "ucs2" ++msgstr "ucs2" ++ ++#: src/request.c:38 src/request.c:40 ++msgid "variable" ++msgstr "variable" ++ ++#: src/request.c:111 ++msgid "*Unachievable*" ++msgstr "*Impossible*" ++ ++#: src/request.c:113 ++msgid "*mere copy*" ++msgstr "*simple cpia*" ++ ++#: src/request.c:246 ++msgid "Virtual memory exhausted!" ++msgstr "La memria virtual s'ha exhaurit!" ++ ++#: src/request.c:265 ++msgid "Step initialisation failed" ++msgstr "L'inicialitzaci del pas ha fallat" ++ ++#: src/request.c:272 ++msgid "Step initialisation failed (unprocessed options)" ++msgstr "L'inicialitzaci del pas ha fallat (opcions no processades)" ++ ++#: src/request.c:568 ++#, c-format ++msgid "Request: %s\n" ++msgstr "Petici: %s\n" ++ ++#: src/request.c:720 ++#, c-format ++msgid "Shrunk to: %s\n" ++msgstr "Encogit a: %s\n" ++ ++#: src/request.c:823 src/request.c:932 ++#, c-format ++msgid "Unrecognised surface name `%s'" ++msgstr "El nom de faceta %s s desconegut" ++ ++#: src/request.c:903 ++#, c-format ++msgid "No way to recode from `%s' to `%s'" ++msgstr "No hi ha manera de recodificar de %s a %s" ++ ++#: src/request.c:1013 ++msgid "Expecting `..' in request" ++msgstr "S'esperava .. a la petici" ++ ++#: src/task.c:826 src/task.c:1002 ++#, c-format ++msgid "Child process wait status is 0x%0.2x" ++msgstr "L'estat d'espera del procs fill s 0x%0.2x" ++ ++#: src/testdump.c:298 ++msgid "" ++"UCS2 Mne Description\n" ++"\n" ++msgstr "UCS2 Mne Descripci\n" +--- recode-3.6.orig/i18n/es.po ++++ recode-3.6/i18n/es.po +@@ -1,12 +1,12 @@ +-# Mensajes en espaol para GNU recode. +-# Copyright (C) 1999 Free Software Foundation, Inc. +-# Santiago Vila Doncel , 1999. ++# Mensajes en espaol para Free recode. ++# Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. ++# Santiago Vila Doncel , 1999, 2001, 2002. + # + msgid "" + msgstr "" +-"Project-Id-Version: GNU recode 3.4r\n" ++"Project-Id-Version: Free recode 3.6\n" + "POT-Creation-Date: 2001-01-02 22:35+0100\n" +-"PO-Revision-Date: 1999-05-21 18:45+0200\n" ++"PO-Revision-Date: 2002-09-17 00:28+0200\n" + "Last-Translator: Santiago Vila Doncel \n" + "Language-Team: Spanish \n" + "MIME-Version: 1.0\n" +@@ -83,13 +83,9 @@ + msgid "Try `%s %s' for more information.\n" + msgstr "Pruebe `%s %s' para ms informacin.\n" + +-# FUZZY. GNU/Free. + #: src/main.c:237 +-msgid "" +-"Free `recode' converts files between various character sets and surfaces.\n" +-msgstr "" +-"GNU `recode' convierte ficheros entre varios juegos de caracteres y " +-"facetas.\n" ++msgid "Free `recode' converts files between various character sets and surfaces.\n" ++msgstr "Free `recode' convierte ficheros entre varios juegos de caracteres y facetas.\n" + + #: src/main.c:241 + #, c-format +@@ -112,13 +108,11 @@ + "argumentos opcionales.\n" + + #: src/main.c:250 +-#, fuzzy + msgid "" + "\n" + "Listings:\n" + " -l, --list[=FORMAT] list one or all known charsets and aliases\n" +-" -k, --known=PAIRS restrict charsets according to known PAIRS " +-"list\n" ++" -k, --known=PAIRS restrict charsets according to known PAIRS list\n" + " -h, --header[=[LN/]NAME] write table NAME on stdout using LN, then exit\n" + " -F, --freeze-tables write out a C module holding all tables\n" + " -T, --find-subsets report all charsets being subset of others\n" +@@ -128,18 +122,15 @@ + msgstr "" + "\n" + "Listados:\n" +-" -l, --list[=FORMATO] muestra uno o todos los juegos conocidos\n" +-" -k, --known=PARES restringe los juegos de acuerdo con la lista " +-"de\n" ++" -l, --list[=FORMATO] muestra uno o todos los juegos y alias conocidos\n" ++" -k, --known=PARES restringe los juegos de acuerdo con la lista de\n" + " PARES conocidos\n" + " -h, --header[=[LN/]NOMBRE escribe la tabla NOMBRE en la salida estndar\n" + " usando LN, y finaliza\n" + " -F, --freeze-tables escribe un mdulo en C con todas las tablas\n" +-" -T, --find-subsets informa acerca de todos los juegos de " +-"caracteres\n" ++" -T, --find-subsets informa acerca de todos los juegos de caracteres\n" + " que son subconjuntos de otros\n" +-" -C, --copyright muestra el Copyright y las condiciones de " +-"copia\n" ++" -C, --copyright muestra el Copyright y las condiciones de copia\n" + " --help muestra esta ayuda y finaliza\n" + " --version muestra la versin y finaliza\n" + +@@ -156,13 +147,10 @@ + msgstr "" + "\n" + "Modos de operacin:\n" +-" -v, --verbose explica la sucesin de pasos e informa del " +-"desarrollo\n" +-" -q, --quiet, --silent no muestra mensajes sobre conversiones " +-"irreversibles\n" ++" -v, --verbose explica la sucesin de pasos e informa del desarrollo\n" ++" -q, --quiet, --silent no muestra mensajes sobre conversiones irreversibles\n" + " -f, --force realiza la conversin incluso si no es reversible\n" +-" -t, --touch toca los ficheros convertidos despus del " +-"reemplazo\n" ++" -t, --touch toca los ficheros convertidos despus del reemplazo\n" + " -i, --sequence=files utiliza ficheros intermedios para las pasadas\n" + " --sequence=memory utiliza bfers en memoria para las pasadas\n" + +@@ -196,15 +184,11 @@ + msgstr "" + "\n" + "Ajuste `fino':\n" +-" -s, --strict utiliza correspondencias estrictas, aunque se " +-"pierdan\n" ++" -s, --strict utiliza correspondencias estrictas, aunque se pierdan\n" + " caracteres\n" +-" -d, --diacritics convierte solamente acentos y dems para " +-"HTML/LaTeX\n" +-" -S, --source[=LN] limita la conversin a cadenas y comentarios segn " +-"LN\n" +-" -c, --colons utiliza dos puntos en vez de comillas para " +-"diresis\n" ++" -d, --diacritics convierte solamente acentos y dems para HTML/LaTeX\n" ++" -S, --source[=LN] limita la conversin a cadenas y comentarios segn LN\n" ++" -c, --colons utiliza dos puntos en vez de comillas para diresis\n" + " -g, --graphics aproxima grficos IBMPC mediante grficos ASCII\n" + " -x, --ignore=JUEGO descarta JUEGO al escoger un camino de conversin\n" + +@@ -215,61 +199,51 @@ + "FORMAT is `decimal', `octal', `hexadecimal' or `full' (or one of `dohf').\n" + msgstr "" + "\n" +-"La opcin -l sin FORMATO ni JUEGO muestra los juegos de caracteres y " +-"facetas.\n" +-"disponibles. FORMATO es `decimal', `octal', `hexadecimal' o `full' (o uno " +-"de\n" ++"La opcin -l sin FORMATO ni JUEGO muestra los juegos de caracteres y facetas.\n" ++"disponibles. FORMATO es `decimal', `octal', `hexadecimal' o `full' (o uno de\n" + "entre `dohf').\n" + + #: src/main.c:302 +-#, fuzzy + msgid "" +-"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the " +-"locale\n" ++"Unless DEFAULT_CHARSET is set in environment, CHARSET defaults to the locale\n" + "dependent encoding, determined by LC_ALL, LC_CTYPE, LANG.\n" + msgstr "" +-"A menos que se establezca DEFAULT_CHARSET en el entorno,\n" +-"CHARSET es `%s' por omisin.\n" ++"A menos que se establezca DEFAULT_CHARSET en el entorno, el valor\n" ++"predeterminado de CHARSET es la codificacin de la que depende el locale,\n" ++"determinada por LC_ALL, LC_CTYPE, LANG.\n" + + #: src/main.c:307 + msgid "" + "With -k, possible before charsets are listed for the given after CHARSET,\n" +-"both being tabular charsets, with PAIRS of the form " +-"`BEF1:AFT1,BEF2:AFT2,...'\n" ++"both being tabular charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...'\n" + "and BEFs and AFTs being codes are given as decimal numbers.\n" + msgstr "" +-"Con -k, se muestran los posibles juegos `antes' para el JUEGO `despus' " +-"dado,\n" ++"Con -k, se muestran los posibles juegos `antes' para el JUEGO `despus' dado,\n" + "siendo ambos juegos de caracteres tabulares, con PAREJAS de la forma\n" + "`ANT1:DES1,ANT2:DES2,...' y siendo los ANTs y los DESs cdigos dados\n" + "como nmeros decimales.\n" + + #: src/main.c:312 +-msgid "" +-"LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" ++msgid "LN is some language, it may be `c', `perl' or `po'; `c' is the default.\n" + msgstr "" +-"LN es algn lenguage, puede ser `c', `perl' o `po', el valor predeterminado\n" ++"LN es algn lenguaje, puede ser `c', `perl' o `po', el valor predeterminado\n" + "es `c'\n" + + # FIXME: [SURFACE]... means the usual surfaces or the usual surface? + #: src/main.c:315 + msgid "" + "\n" +-"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is " +-"ENCODING[..ENCODING]...\n" +-"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like " +-"BEFORE..AFTER,\n" ++"REQUEST is SUBREQUEST[,SUBREQUEST]...; SUBREQUEST is ENCODING[..ENCODING]...\n" ++"ENCODING is [CHARSET][/[SURFACE]]...; REQUEST often looks like BEFORE..AFTER,\n" + "with BEFORE and AFTER being charsets. An omitted CHARSET implies the usual\n" +-"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a " +-"/\n" ++"charset; an omitted [/SURFACE]... means the implied surfaces for CHARSET; a /\n" + "with an empty surface name means no surfaces at all. See the manual.\n" + msgstr "" + "\n" + "PETICIN es SUBPETICIN[,SUBPETICIN]...;\n" + "SUBPETICIN es CODIFICACIN[..CODIFICACIN]...\n" + "CODIFICACIN es [JUEGO][/[FACETA]]...; PETICIN suele ser ANTES..DESPUS,\n" +-"donde ANTES y DESPUS son juegos de caracteres. Un JUEGO omitido implica " +-"el\n" ++"donde ANTES y DESPUS son juegos de caracteres. Un JUEGO omitido implica el\n" + "juego de caracteres usual; una [/FACETA]... omitida significa la faceta\n" + "implcita para el JUEGO; una / con una faceta vaca significa que no hay\n" + "ninguna faceta. Vase el manual.\n" +@@ -284,8 +258,7 @@ + "\n" + "Si no se especifica ninguna de las opciones -i -p, se supone -p si no\n" + "hay ningn FICHERO, o si no, -i. Cada FICHERO se convierte sobre s mismo,\n" +-"destruyendo el original. Si no es especifica ningn FICHERO, entonces " +-"funciona\n" ++"destruyendo el original. Si no es especifica ningn FICHERO, entonces funciona\n" + "como filtro y convierte la entrada estndar en la salida estndar.\n" + + #: src/main.c:329 +@@ -294,46 +267,43 @@ + "Report bugs to .\n" + msgstr "" + "\n" +-"Comunicar `bugs' a .\n" ++"Comunicar bichos a .\n" + + #: src/main.c:430 + #, c-format + msgid "Sequence `%s' is ambiguous" +-msgstr "" ++msgstr "La sucesin `%s' es ambigua" + + #: src/main.c:434 + #, c-format + msgid "Sequence `%s' is unknown" +-msgstr "" ++msgstr "La sucesin `%s' es desconocida" + + #: src/main.c:464 src/main.c:522 + #, c-format + msgid "Language `%s' is ambiguous" +-msgstr "" ++msgstr "El idioma `%s' es ambiguo" + + #. -1 + #: src/main.c:468 src/main.c:526 + #, c-format + msgid "Language `%s' is unknown" +-msgstr "" ++msgstr "El idioma `%s' es desconocido" + + #: src/main.c:560 + #, c-format + msgid "Format `%s' is ambiguous" +-msgstr "" ++msgstr "El formato `%s' es ambiguo" + + #: src/main.c:564 + #, c-format + msgid "Format `%s' is unknown" +-msgstr "" ++msgstr "El formato `%s' es desconocido" + + # Se entiende que los usuarios espaoles s tendrn iso-8859-1. + #: src/main.c:621 +-#, fuzzy + msgid "Written by Franc,ois Pinard .\n" +-msgstr "" +-"\n" +-"Escrito por Franois Pinard .\n" ++msgstr "Escrito por Franois Pinard .\n" + + # FIXME: Aadir 1998 (?). + #: src/main.c:624 +@@ -356,26 +326,26 @@ + #: src/main.c:669 + #, c-format + msgid "Symbol `%s' is unknown" +-msgstr "" ++msgstr "El smbolo `%s' es desconocido" + + #: src/main.c:709 src/main.c:723 + #, c-format + msgid "Charset `%s' is unknown or ambiguous" +-msgstr "" ++msgstr "El juego de caracteres `%s' es desconocido o ambiguo" + + #: src/main.c:754 + msgid "Required argument is missing" +-msgstr "" ++msgstr "Falta el argumento requerido" + + #: src/main.c:797 +-#, fuzzy, c-format ++#, c-format + msgid "Syntax is deprecated, please prefer `%s'" +-msgstr "Sintaxis antigua, por favor utilice `%s'" ++msgstr "La sintaxis es antigua, por favor utilice `%s'" + + #: src/main.c:803 + #, c-format + msgid "Request `%s' is erroneous" +-msgstr "" ++msgstr "La peticin `%s' es errnea" + + #: src/main.c:903 + #, c-format +@@ -387,19 +357,19 @@ + msgstr " hecho\n" + + #: src/main.c:954 +-#, fuzzy, c-format ++#, c-format + msgid " failed: %s in step `%s..%s'\n" +-msgstr " fall: %s en %s..%s\n" ++msgstr " fall: %s en el paso %s..%s\n" + + #: src/main.c:961 +-#, fuzzy, c-format ++#, c-format + msgid "%s failed: %s in step `%s..%s'" +-msgstr "%s fall: %s en %s..%s" ++msgstr "%s fall: %s en el paso %s..%s" + + #: src/main.c:984 +-#, fuzzy, c-format ++#, c-format + msgid "%s in step `%s..%s'" +-msgstr "%s en %s..%s" ++msgstr "%s en el paso %s..%s" + + #: src/names.c:335 + #, c-format +@@ -472,8 +442,7 @@ + + #: src/recode.c:272 + msgid "Cannot complete table from set of known pairs" +-msgstr "" +-"No se puede completar la tabla a partir del conjunto de pares conocidos" ++msgstr "No se puede completar la tabla a partir del conjunto de pares conocidos" + + #: src/recode.c:497 + msgid "Identity recoding, not worth a table" +@@ -491,7 +460,7 @@ + #: src/recode.c:536 + #, c-format + msgid "%sConversion table generated mechanically by Free `%s' %s" +-msgstr "%sTabla de conversin generada automticamente por GNU %s %s" ++msgstr "%sTabla de conversin generada automticamente por Free `%s' %s" + + #: src/recode.c:538 + #, c-format +@@ -500,7 +469,7 @@ + + #: src/recode.c:744 + msgid "No table to print" +-msgstr "No hay tabla que mostrar" ++msgstr "No hay ninguna tabla que mostrar" + + #: src/request.c:34 + msgid "reversible" +@@ -580,32 +549,6 @@ + "UCS2 Nem Descripcin\n" + "\n" + +-#~ msgid "CHARSET has no default, define DEFAULT_CHARSET in the environment.\n" +-#~ msgstr "" +-#~ "CHARSET no tiene ningn valor predeterminado, defina DEFAULT_CHARSET en el\n" +-#~ "entorno.\n" +- +-#~ msgid "Ambiguous sequence `%s'" +-#~ msgstr "Sucesin ambigua `%s'" +- +-#~ msgid "Unknown sequence `%s'" +-#~ msgstr "Sucesin desconocida `%s'" +- +-#~ msgid "Ambiguous language `%s'" +-#~ msgstr "Idioma ambiguo `%s'" +- +-#~ msgid "Unknown language `%s'" +-#~ msgstr "Idioma desconocido `%s'" +- +-#~ msgid "Ambiguous format `%s'" +-#~ msgstr "Formato ambiguo `%s'" +- +-#~ msgid "Unknown format `%s'" +-#~ msgstr "Formato desconocido `%s'" +- +-#~ msgid "Erroneous request `%s'" +-#~ msgstr "Peticin errnea `%s'" +- + # Este es difcil. Se admiten sugerencias. + # Especialmente de alguien que conozca bien el programa. + # Creo que "stats" en este caso es abreviatura de "statistics" +@@ -730,12 +673,10 @@ + #~ "FORMAT is a word among decimal, octal, hexadecimal or full (which may be\n" + #~ "abbreviated to one of `dohf'), it defaults to just the canonical name.\n" + #~ "With -k, possible before charsets are listed for the given after CHARSET,\n" +-#~ "both being RFC1345 charsets, with PAIRS of the form " +-#~ "`BEF1:AFT1,BEF2:AFT2,...\n" ++#~ "both being RFC1345 charsets, with PAIRS of the form `BEF1:AFT1,BEF2:AFT2,...\n" + #~ "and BEFs and AFTs being codes. All codes are given as decimal numbers.\n" + #~ msgstr "" +-#~ "Los argumentos obligatorios u opcionales para las opciones largas tambin " +-#~ "son\n" ++#~ "Los argumentos obligatorios u opcionales para las opciones largas tambin son\n" + #~ "obligatorios u opcionales para las opciones cortas.\n" + #~ "\n" + #~ " -C, --copyright muestra el Copyright y la condiciones de copia\n" +@@ -749,8 +690,7 @@ + #~ "\n" + #~ "FORMATO es la palabra decimal, octal, hexadecimal o full (que se pueden\n" + #~ "abreviar por una de las letras `dohf'), por omisin el nombre cannico.\n" +-#~ "Con -k, se muestran los posibles juegos \"antes\" para el JUEGO \"despus\" " +-#~ "dado,\n" ++#~ "Con -k, se muestran los posibles juegos \"antes\" para el JUEGO \"despus\" dado,\n" + #~ "siendo ambos juegos RFC1345, con PARES de la forma `ANT1:DES1,ANT2:DES2,...\n" + #~ "donde los ANTs y los DESs son cdigos. Todos los cdigos se dan en decimal\n" + +@@ -762,8 +702,7 @@ + # "Mis juegos favoritos (y los de Pinard :-) son..." + # + #~ msgid "" +-#~ "Option -l with no FORMAT nor CHARSET list all charsets, also see the " +-#~ "Texinfo\n" ++#~ "Option -l with no FORMAT nor CHARSET list all charsets, also see the Texinfo\n" + #~ "documentation. My preferred charsets are (each user has preferences):\n" + #~ "\n" + #~ " ascii-bs ASCII (7-bit), using backspace to apply diacritics\n" +@@ -772,10 +711,8 @@ + #~ " latin1 ISO Latin-1 8-bit extension of ASCII\n" + #~ " texte Easy French convention for transmitting email messages\n" + #~ msgstr "" +-#~ "La opcin -l sin FORMATO ni JUEGO muestra todos los juegos, vase tambin " +-#~ "la\n" +-#~ "documentacin de Texinfo. Mis juegos favoritos son (cada uno tendr los " +-#~ "suyos):\n" ++#~ "La opcin -l sin FORMATO ni JUEGO muestra todos los juegos, vase tambin la\n" ++#~ "documentacin de Texinfo. Mis juegos favoritos son (cada uno tendr los suyos):\n" + #~ "\n" + #~ " ascii-bs ASCII (7-bit), utilizando backspace para acentos y dems\n" + #~ " ibmpc IBM-PC (8-bit), con retornos de carro adecuados\n" +@@ -805,8 +742,7 @@ + # De momento no veo qu de malo tiene "pasada". + # Si acaso, que modernamente tenga otros significados ("es una pasada!" :-). + # +-#~ msgid "" +-#~ " -o, --sequence=popen use popen machinery for sequencing passes\n" ++#~ msgid " -o, --sequence=popen use popen machinery for sequencing passes\n" + #~ msgstr " -o, --sequence=popen utiliza popen para las pasadas\n" + + #~ msgid " -o, --sequence=popen same as -i (on this system)\n" +@@ -867,8 +803,5 @@ + #~ msgid "Mere copy for the trivial recoding\n" + #~ msgstr "Copia pura y simple para la conversin trivial\n" + +-#~ msgid "UNACHIEVABLE recoding!\n" +-#~ msgstr "Conversin IMPOSIBLE!\n" +- + #~ msgid "You may not explicitly recode from RFC 1345" + #~ msgstr "No se puede convertir explcitamente a partir de RFC 1345" +--- recode-3.6.orig/aclocal.m4 ++++ recode-3.6/aclocal.m4 +@@ -1,6 +1,6 @@ +-dnl aclocal.m4 generated automatically by aclocal 1.4 ++dnl aclocal.m4 generated automatically by aclocal 1.4-p6 + +-dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. ++dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. + dnl This file is free software; the Free Software Foundation + dnl gives unlimited permission to copy and/or distribute it, + dnl with or without modifications, as long as this notice is preserved. +@@ -10,81 +10,73 @@ + dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A + dnl PARTICULAR PURPOSE. + ++# libtool.m4 - Configure libtool for the host system. -*-Shell-script-*- + +-# serial 40 AC_PROG_LIBTOOL +-AC_DEFUN(AC_PROG_LIBTOOL, +-[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl +- +-# Save cache, so that ltconfig can load it +-AC_CACHE_SAVE ++# serial 46 AC_PROG_LIBTOOL ++# Debian $Rev: 50 $ + +-# Actually configure libtool. ac_aux_dir is where install-sh is found. +-CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ +-LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \ +-LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \ +-DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \ +-${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \ +-$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target \ +-|| AC_MSG_ERROR([libtool configure failed]) +- +-# Reload cache, that may have been modified by ltconfig +-AC_CACHE_LOAD ++AC_DEFUN([AC_PROG_LIBTOOL], ++[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl + + # This can be used to rebuild libtool when needed +-LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh" ++LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' + AC_SUBST(LIBTOOL)dnl + +-# Redirect the config.log output again, so that the ltconfig log is not +-# clobbered by the next message. +-exec 5>>./config.log ++# Prevent multiple expansion ++define([AC_PROG_LIBTOOL], []) + ]) + +-AC_DEFUN(AC_LIBTOOL_SETUP, ++AC_DEFUN([AC_LIBTOOL_SETUP], + [AC_PREREQ(2.13)dnl + AC_REQUIRE([AC_ENABLE_SHARED])dnl + AC_REQUIRE([AC_ENABLE_STATIC])dnl + AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl + AC_REQUIRE([AC_CANONICAL_HOST])dnl + AC_REQUIRE([AC_CANONICAL_BUILD])dnl +-AC_REQUIRE([AC_PROG_RANLIB])dnl + AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_PROG_LD])dnl ++AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl + AC_REQUIRE([AC_PROG_NM])dnl ++AC_REQUIRE([LT_AC_PROG_SED])dnl ++ + AC_REQUIRE([AC_PROG_LN_S])dnl ++AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl ++AC_REQUIRE([AC_OBJEXT])dnl ++AC_REQUIRE([AC_EXEEXT])dnl + dnl + +-case "$target" in +-NONE) lt_target="$host" ;; +-*) lt_target="$target" ;; ++_LT_AC_PROG_ECHO_BACKSLASH ++# Only perform the check for file, if the check method requires it ++case $deplibs_check_method in ++file_magic*) ++ if test "$file_magic_cmd" = '$MAGIC_CMD'; then ++ AC_PATH_MAGIC ++ fi ++ ;; + esac + +-# Check for any special flags to pass to ltconfig. +-libtool_flags="--cache-file=$cache_file" +-test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared" +-test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static" +-test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install" +-test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc" +-test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld" +-ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], +-[libtool_flags="$libtool_flags --enable-dlopen"]) ++AC_CHECK_TOOL(RANLIB, ranlib, :) ++AC_CHECK_TOOL(STRIP, strip, :) ++ ++ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) + ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], +-[libtool_flags="$libtool_flags --enable-win32-dll"]) ++enable_win32_dll=yes, enable_win32_dll=no) ++ + AC_ARG_ENABLE(libtool-lock, + [ --disable-libtool-lock avoid locking (might break parallel builds)]) +-test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock" +-test x"$silent" = xyes && libtool_flags="$libtool_flags --silent" ++test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + + # Some flags need to be propagated to the compiler or linker for good + # libtool support. +-case "$lt_target" in ++case $host in + *-*-irix6*) + # Find out which ABI we are using. + echo '[#]line __oline__ "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then +- case "`/usr/bin/file conftest.o`" in ++ case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; +@@ -104,41 +96,2884 @@ + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, +- [AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])]) ++ [AC_LANG_SAVE ++ AC_LANG_C ++ AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) ++ AC_LANG_RESTORE]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; + +-ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], +-[*-*-cygwin* | *-*-mingw*) +- AC_CHECK_TOOL(DLLTOOL, dlltool, false) +- AC_CHECK_TOOL(AS, as, false) +- AC_CHECK_TOOL(OBJDUMP, objdump, false) +- ;; +-]) +-esac +-]) ++ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL], ++[*-*-cygwin* | *-*-mingw* | *-*-pw32*) ++ AC_CHECK_TOOL(DLLTOOL, dlltool, false) ++ AC_CHECK_TOOL(AS, as, false) ++ AC_CHECK_TOOL(OBJDUMP, objdump, false) ++ ++ # recent cygwin and mingw systems supply a stub DllMain which the user ++ # can override, but on older systems we have to supply one ++ AC_CACHE_CHECK([if libtool should supply DllMain function], lt_cv_need_dllmain, ++ [AC_TRY_LINK([], ++ [extern int __attribute__((__stdcall__)) DllMain(void*, int, void*); ++ DllMain (0, 0, 0);], ++ [lt_cv_need_dllmain=no],[lt_cv_need_dllmain=yes])]) ++ ++ case $host/$CC in ++ *-*-cygwin*/gcc*-mno-cygwin*|*-*-mingw*) ++ # old mingw systems require "-dll" to link a DLL, while more recent ones ++ # require "-mdll" ++ SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -mdll" ++ AC_CACHE_CHECK([how to link DLLs], lt_cv_cc_dll_switch, ++ [AC_TRY_LINK([], [], [lt_cv_cc_dll_switch=-mdll],[lt_cv_cc_dll_switch=-dll])]) ++ CFLAGS="$SAVE_CFLAGS" ;; ++ *-*-cygwin* | *-*-pw32*) ++ # cygwin systems need to pass --dll to the linker, and not link ++ # crt.o which will require a WinMain@16 definition. ++ lt_cv_cc_dll_switch="-Wl,--dll -nostartfiles" ;; ++ esac ++ ;; ++ ]) ++esac ++ ++_LT_AC_LTCONFIG_HACK ++ ++]) ++ ++# AC_LIBTOOL_HEADER_ASSERT ++# ------------------------ ++AC_DEFUN([AC_LIBTOOL_HEADER_ASSERT], ++[AC_CACHE_CHECK([whether $CC supports assert without backlinking], ++ [lt_cv_func_assert_works], ++ [case $host in ++ *-*-solaris*) ++ if test "$GCC" = yes && test "$with_gnu_ld" != yes; then ++ case `$CC --version 2>/dev/null` in ++ [[12]].*) lt_cv_func_assert_works=no ;; ++ *) lt_cv_func_assert_works=yes ;; ++ esac ++ fi ++ ;; ++ esac]) ++ ++if test "x$lt_cv_func_assert_works" = xyes; then ++ AC_CHECK_HEADERS(assert.h) ++fi ++])# AC_LIBTOOL_HEADER_ASSERT ++ ++# _LT_AC_CHECK_DLFCN ++# -------------------- ++AC_DEFUN([_LT_AC_CHECK_DLFCN], ++[AC_CHECK_HEADERS(dlfcn.h) ++])# _LT_AC_CHECK_DLFCN ++ ++# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ++# --------------------------------- ++AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], ++[AC_REQUIRE([AC_CANONICAL_HOST]) ++AC_REQUIRE([AC_PROG_NM]) ++AC_REQUIRE([AC_OBJEXT]) ++# Check for command to grab the raw symbol name followed by C symbol from nm. ++AC_MSG_CHECKING([command to parse $NM output]) ++AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [dnl ++ ++# These are sane defaults that work on at least a few old systems. ++# [They come from Ultrix. What could be older than Ultrix?!! ;)] ++ ++# Character class describing NM global symbol codes. ++symcode='[[BCDEGRST]]' ++ ++# Regexp to match symbols that can be accessed directly from C. ++sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' ++ ++# Transform the above into a raw symbol and a C symbol. ++symxfrm='\1 \2\3 \3' ++ ++# Transform an extracted symbol line into a proper C declaration ++lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'" ++ ++# Transform an extracted symbol line into symbol name and symbol address ++lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ++# Define system-specific variables. ++case $host_os in ++aix*) ++ symcode='[[BCDT]]' ++ ;; ++cygwin* | mingw* | pw32*) ++ symcode='[[ABCDGISTW]]' ++ ;; ++hpux*) # Its linker distinguishes data from code symbols ++ lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ++ lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ;; ++irix* | nonstopux*) ++ symcode='[[BCDEGRST]]' ++ ;; ++osf*) ++ symcode='[[BCDEGQRST]]' ++ ;; ++solaris* | sysv5*) ++ symcode='[[BDT]]' ++ ;; ++sysv4) ++ symcode='[[DFNSTU]]' ++ ;; ++esac ++ ++# Handle CRLF in mingw tool chain ++opt_cr= ++case $host_os in ++mingw*) ++ opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ++ ;; ++esac ++ ++# If we're using GNU nm, then use its standard symbol codes. ++if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then ++ symcode='[[ABCDGISTW]]' ++fi ++ ++# Try without a prefix undercore, then with it. ++for ac_symprfx in "" "_"; do ++ ++ # Write the raw and C identifiers. ++lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" ++ ++ # Check to see that the pipe works correctly. ++ pipe_works=no ++ rm -f conftest* ++ cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then ++ # Try sorting and uniquifying the output. ++ if sort "$nlist" | uniq > "$nlist"T; then ++ mv -f "$nlist"T "$nlist" ++ else ++ rm -f "$nlist"T ++ fi ++ ++ # Make sure that we snagged all the symbols we need. ++ if egrep ' nm_test_var$' "$nlist" >/dev/null; then ++ if egrep ' nm_test_func$' "$nlist" >/dev/null; then ++ cat < conftest.$ac_ext ++#ifdef __cplusplus ++extern "C" { ++#endif ++ ++EOF ++ # Now generate the symbol file. ++ eval "$lt_cv_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext' ++ ++ cat <> conftest.$ac_ext ++#if defined (__STDC__) && __STDC__ ++# define lt_ptr void * ++#else ++# define lt_ptr char * ++# define const ++#endif ++ ++/* The mapping between symbol names and symbols. */ ++const struct { ++ const char *name; ++ lt_ptr address; ++} ++lt_preloaded_symbols[[]] = ++{ ++EOF ++ sed "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr) \&\2},/" < "$nlist" >> conftest.$ac_ext ++ cat <<\EOF >> conftest.$ac_ext ++ {0, (lt_ptr) 0} ++}; ++ ++#ifdef __cplusplus ++} ++#endif ++EOF ++ # Now try linking the two files. ++ mv conftest.$ac_objext conftstm.$ac_objext ++ save_LIBS="$LIBS" ++ save_CFLAGS="$CFLAGS" ++ LIBS="conftstm.$ac_objext" ++ CFLAGS="$CFLAGS$no_builtin_flag" ++ if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then ++ pipe_works=yes ++ fi ++ LIBS="$save_LIBS" ++ CFLAGS="$save_CFLAGS" ++ else ++ echo "cannot find nm_test_func in $nlist" >&AC_FD_CC ++ fi ++ else ++ echo "cannot find nm_test_var in $nlist" >&AC_FD_CC ++ fi ++ else ++ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AC_FD_CC ++ fi ++ else ++ echo "$progname: failed program was:" >&AC_FD_CC ++ cat conftest.$ac_ext >&5 ++ fi ++ rm -f conftest* conftst* ++ ++ # Do not use the global_symbol_pipe unless it works. ++ if test "$pipe_works" = yes; then ++ break ++ else ++ lt_cv_sys_global_symbol_pipe= ++ fi ++done ++]) ++global_symbol_pipe="$lt_cv_sys_global_symbol_pipe" ++if test -z "$lt_cv_sys_global_symbol_pipe"; then ++ global_symbol_to_cdecl= ++ global_symbol_to_c_name_address= ++else ++ global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl" ++ global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address" ++fi ++if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address"; ++then ++ AC_MSG_RESULT(failed) ++else ++ AC_MSG_RESULT(ok) ++fi ++]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ++ ++# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++# --------------------------------- ++AC_DEFUN([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR], ++[# Find the correct PATH separator. Usually this is `:', but ++# DJGPP uses `;' like DOS. ++if test "X${PATH_SEPARATOR+set}" != Xset; then ++ UNAME=${UNAME-`uname 2>/dev/null`} ++ case X$UNAME in ++ *-DOS) lt_cv_sys_path_separator=';' ;; ++ *) lt_cv_sys_path_separator=':' ;; ++ esac ++ PATH_SEPARATOR=$lt_cv_sys_path_separator ++fi ++])# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++ ++# _LT_AC_PROG_ECHO_BACKSLASH ++# -------------------------- ++# Add some code to the start of the generated configure script which ++# will find an echo command which doesn't interpret backslashes. ++AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], ++[ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], ++ [AC_DIVERT_PUSH(NOTICE)]) ++_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR ++ ++# Check that we are running under the correct shell. ++SHELL=${CONFIG_SHELL-/bin/sh} ++ ++case X$ECHO in ++X*--fallback-echo) ++ # Remove one level of quotation (which was required for Make). ++ ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ++ ;; ++esac ++ ++echo=${ECHO-echo} ++if test "X[$]1" = X--no-reexec; then ++ # Discard the --no-reexec flag, and continue. ++ shift ++elif test "X[$]1" = X--fallback-echo; then ++ # Avoid inline document here, it may be left over ++ : ++elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then ++ # Yippee, $echo works! ++ : ++else ++ # Restart under the correct shell. ++ exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} ++fi ++ ++if test "X[$]1" = X--fallback-echo; then ++ # used as fallback echo ++ shift ++ cat </dev/null && ++ echo_test_string="`eval $cmd`" && ++ (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null ++ then ++ break ++ fi ++ done ++fi ++ ++if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ : ++else ++ # The Solaris, AIX, and Digital Unix default echo programs unquote ++ # backslashes. This makes it impossible to quote backslashes using ++ # echo "$something" | sed 's/\\/\\\\/g' ++ # ++ # So, first we look for a working echo in the user's PATH. ++ ++ IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR ++ for dir in $PATH /usr/ucb; do ++ if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && ++ test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$dir/echo" ++ break ++ fi ++ done ++ IFS="$save_ifs" ++ ++ if test "X$echo" = Xecho; then ++ # We didn't find a better echo, so look for alternatives. ++ if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # This shell has a builtin print -r that does the trick. ++ echo='print -r' ++ elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && ++ test "X$CONFIG_SHELL" != X/bin/ksh; then ++ # If we have ksh, try running configure again with it. ++ ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} ++ export ORIGINAL_CONFIG_SHELL ++ CONFIG_SHELL=/bin/ksh ++ export CONFIG_SHELL ++ exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} ++ else ++ # Try using printf. ++ echo='printf %s\n' ++ if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # Cool, printf works ++ : ++ elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL ++ export CONFIG_SHELL ++ SHELL="$CONFIG_SHELL" ++ export SHELL ++ echo="$CONFIG_SHELL [$]0 --fallback-echo" ++ elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$CONFIG_SHELL [$]0 --fallback-echo" ++ else ++ # maybe with a smaller string... ++ prev=: ++ ++ for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do ++ if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null ++ then ++ break ++ fi ++ prev="$cmd" ++ done ++ ++ if test "$prev" != 'sed 50q "[$]0"'; then ++ echo_test_string=`eval $prev` ++ export echo_test_string ++ exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} ++ else ++ # Oops. We lost completely, so just stick with echo. ++ echo=echo ++ fi ++ fi ++ fi ++ fi ++fi ++fi ++ ++# Copy echo and quote the copy suitably for passing to libtool from ++# the Makefile, instead of quoting the original, which is used later. ++ECHO=$echo ++if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ++ ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" ++fi ++ ++AC_SUBST(ECHO) ++AC_DIVERT_POP ++])# _LT_AC_PROG_ECHO_BACKSLASH ++ ++# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, ++# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) ++# ------------------------------------------------------------------ ++AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], ++[if test "$cross_compiling" = yes; then : ++ [$4] ++else ++ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ++ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 ++ lt_status=$lt_dlunknown ++ cat > conftest.$ac_ext < ++#endif ++ ++#include ++ ++#ifdef RTLD_GLOBAL ++# define LT_DLGLOBAL RTLD_GLOBAL ++#else ++# ifdef DL_GLOBAL ++# define LT_DLGLOBAL DL_GLOBAL ++# else ++# define LT_DLGLOBAL 0 ++# endif ++#endif ++ ++/* We may have to define LT_DLLAZY_OR_NOW in the command line if we ++ find out it does not work in some platform. */ ++#ifndef LT_DLLAZY_OR_NOW ++# ifdef RTLD_LAZY ++# define LT_DLLAZY_OR_NOW RTLD_LAZY ++# else ++# ifdef DL_LAZY ++# define LT_DLLAZY_OR_NOW DL_LAZY ++# else ++# ifdef RTLD_NOW ++# define LT_DLLAZY_OR_NOW RTLD_NOW ++# else ++# ifdef DL_NOW ++# define LT_DLLAZY_OR_NOW DL_NOW ++# else ++# define LT_DLLAZY_OR_NOW 0 ++# endif ++# endif ++# endif ++# endif ++#endif ++ ++#ifdef __cplusplus ++extern "C" void exit (int); ++#endif ++ ++void fnord() { int i=42;} ++int main () ++{ ++ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); ++ int status = $lt_dlunknown; ++ ++ if (self) ++ { ++ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; ++ else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; ++ /* dlclose (self); */ ++ } ++ ++ exit (status); ++}] ++EOF ++ if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then ++ (./conftest; exit; ) 2>/dev/null ++ lt_status=$? ++ case x$lt_status in ++ x$lt_dlno_uscore) $1 ;; ++ x$lt_dlneed_uscore) $2 ;; ++ x$lt_unknown|x*) $3 ;; ++ esac ++ else : ++ # compilation failed ++ $3 ++ fi ++fi ++rm -fr conftest* ++])# _LT_AC_TRY_DLOPEN_SELF ++ ++# AC_LIBTOOL_DLOPEN_SELF ++# ------------------- ++AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], ++[if test "x$enable_dlopen" != xyes; then ++ enable_dlopen=unknown ++ enable_dlopen_self=unknown ++ enable_dlopen_self_static=unknown ++else ++ lt_cv_dlopen=no ++ lt_cv_dlopen_libs= ++ ++ case $host_os in ++ beos*) ++ lt_cv_dlopen="load_add_on" ++ lt_cv_dlopen_libs= ++ lt_cv_dlopen_self=yes ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ lt_cv_dlopen="LoadLibrary" ++ lt_cv_dlopen_libs= ++ ;; ++ ++ *) ++ AC_CHECK_FUNC([shl_load], ++ [lt_cv_dlopen="shl_load"], ++ [AC_CHECK_LIB([dld], [shl_load], ++ [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], ++ [AC_CHECK_FUNC([dlopen], ++ [lt_cv_dlopen="dlopen"], ++ [AC_CHECK_LIB([dl], [dlopen], ++ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], ++ [AC_CHECK_LIB([svld], [dlopen], ++ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], ++ [AC_CHECK_LIB([dld], [dld_link], ++ [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ++ ]) ++ ]) ++ ]) ++ ]) ++ ]) ++ ;; ++ esac ++ ++ if test "x$lt_cv_dlopen" != xno; then ++ enable_dlopen=yes ++ else ++ enable_dlopen=no ++ fi ++ ++ case $lt_cv_dlopen in ++ dlopen) ++ save_CPPFLAGS="$CPPFLAGS" ++ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ++ test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" ++ ++ save_LDFLAGS="$LDFLAGS" ++ eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" ++ ++ save_LIBS="$LIBS" ++ LIBS="$lt_cv_dlopen_libs $LIBS" ++ ++ AC_CACHE_CHECK([whether a program can dlopen itself], ++ lt_cv_dlopen_self, [dnl ++ _LT_AC_TRY_DLOPEN_SELF( ++ lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, ++ lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ++ ]) ++ ++ if test "x$lt_cv_dlopen_self" = xyes; then ++ LDFLAGS="$LDFLAGS $link_static_flag" ++ AC_CACHE_CHECK([whether a statically linked program can dlopen itself], ++ lt_cv_dlopen_self_static, [dnl ++ _LT_AC_TRY_DLOPEN_SELF( ++ lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, ++ lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ++ ]) ++ fi ++ ++ CPPFLAGS="$save_CPPFLAGS" ++ LDFLAGS="$save_LDFLAGS" ++ LIBS="$save_LIBS" ++ ;; ++ esac ++ ++ case $lt_cv_dlopen_self in ++ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; ++ *) enable_dlopen_self=unknown ;; ++ esac ++ ++ case $lt_cv_dlopen_self_static in ++ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; ++ *) enable_dlopen_self_static=unknown ;; ++ esac ++fi ++])# AC_LIBTOOL_DLOPEN_SELF ++ ++AC_DEFUN([_LT_AC_LTCONFIG_HACK], ++[AC_REQUIRE([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])dnl ++# Sed substitution that helps us do robust quoting. It backslashifies ++# metacharacters that are still active within double-quoted strings. ++Xsed='sed -e s/^X//' ++sed_quote_subst='s/\([[\\"\\`$\\\\]]\)/\\\1/g' ++ ++# Same as above, but do not quote variable references. ++double_quote_subst='s/\([[\\"\\`\\\\]]\)/\\\1/g' ++ ++# Sed substitution to delay expansion of an escaped shell variable in a ++# double_quote_subst'ed string. ++delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' ++ ++# Constants: ++rm="rm -f" ++ ++# Global variables: ++default_ofile=libtool ++can_build_shared=yes ++ ++# All known linkers require a `.a' archive for static linking (except M$VC, ++# which needs '.lib'). ++libext=a ++ltmain="$ac_aux_dir/ltmain.sh" ++ofile="$default_ofile" ++with_gnu_ld="$lt_cv_prog_gnu_ld" ++need_locks="$enable_libtool_lock" ++ ++old_CC="$CC" ++old_CFLAGS="$CFLAGS" ++ ++# Set sane defaults for various variables ++test -z "$AR" && AR=ar ++test -z "$AR_FLAGS" && AR_FLAGS=cru ++test -z "$AS" && AS=as ++test -z "$CC" && CC=cc ++test -z "$DLLTOOL" && DLLTOOL=dlltool ++test -z "$LD" && LD=ld ++test -z "$LN_S" && LN_S="ln -s" ++test -z "$MAGIC_CMD" && MAGIC_CMD=file ++test -z "$NM" && NM=nm ++test -z "$OBJDUMP" && OBJDUMP=objdump ++test -z "$RANLIB" && RANLIB=: ++test -z "$STRIP" && STRIP=: ++test -z "$ac_objext" && ac_objext=o ++ ++if test x"$host" != x"$build"; then ++ ac_tool_prefix=${host_alias}- ++else ++ ac_tool_prefix= ++fi ++ ++# Transform linux* to *-*-linux-gnu*, to support old configure scripts. ++case $host_os in ++linux-gnu*) ;; ++linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'` ++esac ++ ++case $host_os in ++aix3*) ++ # AIX sometimes has problems with the GCC collect2 program. For some ++ # reason, if we set the COLLECT_NAMES environment variable, the problems ++ # vanish in a puff of smoke. ++ if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++ fi ++ ;; ++esac ++ ++# Determine commands to create old-style static archives. ++old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' ++old_postinstall_cmds='chmod 644 $oldlib' ++old_postuninstall_cmds= ++ ++if test -n "$RANLIB"; then ++ case $host_os in ++ openbsd*) ++ old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds" ++ ;; ++ *) ++ old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds" ++ ;; ++ esac ++ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" ++fi ++ ++# Allow CC to be a program name with arguments. ++set dummy $CC ++compiler="[$]2" ++ ++AC_MSG_CHECKING([for objdir]) ++rm -f .libs 2>/dev/null ++mkdir .libs 2>/dev/null ++if test -d .libs; then ++ objdir=.libs ++else ++ # MS-DOS does not allow filenames that begin with a dot. ++ objdir=_libs ++fi ++rmdir .libs 2>/dev/null ++AC_MSG_RESULT($objdir) ++ ++ ++AC_ARG_WITH(pic, ++[ --with-pic try to use only PIC/non-PIC objects [default=use both]], ++pic_mode="$withval", pic_mode=default) ++test -z "$pic_mode" && pic_mode=default ++ ++# We assume here that the value for lt_cv_prog_cc_pic will not be cached ++# in isolation, and that seeing it set (from the cache) indicates that ++# the associated values are set (in the cache) correctly too. ++AC_MSG_CHECKING([for $compiler option to produce PIC]) ++AC_CACHE_VAL(lt_cv_prog_cc_pic, ++[ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_shlib= ++ lt_cv_prog_cc_wl= ++ lt_cv_prog_cc_static= ++ lt_cv_prog_cc_no_builtin= ++ lt_cv_prog_cc_can_build_shared=$can_build_shared ++ ++ if test "$GCC" = yes; then ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-static' ++ ++ case $host_os in ++ aix*) ++ # Below there is a dirty hack to force normal static linking with -ldl ++ # The problem is because libdl dynamically linked with both libc and ++ # libC (AIX C++ library), which obviously doesn't included in libraries ++ # list by gcc. This cause undefined symbols with -static flags. ++ # This hack allows C programs to be linked with "-static -ldl", but ++ # not sure about C++ programs. ++ lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC" ++ ;; ++ amigaos*) ++ # FIXME: we need at least 68020 code to build shared libraries, but ++ # adding the `-m68020' flag to GCC prevents building anything better, ++ # like `-m68040'. ++ lt_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4' ++ ;; ++ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ++ # PIC is the default for these OSes. ++ ;; ++ darwin* | rhapsody*) ++ # PIC is the default on this platform ++ # Common symbols not allowed in MH_DYLIB files ++ lt_cv_prog_cc_pic='-fno-common' ++ ;; ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ lt_cv_prog_cc_pic=-Kconform_pic ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic='-fPIC' ++ ;; ++ esac ++ else ++ # PORTME Check for PIC flags for the system compiler. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ lt_cv_prog_cc_wl='-Wl,' ++ # All AIX code is PIC. ++ if test "$host_cpu" = ia64; then ++ # AIX 5 now supports IA64 processor ++ lt_cv_prog_cc_static='-Bstatic' ++ else ++ lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp' ++ fi ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ # Is there a better lt_cv_prog_cc_static that works with the bundled CC? ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive" ++ lt_cv_prog_cc_pic='+Z' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ # PIC (with -KPIC) is the default. ++ ;; ++ ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ ++ newsos6) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ osf3* | osf4* | osf5*) ++ # All OSF/1 code is PIC. ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ ;; ++ ++ sco3.2v5*) ++ lt_cv_prog_cc_pic='-Kpic' ++ lt_cv_prog_cc_static='-dn' ++ lt_cv_prog_cc_shlib='-belf' ++ ;; ++ ++ solaris*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ sunos4*) ++ lt_cv_prog_cc_pic='-PIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Qoption ld ' ++ ;; ++ ++ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ uts4*) ++ lt_cv_prog_cc_pic='-pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec ;then ++ lt_cv_prog_cc_pic='-Kconform_pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ fi ++ ;; ++ ++ *) ++ lt_cv_prog_cc_can_build_shared=no ++ ;; ++ esac ++ fi ++]) ++if test -z "$lt_cv_prog_cc_pic"; then ++ AC_MSG_RESULT([none]) ++else ++ AC_MSG_RESULT([$lt_cv_prog_cc_pic]) ++ ++ # Check to make sure the pic_flag actually works. ++ AC_MSG_CHECKING([if $compiler PIC flag $lt_cv_prog_cc_pic works]) ++ AC_CACHE_VAL(lt_cv_prog_cc_pic_works, [dnl ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC" ++ AC_TRY_COMPILE([], [], [dnl ++ case $host_os in ++ hpux9* | hpux10* | hpux11*) ++ # On HP-UX, both CC and GCC only warn that PIC is supported... then ++ # they create non-PIC objects. So, if there were any warnings, we ++ # assume that PIC is not supported. ++ if test -s conftest.err; then ++ lt_cv_prog_cc_pic_works=no ++ else ++ lt_cv_prog_cc_pic_works=yes ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic_works=yes ++ ;; ++ esac ++ ], [dnl ++ lt_cv_prog_cc_pic_works=no ++ ]) ++ CFLAGS="$save_CFLAGS" ++ ]) ++ ++ if test "X$lt_cv_prog_cc_pic_works" = Xno; then ++ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_can_build_shared=no ++ else ++ lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic" ++ fi ++ ++ AC_MSG_RESULT([$lt_cv_prog_cc_pic_works]) ++fi ++ ++# Check for any special shared library compilation flags. ++if test -n "$lt_cv_prog_cc_shlib"; then ++ AC_MSG_WARN([\`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries]) ++ if echo "$old_CC $old_CFLAGS " | egrep -e "[[ ]]$lt_cv_prog_cc_shlib[[ ]]" >/dev/null; then : ++ else ++ AC_MSG_WARN([add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure]) ++ lt_cv_prog_cc_can_build_shared=no ++ fi ++fi ++ ++AC_MSG_CHECKING([if $compiler static flag $lt_cv_prog_cc_static works]) ++AC_CACHE_VAL([lt_cv_prog_cc_static_works], [dnl ++ lt_cv_prog_cc_static_works=no ++ save_LDFLAGS="$LDFLAGS" ++ LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static" ++ AC_TRY_LINK([], [], [lt_cv_prog_cc_static_works=yes]) ++ LDFLAGS="$save_LDFLAGS" ++]) ++ ++# Belt *and* braces to stop my trousers falling down: ++test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static= ++AC_MSG_RESULT([$lt_cv_prog_cc_static_works]) ++ ++pic_flag="$lt_cv_prog_cc_pic" ++special_shlib_compile_flags="$lt_cv_prog_cc_shlib" ++wl="$lt_cv_prog_cc_wl" ++link_static_flag="$lt_cv_prog_cc_static" ++no_builtin_flag="$lt_cv_prog_cc_no_builtin" ++can_build_shared="$lt_cv_prog_cc_can_build_shared" ++ ++ ++# Check to see if options -o and -c are simultaneously supported by compiler ++AC_MSG_CHECKING([if $compiler supports -c -o file.$ac_objext]) ++AC_CACHE_VAL([lt_cv_compiler_c_o], [ ++$rm -r conftest 2>/dev/null ++mkdir conftest ++cd conftest ++echo "int some_variable = 0;" > conftest.$ac_ext ++mkdir out ++# According to Tom Tromey, Ian Lance Taylor reported there are C compilers ++# that will create temporary files in the current directory regardless of ++# the output directory. Thus, making CWD read-only will cause this test ++# to fail, enabling locking or at least warning the user not to do parallel ++# builds. ++chmod -w . ++save_CFLAGS="$CFLAGS" ++CFLAGS="$CFLAGS -o out/conftest2.$ac_objext" ++compiler_c_o=no ++if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s out/conftest.err; then ++ lt_cv_compiler_c_o=no ++ else ++ lt_cv_compiler_c_o=yes ++ fi ++else ++ # Append any errors to the config.log. ++ cat out/conftest.err 1>&AC_FD_CC ++ lt_cv_compiler_c_o=no ++fi ++CFLAGS="$save_CFLAGS" ++chmod u+w . ++$rm conftest* out/* ++rmdir out ++cd .. ++rmdir conftest ++$rm -r conftest 2>/dev/null ++]) ++compiler_c_o=$lt_cv_compiler_c_o ++AC_MSG_RESULT([$compiler_c_o]) ++ ++if test x"$compiler_c_o" = x"yes"; then ++ # Check to see if we can write to a .lo ++ AC_MSG_CHECKING([if $compiler supports -c -o file.lo]) ++ AC_CACHE_VAL([lt_cv_compiler_o_lo], [ ++ lt_cv_compiler_o_lo=no ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -c -o conftest.lo" ++ save_objext="$ac_objext" ++ ac_objext=lo ++ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ lt_cv_compiler_o_lo=no ++ else ++ lt_cv_compiler_o_lo=yes ++ fi ++ ]) ++ ac_objext="$save_objext" ++ CFLAGS="$save_CFLAGS" ++ ]) ++ compiler_o_lo=$lt_cv_compiler_o_lo ++ AC_MSG_RESULT([$compiler_o_lo]) ++else ++ compiler_o_lo=no ++fi ++ ++# Check to see if we can do hard links to lock some files if needed ++hard_links="nottested" ++if test "$compiler_c_o" = no && test "$need_locks" != no; then ++ # do not overwrite the value of need_locks provided by the user ++ AC_MSG_CHECKING([if we can lock with hard links]) ++ hard_links=yes ++ $rm conftest* ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ touch conftest.a ++ ln conftest.a conftest.b 2>&5 || hard_links=no ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ AC_MSG_RESULT([$hard_links]) ++ if test "$hard_links" = no; then ++ AC_MSG_WARN([\`$CC' does not support \`-c -o', so \`make -j' may be unsafe]) ++ need_locks=warn ++ fi ++else ++ need_locks=no ++fi ++ ++if test "$GCC" = yes; then ++ # Check to see if options -fno-rtti -fno-exceptions are supported by compiler ++ AC_MSG_CHECKING([if $compiler supports -fno-rtti -fno-exceptions]) ++ echo "int some_variable = 0;" > conftest.$ac_ext ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext" ++ compiler_rtti_exceptions=no ++ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ compiler_rtti_exceptions=no ++ else ++ compiler_rtti_exceptions=yes ++ fi ++ ]) ++ CFLAGS="$save_CFLAGS" ++ AC_MSG_RESULT([$compiler_rtti_exceptions]) ++ ++ if test "$compiler_rtti_exceptions" = "yes"; then ++ no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions' ++ else ++ no_builtin_flag=' -fno-builtin' ++ fi ++fi ++ ++# See if the linker supports building shared libraries. ++AC_MSG_CHECKING([whether the linker ($LD) supports shared libraries]) ++ ++allow_undefined_flag= ++no_undefined_flag= ++need_lib_prefix=unknown ++need_version=unknown ++# when you set need_version to no, make sure it does not cause -set_version ++# flags to be left without arguments ++archive_cmds= ++archive_expsym_cmds= ++old_archive_from_new_cmds= ++old_archive_from_expsyms_cmds= ++export_dynamic_flag_spec= ++whole_archive_flag_spec= ++thread_safe_flag_spec= ++hardcode_into_libs=no ++hardcode_libdir_flag_spec= ++hardcode_libdir_separator= ++hardcode_direct=no ++hardcode_minus_L=no ++hardcode_shlibpath_var=unsupported ++runpath_var= ++link_all_deplibs=unknown ++always_export_symbols=no ++export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' ++# include_expsyms should be a list of space-separated symbols to be *always* ++# included in the symbol list ++include_expsyms= ++# exclude_expsyms can be an egrep regular expression of symbols to exclude ++# it will be wrapped by ` (' and `)$', so one must not match beginning or ++# end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', ++# as well as any symbol that contains `d'. ++exclude_expsyms="_GLOBAL_OFFSET_TABLE_" ++# Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out ++# platforms (ab)use it in PIC code, but their linkers get confused if ++# the symbol is explicitly referenced. Since portable code cannot ++# rely on this symbol name, it's probably fine to never include it in ++# preloaded symbol tables. ++extract_expsyms_cmds= ++ ++case $host_os in ++cygwin* | mingw* | pw32*) ++ # FIXME: the MSVC++ port hasn't been tested in a loooong time ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ if test "$GCC" != yes; then ++ with_gnu_ld=no ++ fi ++ ;; ++openbsd*) ++ with_gnu_ld=no ++ ;; ++esac ++ ++ld_shlibs=yes ++if test "$with_gnu_ld" = yes; then ++ # If archive_cmds runs LD, not CC, wlarc should be empty ++ wlarc='${wl}' ++ ++ # See if GNU ld supports shared libraries. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ # On AIX, the GNU linker is very broken ++ # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available. ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: the GNU linker, at least up to release 2.9.1, is reported ++*** to be unable to reliably create shared libraries on AIX. ++*** Therefore, libtool is disabling shared libraries support. If you ++*** really care for shared libraries, you may want to modify your PATH ++*** so that a non-GNU linker is found, and then restart. ++ ++EOF ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ ++ # Samuel A. Falvo II reports ++ # that the semantics of dynamic libraries on AmigaOS, at least up ++ # to version 4, is to share data among multiple programs linked ++ # with the same dynamic library. Since this doesn't match the ++ # behavior of shared libraries on other platforms, we can use ++ # them. ++ ld_shlibs=no ++ ;; ++ ++ beos*) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ allow_undefined_flag=unsupported ++ # Joseph Beckenbach says some releases of gcc ++ # support --undefined. This deserves some investigation. FIXME ++ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec='-L$libdir' ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ ++ extract_expsyms_cmds='test -f $output_objdir/impgen.c || \ ++ sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~ ++ test -f $output_objdir/impgen.exe || (cd $output_objdir && \ ++ if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; \ ++ else $CC -o impgen impgen.c ; fi)~ ++ $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def' ++ ++ old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib' ++ ++ # cygwin and mingw dlls have different entry points and sets of symbols ++ # to exclude. ++ # FIXME: what about values for MSVC? ++ dll_entry=__cygwin_dll_entry@12 ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~ ++ case $host_os in ++ mingw*) ++ # mingw values ++ dll_entry=_DllMainCRTStartup@12 ++ dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~ ++ ;; ++ esac ++ ++ # mingw and cygwin differ, and it's simplest to just exclude the union ++ # of the two symbol sets. ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12 ++ ++ # recent cygwin and mingw systems supply a stub DllMain which the user ++ # can override, but on older systems we have to supply one (in ltdll.c) ++ if test "x$lt_cv_need_dllmain" = "xyes"; then ++ ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext " ++ ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~ ++ test -f $output_objdir/$soname-ltdll.$ac_objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~' ++ else ++ ltdll_obj= ++ ltdll_cmds= ++ fi ++ ++ # Extract the symbol export list from an `--export-all' def file, ++ # then regenerate the def file from the symbol export list, so that ++ # the compiled dll only exports the symbol export list. ++ # Be careful not to strip the DATA tag left be newer dlltools. ++ export_symbols_cmds="$ltdll_cmds"' ++ $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~ ++ sed -e "1,/EXPORTS/d" -e "s/ @ [[0-9]]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols' ++ ++ # If the export-symbols file already is a .def file (1st line ++ # is EXPORTS), use it as is. ++ # If DATA tags from a recent dlltool are present, honour them! ++ archive_expsym_cmds='if test "x`sed 1q $export_symbols`" = xEXPORTS; then ++ cp $export_symbols $output_objdir/$soname-def; ++ else ++ echo EXPORTS > $output_objdir/$soname-def; ++ _lt_hint=1; ++ cat $export_symbols | while read symbol; do ++ set dummy \$symbol; ++ case \[$]# in ++ 2) echo " \[$]2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;; ++ 4) echo " \[$]2 \[$]3 \[$]4 ; " >> $output_objdir/$soname-def; _lt_hint=`expr \$_lt_hint - 1`;; ++ *) echo " \[$]2 @ \$_lt_hint \[$]3 ; " >> $output_objdir/$soname-def;; ++ esac; ++ _lt_hint=`expr 1 + \$_lt_hint`; ++ done; ++ fi~ ++ '"$ltdll_cmds"' ++ $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~ ++ $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~ ++ $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags' ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' ++ wlarc= ++ else ++ archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ fi ++ ;; ++ ++ solaris* | sysv5*) ++ if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: The releases 2.8.* of the GNU linker cannot reliably ++*** create shared libraries on Solaris systems. Therefore, libtool ++*** is disabling shared libraries support. We urge you to upgrade GNU ++*** binutils to release 2.9.1 or newer. Another option is to modify ++*** your PATH or compiler configuration so that the native linker is ++*** used, and then restart. ++ ++EOF ++ elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ sunos4*) ++ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ wlarc= ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ esac ++ ++ if test "$ld_shlibs" = yes; then ++ runpath_var=LD_RUN_PATH ++ hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' ++ export_dynamic_flag_spec='${wl}--export-dynamic' ++ case $host_os in ++ cygwin* | mingw* | pw32*) ++ # dlltool doesn't understand --whole-archive et. al. ++ whole_archive_flag_spec= ++ ;; ++ *) ++ # ancient GNU ld didn't support --whole-archive et. al. ++ if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then ++ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ++ else ++ whole_archive_flag_spec= ++ fi ++ ;; ++ esac ++ fi ++else ++ # PORTME fill in a description of your system's linker (not GNU ld) ++ case $host_os in ++ aix3*) ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' ++ # Note: this linker hardcodes the directories in LIBPATH if there ++ # are no directories specified by -L. ++ hardcode_minus_L=yes ++ if test "$GCC" = yes && test -z "$link_static_flag"; then ++ # Neither direct hardcoding nor static linking is supported with a ++ # broken collect2. ++ hardcode_direct=unsupported ++ fi ++ ;; ++ ++ aix4* | aix5*) ++ if test "$host_cpu" = ia64; then ++ # On IA64, the linker does run time linking by default, so we don't ++ # have to do anything special. ++ aix_use_runtimelinking=no ++ exp_sym_flag='-Bexport' ++ no_entry_flag="" ++ else ++ aix_use_runtimelinking=no ++ ++ # Test if we are trying to use run time linking or normal ++ # AIX style linking. If -brtl is somewhere in LDFLAGS, we ++ # need to do runtime linking. ++ case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) ++ for ld_flag in $LDFLAGS; do ++ case $ld_flag in ++ *-brtl*) ++ aix_use_runtimelinking=yes ++ break ++ ;; ++ esac ++ done ++ esac ++ ++ exp_sym_flag='-bexport' ++ no_entry_flag='-bnoentry' ++ fi ++ ++ # When large executables or shared objects are built, AIX ld can ++ # have problems creating the table of contents. If linking a library ++ # or program results in "error TOC overflow" add -mminimal-toc to ++ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ++ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ++ ++ hardcode_direct=yes ++ archive_cmds='' ++ hardcode_libdir_separator=':' ++ if test "$GCC" = yes; then ++ case $host_os in aix4.[[012]]|aix4.[[012]].*) ++ collect2name=`${CC} -print-prog-name=collect2` ++ if test -f "$collect2name" && \ ++ strings "$collect2name" | grep resolve_lib_name >/dev/null ++ then ++ # We have reworked collect2 ++ hardcode_direct=yes ++ else ++ # We have old collect2 ++ hardcode_direct=unsupported ++ # It fails to find uninstalled libraries when the uninstalled ++ # path is not listed in the libpath. Setting hardcode_minus_L ++ # to unsupported forces relinking ++ hardcode_minus_L=yes ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_libdir_separator= ++ fi ++ esac ++ ++ shared_flag='-shared' ++ else ++ # not using gcc ++ if test "$host_cpu" = ia64; then ++ shared_flag='${wl}-G' ++ else ++ if test "$aix_use_runtimelinking" = yes; then ++ shared_flag='${wl}-G' ++ else ++ shared_flag='${wl}-bM:SRE' ++ fi ++ fi ++ fi ++ ++ # It seems that -bexpall can do strange things, so it is better to ++ # generate a list of symbols to export. ++ always_export_symbols=yes ++ if test "$aix_use_runtimelinking" = yes; then ++ # Warning - without using the other runtime loading flags (-brtl), ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='-berok' ++ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib' ++ archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" ++ else ++ if test "$host_cpu" = ia64; then ++ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' ++ allow_undefined_flag="-z nodefs" ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname ${wl}-h$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" ++ else ++ hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib' ++ # Warning - without using the other run time loading flags, ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='${wl}-berok' ++ # This is a bit strange, but is similar to how AIX traditionally builds ++ # it's shared libraries. ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"' ~$AR -crlo $output_objdir/$libname$release.a $output_objdir/$soname' ++ fi ++ fi ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ # see comment about different semantics on the GNU ld section ++ ld_shlibs=no ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec=' ' ++ allow_undefined_flag=unsupported ++ # Tell ltmain to make .lib files, not .a files. ++ libext=lib ++ # FIXME: Setting linknames here is a bad hack. ++ archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | sed -e '\''s/ -lc$//'\''` -link -dll~linknames=' ++ # The linker will automatically build a .lib file if we build a DLL. ++ old_archive_from_new_cmds='true' ++ # FIXME: Should let the user specify the lib program. ++ old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' ++ fix_srcfile_path='`cygpath -w "$srcfile"`' ++ ;; ++ ++ darwin* | rhapsody*) ++ case "$host_os" in ++ rhapsody* | darwin1.[[012]]) ++ allow_undefined_flag='-undefined suppress' ++ ;; ++ *) # Darwin 1.3 on ++ allow_undefined_flag='-flat_namespace -undefined suppress' ++ ;; ++ esac ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. Also zsh mangles ++ # `"' quotes if we put them in here... so don't! ++ archive_cmds='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs && $CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib ${lib}-master.o $deplibs$linker_flags $(test .$module != .yes && echo -install_name $rpath/$soname $verstring)' ++ # We need to add '_' to the symbols in $export_symbols first ++ #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ whole_archive_flag_spec='-all_load $convenience' ++ ;; ++ ++ freebsd1*) ++ ld_shlibs=no ++ ;; ++ ++ # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor ++ # support. Future versions do this automatically, but an explicit c++rt0.o ++ # does not break anything, and helps significantly (at the cost of a little ++ # extra space). ++ freebsd2.2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # Unfortunately, older versions of FreeBSD 2 do not have this feature. ++ freebsd2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # FreeBSD 3 and greater uses gcc -shared to do shared libraries. ++ freebsd*) ++ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ case $host_os in ++ hpux9*) archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;; ++ *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; ++ esac ++ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_direct=yes ++ hardcode_minus_L=yes # Not in the search PATH, but as the default ++ # location of the library. ++ export_dynamic_flag_spec='${wl}-E' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ link_all_deplibs=yes ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out ++ else ++ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF ++ fi ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ newsos6) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_shlibpath_var=no ++ ;; ++ ++ openbsd*) ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ export_dynamic_flag_spec='${wl}-E' ++ else ++ case "$host_os" in ++ openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ ;; ++ *) ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ ;; ++ esac ++ fi ++ ;; ++ ++ os2*) ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ allow_undefined_flag=unsupported ++ archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' ++ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ++ ;; ++ ++ osf3*) ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ fi ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ ;; ++ ++ osf4* | osf5*) # as osf3* with the addition of -msym flag ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "-exported_symbol " >> $lib.exp; echo "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ ++ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' ++ ++ #Both c and cxx compiler support -rpath directly ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ ;; ++ ++ sco3.2v5*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ export_dynamic_flag_spec='${wl}-Bexport' ++ ;; ++ ++ solaris*) ++ # gcc --version < 3.0 without binutils cannot create self contained ++ # shared libraries reliably, requiring libgcc.a to resolve some of ++ # the object symbols generated in some cases. Libraries that use ++ # assert need libgcc.a to resolve __eprintf, for example. Linking ++ # a copy of libgcc.a into every shared library to guarantee resolving ++ # such symbols causes other problems: According to Tim Van Holder ++ # , C++ libraries end up with a separate ++ # (to the application) exception stack for one thing. ++ no_undefined_flag=' -z defs' ++ if test "$GCC" = yes; then ++ case `$CC --version 2>/dev/null` in ++ [[12]].*) ++ cat <&2 ++ ++*** Warning: Releases of GCC earlier than version 3.0 cannot reliably ++*** create self contained shared libraries on Solaris systems, without ++*** introducing a dependency on libgcc.a. Therefore, libtool is disabling ++*** -no-undefined support, which will at least allow you to build shared ++*** libraries. However, you may find that when you link such libraries ++*** into an application without using GCC, you have to manually add ++*** \`gcc --print-libgcc-file-name\` to the link command. We urge you to ++*** upgrade to a newer version of GCC. Another option is to rebuild your ++*** current GCC to use the GNU linker from GNU binutils 2.9.1 or newer. ++ ++EOF ++ no_undefined_flag= ++ ;; ++ esac ++ fi ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_shlibpath_var=no ++ case $host_os in ++ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; ++ *) # Supported since Solaris 2.6 (maybe 2.5.1?) ++ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; ++ esac ++ link_all_deplibs=yes ++ ;; ++ ++ sunos4*) ++ if test "x$host_vendor" = xsequent; then ++ # Use $CC to link under sequent, because it throws in some extra .o ++ # files that make .init and .fini sections work. ++ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' ++ fi ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4) ++ case $host_vendor in ++ sni) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes # is this really true??? ++ ;; ++ siemens) ++ ## LD is ld it makes a PLAMLIB ++ ## CC just makes a GrossModule. ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ reload_cmds='$CC -r -o $output$reload_objs' ++ hardcode_direct=no ++ ;; ++ motorola) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=no #Motorola manual says yes, but my tests say they lie ++ ;; ++ esac ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4.3*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ export_dynamic_flag_spec='-Bexport' ++ ;; ++ ++ sysv5*) ++ no_undefined_flag=' -z text' ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec= ++ hardcode_shlibpath_var=no ++ runpath_var='LD_RUN_PATH' ++ ;; ++ ++ uts4*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ dgux*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ ld_shlibs=yes ++ fi ++ ;; ++ ++ sysv4.2uw2*) ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=no ++ hardcode_shlibpath_var=no ++ hardcode_runpath_var=yes ++ runpath_var=LD_RUN_PATH ++ ;; ++ ++ sysv5uw7* | unixware7*) ++ no_undefined_flag='${wl}-z ${wl}text' ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ fi ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ ld_shlibs=no ++ ;; ++ esac ++fi ++AC_MSG_RESULT([$ld_shlibs]) ++test "$ld_shlibs" = no && can_build_shared=no ++ ++# Check hardcoding attributes. ++AC_MSG_CHECKING([how to hardcode library paths into programs]) ++hardcode_action= ++if test -n "$hardcode_libdir_flag_spec" || \ ++ test -n "$runpath_var"; then ++ ++ # We can hardcode non-existant directories. ++ if test "$hardcode_direct" != no && ++ # If the only mechanism to avoid hardcoding is shlibpath_var, we ++ # have to relink, otherwise we might link with an installed library ++ # when we should be linking with a yet-to-be-installed one ++ ## test "$hardcode_shlibpath_var" != no && ++ test "$hardcode_minus_L" != no; then ++ # Linking always hardcodes the temporary library directory. ++ hardcode_action=relink ++ else ++ # We can link without hardcoding, and we can hardcode nonexisting dirs. ++ hardcode_action=immediate ++ fi ++else ++ # We cannot hardcode anything, or else we can only hardcode existing ++ # directories. ++ hardcode_action=unsupported ++fi ++AC_MSG_RESULT([$hardcode_action]) ++ ++striplib= ++old_striplib= ++AC_MSG_CHECKING([whether stripping libraries is possible]) ++if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then ++ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" ++ test -z "$striplib" && striplib="$STRIP --strip-unneeded" ++ AC_MSG_RESULT([yes]) ++else ++ AC_MSG_RESULT([no]) ++fi ++ ++reload_cmds='$LD$reload_flag -o $output$reload_objs' ++test -z "$deplibs_check_method" && deplibs_check_method=unknown ++ ++# PORTME Fill in your ld.so characteristics ++AC_MSG_CHECKING([dynamic linker characteristics]) ++library_names_spec= ++libname_spec='lib$name' ++soname_spec= ++postinstall_cmds= ++postuninstall_cmds= ++finish_cmds= ++finish_eval= ++shlibpath_var= ++shlibpath_overrides_runpath=unknown ++version_type=none ++dynamic_linker="$host_os ld.so" ++sys_lib_dlsearch_path_spec="/lib /usr/lib" ++sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" ++ ++case $host_os in ++aix3*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix $libname.a' ++ shlibpath_var=LIBPATH ++ ++ # AIX has no versioning support, so we append a major version to the name. ++ soname_spec='${libname}${release}.so$major' ++ ;; ++ ++aix4* | aix5*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ hardcode_into_libs=yes ++ if test "$host_cpu" = ia64; then ++ # AIX 5 supports IA64 ++ library_names_spec='${libname}${release}.so$major ${libname}${release}.so$versuffix $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ else ++ # With GCC up to 2.95.x, collect2 would create an import file ++ # for dependence libraries. The import file would start with ++ # the line `#! .'. This would cause the generated library to ++ # depend on `.', always an invalid library. This was fixed in ++ # development snapshots of GCC prior to 3.0. ++ case $host_os in ++ aix4 | aix4.[[01]] | aix4.[[01]].*) ++ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' ++ echo ' yes ' ++ echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then ++ : ++ else ++ can_build_shared=no ++ fi ++ ;; ++ esac ++ # AIX (on Power*) has no versioning support, so currently we can ++ # not hardcode correct soname into executable. Probably we can ++ # add versioning support to collect2, so additional links can ++ # be useful in future. ++ if test "$aix_use_runtimelinking" = yes; then ++ # If using run time linking (on AIX 4.2 or later) use lib.so ++ # instead of lib.a to let people know that these are not ++ # typical AIX shared libraries. ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ else ++ # We preserve .a as extension for shared libraries through AIX4.2 ++ # and later when we are not doing run time linking. ++ library_names_spec='${libname}${release}.a $libname.a' ++ soname_spec='${libname}${release}.so$major' ++ fi ++ shlibpath_var=LIBPATH ++ fi ++ hardcode_into_libs=yes ++ ;; ++ ++amigaos*) ++ library_names_spec='$libname.ixlibrary $libname.a' ++ # Create ${libname}_ixlibrary.a entries in /sys/libs. ++ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' ++ ;; ++ ++beos*) ++ library_names_spec='${libname}.so' ++ dynamic_linker="$host_os ld.so" ++ shlibpath_var=LIBRARY_PATH ++ ;; ++ ++bsdi4*) ++ version_type=linux ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" ++ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" ++ export_dynamic_flag_spec=-rdynamic ++ # the default ld.so.conf also contains /usr/contrib/lib and ++ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow ++ # libtool to hard-code these into programs ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ version_type=windows ++ need_version=no ++ need_lib_prefix=no ++ case $GCC,$host_os in ++ yes,cygwin*) ++ library_names_spec='$libname.dll.a' ++ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll' ++ postinstall_cmds='dlpath=`bash 2>&1 -c '\''. $dir/${file}i;echo \$dlname'\''`~ ++ dldir=$destdir/`dirname \$dlpath`~ ++ test -d \$dldir || mkdir -p \$dldir~ ++ $install_prog .libs/$dlname \$dldir/$dlname' ++ postuninstall_cmds='dldll=`bash 2>&1 -c '\''. $file; echo \$dlname'\''`~ ++ dlpath=$dir/\$dldll~ ++ $rm \$dlpath' ++ ;; ++ yes,mingw*) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll' ++ sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g" -e "s,=/,/,g"` ++ ;; ++ yes,pw32*) ++ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll' ++ ;; ++ *) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll $libname.lib' ++ ;; ++ esac ++ dynamic_linker='Win32 ld.exe' ++ # FIXME: first we should search . and the directory the executable is in ++ shlibpath_var=PATH ++ ;; ++ ++darwin* | rhapsody*) ++ dynamic_linker="$host_os dyld" ++ version_type=darwin ++ need_lib_prefix=no ++ need_version=no ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. ++ library_names_spec='${libname}${release}${versuffix}.$(test .$module = .yes && echo so || echo dylib) ${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib) ${libname}.$(test .$module = .yes && echo so || echo dylib)' ++ soname_spec='${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib)' ++ shlibpath_overrides_runpath=yes ++ shlibpath_var=DYLD_LIBRARY_PATH ++ ;; ++ ++freebsd1*) ++ dynamic_linker=no ++ ;; ++ ++kfreebsd*-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ dynamic_linker='GNU/FreeBSD ld.so' ++ ;; ++ ++freebsd*) ++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` ++ version_type=freebsd-$objformat ++ case $version_type in ++ freebsd-elf*) ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so' ++ need_version=no ++ need_lib_prefix=no ++ ;; ++ freebsd-*) ++ library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix' ++ need_version=yes ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_os in ++ freebsd2*) ++ shlibpath_overrides_runpath=yes ++ ;; ++ *) ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ ;; ++ esac ++ ;; ++ ++gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ hardcode_into_libs=yes ++ ;; ++ ++hpux9* | hpux10* | hpux11*) ++ # Give a soname corresponding to the major version so that dld.sl refuses to ++ # link against other versions. ++ dynamic_linker="$host_os dld.sl" ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_var=SHLIB_PATH ++ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH ++ library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl' ++ soname_spec='${libname}${release}.sl$major' ++ # HP-UX runs *really* slowly unless shared libraries are mode 555. ++ postinstall_cmds='chmod 555 $lib' ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ nonstopux*) version_type=nonstopux ;; ++ *) version_type=irix ;; ++ esac ++ need_lib_prefix=no ++ need_version=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so $libname.so' ++ case $host_os in ++ irix5* | nonstopux*) ++ libsuff= shlibsuff= ++ ;; ++ *) ++ case $LD in # libtool.m4 will add one of these switches to LD ++ *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;; ++ *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; ++ *-64|*"-64 ") libsuff=64 shlibsuff=64 libmagic=64-bit;; ++ *) libsuff= shlibsuff= libmagic=never-match;; ++ esac ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" ++ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" ++ ;; ++ ++# No shared lib support for Linux oldld, aout, or coff. ++linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*) ++ dynamic_linker=no ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ # This implies no fast_install, which is unacceptable. ++ # Some rework will be needed to allow for fast_install ++ # before this can be enabled. ++ hardcode_into_libs=yes ++ ++ # We used to test for /lib/ld.so.1 and disable shared libraries on ++ # powerpc, because MkLinux only supported shared libraries with the ++ # GNU dynamic linker. Since this was broken with cross compilers, ++ # most powerpc-linux boxes support dynamic linking these days and ++ # people can always --disable-shared, the test was removed, and we ++ # assume the GNU/Linux dynamic linker is in use. ++ dynamic_linker='GNU/Linux ld.so' ++ ;; ++ ++netbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ dynamic_linker='NetBSD (a.out) ld.so' ++ else ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ dynamic_linker='NetBSD ld.elf_so' ++ fi ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ ;; ++ ++newsos6) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ ;; ++ ++openbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ case "$host_os" in ++ openbsd2.[[89]] | openbsd2.[[89]].*) ++ shlibpath_overrides_runpath=no ++ ;; ++ *) ++ shlibpath_overrides_runpath=yes ++ ;; ++ esac ++ else ++ shlibpath_overrides_runpath=yes ++ fi ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++os2*) ++ libname_spec='$name' ++ need_lib_prefix=no ++ library_names_spec='$libname.dll $libname.a' ++ dynamic_linker='OS/2 ld.exe' ++ shlibpath_var=LIBPATH ++ ;; ++ ++osf3* | osf4* | osf5*) ++ version_type=osf ++ need_version=no ++ need_lib_prefix=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" ++ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ++ hardcode_into_libs=yes ++ ;; ++ ++sco3.2v5*) ++ version_type=osf ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++solaris*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ # ldd complains unless libraries are executable ++ postinstall_cmds='chmod +x $lib' ++ ;; ++ ++sunos4*) ++ version_type=sunos ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ if test "$with_gnu_ld" = yes; then ++ need_lib_prefix=no ++ fi ++ need_version=yes ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_vendor in ++ sni) ++ shlibpath_overrides_runpath=no ++ need_lib_prefix=no ++ export_dynamic_flag_spec='${wl}-Blargedynsym' ++ runpath_var=LD_RUN_PATH ++ ;; ++ siemens) ++ need_lib_prefix=no ++ ;; ++ motorola) ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ++ ;; ++ esac ++ ;; ++ ++uts4*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++dgux*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++sysv4*MP*) ++ if test -d /usr/nec ;then ++ version_type=linux ++ library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so' ++ soname_spec='$libname.so.$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ fi ++ ;; ++ ++*) ++ dynamic_linker=no ++ ;; ++esac ++AC_MSG_RESULT([$dynamic_linker]) ++test "$dynamic_linker" = no && can_build_shared=no ++ ++# Report the final consequences. ++AC_MSG_CHECKING([if libtool supports shared libraries]) ++AC_MSG_RESULT([$can_build_shared]) ++ ++AC_MSG_CHECKING([whether to build shared libraries]) ++test "$can_build_shared" = "no" && enable_shared=no ++ ++# On AIX, shared libraries and static libraries use the same namespace, and ++# are all built from PIC. ++case "$host_os" in ++aix3*) ++ test "$enable_shared" = yes && enable_static=no ++ if test -n "$RANLIB"; then ++ archive_cmds="$archive_cmds~\$RANLIB \$lib" ++ postinstall_cmds='$RANLIB $lib' ++ fi ++ ;; ++ ++aix4*) ++ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then ++ test "$enable_shared" = yes && enable_static=no ++ fi ++ ;; ++esac ++AC_MSG_RESULT([$enable_shared]) ++ ++AC_MSG_CHECKING([whether to build static libraries]) ++# Make sure either enable_shared or enable_static is yes. ++test "$enable_shared" = yes || enable_static=yes ++AC_MSG_RESULT([$enable_static]) ++ ++if test "$hardcode_action" = relink; then ++ # Fast installation is not supported ++ enable_fast_install=no ++elif test "$shlibpath_overrides_runpath" = yes || ++ test "$enable_shared" = no; then ++ # Fast installation is not necessary ++ enable_fast_install=needless ++fi ++ ++variables_saved_for_relink="PATH $shlibpath_var $runpath_var" ++if test "$GCC" = yes; then ++ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" ++fi ++ ++AC_LIBTOOL_DLOPEN_SELF ++ ++if test "$enable_shared" = yes && test "$GCC" = yes; then ++ case $archive_cmds in ++ *'~'*) ++ # FIXME: we may have to deal with multi-command sequences. ++ ;; ++ '$CC '*) ++ # Test whether the compiler implicitly links with -lc since on some ++ # systems, -lgcc has to come before -lc. If gcc already passes -lc ++ # to ld, don't add -lc before -lgcc. ++ AC_MSG_CHECKING([whether -lc should be explicitly linked in]) ++ AC_CACHE_VAL([lt_cv_archive_cmds_need_lc], ++ [$rm conftest* ++ echo 'static int dummy;' > conftest.$ac_ext ++ ++ if AC_TRY_EVAL(ac_compile); then ++ soname=conftest ++ lib=conftest ++ libobjs=conftest.$ac_objext ++ deplibs= ++ wl=$lt_cv_prog_cc_wl ++ compiler_flags=-v ++ linker_flags=-v ++ verstring= ++ output_objdir=. ++ libname=conftest ++ save_allow_undefined_flag=$allow_undefined_flag ++ allow_undefined_flag= ++ if AC_TRY_EVAL(archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) ++ then ++ lt_cv_archive_cmds_need_lc=no ++ else ++ lt_cv_archive_cmds_need_lc=yes ++ fi ++ allow_undefined_flag=$save_allow_undefined_flag ++ else ++ cat conftest.err 1>&5 ++ fi]) ++ AC_MSG_RESULT([$lt_cv_archive_cmds_need_lc]) ++ ;; ++ esac ++fi ++need_lc=${lt_cv_archive_cmds_need_lc-yes} ++ ++# The second clause should only fire when bootstrapping the ++# libtool distribution, otherwise you forgot to ship ltmain.sh ++# with your package, and you will get complaints that there are ++# no rules to generate ltmain.sh. ++if test -f "$ltmain"; then ++ : ++else ++ # If there is no Makefile yet, we rely on a make rule to execute ++ # `config.status --recheck' to rerun these tests and create the ++ # libtool script then. ++ test -f Makefile && make "$ltmain" ++fi ++ ++if test -f "$ltmain"; then ++ trap "$rm \"${ofile}T\"; exit 1" 1 2 15 ++ $rm -f "${ofile}T" ++ ++ echo creating $ofile ++ ++ # Now quote all the things that may contain metacharacters while being ++ # careful not to overquote the AC_SUBSTed values. We take copies of the ++ # variables and quote the copies for generation of the libtool script. ++ for var in echo old_CC old_CFLAGS SED \ ++ AR AR_FLAGS CC LD LN_S NM SHELL \ ++ reload_flag reload_cmds wl \ ++ pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \ ++ thread_safe_flag_spec whole_archive_flag_spec libname_spec \ ++ library_names_spec soname_spec \ ++ RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \ ++ old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds \ ++ postuninstall_cmds extract_expsyms_cmds old_archive_from_expsyms_cmds \ ++ old_striplib striplib file_magic_cmd export_symbols_cmds \ ++ deplibs_check_method allow_undefined_flag no_undefined_flag \ ++ finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \ ++ global_symbol_to_c_name_address \ ++ hardcode_libdir_flag_spec hardcode_libdir_separator \ ++ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ ++ compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do ++ ++ case $var in ++ reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \ ++ old_postinstall_cmds | old_postuninstall_cmds | \ ++ export_symbols_cmds | archive_cmds | archive_expsym_cmds | \ ++ extract_expsyms_cmds | old_archive_from_expsyms_cmds | \ ++ postinstall_cmds | postuninstall_cmds | \ ++ finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) ++ # Double-quote double-evaled strings. ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ++ ;; ++ *) ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ++ ;; ++ esac ++ done ++ ++ cat <<__EOF__ > "${ofile}T" ++#! $SHELL ++ ++# `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. ++# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) ++# NOTE: Changes made to this file will be lost: look at ltmain.sh. ++# ++# Copyright (C) 1996-2000 Free Software Foundation, Inc. ++# Originally by Gordon Matzigkeit , 1996 ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, but ++# WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# ++# As a special exception to the GNU General Public License, if you ++# distribute this file as part of a program that contains a ++# configuration script generated by Autoconf, you may include it under ++# the same distribution terms that you use for the rest of that program. ++ ++# A sed that does not truncate output. ++SED=$lt_SED ++ ++# Sed that helps us avoid accidentally triggering echo(1) options like -n. ++Xsed="${SED} -e s/^X//" ++ ++# The HP-UX ksh and POSIX shell print the target directory to stdout ++# if CDPATH is set. ++if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi ++ ++# ### BEGIN LIBTOOL CONFIG ++ ++# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: ++ ++# Shell to use when invoking shell scripts. ++SHELL=$lt_SHELL ++ ++# Whether or not to build shared libraries. ++build_libtool_libs=$enable_shared ++ ++# Whether or not to build static libraries. ++build_old_libs=$enable_static ++ ++# Whether or not to add -lc for building shared libraries. ++build_libtool_need_lc=$need_lc ++ ++# Whether or not to optimize for fast installation. ++fast_install=$enable_fast_install ++ ++# The host system. ++host_alias=$host_alias ++host=$host ++ ++# An echo program that does not interpret backslashes. ++echo=$lt_echo ++ ++# The archiver. ++AR=$lt_AR ++AR_FLAGS=$lt_AR_FLAGS ++ ++# The default C compiler. ++CC=$lt_CC ++ ++# Is the compiler the GNU C compiler? ++with_gcc=$GCC ++ ++# The linker used to build libraries. ++LD=$lt_LD ++ ++# Whether we need hard or soft links. ++LN_S=$lt_LN_S ++ ++# A BSD-compatible nm program. ++NM=$lt_NM ++ ++# A symbol stripping program ++STRIP="$STRIP" ++ ++# Used to examine libraries when file_magic_cmd begins "file" ++MAGIC_CMD=$MAGIC_CMD ++ ++# Used on cygwin: DLL creation program. ++DLLTOOL="$DLLTOOL" ++ ++# Used on cygwin: object dumper. ++OBJDUMP="$OBJDUMP" ++ ++# Used on cygwin: assembler. ++AS="$AS" ++ ++# The name of the directory that contains temporary libtool files. ++objdir=$objdir ++ ++# How to create reloadable object files. ++reload_flag=$lt_reload_flag ++reload_cmds=$lt_reload_cmds ++ ++# How to pass a linker flag through the compiler. ++wl=$lt_wl ++ ++# Object file suffix (normally "o"). ++objext="$ac_objext" ++ ++# Old archive suffix (normally "a"). ++libext="$libext" ++ ++# Executable file suffix (normally ""). ++exeext="$exeext" ++ ++# Additional compiler flags for building library objects. ++pic_flag=$lt_pic_flag ++pic_mode=$pic_mode ++ ++# Does compiler simultaneously support -c and -o options? ++compiler_c_o=$lt_compiler_c_o ++ ++# Can we write directly to a .lo ? ++compiler_o_lo=$lt_compiler_o_lo ++ ++# Must we lock files when doing compilation ? ++need_locks=$lt_need_locks ++ ++# Do we need the lib prefix for modules? ++need_lib_prefix=$need_lib_prefix ++ ++# Do we need a version for libraries? ++need_version=$need_version ++ ++# Whether dlopen is supported. ++dlopen_support=$enable_dlopen ++ ++# Whether dlopen of programs is supported. ++dlopen_self=$enable_dlopen_self ++ ++# Whether dlopen of statically linked programs is supported. ++dlopen_self_static=$enable_dlopen_self_static ++ ++# Compiler flag to prevent dynamic linking. ++link_static_flag=$lt_link_static_flag ++ ++# Compiler flag to turn off builtin functions. ++no_builtin_flag=$lt_no_builtin_flag ++ ++# Compiler flag to allow reflexive dlopens. ++export_dynamic_flag_spec=$lt_export_dynamic_flag_spec ++ ++# Compiler flag to generate shared objects directly from archives. ++whole_archive_flag_spec=$lt_whole_archive_flag_spec ++ ++# Compiler flag to generate thread-safe objects. ++thread_safe_flag_spec=$lt_thread_safe_flag_spec ++ ++# Library versioning type. ++version_type=$version_type ++ ++# Format of library name prefix. ++libname_spec=$lt_libname_spec ++ ++# List of archive names. First name is the real one, the rest are links. ++# The last name is the one that the linker finds with -lNAME. ++library_names_spec=$lt_library_names_spec ++ ++# The coded name of the library, if different from the real name. ++soname_spec=$lt_soname_spec ++ ++# Commands used to build and install an old-style archive. ++RANLIB=$lt_RANLIB ++old_archive_cmds=$lt_old_archive_cmds ++old_postinstall_cmds=$lt_old_postinstall_cmds ++old_postuninstall_cmds=$lt_old_postuninstall_cmds ++ ++# Create an old-style archive from a shared archive. ++old_archive_from_new_cmds=$lt_old_archive_from_new_cmds ++ ++# Create a temporary old-style archive to link instead of a shared archive. ++old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds ++ ++# Commands used to build and install a shared archive. ++archive_cmds=$lt_archive_cmds ++archive_expsym_cmds=$lt_archive_expsym_cmds ++postinstall_cmds=$lt_postinstall_cmds ++postuninstall_cmds=$lt_postuninstall_cmds ++ ++# Commands to strip libraries. ++old_striplib=$lt_old_striplib ++striplib=$lt_striplib ++ ++# Method to check whether dependent libraries are shared objects. ++deplibs_check_method=$lt_deplibs_check_method ++ ++# Command to use when deplibs_check_method == file_magic. ++file_magic_cmd=$lt_file_magic_cmd ++ ++# Flag that allows shared libraries with undefined symbols to be built. ++allow_undefined_flag=$lt_allow_undefined_flag ++ ++# Flag that forces no undefined symbols. ++no_undefined_flag=$lt_no_undefined_flag ++ ++# Commands used to finish a libtool library installation in a directory. ++finish_cmds=$lt_finish_cmds ++ ++# Same as above, but a single script fragment to be evaled but not shown. ++finish_eval=$lt_finish_eval ++ ++# Take the output of nm and produce a listing of raw symbols and C names. ++global_symbol_pipe=$lt_global_symbol_pipe ++ ++# Transform the output of nm in a proper C declaration ++global_symbol_to_cdecl=$lt_global_symbol_to_cdecl ++ ++# Transform the output of nm in a C name address pair ++global_symbol_to_c_name_address=$lt_global_symbol_to_c_name_address ++ ++# This is the shared library runtime path variable. ++runpath_var=$runpath_var ++ ++# This is the shared library path variable. ++shlibpath_var=$shlibpath_var ++ ++# Is shlibpath searched before the hard-coded library search path? ++shlibpath_overrides_runpath=$shlibpath_overrides_runpath ++ ++# How to hardcode a shared library path into an executable. ++hardcode_action=$hardcode_action ++ ++# Whether we should hardcode library paths into libraries. ++hardcode_into_libs=$hardcode_into_libs ++ ++# Flag to hardcode \$libdir into a binary during linking. ++# This must work even if \$libdir does not exist. ++hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec ++ ++# Whether we need a single -rpath flag with a separated argument. ++hardcode_libdir_separator=$lt_hardcode_libdir_separator ++ ++# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the ++# resulting binary. ++hardcode_direct=$hardcode_direct ++ ++# Set to yes if using the -LDIR flag during linking hardcodes DIR into the ++# resulting binary. ++hardcode_minus_L=$hardcode_minus_L ++ ++# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into ++# the resulting binary. ++hardcode_shlibpath_var=$hardcode_shlibpath_var ++ ++# Variables whose values should be saved in libtool wrapper scripts and ++# restored at relink time. ++variables_saved_for_relink="$variables_saved_for_relink" ++ ++# Whether libtool must link a program against all its dependency libraries. ++link_all_deplibs=$link_all_deplibs ++ ++# Compile-time system search path for libraries ++sys_lib_search_path_spec=$lt_sys_lib_search_path_spec ++ ++# Run-time system search path for libraries ++sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec ++ ++# Fix the shell variable \$srcfile for the compiler. ++fix_srcfile_path="$fix_srcfile_path" ++ ++# Set to yes if exported symbols are required. ++always_export_symbols=$always_export_symbols ++ ++# The commands to list exported symbols. ++export_symbols_cmds=$lt_export_symbols_cmds ++ ++# The commands to extract the exported symbol list from a shared archive. ++extract_expsyms_cmds=$lt_extract_expsyms_cmds ++ ++# Symbols that should not be listed in the preloaded symbols. ++exclude_expsyms=$lt_exclude_expsyms ++ ++# Symbols that must always be exported. ++include_expsyms=$lt_include_expsyms ++ ++# ### END LIBTOOL CONFIG ++ ++__EOF__ ++ ++ case $host_os in ++ aix3*) ++ cat <<\EOF >> "${ofile}T" ++ ++# AIX sometimes has problems with the GCC collect2 program. For some ++# reason, if we set the COLLECT_NAMES environment variable, the problems ++# vanish in a puff of smoke. ++if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++fi ++EOF ++ ;; ++ esac ++ ++ case $host_os in ++ cygwin* | mingw* | pw32* | os2*) ++ cat <<'EOF' >> "${ofile}T" ++ # This is a source program that is used to create dlls on Windows ++ # Don't remove nor modify the starting and closing comments ++# /* ltdll.c starts here */ ++# #define WIN32_LEAN_AND_MEAN ++# #include ++# #undef WIN32_LEAN_AND_MEAN ++# #include ++# ++# #ifndef __CYGWIN__ ++# # ifdef __CYGWIN32__ ++# # define __CYGWIN__ __CYGWIN32__ ++# # endif ++# #endif ++# ++# #ifdef __cplusplus ++# extern "C" { ++# #endif ++# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); ++# #ifdef __cplusplus ++# } ++# #endif ++# ++# #ifdef __CYGWIN__ ++# #include ++# DECLARE_CYGWIN_DLL( DllMain ); ++# #endif ++# HINSTANCE __hDllInstance_base; ++# ++# BOOL APIENTRY ++# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) ++# { ++# __hDllInstance_base = hInst; ++# return TRUE; ++# } ++# /* ltdll.c ends here */ ++ # This is a source program that is used to create import libraries ++ # on Windows for dlls which lack them. Don't remove nor modify the ++ # starting and closing comments ++# /* impgen.c starts here */ ++# /* Copyright (C) 1999-2000 Free Software Foundation, Inc. ++# ++# This file is part of GNU libtool. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# */ ++# ++# #include /* for printf() */ ++# #include /* for open(), lseek(), read() */ ++# #include /* for O_RDONLY, O_BINARY */ ++# #include /* for strdup() */ ++# ++# /* O_BINARY isn't required (or even defined sometimes) under Unix */ ++# #ifndef O_BINARY ++# #define O_BINARY 0 ++# #endif ++# ++# static unsigned int ++# pe_get16 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[2]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 2); ++# return b[0] + (b[1]<<8); ++# } ++# ++# static unsigned int ++# pe_get32 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[4]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 4); ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# static unsigned int ++# pe_as32 (ptr) ++# void *ptr; ++# { ++# unsigned char *b = ptr; ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# int ++# main (argc, argv) ++# int argc; ++# char *argv[]; ++# { ++# int dll; ++# unsigned long pe_header_offset, opthdr_ofs, num_entries, i; ++# unsigned long export_rva, export_size, nsections, secptr, expptr; ++# unsigned long name_rvas, nexp; ++# unsigned char *expdata, *erva; ++# char *filename, *dll_name; ++# ++# filename = argv[1]; ++# ++# dll = open(filename, O_RDONLY|O_BINARY); ++# if (dll < 1) ++# return 1; ++# ++# dll_name = filename; ++# ++# for (i=0; filename[i]; i++) ++# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':') ++# dll_name = filename + i +1; ++# ++# pe_header_offset = pe_get32 (dll, 0x3c); ++# opthdr_ofs = pe_header_offset + 4 + 20; ++# num_entries = pe_get32 (dll, opthdr_ofs + 92); ++# ++# if (num_entries < 1) /* no exports */ ++# return 1; ++# ++# export_rva = pe_get32 (dll, opthdr_ofs + 96); ++# export_size = pe_get32 (dll, opthdr_ofs + 100); ++# nsections = pe_get16 (dll, pe_header_offset + 4 +2); ++# secptr = (pe_header_offset + 4 + 20 + ++# pe_get16 (dll, pe_header_offset + 4 + 16)); ++# ++# expptr = 0; ++# for (i = 0; i < nsections; i++) ++# { ++# char sname[8]; ++# unsigned long secptr1 = secptr + 40 * i; ++# unsigned long vaddr = pe_get32 (dll, secptr1 + 12); ++# unsigned long vsize = pe_get32 (dll, secptr1 + 16); ++# unsigned long fptr = pe_get32 (dll, secptr1 + 20); ++# lseek(dll, secptr1, SEEK_SET); ++# read(dll, sname, 8); ++# if (vaddr <= export_rva && vaddr+vsize > export_rva) ++# { ++# expptr = fptr + (export_rva - vaddr); ++# if (export_rva + export_size > vaddr + vsize) ++# export_size = vsize - (export_rva - vaddr); ++# break; ++# } ++# } ++# ++# expdata = (unsigned char*)malloc(export_size); ++# lseek (dll, expptr, SEEK_SET); ++# read (dll, expdata, export_size); ++# erva = expdata - export_rva; ++# ++# nexp = pe_as32 (expdata+24); ++# name_rvas = pe_as32 (expdata+32); ++# ++# printf ("EXPORTS\n"); ++# for (i = 0; i> "${ofile}T" || (rm -f "${ofile}T"; exit 1) ++ ++ mv -f "${ofile}T" "$ofile" || \ ++ (rm -f "$ofile" && cp "${ofile}T" "$ofile" && rm -f "${ofile}T") ++ chmod +x "$ofile" ++fi ++ ++])# _LT_AC_LTCONFIG_HACK + + # AC_LIBTOOL_DLOPEN - enable checks for dlopen support +-AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])]) ++AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])]) + + # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's +-AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])]) ++AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])]) + + # AC_ENABLE_SHARED - implement the --enable-shared flag + # Usage: AC_ENABLE_SHARED[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_SHARED, [dnl +-define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_SHARED], ++[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(shared, + changequote(<<, >>)dnl + << --enable-shared[=PKGS] build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) +@@ -157,21 +2992,22 @@ + ]) + + # AC_DISABLE_SHARED - set the default shared flag to --disable-shared +-AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_DISABLE_SHARED], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_SHARED(no)]) + + # AC_ENABLE_STATIC - implement the --enable-static flag + # Usage: AC_ENABLE_STATIC[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_STATIC, [dnl +-define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_STATIC], ++[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(static, + changequote(<<, >>)dnl + << --enable-static[=PKGS] build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) +@@ -190,7 +3026,8 @@ + ]) + + # AC_DISABLE_STATIC - set the default static flag to --disable-static +-AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_DISABLE_STATIC], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_STATIC(no)]) + + +@@ -198,14 +3035,14 @@ + # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)] + # Where DEFAULT is either `yes' or `no'. If omitted, it defaults to + # `yes'. +-AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl +-define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl ++AC_DEFUN([AC_ENABLE_FAST_INSTALL], ++[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl + AC_ARG_ENABLE(fast-install, + changequote(<<, >>)dnl + << --enable-fast-install[=PKGS] optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT], + changequote([, ])dnl + [p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) +@@ -223,29 +3060,120 @@ + enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl + ]) + +-# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install +-AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++# AC_DISABLE_FAST_INSTALL - set the default to --disable-fast-install ++AC_DEFUN([AC_DISABLE_FAST_INSTALL], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_ENABLE_FAST_INSTALL(no)]) + ++# AC_LIBTOOL_PICMODE - implement the --with-pic flag ++# Usage: AC_LIBTOOL_PICMODE[(MODE)] ++# Where MODE is either `yes' or `no'. If omitted, it defaults to ++# `both'. ++AC_DEFUN([AC_LIBTOOL_PICMODE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++pic_mode=ifelse($#,1,$1,default)]) ++ ++ ++# AC_PATH_TOOL_PREFIX - find a file program which can recognise shared library ++AC_DEFUN([AC_PATH_TOOL_PREFIX], ++[AC_MSG_CHECKING([for $1]) ++AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, ++[case $MAGIC_CMD in ++ /*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ++ ;; ++ ?:/*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path. ++ ;; ++ *) ++ ac_save_MAGIC_CMD="$MAGIC_CMD" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++dnl $ac_dummy forces splitting on constant user-supplied paths. ++dnl POSIX.2 word splitting is done only on the output of word expansions, ++dnl not every word. This closes a longstanding sh security hole. ++ ac_dummy="ifelse([$2], , $PATH, [$2])" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$1; then ++ lt_cv_path_MAGIC_CMD="$ac_dir/$1" ++ if test -n "$file_magic_test_file"; then ++ case $deplibs_check_method in ++ "file_magic "*) ++ file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" ++ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | ++ egrep "$file_magic_regex" > /dev/null; then ++ : ++ else ++ cat <&2 ++ ++*** Warning: the command libtool uses to detect shared libraries, ++*** $file_magic_cmd, produces output that libtool cannot recognize. ++*** The result is that libtool may fail to recognize shared libraries ++*** as such. This will affect the creation of libtool libraries that ++*** depend on shared libraries, but programs linked with such libtool ++*** libraries will work regardless of this problem. Nevertheless, you ++*** may want to report the problem to your system manager and/or to ++*** bug-libtool@gnu.org ++ ++EOF ++ fi ;; ++ esac ++ fi ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ MAGIC_CMD="$ac_save_MAGIC_CMD" ++ ;; ++esac]) ++MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++if test -n "$MAGIC_CMD"; then ++ AC_MSG_RESULT($MAGIC_CMD) ++else ++ AC_MSG_RESULT(no) ++fi ++]) ++ ++ ++# AC_PATH_MAGIC - find a file program which can recognise a shared library ++AC_DEFUN([AC_PATH_MAGIC], ++[AC_REQUIRE([AC_CHECK_TOOL_PREFIX])dnl ++AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin:$PATH) ++if test -z "$lt_cv_path_MAGIC_CMD"; then ++ if test -n "$ac_tool_prefix"; then ++ AC_PATH_TOOL_PREFIX(file, /usr/bin:$PATH) ++ else ++ MAGIC_CMD=: ++ fi ++fi ++]) ++ ++ + # AC_PROG_LD - find the path to the GNU or non-GNU linker +-AC_DEFUN(AC_PROG_LD, ++AC_DEFUN([AC_PROG_LD], + [AC_ARG_WITH(gnu-ld, + [ --with-gnu-ld assume the C compiler uses GNU ld [default=no]], + test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no) + AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_CANONICAL_HOST])dnl + AC_REQUIRE([AC_CANONICAL_BUILD])dnl ++AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl + ac_prog=ld +-if test "$ac_cv_prog_gcc" = yes; then ++if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by GCC]) +- ac_prog=`($CC -print-prog-name=ld) 2>&5` +- case "$ac_prog" in ++ case $host in ++ *-*-mingw*) ++ # gcc leaves a trailing carriage return which upsets mingw ++ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; ++ *) ++ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; ++ esac ++ case $ac_prog in + # Accept absolute paths. +-changequote(,)dnl +- [\\/]* | [A-Za-z]:[\\/]*) +- re_direlt='/[^/][^/]*/\.\./' +-changequote([,])dnl ++ [[\\/]]* | [[A-Za-z]]:[[\\/]]*) ++ re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the path of ld + ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` + while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do +@@ -267,17 +3195,17 @@ + else + AC_MSG_CHECKING([for non-GNU ld]) + fi +-AC_CACHE_VAL(ac_cv_path_LD, ++AC_CACHE_VAL(lt_cv_path_LD, + [if test -z "$LD"; then +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then +- ac_cv_path_LD="$ac_dir/$ac_prog" ++ lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some GNU ld's only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. +- if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then ++ if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then + test "$with_gnu_ld" != no && break + else + test "$with_gnu_ld" != yes && break +@@ -286,9 +3214,9 @@ + done + IFS="$ac_save_ifs" + else +- ac_cv_path_LD="$LD" # Let the user override the test with a path. ++ lt_cv_path_LD="$LD" # Let the user override the test with a path. + fi]) +-LD="$ac_cv_path_LD" ++LD="$lt_cv_path_LD" + if test -n "$LD"; then + AC_MSG_RESULT($LD) + else +@@ -298,56 +3226,255 @@ + AC_PROG_LD_GNU + ]) + +-AC_DEFUN(AC_PROG_LD_GNU, +-[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld, ++# AC_PROG_LD_GNU - ++AC_DEFUN([AC_PROG_LD_GNU], ++[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld, + [# I'd rather use --version here, but apparently some GNU ld's only accept -v. + if $LD -v 2>&1 &5; then +- ac_cv_prog_gnu_ld=yes ++ lt_cv_prog_gnu_ld=yes + else +- ac_cv_prog_gnu_ld=no ++ lt_cv_prog_gnu_ld=no + fi]) ++with_gnu_ld=$lt_cv_prog_gnu_ld ++]) ++ ++# AC_PROG_LD_RELOAD_FLAG - find reload flag for linker ++# -- PORTME Some linkers may need a different reload flag. ++AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], ++[AC_CACHE_CHECK([for $LD option to reload object files], lt_cv_ld_reload_flag, ++[lt_cv_ld_reload_flag='-r']) ++reload_flag=$lt_cv_ld_reload_flag ++test -n "$reload_flag" && reload_flag=" $reload_flag" ++]) ++ ++# AC_DEPLIBS_CHECK_METHOD - how to check for library dependencies ++# -- PORTME fill in with the dynamic library characteristics ++AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], ++[AC_CACHE_CHECK([how to recognise dependent libraries], ++lt_cv_deplibs_check_method, ++[lt_cv_file_magic_cmd='$MAGIC_CMD' ++lt_cv_file_magic_test_file= ++lt_cv_deplibs_check_method='unknown' ++# Need to set the preceding variable on all platforms that support ++# interlibrary dependencies. ++# 'none' -- dependencies not supported. ++# `unknown' -- same as none, but documents that we really don't know. ++# 'pass_all' -- all dependencies passed with no checks. ++# 'test_compile' -- check by making test program. ++# 'file_magic [[regex]]' -- check by looking for files in library path ++# which responds to the $file_magic_cmd with a given egrep regex. ++# If you have `file' or equivalent on your system and you're not sure ++# whether `pass_all' will *always* work, you probably want this one. ++ ++case $host_os in ++aix4* | aix5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++beos*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++bsdi4*) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' ++ lt_cv_file_magic_cmd='$OBJDUMP -f' ++ ;; ++ ++darwin* | rhapsody*) ++ lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ case "$host_os" in ++ rhapsody* | darwin1.[[012]]) ++ lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1` ++ ;; ++ *) # Darwin 1.3 on ++ lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib' ++ ;; ++ esac ++ ;; ++ ++freebsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ case $host_cpu in ++ i*86 ) ++ # Not sure whether the presence of OpenBSD here was a mistake. ++ # Let's accept both of them until this is cleared up. ++ lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ ;; ++ esac ++ else ++ lt_cv_deplibs_check_method=pass_all ++ fi ++ ;; ++ ++gnu*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++hpux10.20*|hpux11*) ++ lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libc.sl ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ irix5* | nonstopux*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1" ++ ;; ++ *) ++ case $LD in ++ *-32|*"-32 ") libmagic=32-bit;; ++ *-n32|*"-n32 ") libmagic=N32;; ++ *-64|*"-64 ") libmagic=64-bit;; ++ *) libmagic=never-match;; ++ esac ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[[1234]] dynamic lib MIPS - version 1" ++ ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*` ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ case $host_cpu in ++ alpha* | hppa* | i*86 | mips | mipsel | powerpc* | sparc* | ia64* | arm* | m68k) ++ lt_cv_deplibs_check_method=pass_all ;; ++ *) ++ # glibc up to 2.1.1 does not perform some relocations on ARM ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so` ++ ;; ++ ++netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so\.[[0-9]]+\.[[0-9]]+$' ++ else ++ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so$' ++ fi ++ ;; ++ ++newos6*) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libnls.so ++ ;; ++ ++openbsd*) ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object' ++ else ++ lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' ++ fi ++ ;; ++ ++osf3* | osf4* | osf5*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method='file_magic COFF format alpha shared library' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sco3.2v5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++solaris*) ++ lt_cv_deplibs_check_method=pass_all ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ ++sysv5uw[[78]]* | sysv4*uw2*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ case $host_vendor in ++ motorola) ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ++ ;; ++ ncr) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ sequent) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ++ ;; ++ sni) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ siemens) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ esac ++ ;; ++esac ++]) ++file_magic_cmd=$lt_cv_file_magic_cmd ++deplibs_check_method=$lt_cv_deplibs_check_method + ]) + ++ + # AC_PROG_NM - find the path to a BSD-compatible name lister +-AC_DEFUN(AC_PROG_NM, +-[AC_MSG_CHECKING([for BSD-compatible nm]) +-AC_CACHE_VAL(ac_cv_path_NM, ++AC_DEFUN([AC_PROG_NM], ++[AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl ++AC_MSG_CHECKING([for BSD-compatible nm]) ++AC_CACHE_VAL(lt_cv_path_NM, + [if test -n "$NM"; then + # Let the user override the test. +- ac_cv_path_NM="$NM" ++ lt_cv_path_NM="$NM" + else +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do + test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then ++ tmp_nm=$ac_dir/${ac_tool_prefix}nm ++ if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored +- if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -B" ++ # Tru64's nm complains that /dev/null is an invalid object file ++ if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -B" + break +- elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -p" ++ elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -p" + break + else +- ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but ++ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + fi + fi + done + IFS="$ac_save_ifs" +- test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm ++ test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm + fi]) +-NM="$ac_cv_path_NM" ++NM="$lt_cv_path_NM" + AC_MSG_RESULT([$NM]) + ]) + + # AC_CHECK_LIBM - check for math library +-AC_DEFUN(AC_CHECK_LIBM, ++AC_DEFUN([AC_CHECK_LIBM], + [AC_REQUIRE([AC_CANONICAL_HOST])dnl + LIBM= +-case "$lt_target" in +-*-*-beos* | *-*-cygwin*) ++case $host in ++*-*-beos* | *-*-cygwin* | *-*-pw32*) + # These system don't have libm + ;; + *-ncr-sysv4.3*) +@@ -361,33 +3488,41 @@ + ]) + + # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for +-# the libltdl convenience library, adds --enable-ltdl-convenience to +-# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor +-# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed +-# to be `${top_builddir}/libltdl'. Make sure you start DIR with +-# '${top_builddir}/' (note the single quotes!) if your package is not +-# flat, and, if you're not using automake, define top_builddir as +-# appropriate in the Makefiles. +-AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl +- case "$enable_ltdl_convenience" in ++# the libltdl convenience library and LTDLINCL to the include flags for ++# the libltdl header and adds --enable-ltdl-convenience to the ++# configure arguments. Note that LIBLTDL and LTDLINCL are not ++# AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If DIR is not ++# provided, it is assumed to be `libltdl'. LIBLTDL will be prefixed ++# with '${top_builddir}/' and LTDLINCL will be prefixed with ++# '${top_srcdir}/' (note the single quotes!). If your package is not ++# flat and you're not using automake, define top_builddir and ++# top_srcdir appropriately in the Makefiles. ++AC_DEFUN([AC_LIBLTDL_CONVENIENCE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++ case $enable_ltdl_convenience in + no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; + "") enable_ltdl_convenience=yes + ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; + esac +- LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdlc.la +- INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl']) ++ LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la ++ LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ++ # For backwards non-gettext consistent compatibility... ++ INCLTDL="$LTDLINCL" + ]) + + # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for +-# the libltdl installable library, and adds --enable-ltdl-install to +-# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor +-# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed +-# to be `${top_builddir}/libltdl'. Make sure you start DIR with +-# '${top_builddir}/' (note the single quotes!) if your package is not +-# flat, and, if you're not using automake, define top_builddir as +-# appropriate in the Makefiles. ++# the libltdl installable library and LTDLINCL to the include flags for ++# the libltdl header and adds --enable-ltdl-install to the configure ++# arguments. Note that LIBLTDL and LTDLINCL are not AC_SUBSTed, nor is ++# AC_CONFIG_SUBDIRS called. If DIR is not provided and an installed ++# libltdl is not found, it is assumed to be `libltdl'. LIBLTDL will ++# be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed ++# with '${top_srcdir}/' (note the single quotes!). If your package is ++# not flat and you're not using automake, define top_builddir and ++# top_srcdir appropriately in the Makefiles. + # In the future, this macro may have to be called after AC_PROG_LIBTOOL. +-AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ++AC_DEFUN([AC_LIBLTDL_INSTALLABLE], ++[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + AC_CHECK_LIB(ltdl, main, + [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], + [if test x"$enable_ltdl_install" = xno; then +@@ -398,30 +3533,940 @@ + ]) + if test x"$enable_ltdl_install" = x"yes"; then + ac_configure_args="$ac_configure_args --enable-ltdl-install" +- LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdl.la +- INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl']) ++ LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la ++ LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) + else + ac_configure_args="$ac_configure_args --enable-ltdl-install=no" + LIBLTDL="-lltdl" +- INCLTDL= ++ LTDLINCL= ++ fi ++ # For backwards non-gettext consistent compatibility... ++ INCLTDL="$LTDLINCL" ++]) ++ ++# old names ++AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) ++AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) ++AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) ++AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) ++AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) ++AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) ++AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) ++ ++# This is just to silence aclocal about the macro not being used ++ifelse([AC_DISABLE_FAST_INSTALL]) ++ ++# NOTE: This macro has been submitted for inclusion into # ++# GNU Autoconf as AC_PROG_SED. When it is available in # ++# a released version of Autoconf we should remove this # ++# macro and use it instead. # ++# LT_AC_PROG_SED ++# -------------- ++# Check for a fully-functional sed program, that truncates ++# as few characters as possible. Prefer GNU sed if found. ++AC_DEFUN([LT_AC_PROG_SED], ++[AC_MSG_CHECKING([for a sed that does not truncate output]) ++AC_CACHE_VAL(lt_cv_path_SED, ++[# Loop through the user's path and test for sed and gsed. ++# Then use that list of sed's as ones to test for truncation. ++as_executable_p="test -f" ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_prog in sed gsed; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then ++ _sed_list="$_sed_list $as_dir/$ac_prog$ac_exec_ext" ++ fi ++ done ++ done ++done ++ ++ # Create a temporary directory, and hook for its removal unless debugging. ++$debug || ++{ ++ trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 ++ trap '{ (exit 1); exit 1; }' 1 2 13 15 ++} ++ ++# Create a (secure) tmp directory for tmp files. ++: ${TMPDIR=/tmp} ++{ ++ tmp=`(umask 077 && mktemp -d -q "$TMPDIR/sedXXXXXX") 2>/dev/null` && ++ test -n "$tmp" && test -d "$tmp" ++} || ++{ ++ tmp=$TMPDIR/sed$$-$RANDOM ++ (umask 077 && mkdir $tmp) ++} || ++{ ++ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ++ { (exit 1); exit 1; } ++} ++ _max=0 ++ _count=0 ++ # Add /usr/xpg4/bin/sed as it is typically found on Solaris ++ # along with /bin/sed that truncates output. ++ for _sed in $_sed_list /usr/xpg4/bin/sed; do ++ test ! -f ${_sed} && break ++ cat /dev/null > "$tmp/sed.in" ++ _count=0 ++ echo ${ECHO_N-$ac_n} "0123456789${ECHO_C-$ac_c}" >"$tmp/sed.in" ++ # Check for GNU sed and select it if it is found. ++ if "${_sed}" --version 2>&1 < /dev/null | egrep '(GNU)' > /dev/null; then ++ lt_cv_path_SED=${_sed} ++ break ++ fi ++ while true; do ++ cat "$tmp/sed.in" "$tmp/sed.in" >"$tmp/sed.tmp" ++ mv "$tmp/sed.tmp" "$tmp/sed.in" ++ cp "$tmp/sed.in" "$tmp/sed.nl" ++ echo >>"$tmp/sed.nl" ++ ${_sed} -e 's/a$//' < "$tmp/sed.nl" >"$tmp/sed.out" || break ++ cmp -s "$tmp/sed.out" "$tmp/sed.nl" || break ++ # 40000 chars as input seems more than enough ++ test $_count -gt 10 && break ++ _count=`expr $_count + 1` ++ if test $_count -gt $_max; then ++ _max=$_count ++ lt_cv_path_SED=$_sed ++ fi ++ done ++ done ++ rm -rf "$tmp" ++]) ++if test "X$SED" != "X"; then ++ lt_cv_path_SED=$SED ++else ++ SED=$lt_cv_path_SED ++fi ++AC_MSG_RESULT([$SED]) ++]) ++ ++# lib-prefix.m4 serial 3 (gettext-0.12.2) ++dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Bruno Haible. ++ ++dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and ++dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't ++dnl require excessive bracketing. ++ifdef([AC_HELP_STRING], ++[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], ++[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) ++ ++dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed ++dnl to access previously installed libraries. The basic assumption is that ++dnl a user will want packages to use other packages he previously installed ++dnl with the same --prefix option. ++dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate ++dnl libraries, but is otherwise very convenient. ++AC_DEFUN([AC_LIB_PREFIX], ++[ ++ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) ++ AC_REQUIRE([AC_PROG_CC]) ++ AC_REQUIRE([AC_CANONICAL_HOST]) ++ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) ++ dnl By default, look in $includedir and $libdir. ++ use_additional=yes ++ AC_LIB_WITH_FINAL_PREFIX([ ++ eval additional_includedir=\"$includedir\" ++ eval additional_libdir=\"$libdir\" ++ ]) ++ AC_LIB_ARG_WITH([lib-prefix], ++[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib ++ --without-lib-prefix don't search for libraries in includedir and libdir], ++[ ++ if test "X$withval" = "Xno"; then ++ use_additional=no ++ else ++ if test "X$withval" = "X"; then ++ AC_LIB_WITH_FINAL_PREFIX([ ++ eval additional_includedir=\"$includedir\" ++ eval additional_libdir=\"$libdir\" ++ ]) ++ else ++ additional_includedir="$withval/include" ++ additional_libdir="$withval/lib" ++ fi ++ fi ++]) ++ if test $use_additional = yes; then ++ dnl Potentially add $additional_includedir to $CPPFLAGS. ++ dnl But don't add it ++ dnl 1. if it's the standard /usr/include, ++ dnl 2. if it's already present in $CPPFLAGS, ++ dnl 3. if it's /usr/local/include and we are using GCC on Linux, ++ dnl 4. if it doesn't exist as a directory. ++ if test "X$additional_includedir" != "X/usr/include"; then ++ haveit= ++ for x in $CPPFLAGS; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ if test "X$x" = "X-I$additional_includedir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ if test "X$additional_includedir" = "X/usr/local/include"; then ++ if test -n "$GCC"; then ++ case $host_os in ++ linux*) haveit=yes;; ++ esac ++ fi ++ fi ++ if test -z "$haveit"; then ++ if test -d "$additional_includedir"; then ++ dnl Really add $additional_includedir to $CPPFLAGS. ++ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" ++ fi ++ fi ++ fi ++ fi ++ dnl Potentially add $additional_libdir to $LDFLAGS. ++ dnl But don't add it ++ dnl 1. if it's the standard /usr/lib, ++ dnl 2. if it's already present in $LDFLAGS, ++ dnl 3. if it's /usr/local/lib and we are using GCC on Linux, ++ dnl 4. if it doesn't exist as a directory. ++ if test "X$additional_libdir" != "X/usr/lib"; then ++ haveit= ++ for x in $LDFLAGS; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ if test "X$x" = "X-L$additional_libdir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ if test "X$additional_libdir" = "X/usr/local/lib"; then ++ if test -n "$GCC"; then ++ case $host_os in ++ linux*) haveit=yes;; ++ esac ++ fi ++ fi ++ if test -z "$haveit"; then ++ if test -d "$additional_libdir"; then ++ dnl Really add $additional_libdir to $LDFLAGS. ++ LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" ++ fi ++ fi ++ fi ++ fi ++ fi ++]) ++ ++dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, ++dnl acl_final_exec_prefix, containing the values to which $prefix and ++dnl $exec_prefix will expand at the end of the configure script. ++AC_DEFUN([AC_LIB_PREPARE_PREFIX], ++[ ++ dnl Unfortunately, prefix and exec_prefix get only finally determined ++ dnl at the end of configure. ++ if test "X$prefix" = "XNONE"; then ++ acl_final_prefix="$ac_default_prefix" ++ else ++ acl_final_prefix="$prefix" ++ fi ++ if test "X$exec_prefix" = "XNONE"; then ++ acl_final_exec_prefix='${prefix}' ++ else ++ acl_final_exec_prefix="$exec_prefix" ++ fi ++ acl_save_prefix="$prefix" ++ prefix="$acl_final_prefix" ++ eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" ++ prefix="$acl_save_prefix" ++]) ++ ++dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the ++dnl variables prefix and exec_prefix bound to the values they will have ++dnl at the end of the configure script. ++AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], ++[ ++ acl_save_prefix="$prefix" ++ prefix="$acl_final_prefix" ++ acl_save_exec_prefix="$exec_prefix" ++ exec_prefix="$acl_final_exec_prefix" ++ $1 ++ exec_prefix="$acl_save_exec_prefix" ++ prefix="$acl_save_prefix" ++]) ++ ++# lib-link.m4 serial 4 (gettext-0.12) ++dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Bruno Haible. ++ ++dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and ++dnl the libraries corresponding to explicit and implicit dependencies. ++dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and ++dnl augments the CPPFLAGS variable. ++AC_DEFUN([AC_LIB_LINKFLAGS], ++[ ++ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) ++ AC_REQUIRE([AC_LIB_RPATH]) ++ define([Name],[translit([$1],[./-], [___])]) ++ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], ++ [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) ++ AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ ++ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ++ ac_cv_lib[]Name[]_libs="$LIB[]NAME" ++ ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ++ ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ++ ]) ++ LIB[]NAME="$ac_cv_lib[]Name[]_libs" ++ LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" ++ INC[]NAME="$ac_cv_lib[]Name[]_cppflags" ++ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) ++ AC_SUBST([LIB]NAME) ++ AC_SUBST([LTLIB]NAME) ++ dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the ++ dnl results of this search when this library appears as a dependency. ++ HAVE_LIB[]NAME=yes ++ undefine([Name]) ++ undefine([NAME]) ++]) ++ ++dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) ++dnl searches for libname and the libraries corresponding to explicit and ++dnl implicit dependencies, together with the specified include files and ++dnl the ability to compile and link the specified testcode. If found, it ++dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and ++dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and ++dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs ++dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. ++AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], ++[ ++ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) ++ AC_REQUIRE([AC_LIB_RPATH]) ++ define([Name],[translit([$1],[./-], [___])]) ++ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], ++ [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) ++ ++ dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME ++ dnl accordingly. ++ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ++ ++ dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, ++ dnl because if the user has installed lib[]Name and not disabled its use ++ dnl via --without-lib[]Name-prefix, he wants to use it. ++ ac_save_CPPFLAGS="$CPPFLAGS" ++ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) ++ ++ AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ++ ac_save_LIBS="$LIBS" ++ LIBS="$LIBS $LIB[]NAME" ++ AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) ++ LIBS="$ac_save_LIBS" ++ ]) ++ if test "$ac_cv_lib[]Name" = yes; then ++ HAVE_LIB[]NAME=yes ++ AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) ++ AC_MSG_CHECKING([how to link with lib[]$1]) ++ AC_MSG_RESULT([$LIB[]NAME]) ++ else ++ HAVE_LIB[]NAME=no ++ dnl If $LIB[]NAME didn't lead to a usable library, we don't need ++ dnl $INC[]NAME either. ++ CPPFLAGS="$ac_save_CPPFLAGS" ++ LIB[]NAME= ++ LTLIB[]NAME= ++ fi ++ AC_SUBST([HAVE_LIB]NAME) ++ AC_SUBST([LIB]NAME) ++ AC_SUBST([LTLIB]NAME) ++ undefine([Name]) ++ undefine([NAME]) ++]) ++ ++dnl Determine the platform dependent parameters needed to use rpath: ++dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator, ++dnl hardcode_direct, hardcode_minus_L. ++AC_DEFUN([AC_LIB_RPATH], ++[ ++ AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS ++ AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld ++ AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host ++ AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir ++ AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ ++ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ++ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh ++ . ./conftest.sh ++ rm -f ./conftest.sh ++ acl_cv_rpath=done ++ ]) ++ wl="$acl_cv_wl" ++ libext="$acl_cv_libext" ++ shlibext="$acl_cv_shlibext" ++ hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" ++ hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" ++ hardcode_direct="$acl_cv_hardcode_direct" ++ hardcode_minus_L="$acl_cv_hardcode_minus_L" ++ dnl Determine whether the user wants rpath handling at all. ++ AC_ARG_ENABLE(rpath, ++ [ --disable-rpath do not hardcode runtime library paths], ++ :, enable_rpath=yes) ++]) ++ ++dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and ++dnl the libraries corresponding to explicit and implicit dependencies. ++dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. ++AC_DEFUN([AC_LIB_LINKFLAGS_BODY], ++[ ++ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], ++ [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) ++ dnl By default, look in $includedir and $libdir. ++ use_additional=yes ++ AC_LIB_WITH_FINAL_PREFIX([ ++ eval additional_includedir=\"$includedir\" ++ eval additional_libdir=\"$libdir\" ++ ]) ++ AC_LIB_ARG_WITH([lib$1-prefix], ++[ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib ++ --without-lib$1-prefix don't search for lib$1 in includedir and libdir], ++[ ++ if test "X$withval" = "Xno"; then ++ use_additional=no ++ else ++ if test "X$withval" = "X"; then ++ AC_LIB_WITH_FINAL_PREFIX([ ++ eval additional_includedir=\"$includedir\" ++ eval additional_libdir=\"$libdir\" ++ ]) ++ else ++ additional_includedir="$withval/include" ++ additional_libdir="$withval/lib" ++ fi ++ fi ++]) ++ dnl Search the library and its dependencies in $additional_libdir and ++ dnl $LDFLAGS. Using breadth-first-seach. ++ LIB[]NAME= ++ LTLIB[]NAME= ++ INC[]NAME= ++ rpathdirs= ++ ltrpathdirs= ++ names_already_handled= ++ names_next_round='$1 $2' ++ while test -n "$names_next_round"; do ++ names_this_round="$names_next_round" ++ names_next_round= ++ for name in $names_this_round; do ++ already_handled= ++ for n in $names_already_handled; do ++ if test "$n" = "$name"; then ++ already_handled=yes ++ break ++ fi ++ done ++ if test -z "$already_handled"; then ++ names_already_handled="$names_already_handled $name" ++ dnl See if it was already located by an earlier AC_LIB_LINKFLAGS ++ dnl or AC_LIB_HAVE_LINKFLAGS call. ++ uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` ++ eval value=\"\$HAVE_LIB$uppername\" ++ if test -n "$value"; then ++ if test "$value" = yes; then ++ eval value=\"\$LIB$uppername\" ++ test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" ++ eval value=\"\$LTLIB$uppername\" ++ test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" ++ else ++ dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined ++ dnl that this library doesn't exist. So just drop it. ++ : ++ fi ++ else ++ dnl Search the library lib$name in $additional_libdir and $LDFLAGS ++ dnl and the already constructed $LIBNAME/$LTLIBNAME. ++ found_dir= ++ found_la= ++ found_so= ++ found_a= ++ if test $use_additional = yes; then ++ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then ++ found_dir="$additional_libdir" ++ found_so="$additional_libdir/lib$name.$shlibext" ++ if test -f "$additional_libdir/lib$name.la"; then ++ found_la="$additional_libdir/lib$name.la" ++ fi ++ else ++ if test -f "$additional_libdir/lib$name.$libext"; then ++ found_dir="$additional_libdir" ++ found_a="$additional_libdir/lib$name.$libext" ++ if test -f "$additional_libdir/lib$name.la"; then ++ found_la="$additional_libdir/lib$name.la" ++ fi ++ fi ++ fi ++ fi ++ if test "X$found_dir" = "X"; then ++ for x in $LDFLAGS $LTLIB[]NAME; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ case "$x" in ++ -L*) ++ dir=`echo "X$x" | sed -e 's/^X-L//'` ++ if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then ++ found_dir="$dir" ++ found_so="$dir/lib$name.$shlibext" ++ if test -f "$dir/lib$name.la"; then ++ found_la="$dir/lib$name.la" ++ fi ++ else ++ if test -f "$dir/lib$name.$libext"; then ++ found_dir="$dir" ++ found_a="$dir/lib$name.$libext" ++ if test -f "$dir/lib$name.la"; then ++ found_la="$dir/lib$name.la" ++ fi ++ fi ++ fi ++ ;; ++ esac ++ if test "X$found_dir" != "X"; then ++ break ++ fi ++ done ++ fi ++ if test "X$found_dir" != "X"; then ++ dnl Found the library. ++ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" ++ if test "X$found_so" != "X"; then ++ dnl Linking with a shared library. We attempt to hardcode its ++ dnl directory into the executable's runpath, unless it's the ++ dnl standard /usr/lib. ++ if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then ++ dnl No hardcoding is needed. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" ++ else ++ dnl Use an explicit option to hardcode DIR into the resulting ++ dnl binary. ++ dnl Potentially add DIR to ltrpathdirs. ++ dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. ++ haveit= ++ for x in $ltrpathdirs; do ++ if test "X$x" = "X$found_dir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ ltrpathdirs="$ltrpathdirs $found_dir" ++ fi ++ dnl The hardcoding into $LIBNAME is system dependent. ++ if test "$hardcode_direct" = yes; then ++ dnl Using DIR/libNAME.so during linking hardcodes DIR into the ++ dnl resulting binary. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" ++ else ++ if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then ++ dnl Use an explicit option to hardcode DIR into the resulting ++ dnl binary. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" ++ dnl Potentially add DIR to rpathdirs. ++ dnl The rpathdirs will be appended to $LIBNAME at the end. ++ haveit= ++ for x in $rpathdirs; do ++ if test "X$x" = "X$found_dir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ rpathdirs="$rpathdirs $found_dir" ++ fi ++ else ++ dnl Rely on "-L$found_dir". ++ dnl But don't add it if it's already contained in the LDFLAGS ++ dnl or the already constructed $LIBNAME ++ haveit= ++ for x in $LDFLAGS $LIB[]NAME; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ if test "X$x" = "X-L$found_dir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" ++ fi ++ if test "$hardcode_minus_L" != no; then ++ dnl FIXME: Not sure whether we should use ++ dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" ++ dnl here. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" ++ else ++ dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH ++ dnl here, because this doesn't fit in flags passed to the ++ dnl compiler. So give up. No hardcoding. This affects only ++ dnl very old systems. ++ dnl FIXME: Not sure whether we should use ++ dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" ++ dnl here. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" ++ fi ++ fi ++ fi ++ fi ++ else ++ if test "X$found_a" != "X"; then ++ dnl Linking with a static library. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" ++ else ++ dnl We shouldn't come here, but anyway it's good to have a ++ dnl fallback. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" ++ fi ++ fi ++ dnl Assume the include files are nearby. ++ additional_includedir= ++ case "$found_dir" in ++ */lib | */lib/) ++ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` ++ additional_includedir="$basedir/include" ++ ;; ++ esac ++ if test "X$additional_includedir" != "X"; then ++ dnl Potentially add $additional_includedir to $INCNAME. ++ dnl But don't add it ++ dnl 1. if it's the standard /usr/include, ++ dnl 2. if it's /usr/local/include and we are using GCC on Linux, ++ dnl 3. if it's already present in $CPPFLAGS or the already ++ dnl constructed $INCNAME, ++ dnl 4. if it doesn't exist as a directory. ++ if test "X$additional_includedir" != "X/usr/include"; then ++ haveit= ++ if test "X$additional_includedir" = "X/usr/local/include"; then ++ if test -n "$GCC"; then ++ case $host_os in ++ linux*) haveit=yes;; ++ esac ++ fi ++ fi ++ if test -z "$haveit"; then ++ for x in $CPPFLAGS $INC[]NAME; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ if test "X$x" = "X-I$additional_includedir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ if test -d "$additional_includedir"; then ++ dnl Really add $additional_includedir to $INCNAME. ++ INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" ++ fi ++ fi ++ fi ++ fi ++ fi ++ dnl Look for dependencies. ++ if test -n "$found_la"; then ++ dnl Read the .la file. It defines the variables ++ dnl dlname, library_names, old_library, dependency_libs, current, ++ dnl age, revision, installed, dlopen, dlpreopen, libdir. ++ save_libdir="$libdir" ++ case "$found_la" in ++ */* | *\\*) . "$found_la" ;; ++ *) . "./$found_la" ;; ++ esac ++ libdir="$save_libdir" ++ dnl We use only dependency_libs. ++ for dep in $dependency_libs; do ++ case "$dep" in ++ -L*) ++ additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` ++ dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. ++ dnl But don't add it ++ dnl 1. if it's the standard /usr/lib, ++ dnl 2. if it's /usr/local/lib and we are using GCC on Linux, ++ dnl 3. if it's already present in $LDFLAGS or the already ++ dnl constructed $LIBNAME, ++ dnl 4. if it doesn't exist as a directory. ++ if test "X$additional_libdir" != "X/usr/lib"; then ++ haveit= ++ if test "X$additional_libdir" = "X/usr/local/lib"; then ++ if test -n "$GCC"; then ++ case $host_os in ++ linux*) haveit=yes;; ++ esac ++ fi ++ fi ++ if test -z "$haveit"; then ++ haveit= ++ for x in $LDFLAGS $LIB[]NAME; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ if test "X$x" = "X-L$additional_libdir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ if test -d "$additional_libdir"; then ++ dnl Really add $additional_libdir to $LIBNAME. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" ++ fi ++ fi ++ haveit= ++ for x in $LDFLAGS $LTLIB[]NAME; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ if test "X$x" = "X-L$additional_libdir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ if test -d "$additional_libdir"; then ++ dnl Really add $additional_libdir to $LTLIBNAME. ++ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" ++ fi ++ fi ++ fi ++ fi ++ ;; ++ -R*) ++ dir=`echo "X$dep" | sed -e 's/^X-R//'` ++ if test "$enable_rpath" != no; then ++ dnl Potentially add DIR to rpathdirs. ++ dnl The rpathdirs will be appended to $LIBNAME at the end. ++ haveit= ++ for x in $rpathdirs; do ++ if test "X$x" = "X$dir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ rpathdirs="$rpathdirs $dir" ++ fi ++ dnl Potentially add DIR to ltrpathdirs. ++ dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. ++ haveit= ++ for x in $ltrpathdirs; do ++ if test "X$x" = "X$dir"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ ltrpathdirs="$ltrpathdirs $dir" ++ fi ++ fi ++ ;; ++ -l*) ++ dnl Handle this in the next round. ++ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ++ ;; ++ *.la) ++ dnl Handle this in the next round. Throw away the .la's ++ dnl directory; it is already contained in a preceding -L ++ dnl option. ++ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ++ ;; ++ *) ++ dnl Most likely an immediate library name. ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" ++ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ++ ;; ++ esac ++ done ++ fi ++ else ++ dnl Didn't find the library; assume it is in the system directories ++ dnl known to the linker and runtime loader. (All the system ++ dnl directories known to the linker should also be known to the ++ dnl runtime loader, otherwise the system is severely misconfigured.) ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" ++ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" ++ fi ++ fi ++ fi ++ done ++ done ++ if test "X$rpathdirs" != "X"; then ++ if test -n "$hardcode_libdir_separator"; then ++ dnl Weird platform: only the last -rpath option counts, the user must ++ dnl pass all path elements in one option. We can arrange that for a ++ dnl single library, but not when more than one $LIBNAMEs are used. ++ alldirs= ++ for found_dir in $rpathdirs; do ++ alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" ++ done ++ dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl. ++ acl_save_libdir="$libdir" ++ libdir="$alldirs" ++ eval flag=\"$hardcode_libdir_flag_spec\" ++ libdir="$acl_save_libdir" ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" ++ else ++ dnl The -rpath options are cumulative. ++ for found_dir in $rpathdirs; do ++ acl_save_libdir="$libdir" ++ libdir="$found_dir" ++ eval flag=\"$hardcode_libdir_flag_spec\" ++ libdir="$acl_save_libdir" ++ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" ++ done ++ fi ++ fi ++ if test "X$ltrpathdirs" != "X"; then ++ dnl When using libtool, the option that works for both libraries and ++ dnl executables is -R. The -R options are cumulative. ++ for found_dir in $ltrpathdirs; do ++ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" ++ done ++ fi ++]) ++ ++dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, ++dnl unless already present in VAR. ++dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes ++dnl contains two or three consecutive elements that belong together. ++AC_DEFUN([AC_LIB_APPENDTOVAR], ++[ ++ for element in [$2]; do ++ haveit= ++ for x in $[$1]; do ++ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) ++ if test "X$x" = "X$element"; then ++ haveit=yes ++ break ++ fi ++ done ++ if test -z "$haveit"; then ++ [$1]="${[$1]}${[$1]:+ }$element" ++ fi ++ done ++]) ++ ++# lib-ld.m4 serial 2 (gettext-0.12) ++dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl Subroutines of libtool.m4, ++dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision ++dnl with libtool.m4. ++ ++dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. ++AC_DEFUN([AC_LIB_PROG_LD_GNU], ++[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, ++[# I'd rather use --version here, but apparently some GNU ld's only accept -v. ++if $LD -v 2>&1 &5; then ++ acl_cv_prog_gnu_ld=yes ++else ++ acl_cv_prog_gnu_ld=no ++fi]) ++with_gnu_ld=$acl_cv_prog_gnu_ld ++]) ++ ++dnl From libtool-1.4. Sets the variable LD. ++AC_DEFUN([AC_LIB_PROG_LD], ++[AC_ARG_WITH(gnu-ld, ++[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]], ++test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no) ++AC_REQUIRE([AC_PROG_CC])dnl ++AC_REQUIRE([AC_CANONICAL_HOST])dnl ++# Prepare PATH_SEPARATOR. ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: + fi ++ rm -f conf$$.sh ++fi ++ac_prog=ld ++if test "$GCC" = yes; then ++ # Check if gcc -print-prog-name=ld gives a path. ++ AC_MSG_CHECKING([for ld used by GCC]) ++ case $host in ++ *-*-mingw*) ++ # gcc leaves a trailing carriage return which upsets mingw ++ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; ++ *) ++ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; ++ esac ++ case $ac_prog in ++ # Accept absolute paths. ++ [[\\/]* | [A-Za-z]:[\\/]*)] ++ [re_direlt='/[^/][^/]*/\.\./'] ++ # Canonicalize the path of ld ++ ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` ++ while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ++ ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` ++ done ++ test -z "$LD" && LD="$ac_prog" ++ ;; ++ "") ++ # If it fails, then pretend we aren't using GCC. ++ ac_prog=ld ++ ;; ++ *) ++ # If it is relative, then search for the first ld in PATH. ++ with_gnu_ld=unknown ++ ;; ++ esac ++elif test "$with_gnu_ld" = yes; then ++ AC_MSG_CHECKING([for GNU ld]) ++else ++ AC_MSG_CHECKING([for non-GNU ld]) ++fi ++AC_CACHE_VAL(acl_cv_path_LD, ++[if test -z "$LD"; then ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ for ac_dir in $PATH; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then ++ acl_cv_path_LD="$ac_dir/$ac_prog" ++ # Check to see if the program is GNU ld. I'd rather use --version, ++ # but apparently some GNU ld's only accept -v. ++ # Break only if it was the GNU/non-GNU ld that we prefer. ++ if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then ++ test "$with_gnu_ld" != no && break ++ else ++ test "$with_gnu_ld" != yes && break ++ fi ++ fi ++ done ++ IFS="$ac_save_ifs" ++else ++ acl_cv_path_LD="$LD" # Let the user override the test with a path. ++fi]) ++LD="$acl_cv_path_LD" ++if test -n "$LD"; then ++ AC_MSG_RESULT($LD) ++else ++ AC_MSG_RESULT(no) ++fi ++test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) ++AC_LIB_PROG_LD_GNU + ]) + +-dnl old names +-AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl +-AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl +-AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl +-AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl +-AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl +-AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl +-AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl +- +-dnl This is just to silence aclocal about the macro not being used +-ifelse([AC_DISABLE_FAST_INSTALL])dnl +- + # Like AC_CONFIG_HEADER, but automatically create stamp file. + +-AC_DEFUN(AM_CONFIG_HEADER, ++AC_DEFUN([AM_CONFIG_HEADER], + [AC_PREREQ([2.12]) + AC_CONFIG_HEADER([$1]) + dnl When config.status generates a header, we must update the stamp-h file. +@@ -451,8 +4496,9 @@ + dnl Usage: + dnl AM_INIT_AUTOMAKE(package,version, [no-define]) + +-AC_DEFUN(AM_INIT_AUTOMAKE, +-[AC_REQUIRE([AC_PROG_INSTALL]) ++AC_DEFUN([AM_INIT_AUTOMAKE], ++[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl ++AC_REQUIRE([AC_PROG_INSTALL]) + PACKAGE=[$1] + AC_SUBST(PACKAGE) + VERSION=[$2] +@@ -468,18 +4514,47 @@ + AC_REQUIRE([AC_ARG_PROGRAM]) + dnl FIXME This is truly gross. + missing_dir=`cd $ac_aux_dir && pwd` +-AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir) ++AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}, $missing_dir) + AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) +-AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir) ++AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}, $missing_dir) + AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) + AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir) + AC_REQUIRE([AC_PROG_MAKE_SET])]) + ++# Copyright 2002 Free Software Foundation, Inc. ++ ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2, or (at your option) ++# any later version. ++ ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++ ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ++ ++# AM_AUTOMAKE_VERSION(VERSION) ++# ---------------------------- ++# Automake X.Y traces this macro to ensure aclocal.m4 has been ++# generated from the m4 files accompanying Automake X.Y. ++AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.4"]) ++ ++# AM_SET_CURRENT_AUTOMAKE_VERSION ++# ------------------------------- ++# Call AM_AUTOMAKE_VERSION so it can be traced. ++# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. ++AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ++ [AM_AUTOMAKE_VERSION([1.4-p6])]) ++ + # + # Check to make sure that the build environment is sane. + # + +-AC_DEFUN(AM_SANITY_CHECK, ++AC_DEFUN([AM_SANITY_CHECK], + [AC_MSG_CHECKING([whether build environment is sane]) + # Just in case + sleep 1 +@@ -520,7 +4595,7 @@ + + dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY) + dnl The program must properly implement --version. +-AC_DEFUN(AM_MISSING_PROG, ++AC_DEFUN([AM_MISSING_PROG], + [AC_MSG_CHECKING(for working $2) + # Run test in a subshell; some versions of sh will print an error if + # an executable is not found, even if stderr is redirected. +@@ -572,10 +4647,37 @@ + AC_SUBST(ECHO_C)dnl + ]) + ++# isc-posix.m4 serial 2 (gettext-0.11.2) ++dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++# This file is not needed with autoconf-2.53 and newer. Remove it in 2005. ++ ++# This test replaces the one in autoconf. ++# Currently this macro should have the same name as the autoconf macro ++# because gettext's gettext.m4 (distributed in the automake package) ++# still uses it. Otherwise, the use in gettext.m4 makes autoheader ++# give these diagnostics: ++# configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX ++# configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX ++ ++undefine([AC_ISC_POSIX]) ++ ++AC_DEFUN([AC_ISC_POSIX], ++ [ ++ dnl This test replaces the obsolescent AC_ISC_POSIX kludge. ++ AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) ++ ] ++) ++ + + # serial 1 + +-AC_DEFUN(AM_C_PROTOTYPES, ++AC_DEFUN([AM_C_PROTOTYPES], + [AC_REQUIRE([AM_PROG_CC_STDC]) + AC_REQUIRE([AC_PROG_CPP]) + AC_MSG_CHECKING([for function prototypes]) +@@ -612,7 +4714,7 @@ + # program @code{ansi2knr}, which comes with Ghostscript. + # @end defmac + +-AC_DEFUN(AM_PROG_CC_STDC, ++AC_DEFUN([AM_PROG_CC_STDC], + [AC_REQUIRE([AC_PROG_CC]) + AC_BEFORE([$0], [AC_C_INLINE]) + AC_BEFORE([$0], [AC_C_CONST]) +@@ -862,7 +4964,7 @@ + + # serial 1 + +-AC_DEFUN(AM_WITH_DMALLOC, ++AC_DEFUN([AM_WITH_DMALLOC], + [AC_MSG_CHECKING(if malloc debugging is wanted) + AC_ARG_WITH(dmalloc, + [ --with-dmalloc use dmalloc, as in +@@ -1011,18 +5113,1138 @@ + fi + fi]) + +-# Define a conditional. ++# gettext.m4 serial 20 (gettext-0.12) ++dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++dnl ++dnl This file can can be used in projects which are not available under ++dnl the GNU General Public License or the GNU Library General Public ++dnl License but which still want to provide support for the GNU gettext ++dnl functionality. ++dnl Please note that the actual code of the GNU gettext library is covered ++dnl by the GNU Library General Public License, and the rest of the GNU ++dnl gettext package package is covered by the GNU General Public License. ++dnl They are *not* in the public domain. ++ ++dnl Authors: ++dnl Ulrich Drepper , 1995-2000. ++dnl Bruno Haible , 2000-2003. ++ ++dnl Macro to add for using GNU gettext. ++ ++dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). ++dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The ++dnl default (if it is not specified or empty) is 'no-libtool'. ++dnl INTLSYMBOL should be 'external' for packages with no intl directory, ++dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. ++dnl If INTLSYMBOL is 'use-libtool', then a libtool library ++dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, ++dnl depending on --{enable,disable}-{shared,static} and on the presence of ++dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library ++dnl $(top_builddir)/intl/libintl.a will be created. ++dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext ++dnl implementations (in libc or libintl) without the ngettext() function ++dnl will be ignored. If NEEDSYMBOL is specified and is ++dnl 'need-formatstring-macros', then GNU gettext implementations that don't ++dnl support the ISO C 99 formatstring macros will be ignored. ++dnl INTLDIR is used to find the intl libraries. If empty, ++dnl the value `$(top_builddir)/intl/' is used. ++dnl ++dnl The result of the configuration is one of three cases: ++dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled ++dnl and used. ++dnl Catalog format: GNU --> install in $(datadir) ++dnl Catalog extension: .mo after installation, .gmo in source tree ++dnl 2) GNU gettext has been found in the system's C library. ++dnl Catalog format: GNU --> install in $(datadir) ++dnl Catalog extension: .mo after installation, .gmo in source tree ++dnl 3) No internationalization, always use English msgid. ++dnl Catalog format: none ++dnl Catalog extension: none ++dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. ++dnl The use of .gmo is historical (it was needed to avoid overwriting the ++dnl GNU format catalogs when building on a platform with an X/Open gettext), ++dnl but we keep it in order not to force irrelevant filename changes on the ++dnl maintainers. ++dnl ++AC_DEFUN([AM_GNU_GETTEXT], ++[ ++ dnl Argument checking. ++ ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , ++ [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ++])])])])]) ++ ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , ++ [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ++])])])]) ++ define(gt_included_intl, ifelse([$1], [external], [no], [yes])) ++ define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], [])) ++ ++ AC_REQUIRE([AM_PO_SUBDIRS])dnl ++ ifelse(gt_included_intl, yes, [ ++ AC_REQUIRE([AM_INTL_SUBDIR])dnl ++ ]) + +-AC_DEFUN(AM_CONDITIONAL, +-[AC_SUBST($1_TRUE) +-AC_SUBST($1_FALSE) +-if $2; then +- $1_TRUE= +- $1_FALSE='#' ++ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. ++ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) ++ AC_REQUIRE([AC_LIB_RPATH]) ++ ++ dnl Sometimes libintl requires libiconv, so first search for libiconv. ++ dnl Ideally we would do this search only after the ++ dnl if test "$USE_NLS" = "yes"; then ++ dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then ++ dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT ++ dnl the configure script would need to contain the same shell code ++ dnl again, outside any 'if'. There are two solutions: ++ dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. ++ dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. ++ dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not ++ dnl documented, we avoid it. ++ ifelse(gt_included_intl, yes, , [ ++ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ++ ]) ++ ++ dnl Set USE_NLS. ++ AM_NLS ++ ++ ifelse(gt_included_intl, yes, [ ++ BUILD_INCLUDED_LIBINTL=no ++ USE_INCLUDED_LIBINTL=no ++ ]) ++ LIBINTL= ++ LTLIBINTL= ++ POSUB= ++ ++ dnl If we use NLS figure out what method ++ if test "$USE_NLS" = "yes"; then ++ gt_use_preinstalled_gnugettext=no ++ ifelse(gt_included_intl, yes, [ ++ AC_MSG_CHECKING([whether included gettext is requested]) ++ AC_ARG_WITH(included-gettext, ++ [ --with-included-gettext use the GNU gettext library included here], ++ nls_cv_force_use_gnu_gettext=$withval, ++ nls_cv_force_use_gnu_gettext=no) ++ AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) ++ ++ nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" ++ if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ++ ]) ++ dnl User does not insist on using GNU NLS library. Figure out what ++ dnl to use. If GNU gettext is available we use this. Else we have ++ dnl to fall back to GNU NLS library. ++ ++ dnl Add a version number to the cache macros. ++ define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1))) ++ define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc]) ++ define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl]) ++ ++ AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, ++ [AC_TRY_LINK([#include ++]ifelse([$2], [need-formatstring-macros], ++[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION ++#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) ++#endif ++changequote(,)dnl ++typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ++changequote([,])dnl ++], [])[extern int _nl_msg_cat_cntr; ++extern int *_nl_domain_bindings;], ++ [bindtextdomain ("", ""); ++return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings], ++ gt_cv_func_gnugettext_libc=yes, ++ gt_cv_func_gnugettext_libc=no)]) ++ ++ if test "$gt_cv_func_gnugettext_libc" != "yes"; then ++ dnl Sometimes libintl requires libiconv, so first search for libiconv. ++ ifelse(gt_included_intl, yes, , [ ++ AM_ICONV_LINK ++ ]) ++ dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL ++ dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) ++ dnl because that would add "-liconv" to LIBINTL and LTLIBINTL ++ dnl even if libiconv doesn't exist. ++ AC_LIB_LINKFLAGS_BODY([intl]) ++ AC_CACHE_CHECK([for GNU gettext in libintl], ++ gt_cv_func_gnugettext_libintl, ++ [gt_save_CPPFLAGS="$CPPFLAGS" ++ CPPFLAGS="$CPPFLAGS $INCINTL" ++ gt_save_LIBS="$LIBS" ++ LIBS="$LIBS $LIBINTL" ++ dnl Now see whether libintl exists and does not depend on libiconv. ++ AC_TRY_LINK([#include ++]ifelse([$2], [need-formatstring-macros], ++[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION ++#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) ++#endif ++changequote(,)dnl ++typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ++changequote([,])dnl ++], [])[extern int _nl_msg_cat_cntr; ++extern ++#ifdef __cplusplus ++"C" ++#endif ++const char *_nl_expand_alias ();], ++ [bindtextdomain ("", ""); ++return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], ++ gt_cv_func_gnugettext_libintl=yes, ++ gt_cv_func_gnugettext_libintl=no) ++ dnl Now see whether libintl exists and depends on libiconv. ++ if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then ++ LIBS="$LIBS $LIBICONV" ++ AC_TRY_LINK([#include ++]ifelse([$2], [need-formatstring-macros], ++[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION ++#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) ++#endif ++changequote(,)dnl ++typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ++changequote([,])dnl ++], [])[extern int _nl_msg_cat_cntr; ++extern ++#ifdef __cplusplus ++"C" ++#endif ++const char *_nl_expand_alias ();], ++ [bindtextdomain ("", ""); ++return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], ++ [LIBINTL="$LIBINTL $LIBICONV" ++ LTLIBINTL="$LTLIBINTL $LTLIBICONV" ++ gt_cv_func_gnugettext_libintl=yes ++ ]) ++ fi ++ CPPFLAGS="$gt_save_CPPFLAGS" ++ LIBS="$gt_save_LIBS"]) ++ fi ++ ++ dnl If an already present or preinstalled GNU gettext() is found, ++ dnl use it. But if this macro is used in GNU gettext, and GNU ++ dnl gettext is already preinstalled in libintl, we update this ++ dnl libintl. (Cf. the install rule in intl/Makefile.in.) ++ if test "$gt_cv_func_gnugettext_libc" = "yes" \ ++ || { test "$gt_cv_func_gnugettext_libintl" = "yes" \ ++ && test "$PACKAGE" != gettext-runtime \ ++ && test "$PACKAGE" != gettext-tools; }; then ++ gt_use_preinstalled_gnugettext=yes ++ else ++ dnl Reset the values set by searching for libintl. ++ LIBINTL= ++ LTLIBINTL= ++ INCINTL= ++ fi ++ ++ ifelse(gt_included_intl, yes, [ ++ if test "$gt_use_preinstalled_gnugettext" != "yes"; then ++ dnl GNU gettext is not found in the C library. ++ dnl Fall back on included GNU gettext library. ++ nls_cv_use_gnu_gettext=yes ++ fi ++ fi ++ ++ if test "$nls_cv_use_gnu_gettext" = "yes"; then ++ dnl Mark actions used to generate GNU NLS library. ++ BUILD_INCLUDED_LIBINTL=yes ++ USE_INCLUDED_LIBINTL=yes ++ LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV" ++ LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV" ++ LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` ++ fi ++ ++ if test "$gt_use_preinstalled_gnugettext" = "yes" \ ++ || test "$nls_cv_use_gnu_gettext" = "yes"; then ++ dnl Mark actions to use GNU gettext tools. ++ CATOBJEXT=.gmo ++ fi ++ ]) ++ ++ if test "$gt_use_preinstalled_gnugettext" = "yes" \ ++ || test "$nls_cv_use_gnu_gettext" = "yes"; then ++ AC_DEFINE(ENABLE_NLS, 1, ++ [Define to 1 if translation of program messages to the user's native language ++ is requested.]) ++ else ++ USE_NLS=no ++ fi ++ fi ++ ++ AC_MSG_CHECKING([whether to use NLS]) ++ AC_MSG_RESULT([$USE_NLS]) ++ if test "$USE_NLS" = "yes"; then ++ AC_MSG_CHECKING([where the gettext function comes from]) ++ if test "$gt_use_preinstalled_gnugettext" = "yes"; then ++ if test "$gt_cv_func_gnugettext_libintl" = "yes"; then ++ gt_source="external libintl" ++ else ++ gt_source="libc" ++ fi ++ else ++ gt_source="included intl directory" ++ fi ++ AC_MSG_RESULT([$gt_source]) ++ fi ++ ++ if test "$USE_NLS" = "yes"; then ++ ++ if test "$gt_use_preinstalled_gnugettext" = "yes"; then ++ if test "$gt_cv_func_gnugettext_libintl" = "yes"; then ++ AC_MSG_CHECKING([how to link with libintl]) ++ AC_MSG_RESULT([$LIBINTL]) ++ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) ++ fi ++ ++ dnl For backward compatibility. Some packages may be using this. ++ AC_DEFINE(HAVE_GETTEXT, 1, ++ [Define if the GNU gettext() function is already present or preinstalled.]) ++ AC_DEFINE(HAVE_DCGETTEXT, 1, ++ [Define if the GNU dcgettext() function is already present or preinstalled.]) ++ fi ++ ++ dnl We need to process the po/ directory. ++ POSUB=po ++ fi ++ ++ ifelse(gt_included_intl, yes, [ ++ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL ++ dnl to 'yes' because some of the testsuite requires it. ++ if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then ++ BUILD_INCLUDED_LIBINTL=yes ++ fi ++ ++ dnl Make all variables we use known to autoconf. ++ AC_SUBST(BUILD_INCLUDED_LIBINTL) ++ AC_SUBST(USE_INCLUDED_LIBINTL) ++ AC_SUBST(CATOBJEXT) ++ ++ dnl For backward compatibility. Some configure.ins may be using this. ++ nls_cv_header_intl= ++ nls_cv_header_libgt= ++ ++ dnl For backward compatibility. Some Makefiles may be using this. ++ DATADIRNAME=share ++ AC_SUBST(DATADIRNAME) ++ ++ dnl For backward compatibility. Some Makefiles may be using this. ++ INSTOBJEXT=.mo ++ AC_SUBST(INSTOBJEXT) ++ ++ dnl For backward compatibility. Some Makefiles may be using this. ++ GENCAT=gencat ++ AC_SUBST(GENCAT) ++ ++ dnl For backward compatibility. Some Makefiles may be using this. ++ if test "$USE_INCLUDED_LIBINTL" = yes; then ++ INTLOBJS="\$(GETTOBJS)" ++ fi ++ AC_SUBST(INTLOBJS) ++ ++ dnl Enable libtool support if the surrounding package wishes it. ++ INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix ++ AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) ++ ]) ++ ++ dnl For backward compatibility. Some Makefiles may be using this. ++ INTLLIBS="$LIBINTL" ++ AC_SUBST(INTLLIBS) ++ ++ dnl Make all documented variables known to autoconf. ++ AC_SUBST(LIBINTL) ++ AC_SUBST(LTLIBINTL) ++ AC_SUBST(POSUB) ++]) ++ ++ ++dnl Checks for all prerequisites of the intl subdirectory, ++dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, ++dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL. ++AC_DEFUN([AM_INTL_SUBDIR], ++[ ++ AC_REQUIRE([AC_PROG_INSTALL])dnl ++ AC_REQUIRE([AM_MKINSTALLDIRS])dnl ++ AC_REQUIRE([AC_PROG_CC])dnl ++ AC_REQUIRE([AC_CANONICAL_HOST])dnl ++ AC_REQUIRE([AC_PROG_RANLIB])dnl ++ AC_REQUIRE([AC_ISC_POSIX])dnl ++ AC_REQUIRE([AC_HEADER_STDC])dnl ++ AC_REQUIRE([AC_C_CONST])dnl ++ AC_REQUIRE([AC_C_INLINE])dnl ++ AC_REQUIRE([AC_TYPE_OFF_T])dnl ++ AC_REQUIRE([AC_TYPE_SIZE_T])dnl ++ AC_REQUIRE([AC_FUNC_ALLOCA])dnl ++ AC_REQUIRE([AC_FUNC_MMAP])dnl ++ AC_REQUIRE([jm_GLIBC21])dnl ++ AC_REQUIRE([gt_INTDIV0])dnl ++ AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl ++ AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl ++ AC_REQUIRE([gt_INTTYPES_PRI])dnl ++ ++ AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ ++stdlib.h string.h unistd.h sys/param.h]) ++ AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \ ++geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \ ++strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next \ ++__fsetlocking]) ++ ++ AM_ICONV ++ AM_LANGINFO_CODESET ++ if test $ac_cv_header_locale_h = yes; then ++ AM_LC_MESSAGES ++ fi ++ ++ dnl intl/plural.c is generated from intl/plural.y. It requires bison, ++ dnl because plural.y uses bison specific features. It requires at least ++ dnl bison-1.26 because earlier versions generate a plural.c that doesn't ++ dnl compile. ++ dnl bison is only needed for the maintainer (who touches plural.y). But in ++ dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put ++ dnl the rule in general Makefile. Now, some people carelessly touch the ++ dnl files or have a broken "make" program, hence the plural.c rule will ++ dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not ++ dnl present or too old. ++ AC_CHECK_PROGS([INTLBISON], [bison]) ++ if test -z "$INTLBISON"; then ++ ac_verc_fail=yes ++ else ++ dnl Found it, now check the version. ++ AC_MSG_CHECKING([version of bison]) ++changequote(<<,>>)dnl ++ ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` ++ case $ac_prog_version in ++ '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; ++ 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) ++changequote([,])dnl ++ ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; ++ *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; ++ esac ++ AC_MSG_RESULT([$ac_prog_version]) ++ fi ++ if test $ac_verc_fail = yes; then ++ INTLBISON=: ++ fi ++]) ++ ++ ++dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) ++AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) ++ ++# po.m4 serial 1 (gettext-0.12) ++dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++dnl ++dnl This file can can be used in projects which are not available under ++dnl the GNU General Public License or the GNU Library General Public ++dnl License but which still want to provide support for the GNU gettext ++dnl functionality. ++dnl Please note that the actual code of the GNU gettext library is covered ++dnl by the GNU Library General Public License, and the rest of the GNU ++dnl gettext package package is covered by the GNU General Public License. ++dnl They are *not* in the public domain. ++ ++dnl Authors: ++dnl Ulrich Drepper , 1995-2000. ++dnl Bruno Haible , 2000-2003. ++ ++dnl Checks for all prerequisites of the po subdirectory. ++AC_DEFUN([AM_PO_SUBDIRS], ++[ ++ AC_REQUIRE([AC_PROG_MAKE_SET])dnl ++ AC_REQUIRE([AC_PROG_INSTALL])dnl ++ AC_REQUIRE([AM_MKINSTALLDIRS])dnl ++ AC_REQUIRE([AM_NLS])dnl ++ ++ dnl Perform the following tests also if --disable-nls has been given, ++ dnl because they are needed for "make dist" to work. ++ ++ dnl Search for GNU msgfmt in the PATH. ++ dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. ++ dnl The second test excludes FreeBSD msgfmt. ++ AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, ++ [$ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && ++ (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], ++ :) ++ AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) ++ ++ dnl Search for GNU xgettext 0.12 or newer in the PATH. ++ dnl The first test excludes Solaris xgettext and early GNU xgettext versions. ++ dnl The second test excludes FreeBSD xgettext. ++ AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, ++ [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && ++ (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], ++ :) ++ dnl Remove leftover from FreeBSD xgettext call. ++ rm -f messages.po ++ ++ dnl Search for GNU msgmerge 0.11 or newer in the PATH. ++ AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, ++ [$ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1], :) ++ ++ dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. ++ dnl Test whether we really found GNU msgfmt. ++ if test "$GMSGFMT" != ":"; then ++ dnl If it is no GNU msgfmt we define it as : so that the ++ dnl Makefiles still can work. ++ if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && ++ (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ++ : ; ++ else ++ GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` ++ AC_MSG_RESULT( ++ [found $GMSGFMT program is not GNU msgfmt; ignore it]) ++ GMSGFMT=":" ++ fi ++ fi ++ ++ dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. ++ dnl Test whether we really found GNU xgettext. ++ if test "$XGETTEXT" != ":"; then ++ dnl If it is no GNU xgettext we define it as : so that the ++ dnl Makefiles still can work. ++ if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && ++ (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ++ : ; ++ else ++ AC_MSG_RESULT( ++ [found xgettext program is not GNU xgettext; ignore it]) ++ XGETTEXT=":" ++ fi ++ dnl Remove leftover from FreeBSD xgettext call. ++ rm -f messages.po ++ fi ++ ++ AC_OUTPUT_COMMANDS([ ++ for ac_file in $CONFIG_FILES; do ++ # Support "outfile[:infile[:infile...]]" ++ case "$ac_file" in ++ *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; ++ esac ++ # PO directories have a Makefile.in generated from Makefile.in.in. ++ case "$ac_file" in */Makefile.in) ++ # Adjust a relative srcdir. ++ ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ++ ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ++ ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` ++ # In autoconf-2.13 it is called $ac_given_srcdir. ++ # In autoconf-2.50 it is called $srcdir. ++ test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" ++ case "$ac_given_srcdir" in ++ .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; ++ /*) top_srcdir="$ac_given_srcdir" ;; ++ *) top_srcdir="$ac_dots$ac_given_srcdir" ;; ++ esac ++ if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then ++ rm -f "$ac_dir/POTFILES" ++ test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" ++ cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" ++ POMAKEFILEDEPS="POTFILES.in" ++ # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend ++ # on $ac_dir but don't depend on user-specified configuration ++ # parameters. ++ if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then ++ # The LINGUAS file contains the set of available languages. ++ if test -n "$OBSOLETE_ALL_LINGUAS"; then ++ test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" ++ fi ++ ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` ++ # Hide the ALL_LINGUAS assigment from automake. ++ eval 'ALL_LINGUAS''=$ALL_LINGUAS_' ++ POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" ++ else ++ # The set of available languages was given in configure.in. ++ eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' ++ fi ++ case "$ac_given_srcdir" in ++ .) srcdirpre= ;; ++ *) srcdirpre='$(srcdir)/' ;; ++ esac ++ POFILES= ++ GMOFILES= ++ UPDATEPOFILES= ++ DUMMYPOFILES= ++ for lang in $ALL_LINGUAS; do ++ POFILES="$POFILES $srcdirpre$lang.po" ++ GMOFILES="$GMOFILES $srcdirpre$lang.gmo" ++ UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" ++ DUMMYPOFILES="$DUMMYPOFILES $lang.nop" ++ done ++ # CATALOGS depends on both $ac_dir and the user's LINGUAS ++ # environment variable. ++ INST_LINGUAS= ++ if test -n "$ALL_LINGUAS"; then ++ for presentlang in $ALL_LINGUAS; do ++ useit=no ++ if test "%UNSET%" != "$LINGUAS"; then ++ desiredlanguages="$LINGUAS" ++ else ++ desiredlanguages="$ALL_LINGUAS" ++ fi ++ for desiredlang in $desiredlanguages; do ++ # Use the presentlang catalog if desiredlang is ++ # a. equal to presentlang, or ++ # b. a variant of presentlang (because in this case, ++ # presentlang can be used as a fallback for messages ++ # which are not translated in the desiredlang catalog). ++ case "$desiredlang" in ++ "$presentlang"*) useit=yes;; ++ esac ++ done ++ if test $useit = yes; then ++ INST_LINGUAS="$INST_LINGUAS $presentlang" ++ fi ++ done ++ fi ++ CATALOGS= ++ if test -n "$INST_LINGUAS"; then ++ for lang in $INST_LINGUAS; do ++ CATALOGS="$CATALOGS $lang.gmo" ++ done ++ fi ++ test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" ++ sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" ++ for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do ++ if test -f "$f"; then ++ case "$f" in ++ *.orig | *.bak | *~) ;; ++ *) cat "$f" >> "$ac_dir/Makefile" ;; ++ esac ++ fi ++ done ++ fi ++ ;; ++ esac ++ done], ++ [# Capture the value of obsolete ALL_LINGUAS because we need it to compute ++ # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it ++ # from automake. ++ eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' ++ # Capture the value of LINGUAS because we need it to compute CATALOGS. ++ LINGUAS="${LINGUAS-%UNSET%}" ++ ]) ++]) ++ ++# nls.m4 serial 1 (gettext-0.12) ++dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++dnl ++dnl This file can can be used in projects which are not available under ++dnl the GNU General Public License or the GNU Library General Public ++dnl License but which still want to provide support for the GNU gettext ++dnl functionality. ++dnl Please note that the actual code of the GNU gettext library is covered ++dnl by the GNU Library General Public License, and the rest of the GNU ++dnl gettext package package is covered by the GNU General Public License. ++dnl They are *not* in the public domain. ++ ++dnl Authors: ++dnl Ulrich Drepper , 1995-2000. ++dnl Bruno Haible , 2000-2003. ++ ++AC_DEFUN([AM_NLS], ++[ ++ AC_MSG_CHECKING([whether NLS is requested]) ++ dnl Default is enabled NLS ++ AC_ARG_ENABLE(nls, ++ [ --disable-nls do not use Native Language Support], ++ USE_NLS=$enableval, USE_NLS=yes) ++ AC_MSG_RESULT($USE_NLS) ++ AC_SUBST(USE_NLS) ++]) ++ ++AC_DEFUN([AM_MKINSTALLDIRS], ++[ ++ dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly ++ dnl find the mkinstalldirs script in another subdir but $(top_srcdir). ++ dnl Try to locate it. ++ MKINSTALLDIRS= ++ if test -n "$ac_aux_dir"; then ++ case "$ac_aux_dir" in ++ /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;; ++ *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;; ++ esac ++ fi ++ if test -z "$MKINSTALLDIRS"; then ++ MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" ++ fi ++ AC_SUBST(MKINSTALLDIRS) ++]) ++ ++# progtest.m4 serial 3 (gettext-0.12) ++dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++dnl ++dnl This file can can be used in projects which are not available under ++dnl the GNU General Public License or the GNU Library General Public ++dnl License but which still want to provide support for the GNU gettext ++dnl functionality. ++dnl Please note that the actual code of the GNU gettext library is covered ++dnl by the GNU Library General Public License, and the rest of the GNU ++dnl gettext package package is covered by the GNU General Public License. ++dnl They are *not* in the public domain. ++ ++dnl Authors: ++dnl Ulrich Drepper , 1996. ++ ++# Search path for a program which passes the given test. ++ ++dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, ++dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) ++AC_DEFUN([AM_PATH_PROG_WITH_TEST], ++[ ++# Prepare PATH_SEPARATOR. ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: ++ fi ++ rm -f conf$$.sh ++fi ++ ++# Find out how to test for executable files. Don't use a zero-byte file, ++# as systems may use methods other than mode bits to determine executability. ++cat >conf$$.file <<_ASEOF ++#! /bin/sh ++exit 0 ++_ASEOF ++chmod +x conf$$.file ++if test -x conf$$.file >/dev/null 2>&1; then ++ ac_executable_p="test -x" + else +- $1_TRUE='#' +- $1_FALSE= +-fi]) ++ ac_executable_p="test -f" ++fi ++rm -f conf$$.file ++ ++# Extract the first word of "$2", so it can be a program name with args. ++set dummy $2; ac_word=[$]2 ++AC_MSG_CHECKING([for $ac_word]) ++AC_CACHE_VAL(ac_cv_path_$1, ++[case "[$]$1" in ++ [[\\/]]* | ?:[[\\/]]*) ++ ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ++ ;; ++ *) ++ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR ++ for ac_dir in ifelse([$5], , $PATH, [$5]); do ++ IFS="$ac_save_IFS" ++ test -z "$ac_dir" && ac_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then ++ if [$3]; then ++ ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" ++ break 2 ++ fi ++ fi ++ done ++ done ++ IFS="$ac_save_IFS" ++dnl If no 4th arg is given, leave the cache variable unset, ++dnl so AC_PATH_PROGS will keep looking. ++ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ++])dnl ++ ;; ++esac])dnl ++$1="$ac_cv_path_$1" ++if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then ++ AC_MSG_RESULT([$]$1) ++else ++ AC_MSG_RESULT(no) ++fi ++AC_SUBST($1)dnl ++]) ++ ++# iconv.m4 serial AM4 (gettext-0.11.3) ++dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Bruno Haible. ++ ++AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], ++[ ++ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. ++ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) ++ AC_REQUIRE([AC_LIB_RPATH]) ++ ++ dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV ++ dnl accordingly. ++ AC_LIB_LINKFLAGS_BODY([iconv]) ++]) ++ ++AC_DEFUN([AM_ICONV_LINK], ++[ ++ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and ++ dnl those with the standalone portable GNU libiconv installed). ++ ++ dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV ++ dnl accordingly. ++ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ++ ++ dnl Add $INCICONV to CPPFLAGS before performing the following checks, ++ dnl because if the user has installed libiconv and not disabled its use ++ dnl via --without-libiconv-prefix, he wants to use it. The first ++ dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. ++ am_save_CPPFLAGS="$CPPFLAGS" ++ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) ++ ++ AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ ++ am_cv_func_iconv="no, consider installing GNU libiconv" ++ am_cv_lib_iconv=no ++ AC_TRY_LINK([#include ++#include ], ++ [iconv_t cd = iconv_open("",""); ++ iconv(cd,NULL,NULL,NULL,NULL); ++ iconv_close(cd);], ++ am_cv_func_iconv=yes) ++ if test "$am_cv_func_iconv" != yes; then ++ am_save_LIBS="$LIBS" ++ LIBS="$LIBS $LIBICONV" ++ AC_TRY_LINK([#include ++#include ], ++ [iconv_t cd = iconv_open("",""); ++ iconv(cd,NULL,NULL,NULL,NULL); ++ iconv_close(cd);], ++ am_cv_lib_iconv=yes ++ am_cv_func_iconv=yes) ++ LIBS="$am_save_LIBS" ++ fi ++ ]) ++ if test "$am_cv_func_iconv" = yes; then ++ AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) ++ fi ++ if test "$am_cv_lib_iconv" = yes; then ++ AC_MSG_CHECKING([how to link with libiconv]) ++ AC_MSG_RESULT([$LIBICONV]) ++ else ++ dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV ++ dnl either. ++ CPPFLAGS="$am_save_CPPFLAGS" ++ LIBICONV= ++ LTLIBICONV= ++ fi ++ AC_SUBST(LIBICONV) ++ AC_SUBST(LTLIBICONV) ++]) ++ ++AC_DEFUN([AM_ICONV], ++[ ++ AM_ICONV_LINK ++ if test "$am_cv_func_iconv" = yes; then ++ AC_MSG_CHECKING([for iconv declaration]) ++ AC_CACHE_VAL(am_cv_proto_iconv, [ ++ AC_TRY_COMPILE([ ++#include ++#include ++extern ++#ifdef __cplusplus ++"C" ++#endif ++#if defined(__STDC__) || defined(__cplusplus) ++size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); ++#else ++size_t iconv(); ++#endif ++], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") ++ am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) ++ am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` ++ AC_MSG_RESULT([$]{ac_t:- ++ }[$]am_cv_proto_iconv) ++ AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, ++ [Define as const if the declaration of iconv() needs const.]) ++ fi ++]) ++ ++# intdiv0.m4 serial 1 (gettext-0.11.3) ++dnl Copyright (C) 2002 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Bruno Haible. ++ ++AC_DEFUN([gt_INTDIV0], ++[ ++ AC_REQUIRE([AC_PROG_CC])dnl ++ AC_REQUIRE([AC_CANONICAL_HOST])dnl ++ ++ AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], ++ gt_cv_int_divbyzero_sigfpe, ++ [ ++ AC_TRY_RUN([ ++#include ++#include ++ ++static void ++#ifdef __cplusplus ++sigfpe_handler (int sig) ++#else ++sigfpe_handler (sig) int sig; ++#endif ++{ ++ /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ ++ exit (sig != SIGFPE); ++} ++ ++int x = 1; ++int y = 0; ++int z; ++int nan; ++ ++int main () ++{ ++ signal (SIGFPE, sigfpe_handler); ++/* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ ++#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) ++ signal (SIGTRAP, sigfpe_handler); ++#endif ++/* Linux/SPARC yields signal SIGILL. */ ++#if defined (__sparc__) && defined (__linux__) ++ signal (SIGILL, sigfpe_handler); ++#endif ++ ++ z = x / y; ++ nan = y / y; ++ exit (1); ++} ++], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no, ++ [ ++ # Guess based on the CPU. ++ case "$host_cpu" in ++ alpha* | i[34567]86 | m68k | s390*) ++ gt_cv_int_divbyzero_sigfpe="guessing yes";; ++ *) ++ gt_cv_int_divbyzero_sigfpe="guessing no";; ++ esac ++ ]) ++ ]) ++ case "$gt_cv_int_divbyzero_sigfpe" in ++ *yes) value=1;; ++ *) value=0;; ++ esac ++ AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value, ++ [Define if integer division by zero raises signal SIGFPE.]) ++]) ++ ++# uintmax_t.m4 serial 7 (gettext-0.12) ++dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Paul Eggert. ++ ++AC_PREREQ(2.13) ++ ++# Define uintmax_t to 'unsigned long' or 'unsigned long long' ++# if it is not already defined in or . ++ ++AC_DEFUN([jm_AC_TYPE_UINTMAX_T], ++[ ++ AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) ++ AC_REQUIRE([jm_AC_HEADER_STDINT_H]) ++ if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then ++ AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) ++ test $ac_cv_type_unsigned_long_long = yes \ ++ && ac_type='unsigned long long' \ ++ || ac_type='unsigned long' ++ AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, ++ [Define to unsigned long or unsigned long long ++ if and don't define.]) ++ else ++ AC_DEFINE(HAVE_UINTMAX_T, 1, ++ [Define if you have the 'uintmax_t' type in or .]) ++ fi ++]) ++ ++# inttypes_h.m4 serial 5 (gettext-0.12) ++dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Paul Eggert. ++ ++# Define HAVE_INTTYPES_H_WITH_UINTMAX if exists, ++# doesn't clash with , and declares uintmax_t. ++ ++AC_DEFUN([jm_AC_HEADER_INTTYPES_H], ++[ ++ AC_CACHE_CHECK([for inttypes.h], jm_ac_cv_header_inttypes_h, ++ [AC_TRY_COMPILE( ++ [#include ++#include ], ++ [uintmax_t i = (uintmax_t) -1;], ++ jm_ac_cv_header_inttypes_h=yes, ++ jm_ac_cv_header_inttypes_h=no)]) ++ if test $jm_ac_cv_header_inttypes_h = yes; then ++ AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1, ++ [Define if exists, doesn't clash with , ++ and declares uintmax_t. ]) ++ fi ++]) ++ ++# stdint_h.m4 serial 3 (gettext-0.12) ++dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Paul Eggert. ++ ++# Define HAVE_STDINT_H_WITH_UINTMAX if exists, ++# doesn't clash with , and declares uintmax_t. ++ ++AC_DEFUN([jm_AC_HEADER_STDINT_H], ++[ ++ AC_CACHE_CHECK([for stdint.h], jm_ac_cv_header_stdint_h, ++ [AC_TRY_COMPILE( ++ [#include ++#include ], ++ [uintmax_t i = (uintmax_t) -1;], ++ jm_ac_cv_header_stdint_h=yes, ++ jm_ac_cv_header_stdint_h=no)]) ++ if test $jm_ac_cv_header_stdint_h = yes; then ++ AC_DEFINE_UNQUOTED(HAVE_STDINT_H_WITH_UINTMAX, 1, ++ [Define if exists, doesn't clash with , ++ and declares uintmax_t. ]) ++ fi ++]) ++ ++# ulonglong.m4 serial 2 (fileutils-4.0.32, gettext-0.10.40) ++dnl Copyright (C) 1999-2002 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Paul Eggert. ++ ++AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG], ++[ ++ AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long, ++ [AC_TRY_LINK([unsigned long long ull = 1; int i = 63;], ++ [unsigned long long ullmax = (unsigned long long) -1; ++ return ull << i | ull >> i | ullmax / ull | ullmax % ull;], ++ ac_cv_type_unsigned_long_long=yes, ++ ac_cv_type_unsigned_long_long=no)]) ++ if test $ac_cv_type_unsigned_long_long = yes; then ++ AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1, ++ [Define if you have the unsigned long long type.]) ++ fi ++]) ++ ++# inttypes.m4 serial 1 (gettext-0.11.4) ++dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Paul Eggert. ++ ++# Define HAVE_INTTYPES_H if exists and doesn't clash with ++# . ++ ++AC_DEFUN([gt_HEADER_INTTYPES_H], ++[ ++ AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h, ++ [ ++ AC_TRY_COMPILE( ++ [#include ++#include ], ++ [], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no) ++ ]) ++ if test $gt_cv_header_inttypes_h = yes; then ++ AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1, ++ [Define if exists and doesn't clash with .]) ++ fi ++]) ++ ++# inttypes-pri.m4 serial 1 (gettext-0.11.4) ++dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Bruno Haible. ++ ++# Define PRI_MACROS_BROKEN if exists and defines the PRI* ++# macros to non-string values. This is the case on AIX 4.3.3. ++ ++AC_DEFUN([gt_INTTYPES_PRI], ++[ ++ AC_REQUIRE([gt_HEADER_INTTYPES_H]) ++ if test $gt_cv_header_inttypes_h = yes; then ++ AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], ++ gt_cv_inttypes_pri_broken, ++ [ ++ AC_TRY_COMPILE([#include ++#ifdef PRId32 ++char *p = PRId32; ++#endif ++], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes) ++ ]) ++ fi ++ if test "$gt_cv_inttypes_pri_broken" = yes; then ++ AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1, ++ [Define if exists and defines unusable PRI* macros.]) ++ fi ++]) ++ ++# codeset.m4 serial AM1 (gettext-0.10.40) ++dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. ++dnl This file is free software, distributed under the terms of the GNU ++dnl General Public License. As a special exception to the GNU General ++dnl Public License, this file may be distributed as part of a program ++dnl that contains a configuration script generated by Autoconf, under ++dnl the same distribution terms as the rest of that program. ++ ++dnl From Bruno Haible. ++ ++AC_DEFUN([AM_LANGINFO_CODESET], ++[ ++ AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, ++ [AC_TRY_LINK([#include ], ++ [char* cs = nl_langinfo(CODESET);], ++ am_cv_langinfo_codeset=yes, ++ am_cv_langinfo_codeset=no) ++ ]) ++ if test $am_cv_langinfo_codeset = yes; then ++ AC_DEFINE(HAVE_LANGINFO_CODESET, 1, ++ [Define if you have and nl_langinfo(CODESET).]) ++ fi ++]) + + # Check whether LC_MESSAGES is available in . + # Ulrich Drepper , 1995. +@@ -1047,3 +6269,16 @@ + fi + fi]) + ++# Define a conditional. ++ ++AC_DEFUN([AM_CONDITIONAL], ++[AC_SUBST($1_TRUE) ++AC_SUBST($1_FALSE) ++if $2; then ++ $1_TRUE= ++ $1_FALSE='#' ++else ++ $1_TRUE='#' ++ $1_FALSE= ++fi]) ++ +--- recode-3.6.orig/configure.in ++++ recode-3.6/configure.in +@@ -7,7 +7,7 @@ + AM_CONFIG_HEADER(config.h) + AM_INIT_AUTOMAKE(recode, 3.6) + AT_CONFIG(../src) +-ALL_LINGUAS="da de el es fr gl it nl pl pt sl sv" ++ALL_LINGUAS="be ca da de el eo es fr ga gl he id it nl pl pt pt_BR ro sl sv tr vi zh_CN" + + AC_PROG_CC + AC_AIX +--- recode-3.6.orig/configure ++++ recode-3.6/configure +@@ -19,9 +19,170 @@ + --enable-fast-install[=PKGS] optimize for fast installation [default=yes]" + ac_help="$ac_help + --with-gnu-ld assume the C compiler uses GNU ld [default=no]" ++ ++# Find the correct PATH separator. Usually this is `:', but ++# DJGPP uses `;' like DOS. ++if test "X${PATH_SEPARATOR+set}" != Xset; then ++ UNAME=${UNAME-`uname 2>/dev/null`} ++ case X$UNAME in ++ *-DOS) lt_cv_sys_path_separator=';' ;; ++ *) lt_cv_sys_path_separator=':' ;; ++ esac ++ PATH_SEPARATOR=$lt_cv_sys_path_separator ++fi ++ ++ ++# Check that we are running under the correct shell. ++SHELL=${CONFIG_SHELL-/bin/sh} ++ ++case X$ECHO in ++X*--fallback-echo) ++ # Remove one level of quotation (which was required for Make). ++ ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` ++ ;; ++esac ++ ++echo=${ECHO-echo} ++if test "X$1" = X--no-reexec; then ++ # Discard the --no-reexec flag, and continue. ++ shift ++elif test "X$1" = X--fallback-echo; then ++ # Avoid inline document here, it may be left over ++ : ++elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then ++ # Yippee, $echo works! ++ : ++else ++ # Restart under the correct shell. ++ exec $SHELL "$0" --no-reexec ${1+"$@"} ++fi ++ ++if test "X$1" = X--fallback-echo; then ++ # used as fallback echo ++ shift ++ cat </dev/null && ++ echo_test_string="`eval $cmd`" && ++ (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null ++ then ++ break ++ fi ++ done ++fi ++ ++if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ : ++else ++ # The Solaris, AIX, and Digital Unix default echo programs unquote ++ # backslashes. This makes it impossible to quote backslashes using ++ # echo "$something" | sed 's/\\/\\\\/g' ++ # ++ # So, first we look for a working echo in the user's PATH. ++ ++ IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR ++ for dir in $PATH /usr/ucb; do ++ if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && ++ test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$dir/echo" ++ break ++ fi ++ done ++ IFS="$save_ifs" ++ ++ if test "X$echo" = Xecho; then ++ # We didn't find a better echo, so look for alternatives. ++ if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # This shell has a builtin print -r that does the trick. ++ echo='print -r' ++ elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && ++ test "X$CONFIG_SHELL" != X/bin/ksh; then ++ # If we have ksh, try running configure again with it. ++ ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} ++ export ORIGINAL_CONFIG_SHELL ++ CONFIG_SHELL=/bin/ksh ++ export CONFIG_SHELL ++ exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} ++ else ++ # Try using printf. ++ echo='printf %s\n' ++ if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ++ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ # Cool, printf works ++ : ++ elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL ++ export CONFIG_SHELL ++ SHELL="$CONFIG_SHELL" ++ export SHELL ++ echo="$CONFIG_SHELL $0 --fallback-echo" ++ elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && ++ test "X$echo_testing_string" = 'X\t' && ++ echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && ++ test "X$echo_testing_string" = "X$echo_test_string"; then ++ echo="$CONFIG_SHELL $0 --fallback-echo" ++ else ++ # maybe with a smaller string... ++ prev=: ++ ++ for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do ++ if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null ++ then ++ break ++ fi ++ prev="$cmd" ++ done ++ ++ if test "$prev" != 'sed 50q "$0"'; then ++ echo_test_string=`eval $prev` ++ export echo_test_string ++ exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} ++ else ++ # Oops. We lost completely, so just stick with echo. ++ echo=echo ++ fi ++ fi ++ fi ++ fi ++fi ++fi ++ ++# Copy echo and quote the copy suitably for passing to libtool from ++# the Makefile, instead of quoting the original, which is used later. ++ECHO=$echo ++if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then ++ ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" ++fi ++ ++ + ac_help="$ac_help + --disable-libtool-lock avoid locking (might break parallel builds)" + ac_help="$ac_help ++ --with-pic try to use only PIC/non-PIC objects [default=use both]" ++ac_help="$ac_help + --with-dmalloc use dmalloc, as in + ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz" + ac_help="$ac_help +@@ -563,6 +724,7 @@ + ac_config_sub=$ac_aux_dir/config.sub + ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. + ++am__api_version="1.4" + # Find a good install program. We prefer a C program (faster), + # so one script is as good as another. But avoid the broken or + # incompatible versions: +@@ -575,7 +737,7 @@ + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" + # ./install, which can be erroneously created by make from ./install.sh. + echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 +-echo "configure:579: checking for a BSD compatible install" >&5 ++echo "configure:741: checking for a BSD compatible install" >&5 + if test -z "$INSTALL"; then + if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +@@ -628,7 +790,7 @@ + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 +-echo "configure:632: checking whether build environment is sane" >&5 ++echo "configure:794: checking whether build environment is sane" >&5 + # Just in case + sleep 1 + echo timestamp > conftestfile +@@ -685,7 +847,7 @@ + test "$program_transform_name" = "" && program_transform_name="s,x,x," + + echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 +-echo "configure:689: checking whether ${MAKE-make} sets \${MAKE}" >&5 ++echo "configure:851: checking whether ${MAKE-make} sets \${MAKE}" >&5 + set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +@@ -730,21 +892,21 @@ + + + missing_dir=`cd $ac_aux_dir && pwd` +-echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 +-echo "configure:735: checking for working aclocal" >&5 ++echo $ac_n "checking for working aclocal-${am__api_version}""... $ac_c" 1>&6 ++echo "configure:897: checking for working aclocal-${am__api_version}" >&5 + # Run test in a subshell; some versions of sh will print an error if + # an executable is not found, even if stderr is redirected. + # Redirect stdin to placate older versions of autoconf. Sigh. +-if (aclocal --version) < /dev/null > /dev/null 2>&1; then +- ACLOCAL=aclocal ++if (aclocal-${am__api_version} --version) < /dev/null > /dev/null 2>&1; then ++ ACLOCAL=aclocal-${am__api_version} + echo "$ac_t""found" 1>&6 + else +- ACLOCAL="$missing_dir/missing aclocal" ++ ACLOCAL="$missing_dir/missing aclocal-${am__api_version}" + echo "$ac_t""missing" 1>&6 + fi + + echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 +-echo "configure:748: checking for working autoconf" >&5 ++echo "configure:910: checking for working autoconf" >&5 + # Run test in a subshell; some versions of sh will print an error if + # an executable is not found, even if stderr is redirected. + # Redirect stdin to placate older versions of autoconf. Sigh. +@@ -756,21 +918,21 @@ + echo "$ac_t""missing" 1>&6 + fi + +-echo $ac_n "checking for working automake""... $ac_c" 1>&6 +-echo "configure:761: checking for working automake" >&5 ++echo $ac_n "checking for working automake-${am__api_version}""... $ac_c" 1>&6 ++echo "configure:923: checking for working automake-${am__api_version}" >&5 + # Run test in a subshell; some versions of sh will print an error if + # an executable is not found, even if stderr is redirected. + # Redirect stdin to placate older versions of autoconf. Sigh. +-if (automake --version) < /dev/null > /dev/null 2>&1; then +- AUTOMAKE=automake ++if (automake-${am__api_version} --version) < /dev/null > /dev/null 2>&1; then ++ AUTOMAKE=automake-${am__api_version} + echo "$ac_t""found" 1>&6 + else +- AUTOMAKE="$missing_dir/missing automake" ++ AUTOMAKE="$missing_dir/missing automake-${am__api_version}" + echo "$ac_t""missing" 1>&6 + fi + + echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 +-echo "configure:774: checking for working autoheader" >&5 ++echo "configure:936: checking for working autoheader" >&5 + # Run test in a subshell; some versions of sh will print an error if + # an executable is not found, even if stderr is redirected. + # Redirect stdin to placate older versions of autoconf. Sigh. +@@ -783,7 +945,7 @@ + fi + + echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 +-echo "configure:787: checking for working makeinfo" >&5 ++echo "configure:949: checking for working makeinfo" >&5 + # Run test in a subshell; some versions of sh will print an error if + # an executable is not found, even if stderr is redirected. + # Redirect stdin to placate older versions of autoconf. Sigh. +@@ -799,7 +961,7 @@ + AT_TESTPATH=../src + + echo $ac_n "checking how to suppress newlines using echo""... $ac_c" 1>&6 +-echo "configure:803: checking how to suppress newlines using echo" >&5 ++echo "configure:965: checking how to suppress newlines using echo" >&5 + if eval "test \"`echo '$''{'fp_cv_prog_echo_nonl'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -825,12 +987,12 @@ + esac + + +-ALL_LINGUAS="da de el es fr gl it nl pl pt sl sv" ++ALL_LINGUAS="be ca da de el eo es fr ga gl he id it nl pl pt pt_BR ro sl sv tr vi zh_CN" + + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 + echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +-echo "configure:834: checking for $ac_word" >&5 ++echo "configure:996: checking for $ac_word" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -860,7 +1022,7 @@ + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 + echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +-echo "configure:864: checking for $ac_word" >&5 ++echo "configure:1026: checking for $ac_word" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -911,7 +1073,7 @@ + # Extract the first word of "cl", so it can be a program name with args. + set dummy cl; ac_word=$2 + echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +-echo "configure:915: checking for $ac_word" >&5 ++echo "configure:1077: checking for $ac_word" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -943,7 +1105,7 @@ + fi + + echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +-echo "configure:947: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ++echo "configure:1109: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + + ac_ext=c + # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +@@ -954,12 +1116,12 @@ + + cat > conftest.$ac_ext << EOF + +-#line 958 "configure" ++#line 1120 "configure" + #include "confdefs.h" + + main(){return(0);} + EOF +-if { (eval echo configure:963: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:1125: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + ac_cv_prog_cc_works=yes + # If we can't run a trivial program, we are probably using a cross compiler. + if (./conftest; exit) 2>/dev/null; then +@@ -985,12 +1147,12 @@ + { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } + fi + echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +-echo "configure:989: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 ++echo "configure:1151: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 + echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 + cross_compiling=$ac_cv_prog_cc_cross + + echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 +-echo "configure:994: checking whether we are using GNU C" >&5 ++echo "configure:1156: checking whether we are using GNU C" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -999,7 +1161,7 @@ + yes; + #endif + EOF +-if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1003: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ++if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1165: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + ac_cv_prog_gcc=yes + else + ac_cv_prog_gcc=no +@@ -1018,7 +1180,7 @@ + ac_save_CFLAGS="$CFLAGS" + CFLAGS= + echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 +-echo "configure:1022: checking whether ${CC-cc} accepts -g" >&5 ++echo "configure:1184: checking whether ${CC-cc} accepts -g" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -1050,7 +1212,7 @@ + fi + + echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 +-echo "configure:1054: checking how to run the C preprocessor" >&5 ++echo "configure:1216: checking how to run the C preprocessor" >&5 + # On Suns, sometimes $CPP names a directory. + if test -n "$CPP" && test -d "$CPP"; then + CPP= +@@ -1065,13 +1227,13 @@ + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. + cat > conftest.$ac_ext < + Syntax Error + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:1075: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:1237: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + : +@@ -1082,13 +1244,13 @@ + rm -rf conftest* + CPP="${CC-cc} -E -traditional-cpp" + cat > conftest.$ac_ext < + Syntax Error + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:1092: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:1254: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + : +@@ -1099,13 +1261,13 @@ + rm -rf conftest* + CPP="${CC-cc} -nologo -E" + cat > conftest.$ac_ext < + Syntax Error + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:1109: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:1271: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + : +@@ -1130,9 +1292,9 @@ + echo "$ac_t""$CPP" 1>&6 + + echo $ac_n "checking for AIX""... $ac_c" 1>&6 +-echo "configure:1134: checking for AIX" >&5 ++echo "configure:1296: checking for AIX" >&5 + cat > conftest.$ac_ext <&6 +-echo "configure:1159: checking for minix/config.h" >&5 ++echo "configure:1321: checking for minix/config.h" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:1169: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:1331: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -1202,11 +1364,84 @@ + + fi + ++# Find the correct PATH separator. Usually this is `:', but ++# DJGPP uses `;' like DOS. ++if test "X${PATH_SEPARATOR+set}" != Xset; then ++ UNAME=${UNAME-`uname 2>/dev/null`} ++ case X$UNAME in ++ *-DOS) lt_cv_sys_path_separator=';' ;; ++ *) lt_cv_sys_path_separator=':' ;; ++ esac ++ PATH_SEPARATOR=$lt_cv_sys_path_separator ++fi ++ ++echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 ++echo "configure:1380: checking for Cygwin environment" >&5 ++if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* ++ ac_cv_cygwin=yes ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ ac_cv_cygwin=no ++fi ++rm -f conftest* ++rm -f conftest* ++fi ++ ++echo "$ac_t""$ac_cv_cygwin" 1>&6 ++CYGWIN= ++test "$ac_cv_cygwin" = yes && CYGWIN=yes ++echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 ++echo "configure:1413: checking for mingw32 environment" >&5 ++if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* ++ ac_cv_mingw32=yes ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ ac_cv_mingw32=no ++fi ++rm -f conftest* ++rm -f conftest* ++fi ++ ++echo "$ac_t""$ac_cv_mingw32" 1>&6 ++MINGW32= ++test "$ac_cv_mingw32" = yes && MINGW32=yes + # Check whether --enable-shared or --disable-shared was given. + if test "${enable_shared+set}" = set; then + enableval="$enable_shared" + p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) +@@ -1229,7 +1464,7 @@ + if test "${enable_static+set}" = set; then + enableval="$enable_static" + p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) +@@ -1252,7 +1487,7 @@ + if test "${enable_fast_install+set}" = set; then + enableval="$enable_fast_install" + p=${PACKAGE-default} +-case "$enableval" in ++case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) +@@ -1278,7 +1513,7 @@ + fi + + echo $ac_n "checking host system type""... $ac_c" 1>&6 +-echo "configure:1282: checking host system type" >&5 ++echo "configure:1517: checking host system type" >&5 + + host_alias=$host + case "$host_alias" in +@@ -1299,7 +1534,7 @@ + echo "$ac_t""$host" 1>&6 + + echo $ac_n "checking build system type""... $ac_c" 1>&6 +-echo "configure:1303: checking build system type" >&5 ++echo "configure:1538: checking build system type" >&5 + + build_alias=$build + case "$build_alias" in +@@ -1316,36 +1551,6 @@ + build_os=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` + echo "$ac_t""$build" 1>&6 + +-# Extract the first word of "ranlib", so it can be a program name with args. +-set dummy ranlib; ac_word=$2 +-echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +-echo "configure:1323: checking for $ac_word" >&5 +-if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then +- echo $ac_n "(cached) $ac_c" 1>&6 +-else +- if test -n "$RANLIB"; then +- ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +-else +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" +- ac_dummy="$PATH" +- for ac_dir in $ac_dummy; do +- test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/$ac_word; then +- ac_cv_prog_RANLIB="ranlib" +- break +- fi +- done +- IFS="$ac_save_ifs" +- test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":" +-fi +-fi +-RANLIB="$ac_cv_prog_RANLIB" +-if test -n "$RANLIB"; then +- echo "$ac_t""$RANLIB" 1>&6 +-else +- echo "$ac_t""no" 1>&6 +-fi +- + # Check whether --with-gnu-ld or --without-gnu-ld was given. + if test "${with_gnu_ld+set}" = set; then + withval="$with_gnu_ld" +@@ -1355,12 +1560,18 @@ + fi + + ac_prog=ld +-if test "$ac_cv_prog_gcc" = yes; then ++if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 +-echo "configure:1362: checking for ld used by GCC" >&5 +- ac_prog=`($CC -print-prog-name=ld) 2>&5` +- case "$ac_prog" in ++echo "configure:1567: checking for ld used by GCC" >&5 ++ case $host in ++ *-*-mingw*) ++ # gcc leaves a trailing carriage return which upsets mingw ++ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; ++ *) ++ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; ++ esac ++ case $ac_prog in + # Accept absolute paths. + [\\/]* | [A-Za-z]:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' +@@ -1382,24 +1593,24 @@ + esac + elif test "$with_gnu_ld" = yes; then + echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 +-echo "configure:1386: checking for GNU ld" >&5 ++echo "configure:1597: checking for GNU ld" >&5 + else + echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 +-echo "configure:1389: checking for non-GNU ld" >&5 ++echo "configure:1600: checking for non-GNU ld" >&5 + fi +-if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then ++if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + if test -z "$LD"; then +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then +- ac_cv_path_LD="$ac_dir/$ac_prog" ++ lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some GNU ld's only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. +- if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then ++ if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then + test "$with_gnu_ld" != no && break + else + test "$with_gnu_ld" != yes && break +@@ -1408,281 +1619,3938 @@ + done + IFS="$ac_save_ifs" + else +- ac_cv_path_LD="$LD" # Let the user override the test with a path. ++ lt_cv_path_LD="$LD" # Let the user override the test with a path. ++fi ++fi ++ ++LD="$lt_cv_path_LD" ++if test -n "$LD"; then ++ echo "$ac_t""$LD" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } ++echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 ++echo "configure:1635: checking if the linker ($LD) is GNU ld" >&5 ++if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ # I'd rather use --version here, but apparently some GNU ld's only accept -v. ++if $LD -v 2>&1 &5; then ++ lt_cv_prog_gnu_ld=yes ++else ++ lt_cv_prog_gnu_ld=no ++fi ++fi ++ ++echo "$ac_t""$lt_cv_prog_gnu_ld" 1>&6 ++with_gnu_ld=$lt_cv_prog_gnu_ld ++ ++ ++echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 ++echo "configure:1652: checking for $LD option to reload object files" >&5 ++if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ lt_cv_ld_reload_flag='-r' ++fi ++ ++echo "$ac_t""$lt_cv_ld_reload_flag" 1>&6 ++reload_flag=$lt_cv_ld_reload_flag ++test -n "$reload_flag" && reload_flag=" $reload_flag" ++ ++echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 ++echo "configure:1664: checking for BSD-compatible nm" >&5 ++if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test -n "$NM"; then ++ # Let the user override the test. ++ lt_cv_path_NM="$NM" ++else ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ++ for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do ++ test -z "$ac_dir" && ac_dir=. ++ tmp_nm=$ac_dir/${ac_tool_prefix}nm ++ if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then ++ # Check to see if the nm accepts a BSD-compat flag. ++ # Adding the `sed 1q' prevents false positives on HP-UX, which says: ++ # nm: unknown option "B" ignored ++ # Tru64's nm complains that /dev/null is an invalid object file ++ if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -B" ++ break ++ elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then ++ lt_cv_path_NM="$tmp_nm -p" ++ break ++ else ++ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but ++ continue # so that we can try to find one that supports BSD flags ++ fi ++ fi ++ done ++ IFS="$ac_save_ifs" ++ test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm ++fi ++fi ++ ++NM="$lt_cv_path_NM" ++echo "$ac_t""$NM" 1>&6 ++ ++echo $ac_n "checking for a sed that does not truncate output""... $ac_c" 1>&6 ++echo "configure:1702: checking for a sed that does not truncate output" >&5 ++if eval "test \"`echo '$''{'lt_cv_path_SED'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ # Loop through the user's path and test for sed and gsed. ++# Then use that list of sed's as ones to test for truncation. ++as_executable_p="test -f" ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_prog in sed gsed; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then ++ _sed_list="$_sed_list $as_dir/$ac_prog$ac_exec_ext" ++ fi ++ done ++ done ++done ++ ++ # Create a temporary directory, and hook for its removal unless debugging. ++$debug || ++{ ++ trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 ++ trap '{ (exit 1); exit 1; }' 1 2 13 15 ++} ++ ++# Create a (secure) tmp directory for tmp files. ++: ${TMPDIR=/tmp} ++{ ++ tmp=`(umask 077 && mktemp -d -q "$TMPDIR/sedXXXXXX") 2>/dev/null` && ++ test -n "$tmp" && test -d "$tmp" ++} || ++{ ++ tmp=$TMPDIR/sed$$-$RANDOM ++ (umask 077 && mkdir $tmp) ++} || ++{ ++ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ++ { (exit 1); exit 1; } ++} ++ _max=0 ++ _count=0 ++ # Add /usr/xpg4/bin/sed as it is typically found on Solaris ++ # along with /bin/sed that truncates output. ++ for _sed in $_sed_list /usr/xpg4/bin/sed; do ++ test ! -f ${_sed} && break ++ cat /dev/null > "$tmp/sed.in" ++ _count=0 ++ echo ${ECHO_N-$ac_n} "0123456789${ECHO_C-$ac_c}" >"$tmp/sed.in" ++ # Check for GNU sed and select it if it is found. ++ if "${_sed}" --version 2>&1 < /dev/null | egrep '(GNU)' > /dev/null; then ++ lt_cv_path_SED=${_sed} ++ break ++ fi ++ while true; do ++ cat "$tmp/sed.in" "$tmp/sed.in" >"$tmp/sed.tmp" ++ mv "$tmp/sed.tmp" "$tmp/sed.in" ++ cp "$tmp/sed.in" "$tmp/sed.nl" ++ echo >>"$tmp/sed.nl" ++ ${_sed} -e 's/a$//' < "$tmp/sed.nl" >"$tmp/sed.out" || break ++ cmp -s "$tmp/sed.out" "$tmp/sed.nl" || break ++ # 40000 chars as input seems more than enough ++ test $_count -gt 10 && break ++ _count=`expr $_count + 1` ++ if test $_count -gt $_max; then ++ _max=$_count ++ lt_cv_path_SED=$_sed ++ fi ++ done ++ done ++ rm -rf "$tmp" ++ ++fi ++ ++if test "X$SED" != "X"; then ++ lt_cv_path_SED=$SED ++else ++ SED=$lt_cv_path_SED ++fi ++echo "$ac_t""$SED" 1>&6 ++ ++echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 ++echo "configure:1786: checking whether ln -s works" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ rm -f conftestdata ++if ln -s X conftestdata 2>/dev/null ++then ++ rm -f conftestdata ++ ac_cv_prog_LN_S="ln -s" ++else ++ ac_cv_prog_LN_S=ln + fi + fi ++LN_S="$ac_cv_prog_LN_S" ++if test "$ac_cv_prog_LN_S" = "ln -s"; then ++ echo "$ac_t""yes" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++echo $ac_n "checking how to recognise dependent libraries""... $ac_c" 1>&6 ++echo "configure:1807: checking how to recognise dependent libraries" >&5 ++if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ lt_cv_file_magic_cmd='$MAGIC_CMD' ++lt_cv_file_magic_test_file= ++lt_cv_deplibs_check_method='unknown' ++# Need to set the preceding variable on all platforms that support ++# interlibrary dependencies. ++# 'none' -- dependencies not supported. ++# `unknown' -- same as none, but documents that we really don't know. ++# 'pass_all' -- all dependencies passed with no checks. ++# 'test_compile' -- check by making test program. ++# 'file_magic [[regex]]' -- check by looking for files in library path ++# which responds to the $file_magic_cmd with a given egrep regex. ++# If you have `file' or equivalent on your system and you're not sure ++# whether `pass_all' will *always* work, you probably want this one. ++ ++case $host_os in ++aix4* | aix5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++beos*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++bsdi4*) ++ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' ++ lt_cv_file_magic_cmd='$OBJDUMP -f' ++ ;; ++ ++darwin* | rhapsody*) ++ lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library' ++ lt_cv_file_magic_cmd='/usr/bin/file -L' ++ case "$host_os" in ++ rhapsody* | darwin1.[012]) ++ lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1` ++ ;; ++ *) # Darwin 1.3 on ++ lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib' ++ ;; ++ esac ++ ;; ++ ++freebsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ case $host_cpu in ++ i*86 ) ++ # Not sure whether the presence of OpenBSD here was a mistake. ++ # Let's accept both of them until this is cleared up. ++ lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ ;; ++ esac ++ else ++ lt_cv_deplibs_check_method=pass_all ++ fi ++ ;; ++ ++gnu*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++hpux10.20*|hpux11*) ++ lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libc.sl ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ irix5* | nonstopux*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1" ++ ;; ++ *) ++ case $LD in ++ *-32|*"-32 ") libmagic=32-bit;; ++ *-n32|*"-n32 ") libmagic=N32;; ++ *-64|*"-64 ") libmagic=64-bit;; ++ *) libmagic=never-match;; ++ esac ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[1234] dynamic lib MIPS - version 1" ++ ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*` ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ case $host_cpu in ++ alpha* | hppa* | i*86 | mips | mipsel | powerpc* | sparc* | ia64* | arm* | m68k) ++ lt_cv_deplibs_check_method=pass_all ;; ++ *) ++ # glibc up to 2.1.1 does not perform some relocations on ARM ++ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; ++ esac ++ lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so` ++ ;; ++ ++netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ++ lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$' ++ else ++ lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so$' ++ fi ++ ;; ++ ++newos6*) ++ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=/usr/lib/libnls.so ++ ;; ++ ++openbsd*) ++ lt_cv_file_magic_cmd=/usr/bin/file ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object' ++ else ++ lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' ++ fi ++ ;; ++ ++osf3* | osf4* | osf5*) ++ # this will be overridden with pass_all, but let us keep it just in case ++ lt_cv_deplibs_check_method='file_magic COFF format alpha shared library' ++ lt_cv_file_magic_test_file=/shlib/libc.so ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sco3.2v5*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++solaris*) ++ lt_cv_deplibs_check_method=pass_all ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ ++sysv5uw[78]* | sysv4*uw2*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ case $host_vendor in ++ motorola) ++ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' ++ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ++ ;; ++ ncr) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ sequent) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ++ ;; ++ sni) ++ lt_cv_file_magic_cmd='/bin/file' ++ lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" ++ lt_cv_file_magic_test_file=/lib/libc.so ++ ;; ++ siemens) ++ lt_cv_deplibs_check_method=pass_all ++ ;; ++ esac ++ ;; ++esac ++ ++fi ++ ++echo "$ac_t""$lt_cv_deplibs_check_method" 1>&6 ++file_magic_cmd=$lt_cv_file_magic_cmd ++deplibs_check_method=$lt_cv_deplibs_check_method ++ ++echo $ac_n "checking for object suffix""... $ac_c" 1>&6 ++echo "configure:1993: checking for object suffix" >&5 ++if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ rm -f conftest* ++echo 'int i = 1;' > conftest.$ac_ext ++if { (eval echo configure:1999: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++ for ac_file in conftest.*; do ++ case $ac_file in ++ *.c) ;; ++ *) ac_cv_objext=`echo $ac_file | sed -e s/conftest.//` ;; ++ esac ++ done ++else ++ { echo "configure: error: installation or configuration problem; compiler does not work" 1>&2; exit 1; } ++fi ++rm -f conftest* ++fi ++ ++echo "$ac_t""$ac_cv_objext" 1>&6 ++OBJEXT=$ac_cv_objext ++ac_objext=$ac_cv_objext ++ ++ ++ ++echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 ++echo "configure:2019: checking for executable suffix" >&5 ++if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test "$CYGWIN" = yes || test "$MINGW32" = yes; then ++ ac_cv_exeext=.exe ++else ++ rm -f conftest* ++ echo 'int main () { return 0; }' > conftest.$ac_ext ++ ac_cv_exeext= ++ if { (eval echo configure:2029: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then ++ for file in conftest.*; do ++ case $file in ++ *.$ac_ext | *.c | *.o | *.obj) ;; ++ *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; ++ esac ++ done ++ else ++ { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } ++ fi ++ rm -f conftest* ++ test x"${ac_cv_exeext}" = x && ac_cv_exeext=no ++fi ++fi ++ ++EXEEXT="" ++test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} ++echo "$ac_t""${ac_cv_exeext}" 1>&6 ++ac_exeext=$EXEEXT ++ ++if test $host != $build; then ++ ac_tool_prefix=${host_alias}- ++else ++ ac_tool_prefix= ++fi ++ ++ ++ ++ ++# Check for command to grab the raw symbol name followed by C symbol from nm. ++echo $ac_n "checking command to parse $NM output""... $ac_c" 1>&6 ++echo "configure:2060: checking command to parse $NM output" >&5 ++if eval "test \"`echo '$''{'lt_cv_sys_global_symbol_pipe'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ++# These are sane defaults that work on at least a few old systems. ++# [They come from Ultrix. What could be older than Ultrix?!! ;)] ++ ++# Character class describing NM global symbol codes. ++symcode='[BCDEGRST]' ++ ++# Regexp to match symbols that can be accessed directly from C. ++sympat='\([_A-Za-z][_A-Za-z0-9]*\)' ++ ++# Transform the above into a raw symbol and a C symbol. ++symxfrm='\1 \2\3 \3' ++ ++# Transform an extracted symbol line into a proper C declaration ++lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'" ++ ++# Transform an extracted symbol line into symbol name and symbol address ++lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ++# Define system-specific variables. ++case $host_os in ++aix*) ++ symcode='[BCDT]' ++ ;; ++cygwin* | mingw* | pw32*) ++ symcode='[ABCDGISTW]' ++ ;; ++hpux*) # Its linker distinguishes data from code symbols ++ lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ++ lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ++ ;; ++irix* | nonstopux*) ++ symcode='[BCDEGRST]' ++ ;; ++osf*) ++ symcode='[BCDEGQRST]' ++ ;; ++solaris* | sysv5*) ++ symcode='[BDT]' ++ ;; ++sysv4) ++ symcode='[DFNSTU]' ++ ;; ++esac ++ ++# Handle CRLF in mingw tool chain ++opt_cr= ++case $host_os in ++mingw*) ++ opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ++ ;; ++esac ++ ++# If we're using GNU nm, then use its standard symbol codes. ++if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then ++ symcode='[ABCDGISTW]' ++fi ++ ++# Try without a prefix undercore, then with it. ++for ac_symprfx in "" "_"; do ++ ++ # Write the raw and C identifiers. ++lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" ++ ++ # Check to see that the pipe works correctly. ++ pipe_works=no ++ rm -f conftest* ++ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++ # Now try to grab the symbols. ++ nlist=conftest.nm ++ if { (eval echo configure:2146: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5; } && test -s "$nlist"; then ++ # Try sorting and uniquifying the output. ++ if sort "$nlist" | uniq > "$nlist"T; then ++ mv -f "$nlist"T "$nlist" ++ else ++ rm -f "$nlist"T ++ fi ++ ++ # Make sure that we snagged all the symbols we need. ++ if egrep ' nm_test_var$' "$nlist" >/dev/null; then ++ if egrep ' nm_test_func$' "$nlist" >/dev/null; then ++ cat < conftest.$ac_ext ++#ifdef __cplusplus ++extern "C" { ++#endif ++ ++EOF ++ # Now generate the symbol file. ++ eval "$lt_cv_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext' ++ ++ cat <> conftest.$ac_ext ++#if defined (__STDC__) && __STDC__ ++# define lt_ptr void * ++#else ++# define lt_ptr char * ++# define const ++#endif ++ ++/* The mapping between symbol names and symbols. */ ++const struct { ++ const char *name; ++ lt_ptr address; ++} ++lt_preloaded_symbols[] = ++{ ++EOF ++ sed "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr) \&\2},/" < "$nlist" >> conftest.$ac_ext ++ cat <<\EOF >> conftest.$ac_ext ++ {0, (lt_ptr) 0} ++}; ++ ++#ifdef __cplusplus ++} ++#endif ++EOF ++ # Now try linking the two files. ++ mv conftest.$ac_objext conftstm.$ac_objext ++ save_LIBS="$LIBS" ++ save_CFLAGS="$CFLAGS" ++ LIBS="conftstm.$ac_objext" ++ CFLAGS="$CFLAGS$no_builtin_flag" ++ if { (eval echo configure:2197: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest$ac_exeext; then ++ pipe_works=yes ++ fi ++ LIBS="$save_LIBS" ++ CFLAGS="$save_CFLAGS" ++ else ++ echo "cannot find nm_test_func in $nlist" >&5 ++ fi ++ else ++ echo "cannot find nm_test_var in $nlist" >&5 ++ fi ++ else ++ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 ++ fi ++ else ++ echo "$progname: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ fi ++ rm -f conftest* conftst* ++ ++ # Do not use the global_symbol_pipe unless it works. ++ if test "$pipe_works" = yes; then ++ break ++ else ++ lt_cv_sys_global_symbol_pipe= ++ fi ++done ++ ++fi ++ ++global_symbol_pipe="$lt_cv_sys_global_symbol_pipe" ++if test -z "$lt_cv_sys_global_symbol_pipe"; then ++ global_symbol_to_cdecl= ++ global_symbol_to_c_name_address= ++else ++ global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl" ++ global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address" ++fi ++if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address"; ++then ++ echo "$ac_t""failed" 1>&6 ++else ++ echo "$ac_t""ok" 1>&6 ++fi ++ ++for ac_hdr in dlfcn.h ++do ++ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 ++echo "configure:2246: checking for $ac_hdr" >&5 ++if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ cat > conftest.$ac_ext < ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:2256: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=yes" ++else ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=no" ++fi ++rm -f conftest* ++fi ++if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` ++ cat >> confdefs.h <&6 ++fi ++done ++ ++ ++ ++ ++ ++ ++# Only perform the check for file, if the check method requires it ++case $deplibs_check_method in ++file_magic*) ++ if test "$file_magic_cmd" = '$MAGIC_CMD'; then ++ echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 ++echo "configure:2292: checking for ${ac_tool_prefix}file" >&5 ++if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ case $MAGIC_CMD in ++ /*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ++ ;; ++ ?:/*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path. ++ ;; ++ *) ++ ac_save_MAGIC_CMD="$MAGIC_CMD" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="/usr/bin:$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/${ac_tool_prefix}file; then ++ lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" ++ if test -n "$file_magic_test_file"; then ++ case $deplibs_check_method in ++ "file_magic "*) ++ file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" ++ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | ++ egrep "$file_magic_regex" > /dev/null; then ++ : ++ else ++ cat <&2 ++ ++*** Warning: the command libtool uses to detect shared libraries, ++*** $file_magic_cmd, produces output that libtool cannot recognize. ++*** The result is that libtool may fail to recognize shared libraries ++*** as such. This will affect the creation of libtool libraries that ++*** depend on shared libraries, but programs linked with such libtool ++*** libraries will work regardless of this problem. Nevertheless, you ++*** may want to report the problem to your system manager and/or to ++*** bug-libtool@gnu.org ++ ++EOF ++ fi ;; ++ esac ++ fi ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ MAGIC_CMD="$ac_save_MAGIC_CMD" ++ ;; ++esac ++fi ++ ++MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++if test -n "$MAGIC_CMD"; then ++ echo "$ac_t""$MAGIC_CMD" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++if test -z "$lt_cv_path_MAGIC_CMD"; then ++ if test -n "$ac_tool_prefix"; then ++ echo $ac_n "checking for file""... $ac_c" 1>&6 ++echo "configure:2354: checking for file" >&5 ++if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ case $MAGIC_CMD in ++ /*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ++ ;; ++ ?:/*) ++ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path. ++ ;; ++ *) ++ ac_save_MAGIC_CMD="$MAGIC_CMD" ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="/usr/bin:$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/file; then ++ lt_cv_path_MAGIC_CMD="$ac_dir/file" ++ if test -n "$file_magic_test_file"; then ++ case $deplibs_check_method in ++ "file_magic "*) ++ file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" ++ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | ++ egrep "$file_magic_regex" > /dev/null; then ++ : ++ else ++ cat <&2 ++ ++*** Warning: the command libtool uses to detect shared libraries, ++*** $file_magic_cmd, produces output that libtool cannot recognize. ++*** The result is that libtool may fail to recognize shared libraries ++*** as such. This will affect the creation of libtool libraries that ++*** depend on shared libraries, but programs linked with such libtool ++*** libraries will work regardless of this problem. Nevertheless, you ++*** may want to report the problem to your system manager and/or to ++*** bug-libtool@gnu.org ++ ++EOF ++ fi ;; ++ esac ++ fi ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ MAGIC_CMD="$ac_save_MAGIC_CMD" ++ ;; ++esac ++fi ++ ++MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ++if test -n "$MAGIC_CMD"; then ++ echo "$ac_t""$MAGIC_CMD" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++ else ++ MAGIC_CMD=: ++ fi ++fi ++ ++ fi ++ ;; ++esac ++ ++# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. ++set dummy ${ac_tool_prefix}ranlib; ac_word=$2 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:2425: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test -n "$RANLIB"; then ++ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. ++else ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++fi ++fi ++RANLIB="$ac_cv_prog_RANLIB" ++if test -n "$RANLIB"; then ++ echo "$ac_t""$RANLIB" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++ ++if test -z "$ac_cv_prog_RANLIB"; then ++if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "ranlib", so it can be a program name with args. ++set dummy ranlib; ac_word=$2 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:2457: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test -n "$RANLIB"; then ++ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. ++else ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_RANLIB="ranlib" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":" ++fi ++fi ++RANLIB="$ac_cv_prog_RANLIB" ++if test -n "$RANLIB"; then ++ echo "$ac_t""$RANLIB" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++else ++ RANLIB=":" ++fi ++fi ++ ++# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. ++set dummy ${ac_tool_prefix}strip; ac_word=$2 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:2492: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test -n "$STRIP"; then ++ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. ++else ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_STRIP="${ac_tool_prefix}strip" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++fi ++fi ++STRIP="$ac_cv_prog_STRIP" ++if test -n "$STRIP"; then ++ echo "$ac_t""$STRIP" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++ ++if test -z "$ac_cv_prog_STRIP"; then ++if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "strip", so it can be a program name with args. ++set dummy strip; ac_word=$2 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:2524: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test -n "$STRIP"; then ++ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. ++else ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_STRIP="strip" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ test -z "$ac_cv_prog_STRIP" && ac_cv_prog_STRIP=":" ++fi ++fi ++STRIP="$ac_cv_prog_STRIP" ++if test -n "$STRIP"; then ++ echo "$ac_t""$STRIP" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++else ++ STRIP=":" ++fi ++fi ++ ++ ++enable_dlopen=no ++enable_win32_dll=no ++ ++# Check whether --enable-libtool-lock or --disable-libtool-lock was given. ++if test "${enable_libtool_lock+set}" = set; then ++ enableval="$enable_libtool_lock" ++ : ++fi ++ ++test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ++ ++# Some flags need to be propagated to the compiler or linker for good ++# libtool support. ++case $host in ++*-*-irix6*) ++ # Find out which ABI we are using. ++ echo '#line 2573 "configure"' > conftest.$ac_ext ++ if { (eval echo configure:2574: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++ case `/usr/bin/file conftest.$ac_objext` in ++ *32-bit*) ++ LD="${LD-ld} -32" ++ ;; ++ *N32*) ++ LD="${LD-ld} -n32" ++ ;; ++ *64-bit*) ++ LD="${LD-ld} -64" ++ ;; ++ esac ++ fi ++ rm -rf conftest* ++ ;; ++ ++*-*-sco3.2v5*) ++ # On SCO OpenServer 5, we need -belf to get full-featured binaries. ++ SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -belf" ++ echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 ++echo "configure:2595: checking whether the C compiler needs -belf" >&5 ++if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ++ ac_ext=c ++# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ++ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' ++cross_compiling=$ac_cv_prog_cc_cross ++ ++ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ lt_cv_cc_needs_belf=yes ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ lt_cv_cc_needs_belf=no ++fi ++rm -f conftest* ++ ac_ext=c ++# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ++ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' ++cross_compiling=$ac_cv_prog_cc_cross ++ ++fi ++ ++echo "$ac_t""$lt_cv_cc_needs_belf" 1>&6 ++ if test x"$lt_cv_cc_needs_belf" != x"yes"; then ++ # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf ++ CFLAGS="$SAVE_CFLAGS" ++ fi ++ ;; ++ ++ ++esac ++ ++# Sed substitution that helps us do robust quoting. It backslashifies ++# metacharacters that are still active within double-quoted strings. ++Xsed='sed -e s/^X//' ++sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' ++ ++# Same as above, but do not quote variable references. ++double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' ++ ++# Sed substitution to delay expansion of an escaped shell variable in a ++# double_quote_subst'ed string. ++delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' ++ ++# Constants: ++rm="rm -f" ++ ++# Global variables: ++default_ofile=libtool ++can_build_shared=yes ++ ++# All known linkers require a `.a' archive for static linking (except M$VC, ++# which needs '.lib'). ++libext=a ++ltmain="$ac_aux_dir/ltmain.sh" ++ofile="$default_ofile" ++with_gnu_ld="$lt_cv_prog_gnu_ld" ++need_locks="$enable_libtool_lock" ++ ++old_CC="$CC" ++old_CFLAGS="$CFLAGS" ++ ++# Set sane defaults for various variables ++test -z "$AR" && AR=ar ++test -z "$AR_FLAGS" && AR_FLAGS=cru ++test -z "$AS" && AS=as ++test -z "$CC" && CC=cc ++test -z "$DLLTOOL" && DLLTOOL=dlltool ++test -z "$LD" && LD=ld ++test -z "$LN_S" && LN_S="ln -s" ++test -z "$MAGIC_CMD" && MAGIC_CMD=file ++test -z "$NM" && NM=nm ++test -z "$OBJDUMP" && OBJDUMP=objdump ++test -z "$RANLIB" && RANLIB=: ++test -z "$STRIP" && STRIP=: ++test -z "$ac_objext" && ac_objext=o ++ ++if test x"$host" != x"$build"; then ++ ac_tool_prefix=${host_alias}- ++else ++ ac_tool_prefix= ++fi ++ ++# Transform linux* to *-*-linux-gnu*, to support old configure scripts. ++case $host_os in ++linux-gnu*) ;; ++linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'` ++esac ++ ++case $host_os in ++aix3*) ++ # AIX sometimes has problems with the GCC collect2 program. For some ++ # reason, if we set the COLLECT_NAMES environment variable, the problems ++ # vanish in a puff of smoke. ++ if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++ fi ++ ;; ++esac ++ ++# Determine commands to create old-style static archives. ++old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' ++old_postinstall_cmds='chmod 644 $oldlib' ++old_postuninstall_cmds= ++ ++if test -n "$RANLIB"; then ++ case $host_os in ++ openbsd*) ++ old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds" ++ ;; ++ *) ++ old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds" ++ ;; ++ esac ++ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" ++fi ++ ++# Allow CC to be a program name with arguments. ++set dummy $CC ++compiler="$2" ++ ++echo $ac_n "checking for objdir""... $ac_c" 1>&6 ++echo "configure:2735: checking for objdir" >&5 ++rm -f .libs 2>/dev/null ++mkdir .libs 2>/dev/null ++if test -d .libs; then ++ objdir=.libs ++else ++ # MS-DOS does not allow filenames that begin with a dot. ++ objdir=_libs ++fi ++rmdir .libs 2>/dev/null ++echo "$ac_t""$objdir" 1>&6 ++ ++ ++# Check whether --with-pic or --without-pic was given. ++if test "${with_pic+set}" = set; then ++ withval="$with_pic" ++ pic_mode="$withval" ++else ++ pic_mode=default ++fi ++ ++test -z "$pic_mode" && pic_mode=default ++ ++# We assume here that the value for lt_cv_prog_cc_pic will not be cached ++# in isolation, and that seeing it set (from the cache) indicates that ++# the associated values are set (in the cache) correctly too. ++echo $ac_n "checking for $compiler option to produce PIC""... $ac_c" 1>&6 ++echo "configure:2762: checking for $compiler option to produce PIC" >&5 ++if eval "test \"`echo '$''{'lt_cv_prog_cc_pic'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_shlib= ++ lt_cv_prog_cc_wl= ++ lt_cv_prog_cc_static= ++ lt_cv_prog_cc_no_builtin= ++ lt_cv_prog_cc_can_build_shared=$can_build_shared ++ ++ if test "$GCC" = yes; then ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-static' ++ ++ case $host_os in ++ aix*) ++ # Below there is a dirty hack to force normal static linking with -ldl ++ # The problem is because libdl dynamically linked with both libc and ++ # libC (AIX C++ library), which obviously doesn't included in libraries ++ # list by gcc. This cause undefined symbols with -static flags. ++ # This hack allows C programs to be linked with "-static -ldl", but ++ # not sure about C++ programs. ++ lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC" ++ ;; ++ amigaos*) ++ # FIXME: we need at least 68020 code to build shared libraries, but ++ # adding the `-m68020' flag to GCC prevents building anything better, ++ # like `-m68040'. ++ lt_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4' ++ ;; ++ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ++ # PIC is the default for these OSes. ++ ;; ++ darwin* | rhapsody*) ++ # PIC is the default on this platform ++ # Common symbols not allowed in MH_DYLIB files ++ lt_cv_prog_cc_pic='-fno-common' ++ ;; ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ lt_cv_prog_cc_pic=-Kconform_pic ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic='-fPIC' ++ ;; ++ esac ++ else ++ # PORTME Check for PIC flags for the system compiler. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ lt_cv_prog_cc_wl='-Wl,' ++ # All AIX code is PIC. ++ if test "$host_cpu" = ia64; then ++ # AIX 5 now supports IA64 processor ++ lt_cv_prog_cc_static='-Bstatic' ++ else ++ lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp' ++ fi ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ # Is there a better lt_cv_prog_cc_static that works with the bundled CC? ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive" ++ lt_cv_prog_cc_pic='+Z' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ # PIC (with -KPIC) is the default. ++ ;; ++ ++ cygwin* | mingw* | pw32* | os2*) ++ # This hack is so that the source file can tell whether it is being ++ # built for inclusion in a dll (and should export symbols for example). ++ lt_cv_prog_cc_pic='-DDLL_EXPORT' ++ ;; ++ ++ newsos6) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ osf3* | osf4* | osf5*) ++ # All OSF/1 code is PIC. ++ lt_cv_prog_cc_wl='-Wl,' ++ lt_cv_prog_cc_static='-non_shared' ++ ;; ++ ++ sco3.2v5*) ++ lt_cv_prog_cc_pic='-Kpic' ++ lt_cv_prog_cc_static='-dn' ++ lt_cv_prog_cc_shlib='-belf' ++ ;; ++ ++ solaris*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ sunos4*) ++ lt_cv_prog_cc_pic='-PIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Qoption ld ' ++ ;; ++ ++ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ lt_cv_prog_cc_pic='-KPIC' ++ lt_cv_prog_cc_static='-Bstatic' ++ lt_cv_prog_cc_wl='-Wl,' ++ ;; ++ ++ uts4*) ++ lt_cv_prog_cc_pic='-pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec ;then ++ lt_cv_prog_cc_pic='-Kconform_pic' ++ lt_cv_prog_cc_static='-Bstatic' ++ fi ++ ;; ++ ++ *) ++ lt_cv_prog_cc_can_build_shared=no ++ ;; ++ esac ++ fi ++ ++fi ++ ++if test -z "$lt_cv_prog_cc_pic"; then ++ echo "$ac_t""none" 1>&6 ++else ++ echo "$ac_t""$lt_cv_prog_cc_pic" 1>&6 ++ ++ # Check to make sure the pic_flag actually works. ++ echo $ac_n "checking if $compiler PIC flag $lt_cv_prog_cc_pic works""... $ac_c" 1>&6 ++echo "configure:2910: checking if $compiler PIC flag $lt_cv_prog_cc_pic works" >&5 ++ if eval "test \"`echo '$''{'lt_cv_prog_cc_pic_works'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC" ++ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* ++ case $host_os in ++ hpux9* | hpux10* | hpux11*) ++ # On HP-UX, both CC and GCC only warn that PIC is supported... then ++ # they create non-PIC objects. So, if there were any warnings, we ++ # assume that PIC is not supported. ++ if test -s conftest.err; then ++ lt_cv_prog_cc_pic_works=no ++ else ++ lt_cv_prog_cc_pic_works=yes ++ fi ++ ;; ++ *) ++ lt_cv_prog_cc_pic_works=yes ++ ;; ++ esac ++ ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ lt_cv_prog_cc_pic_works=no ++ ++fi ++rm -f conftest* ++ CFLAGS="$save_CFLAGS" ++ ++fi ++ ++ ++ if test "X$lt_cv_prog_cc_pic_works" = Xno; then ++ lt_cv_prog_cc_pic= ++ lt_cv_prog_cc_can_build_shared=no ++ else ++ lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic" ++ fi ++ ++ echo "$ac_t""$lt_cv_prog_cc_pic_works" 1>&6 ++fi ++ ++# Check for any special shared library compilation flags. ++if test -n "$lt_cv_prog_cc_shlib"; then ++ echo "configure: warning: \`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries" 1>&2 ++ if echo "$old_CC $old_CFLAGS " | egrep -e "[ ]$lt_cv_prog_cc_shlib[ ]" >/dev/null; then : ++ else ++ echo "configure: warning: add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" 1>&2 ++ lt_cv_prog_cc_can_build_shared=no ++ fi ++fi ++ ++echo $ac_n "checking if $compiler static flag $lt_cv_prog_cc_static works""... $ac_c" 1>&6 ++echo "configure:2976: checking if $compiler static flag $lt_cv_prog_cc_static works" >&5 ++if eval "test \"`echo '$''{'lt_cv_prog_cc_static_works'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ lt_cv_prog_cc_static_works=no ++ save_LDFLAGS="$LDFLAGS" ++ LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static" ++ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ lt_cv_prog_cc_static_works=yes ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++fi ++rm -f conftest* ++ LDFLAGS="$save_LDFLAGS" ++ ++fi ++ ++ ++# Belt *and* braces to stop my trousers falling down: ++test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static= ++echo "$ac_t""$lt_cv_prog_cc_static_works" 1>&6 ++ ++pic_flag="$lt_cv_prog_cc_pic" ++special_shlib_compile_flags="$lt_cv_prog_cc_shlib" ++wl="$lt_cv_prog_cc_wl" ++link_static_flag="$lt_cv_prog_cc_static" ++no_builtin_flag="$lt_cv_prog_cc_no_builtin" ++can_build_shared="$lt_cv_prog_cc_can_build_shared" ++ ++ ++# Check to see if options -o and -c are simultaneously supported by compiler ++echo $ac_n "checking if $compiler supports -c -o file.$ac_objext""... $ac_c" 1>&6 ++echo "configure:3018: checking if $compiler supports -c -o file.$ac_objext" >&5 ++if eval "test \"`echo '$''{'lt_cv_compiler_c_o'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ++$rm -r conftest 2>/dev/null ++mkdir conftest ++cd conftest ++echo "int some_variable = 0;" > conftest.$ac_ext ++mkdir out ++# According to Tom Tromey, Ian Lance Taylor reported there are C compilers ++# that will create temporary files in the current directory regardless of ++# the output directory. Thus, making CWD read-only will cause this test ++# to fail, enabling locking or at least warning the user not to do parallel ++# builds. ++chmod -w . ++save_CFLAGS="$CFLAGS" ++CFLAGS="$CFLAGS -o out/conftest2.$ac_objext" ++compiler_c_o=no ++if { (eval echo configure:3037: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s out/conftest.err; then ++ lt_cv_compiler_c_o=no ++ else ++ lt_cv_compiler_c_o=yes ++ fi ++else ++ # Append any errors to the config.log. ++ cat out/conftest.err 1>&5 ++ lt_cv_compiler_c_o=no ++fi ++CFLAGS="$save_CFLAGS" ++chmod u+w . ++$rm conftest* out/* ++rmdir out ++cd .. ++rmdir conftest ++$rm -r conftest 2>/dev/null ++ ++fi ++ ++compiler_c_o=$lt_cv_compiler_c_o ++echo "$ac_t""$compiler_c_o" 1>&6 ++ ++if test x"$compiler_c_o" = x"yes"; then ++ # Check to see if we can write to a .lo ++ echo $ac_n "checking if $compiler supports -c -o file.lo""... $ac_c" 1>&6 ++echo "configure:3066: checking if $compiler supports -c -o file.lo" >&5 ++ if eval "test \"`echo '$''{'lt_cv_compiler_o_lo'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ++ lt_cv_compiler_o_lo=no ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -c -o conftest.lo" ++ save_objext="$ac_objext" ++ ac_objext=lo ++ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ lt_cv_compiler_o_lo=no ++ else ++ lt_cv_compiler_o_lo=yes ++ fi ++ ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++fi ++rm -f conftest* ++ ac_objext="$save_objext" ++ CFLAGS="$save_CFLAGS" ++ ++fi ++ ++ compiler_o_lo=$lt_cv_compiler_o_lo ++ echo "$ac_t""$compiler_o_lo" 1>&6 ++else ++ compiler_o_lo=no ++fi ++ ++# Check to see if we can do hard links to lock some files if needed ++hard_links="nottested" ++if test "$compiler_c_o" = no && test "$need_locks" != no; then ++ # do not overwrite the value of need_locks provided by the user ++ echo $ac_n "checking if we can lock with hard links""... $ac_c" 1>&6 ++echo "configure:3115: checking if we can lock with hard links" >&5 ++ hard_links=yes ++ $rm conftest* ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ touch conftest.a ++ ln conftest.a conftest.b 2>&5 || hard_links=no ++ ln conftest.a conftest.b 2>/dev/null && hard_links=no ++ echo "$ac_t""$hard_links" 1>&6 ++ if test "$hard_links" = no; then ++ echo "configure: warning: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" 1>&2 ++ need_locks=warn ++ fi ++else ++ need_locks=no ++fi ++ ++if test "$GCC" = yes; then ++ # Check to see if options -fno-rtti -fno-exceptions are supported by compiler ++ echo $ac_n "checking if $compiler supports -fno-rtti -fno-exceptions""... $ac_c" 1>&6 ++echo "configure:3134: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ++ echo "int some_variable = 0;" > conftest.$ac_ext ++ save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext" ++ compiler_rtti_exceptions=no ++ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* ++ # The compiler can only warn and ignore the option if not recognized ++ # So say no if there are warnings ++ if test -s conftest.err; then ++ compiler_rtti_exceptions=no ++ else ++ compiler_rtti_exceptions=yes ++ fi ++ ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++fi ++rm -f conftest* ++ CFLAGS="$save_CFLAGS" ++ echo "$ac_t""$compiler_rtti_exceptions" 1>&6 ++ ++ if test "$compiler_rtti_exceptions" = "yes"; then ++ no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions' ++ else ++ no_builtin_flag=' -fno-builtin' ++ fi ++fi ++ ++# See if the linker supports building shared libraries. ++echo $ac_n "checking whether the linker ($LD) supports shared libraries""... $ac_c" 1>&6 ++echo "configure:3174: checking whether the linker ($LD) supports shared libraries" >&5 ++ ++allow_undefined_flag= ++no_undefined_flag= ++need_lib_prefix=unknown ++need_version=unknown ++# when you set need_version to no, make sure it does not cause -set_version ++# flags to be left without arguments ++archive_cmds= ++archive_expsym_cmds= ++old_archive_from_new_cmds= ++old_archive_from_expsyms_cmds= ++export_dynamic_flag_spec= ++whole_archive_flag_spec= ++thread_safe_flag_spec= ++hardcode_into_libs=no ++hardcode_libdir_flag_spec= ++hardcode_libdir_separator= ++hardcode_direct=no ++hardcode_minus_L=no ++hardcode_shlibpath_var=unsupported ++runpath_var= ++link_all_deplibs=unknown ++always_export_symbols=no ++export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' ++# include_expsyms should be a list of space-separated symbols to be *always* ++# included in the symbol list ++include_expsyms= ++# exclude_expsyms can be an egrep regular expression of symbols to exclude ++# it will be wrapped by ` (' and `)$', so one must not match beginning or ++# end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', ++# as well as any symbol that contains `d'. ++exclude_expsyms="_GLOBAL_OFFSET_TABLE_" ++# Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out ++# platforms (ab)use it in PIC code, but their linkers get confused if ++# the symbol is explicitly referenced. Since portable code cannot ++# rely on this symbol name, it's probably fine to never include it in ++# preloaded symbol tables. ++extract_expsyms_cmds= ++ ++case $host_os in ++cygwin* | mingw* | pw32*) ++ # FIXME: the MSVC++ port hasn't been tested in a loooong time ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ if test "$GCC" != yes; then ++ with_gnu_ld=no ++ fi ++ ;; ++openbsd*) ++ with_gnu_ld=no ++ ;; ++esac ++ ++ld_shlibs=yes ++if test "$with_gnu_ld" = yes; then ++ # If archive_cmds runs LD, not CC, wlarc should be empty ++ wlarc='${wl}' ++ ++ # See if GNU ld supports shared libraries. ++ case $host_os in ++ aix3* | aix4* | aix5*) ++ # On AIX, the GNU linker is very broken ++ # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available. ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: the GNU linker, at least up to release 2.9.1, is reported ++*** to be unable to reliably create shared libraries on AIX. ++*** Therefore, libtool is disabling shared libraries support. If you ++*** really care for shared libraries, you may want to modify your PATH ++*** so that a non-GNU linker is found, and then restart. ++ ++EOF ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ ++ # Samuel A. Falvo II reports ++ # that the semantics of dynamic libraries on AmigaOS, at least up ++ # to version 4, is to share data among multiple programs linked ++ # with the same dynamic library. Since this doesn't match the ++ # behavior of shared libraries on other platforms, we can use ++ # them. ++ ld_shlibs=no ++ ;; ++ ++ beos*) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ allow_undefined_flag=unsupported ++ # Joseph Beckenbach says some releases of gcc ++ # support --undefined. This deserves some investigation. FIXME ++ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec='-L$libdir' ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ ++ extract_expsyms_cmds='test -f $output_objdir/impgen.c || \ ++ sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~ ++ test -f $output_objdir/impgen.exe || (cd $output_objdir && \ ++ if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; \ ++ else $CC -o impgen impgen.c ; fi)~ ++ $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def' ++ ++ old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib' ++ ++ # cygwin and mingw dlls have different entry points and sets of symbols ++ # to exclude. ++ # FIXME: what about values for MSVC? ++ dll_entry=__cygwin_dll_entry@12 ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~ ++ case $host_os in ++ mingw*) ++ # mingw values ++ dll_entry=_DllMainCRTStartup@12 ++ dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~ ++ ;; ++ esac ++ ++ # mingw and cygwin differ, and it's simplest to just exclude the union ++ # of the two symbol sets. ++ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12 ++ ++ # recent cygwin and mingw systems supply a stub DllMain which the user ++ # can override, but on older systems we have to supply one (in ltdll.c) ++ if test "x$lt_cv_need_dllmain" = "xyes"; then ++ ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext " ++ ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~ ++ test -f $output_objdir/$soname-ltdll.$ac_objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~' ++ else ++ ltdll_obj= ++ ltdll_cmds= ++ fi ++ ++ # Extract the symbol export list from an `--export-all' def file, ++ # then regenerate the def file from the symbol export list, so that ++ # the compiled dll only exports the symbol export list. ++ # Be careful not to strip the DATA tag left be newer dlltools. ++ export_symbols_cmds="$ltdll_cmds"' ++ $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~ ++ sed -e "1,/EXPORTS/d" -e "s/ @ [0-9]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols' ++ ++ # If the export-symbols file already is a .def file (1st line ++ # is EXPORTS), use it as is. ++ # If DATA tags from a recent dlltool are present, honour them! ++ archive_expsym_cmds='if test "x`sed 1q $export_symbols`" = xEXPORTS; then ++ cp $export_symbols $output_objdir/$soname-def; ++ else ++ echo EXPORTS > $output_objdir/$soname-def; ++ _lt_hint=1; ++ cat $export_symbols | while read symbol; do ++ set dummy \$symbol; ++ case \$# in ++ 2) echo " \$2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;; ++ 4) echo " \$2 \$3 \$4 ; " >> $output_objdir/$soname-def; _lt_hint=`expr \$_lt_hint - 1`;; ++ *) echo " \$2 @ \$_lt_hint \$3 ; " >> $output_objdir/$soname-def;; ++ esac; ++ _lt_hint=`expr 1 + \$_lt_hint`; ++ done; ++ fi~ ++ '"$ltdll_cmds"' ++ $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~ ++ $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~ ++ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~ ++ $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags' ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' ++ wlarc= ++ else ++ archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ fi ++ ;; ++ ++ solaris* | sysv5*) ++ if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then ++ ld_shlibs=no ++ cat <&2 ++ ++*** Warning: The releases 2.8.* of the GNU linker cannot reliably ++*** create shared libraries on Solaris systems. Therefore, libtool ++*** is disabling shared libraries support. We urge you to upgrade GNU ++*** binutils to release 2.9.1 or newer. Another option is to modify ++*** your PATH or compiler configuration so that the native linker is ++*** used, and then restart. ++ ++EOF ++ elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ ++ sunos4*) ++ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ wlarc= ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ++ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ++ else ++ ld_shlibs=no ++ fi ++ ;; ++ esac ++ ++ if test "$ld_shlibs" = yes; then ++ runpath_var=LD_RUN_PATH ++ hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' ++ export_dynamic_flag_spec='${wl}--export-dynamic' ++ case $host_os in ++ cygwin* | mingw* | pw32*) ++ # dlltool doesn't understand --whole-archive et. al. ++ whole_archive_flag_spec= ++ ;; ++ *) ++ # ancient GNU ld didn't support --whole-archive et. al. ++ if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then ++ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ++ else ++ whole_archive_flag_spec= ++ fi ++ ;; ++ esac ++ fi ++else ++ # PORTME fill in a description of your system's linker (not GNU ld) ++ case $host_os in ++ aix3*) ++ allow_undefined_flag=unsupported ++ always_export_symbols=yes ++ archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' ++ # Note: this linker hardcodes the directories in LIBPATH if there ++ # are no directories specified by -L. ++ hardcode_minus_L=yes ++ if test "$GCC" = yes && test -z "$link_static_flag"; then ++ # Neither direct hardcoding nor static linking is supported with a ++ # broken collect2. ++ hardcode_direct=unsupported ++ fi ++ ;; ++ ++ aix4* | aix5*) ++ if test "$host_cpu" = ia64; then ++ # On IA64, the linker does run time linking by default, so we don't ++ # have to do anything special. ++ aix_use_runtimelinking=no ++ exp_sym_flag='-Bexport' ++ no_entry_flag="" ++ else ++ aix_use_runtimelinking=no ++ ++ # Test if we are trying to use run time linking or normal ++ # AIX style linking. If -brtl is somewhere in LDFLAGS, we ++ # need to do runtime linking. ++ case $host_os in aix4.[23]|aix4.[23].*|aix5*) ++ for ld_flag in $LDFLAGS; do ++ case $ld_flag in ++ *-brtl*) ++ aix_use_runtimelinking=yes ++ break ++ ;; ++ esac ++ done ++ esac ++ ++ exp_sym_flag='-bexport' ++ no_entry_flag='-bnoentry' ++ fi ++ ++ # When large executables or shared objects are built, AIX ld can ++ # have problems creating the table of contents. If linking a library ++ # or program results in "error TOC overflow" add -mminimal-toc to ++ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ++ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ++ ++ hardcode_direct=yes ++ archive_cmds='' ++ hardcode_libdir_separator=':' ++ if test "$GCC" = yes; then ++ case $host_os in aix4.[012]|aix4.[012].*) ++ collect2name=`${CC} -print-prog-name=collect2` ++ if test -f "$collect2name" && \ ++ strings "$collect2name" | grep resolve_lib_name >/dev/null ++ then ++ # We have reworked collect2 ++ hardcode_direct=yes ++ else ++ # We have old collect2 ++ hardcode_direct=unsupported ++ # It fails to find uninstalled libraries when the uninstalled ++ # path is not listed in the libpath. Setting hardcode_minus_L ++ # to unsupported forces relinking ++ hardcode_minus_L=yes ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_libdir_separator= ++ fi ++ esac ++ ++ shared_flag='-shared' ++ else ++ # not using gcc ++ if test "$host_cpu" = ia64; then ++ shared_flag='${wl}-G' ++ else ++ if test "$aix_use_runtimelinking" = yes; then ++ shared_flag='${wl}-G' ++ else ++ shared_flag='${wl}-bM:SRE' ++ fi ++ fi ++ fi ++ ++ # It seems that -bexpall can do strange things, so it is better to ++ # generate a list of symbols to export. ++ always_export_symbols=yes ++ if test "$aix_use_runtimelinking" = yes; then ++ # Warning - without using the other runtime loading flags (-brtl), ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='-berok' ++ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib' ++ archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" ++ else ++ if test "$host_cpu" = ia64; then ++ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' ++ allow_undefined_flag="-z nodefs" ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname ${wl}-h$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" ++ else ++ hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib' ++ # Warning - without using the other run time loading flags, ++ # -berok will link without error, but may produce a broken library. ++ allow_undefined_flag='${wl}-berok' ++ # This is a bit strange, but is similar to how AIX traditionally builds ++ # it's shared libraries. ++ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"' ~$AR -crlo $output_objdir/$libname$release.a $output_objdir/$soname' ++ fi ++ fi ++ ;; ++ ++ amigaos*) ++ archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ # see comment about different semantics on the GNU ld section ++ ld_shlibs=no ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ # When not using gcc, we currently assume that we are using ++ # Microsoft Visual C++. ++ # hardcode_libdir_flag_spec is actually meaningless, as there is ++ # no search path for DLLs. ++ hardcode_libdir_flag_spec=' ' ++ allow_undefined_flag=unsupported ++ # Tell ltmain to make .lib files, not .a files. ++ libext=lib ++ # FIXME: Setting linknames here is a bad hack. ++ archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | sed -e '\''s/ -lc$//'\''` -link -dll~linknames=' ++ # The linker will automatically build a .lib file if we build a DLL. ++ old_archive_from_new_cmds='true' ++ # FIXME: Should let the user specify the lib program. ++ old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' ++ fix_srcfile_path='`cygpath -w "$srcfile"`' ++ ;; ++ ++ darwin* | rhapsody*) ++ case "$host_os" in ++ rhapsody* | darwin1.[012]) ++ allow_undefined_flag='-undefined suppress' ++ ;; ++ *) # Darwin 1.3 on ++ allow_undefined_flag='-flat_namespace -undefined suppress' ++ ;; ++ esac ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. Also zsh mangles ++ # `"' quotes if we put them in here... so don't! ++ archive_cmds='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs && $CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib ${lib}-master.o $deplibs$linker_flags $(test .$module != .yes && echo -install_name $rpath/$soname $verstring)' ++ # We need to add '_' to the symbols in $export_symbols first ++ #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ whole_archive_flag_spec='-all_load $convenience' ++ ;; ++ ++ freebsd1*) ++ ld_shlibs=no ++ ;; ++ ++ # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor ++ # support. Future versions do this automatically, but an explicit c++rt0.o ++ # does not break anything, and helps significantly (at the cost of a little ++ # extra space). ++ freebsd2.2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # Unfortunately, older versions of FreeBSD 2 do not have this feature. ++ freebsd2*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ # FreeBSD 3 and greater uses gcc -shared to do shared libraries. ++ freebsd*) ++ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ hpux9* | hpux10* | hpux11*) ++ case $host_os in ++ hpux9*) archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;; ++ *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; ++ esac ++ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_direct=yes ++ hardcode_minus_L=yes # Not in the search PATH, but as the default ++ # location of the library. ++ export_dynamic_flag_spec='${wl}-E' ++ ;; ++ ++ irix5* | irix6* | nonstopux*) ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ link_all_deplibs=yes ++ ;; ++ ++ netbsd*) ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out ++ else ++ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF ++ fi ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ newsos6) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ hardcode_shlibpath_var=no ++ ;; ++ ++ openbsd*) ++ hardcode_direct=yes ++ hardcode_shlibpath_var=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ export_dynamic_flag_spec='${wl}-E' ++ else ++ case "$host_os" in ++ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) ++ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-R$libdir' ++ ;; ++ *) ++ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ++ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ++ ;; ++ esac ++ fi ++ ;; ++ ++ os2*) ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_minus_L=yes ++ allow_undefined_flag=unsupported ++ archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' ++ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ++ ;; ++ ++ osf3*) ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ fi ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ hardcode_libdir_separator=: ++ ;; ++ ++ osf4* | osf5*) # as osf3* with the addition of -msym flag ++ if test "$GCC" = yes; then ++ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' ++ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ++ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ++ else ++ allow_undefined_flag=' -expect_unresolved \*' ++ archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ++ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "-exported_symbol " >> $lib.exp; echo "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ ++ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' ++ ++ #Both c and cxx compiler support -rpath directly ++ hardcode_libdir_flag_spec='-rpath $libdir' ++ fi ++ hardcode_libdir_separator=: ++ ;; ++ ++ sco3.2v5*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ export_dynamic_flag_spec='${wl}-Bexport' ++ ;; ++ ++ solaris*) ++ # gcc --version < 3.0 without binutils cannot create self contained ++ # shared libraries reliably, requiring libgcc.a to resolve some of ++ # the object symbols generated in some cases. Libraries that use ++ # assert need libgcc.a to resolve __eprintf, for example. Linking ++ # a copy of libgcc.a into every shared library to guarantee resolving ++ # such symbols causes other problems: According to Tim Van Holder ++ # , C++ libraries end up with a separate ++ # (to the application) exception stack for one thing. ++ no_undefined_flag=' -z defs' ++ if test "$GCC" = yes; then ++ case `$CC --version 2>/dev/null` in ++ [12].*) ++ cat <&2 ++ ++*** Warning: Releases of GCC earlier than version 3.0 cannot reliably ++*** create self contained shared libraries on Solaris systems, without ++*** introducing a dependency on libgcc.a. Therefore, libtool is disabling ++*** -no-undefined support, which will at least allow you to build shared ++*** libraries. However, you may find that when you link such libraries ++*** into an application without using GCC, you have to manually add ++*** \`gcc --print-libgcc-file-name\` to the link command. We urge you to ++*** upgrade to a newer version of GCC. Another option is to rebuild your ++*** current GCC to use the GNU linker from GNU binutils 2.9.1 or newer. ++ ++EOF ++ no_undefined_flag= ++ ;; ++ esac ++ fi ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec='-R$libdir' ++ hardcode_shlibpath_var=no ++ case $host_os in ++ solaris2.[0-5] | solaris2.[0-5].*) ;; ++ *) # Supported since Solaris 2.6 (maybe 2.5.1?) ++ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; ++ esac ++ link_all_deplibs=yes ++ ;; ++ ++ sunos4*) ++ if test "x$host_vendor" = xsequent; then ++ # Use $CC to link under sequent, because it throws in some extra .o ++ # files that make .init and .fini sections work. ++ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' ++ fi ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_direct=yes ++ hardcode_minus_L=yes ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4) ++ case $host_vendor in ++ sni) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes # is this really true??? ++ ;; ++ siemens) ++ ## LD is ld it makes a PLAMLIB ++ ## CC just makes a GrossModule. ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ reload_cmds='$CC -r -o $output$reload_objs' ++ hardcode_direct=no ++ ;; ++ motorola) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=no #Motorola manual says yes, but my tests say they lie ++ ;; ++ esac ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4.3*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ export_dynamic_flag_spec='-Bexport' ++ ;; ++ ++ sysv5*) ++ no_undefined_flag=' -z text' ++ # $CC -shared without GNU ld will not create a library from C++ ++ # object files and a static libstdc++, better avoid it by now ++ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ++ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ++ hardcode_libdir_flag_spec= ++ hardcode_shlibpath_var=no ++ runpath_var='LD_RUN_PATH' ++ ;; ++ ++ uts4*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ dgux*) ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_libdir_flag_spec='-L$libdir' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ sysv4*MP*) ++ if test -d /usr/nec; then ++ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_shlibpath_var=no ++ runpath_var=LD_RUN_PATH ++ hardcode_runpath_var=yes ++ ld_shlibs=yes ++ fi ++ ;; ++ ++ sysv4.2uw2*) ++ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' ++ hardcode_direct=yes ++ hardcode_minus_L=no ++ hardcode_shlibpath_var=no ++ hardcode_runpath_var=yes ++ runpath_var=LD_RUN_PATH ++ ;; ++ ++ sysv5uw7* | unixware7*) ++ no_undefined_flag='${wl}-z ${wl}text' ++ if test "$GCC" = yes; then ++ archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ else ++ archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ++ fi ++ runpath_var='LD_RUN_PATH' ++ hardcode_shlibpath_var=no ++ ;; ++ ++ *) ++ ld_shlibs=no ++ ;; ++ esac ++fi ++echo "$ac_t""$ld_shlibs" 1>&6 ++test "$ld_shlibs" = no && can_build_shared=no ++ ++# Check hardcoding attributes. ++echo $ac_n "checking how to hardcode library paths into programs""... $ac_c" 1>&6 ++echo "configure:3873: checking how to hardcode library paths into programs" >&5 ++hardcode_action= ++if test -n "$hardcode_libdir_flag_spec" || \ ++ test -n "$runpath_var"; then ++ ++ # We can hardcode non-existant directories. ++ if test "$hardcode_direct" != no && ++ # If the only mechanism to avoid hardcoding is shlibpath_var, we ++ # have to relink, otherwise we might link with an installed library ++ # when we should be linking with a yet-to-be-installed one ++ ## test "$hardcode_shlibpath_var" != no && ++ test "$hardcode_minus_L" != no; then ++ # Linking always hardcodes the temporary library directory. ++ hardcode_action=relink ++ else ++ # We can link without hardcoding, and we can hardcode nonexisting dirs. ++ hardcode_action=immediate ++ fi ++else ++ # We cannot hardcode anything, or else we can only hardcode existing ++ # directories. ++ hardcode_action=unsupported ++fi ++echo "$ac_t""$hardcode_action" 1>&6 ++ ++striplib= ++old_striplib= ++echo $ac_n "checking whether stripping libraries is possible""... $ac_c" 1>&6 ++echo "configure:3901: checking whether stripping libraries is possible" >&5 ++if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then ++ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" ++ test -z "$striplib" && striplib="$STRIP --strip-unneeded" ++ echo "$ac_t""yes" 1>&6 ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++reload_cmds='$LD$reload_flag -o $output$reload_objs' ++test -z "$deplibs_check_method" && deplibs_check_method=unknown ++ ++# PORTME Fill in your ld.so characteristics ++echo $ac_n "checking dynamic linker characteristics""... $ac_c" 1>&6 ++echo "configure:3915: checking dynamic linker characteristics" >&5 ++library_names_spec= ++libname_spec='lib$name' ++soname_spec= ++postinstall_cmds= ++postuninstall_cmds= ++finish_cmds= ++finish_eval= ++shlibpath_var= ++shlibpath_overrides_runpath=unknown ++version_type=none ++dynamic_linker="$host_os ld.so" ++sys_lib_dlsearch_path_spec="/lib /usr/lib" ++sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" ++ ++case $host_os in ++aix3*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix $libname.a' ++ shlibpath_var=LIBPATH ++ ++ # AIX has no versioning support, so we append a major version to the name. ++ soname_spec='${libname}${release}.so$major' ++ ;; ++ ++aix4* | aix5*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ hardcode_into_libs=yes ++ if test "$host_cpu" = ia64; then ++ # AIX 5 supports IA64 ++ library_names_spec='${libname}${release}.so$major ${libname}${release}.so$versuffix $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ else ++ # With GCC up to 2.95.x, collect2 would create an import file ++ # for dependence libraries. The import file would start with ++ # the line `#! .'. This would cause the generated library to ++ # depend on `.', always an invalid library. This was fixed in ++ # development snapshots of GCC prior to 3.0. ++ case $host_os in ++ aix4 | aix4.[01] | aix4.[01].*) ++ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' ++ echo ' yes ' ++ echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then ++ : ++ else ++ can_build_shared=no ++ fi ++ ;; ++ esac ++ # AIX (on Power*) has no versioning support, so currently we can ++ # not hardcode correct soname into executable. Probably we can ++ # add versioning support to collect2, so additional links can ++ # be useful in future. ++ if test "$aix_use_runtimelinking" = yes; then ++ # If using run time linking (on AIX 4.2 or later) use lib.so ++ # instead of lib.a to let people know that these are not ++ # typical AIX shared libraries. ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ else ++ # We preserve .a as extension for shared libraries through AIX4.2 ++ # and later when we are not doing run time linking. ++ library_names_spec='${libname}${release}.a $libname.a' ++ soname_spec='${libname}${release}.so$major' ++ fi ++ shlibpath_var=LIBPATH ++ fi ++ hardcode_into_libs=yes ++ ;; ++ ++amigaos*) ++ library_names_spec='$libname.ixlibrary $libname.a' ++ # Create ${libname}_ixlibrary.a entries in /sys/libs. ++ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' ++ ;; ++ ++beos*) ++ library_names_spec='${libname}.so' ++ dynamic_linker="$host_os ld.so" ++ shlibpath_var=LIBRARY_PATH ++ ;; ++ ++bsdi4*) ++ version_type=linux ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" ++ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" ++ export_dynamic_flag_spec=-rdynamic ++ # the default ld.so.conf also contains /usr/contrib/lib and ++ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow ++ # libtool to hard-code these into programs ++ ;; ++ ++cygwin* | mingw* | pw32*) ++ version_type=windows ++ need_version=no ++ need_lib_prefix=no ++ case $GCC,$host_os in ++ yes,cygwin*) ++ library_names_spec='$libname.dll.a' ++ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll' ++ postinstall_cmds='dlpath=`bash 2>&1 -c '\''. $dir/${file}i;echo \$dlname'\''`~ ++ dldir=$destdir/`dirname \$dlpath`~ ++ test -d \$dldir || mkdir -p \$dldir~ ++ $install_prog .libs/$dlname \$dldir/$dlname' ++ postuninstall_cmds='dldll=`bash 2>&1 -c '\''. $file; echo \$dlname'\''`~ ++ dlpath=$dir/\$dldll~ ++ $rm \$dlpath' ++ ;; ++ yes,mingw*) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll' ++ sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g" -e "s,=/,/,g"` ++ ;; ++ yes,pw32*) ++ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | sed -e 's/./-/g'`${versuffix}.dll' ++ ;; ++ *) ++ library_names_spec='${libname}`echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll $libname.lib' ++ ;; ++ esac ++ dynamic_linker='Win32 ld.exe' ++ # FIXME: first we should search . and the directory the executable is in ++ shlibpath_var=PATH ++ ;; ++ ++darwin* | rhapsody*) ++ dynamic_linker="$host_os dyld" ++ version_type=darwin ++ need_lib_prefix=no ++ need_version=no ++ # FIXME: Relying on posixy $() will cause problems for ++ # cross-compilation, but unfortunately the echo tests do not ++ # yet detect zsh echo's removal of \ escapes. ++ library_names_spec='${libname}${release}${versuffix}.$(test .$module = .yes && echo so || echo dylib) ${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib) ${libname}.$(test .$module = .yes && echo so || echo dylib)' ++ soname_spec='${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib)' ++ shlibpath_overrides_runpath=yes ++ shlibpath_var=DYLD_LIBRARY_PATH ++ ;; ++ ++freebsd1*) ++ dynamic_linker=no ++ ;; ++ ++kfreebsd*-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ dynamic_linker='GNU/FreeBSD ld.so' ++ ;; ++ ++freebsd*) ++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` ++ version_type=freebsd-$objformat ++ case $version_type in ++ freebsd-elf*) ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so' ++ need_version=no ++ need_lib_prefix=no ++ ;; ++ freebsd-*) ++ library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix' ++ need_version=yes ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_os in ++ freebsd2*) ++ shlibpath_overrides_runpath=yes ++ ;; ++ *) ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ ;; ++ esac ++ ;; ++ ++gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ hardcode_into_libs=yes ++ ;; ++ ++hpux9* | hpux10* | hpux11*) ++ # Give a soname corresponding to the major version so that dld.sl refuses to ++ # link against other versions. ++ dynamic_linker="$host_os dld.sl" ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_var=SHLIB_PATH ++ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH ++ library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl' ++ soname_spec='${libname}${release}.sl$major' ++ # HP-UX runs *really* slowly unless shared libraries are mode 555. ++ postinstall_cmds='chmod 555 $lib' ++ ;; ++ ++irix5* | irix6* | nonstopux*) ++ case $host_os in ++ nonstopux*) version_type=nonstopux ;; ++ *) version_type=irix ;; ++ esac ++ need_lib_prefix=no ++ need_version=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so $libname.so' ++ case $host_os in ++ irix5* | nonstopux*) ++ libsuff= shlibsuff= ++ ;; ++ *) ++ case $LD in # libtool.m4 will add one of these switches to LD ++ *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;; ++ *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; ++ *-64|*"-64 ") libsuff=64 shlibsuff=64 libmagic=64-bit;; ++ *) libsuff= shlibsuff= libmagic=never-match;; ++ esac ++ ;; ++ esac ++ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" ++ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" ++ ;; ++ ++# No shared lib support for Linux oldld, aout, or coff. ++linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*) ++ dynamic_linker=no ++ ;; ++ ++# This must be Linux ELF. ++linux-gnu*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ # This implies no fast_install, which is unacceptable. ++ # Some rework will be needed to allow for fast_install ++ # before this can be enabled. ++ hardcode_into_libs=yes ++ ++ # We used to test for /lib/ld.so.1 and disable shared libraries on ++ # powerpc, because MkLinux only supported shared libraries with the ++ # GNU dynamic linker. Since this was broken with cross compilers, ++ # most powerpc-linux boxes support dynamic linking these days and ++ # people can always --disable-shared, the test was removed, and we ++ # assume the GNU/Linux dynamic linker is in use. ++ dynamic_linker='GNU/Linux ld.so' ++ ;; ++ ++netbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ dynamic_linker='NetBSD (a.out) ld.so' ++ else ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so' ++ soname_spec='${libname}${release}.so$major' ++ dynamic_linker='NetBSD ld.elf_so' ++ fi ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ ;; ++ ++newsos6) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ ;; ++ ++openbsd*) ++ version_type=sunos ++ need_lib_prefix=no ++ need_version=no ++ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ++ case "$host_os" in ++ openbsd2.[89] | openbsd2.[89].*) ++ shlibpath_overrides_runpath=no ++ ;; ++ *) ++ shlibpath_overrides_runpath=yes ++ ;; ++ esac ++ else ++ shlibpath_overrides_runpath=yes ++ fi ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++os2*) ++ libname_spec='$name' ++ need_lib_prefix=no ++ library_names_spec='$libname.dll $libname.a' ++ dynamic_linker='OS/2 ld.exe' ++ shlibpath_var=LIBPATH ++ ;; ++ ++osf3* | osf4* | osf5*) ++ version_type=osf ++ need_version=no ++ need_lib_prefix=no ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" ++ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ++ hardcode_into_libs=yes ++ ;; ++ ++sco3.2v5*) ++ version_type=osf ++ soname_spec='${libname}${release}.so$major' ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++solaris*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ hardcode_into_libs=yes ++ # ldd complains unless libraries are executable ++ postinstall_cmds='chmod +x $lib' ++ ;; ++ ++sunos4*) ++ version_type=sunos ++ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix' ++ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=yes ++ if test "$with_gnu_ld" = yes; then ++ need_lib_prefix=no ++ fi ++ need_version=yes ++ ;; ++ ++sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ case $host_vendor in ++ sni) ++ shlibpath_overrides_runpath=no ++ need_lib_prefix=no ++ export_dynamic_flag_spec='${wl}-Blargedynsym' ++ runpath_var=LD_RUN_PATH ++ ;; ++ siemens) ++ need_lib_prefix=no ++ ;; ++ motorola) ++ need_lib_prefix=no ++ need_version=no ++ shlibpath_overrides_runpath=no ++ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ++ ;; ++ esac ++ ;; ++ ++uts4*) ++ version_type=linux ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++dgux*) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' ++ soname_spec='${libname}${release}.so$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++sysv4*MP*) ++ if test -d /usr/nec ;then ++ version_type=linux ++ library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so' ++ soname_spec='$libname.so.$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ fi ++ ;; ++ ++*) ++ dynamic_linker=no ++ ;; ++esac ++echo "$ac_t""$dynamic_linker" 1>&6 ++test "$dynamic_linker" = no && can_build_shared=no ++ ++# Report the final consequences. ++echo $ac_n "checking if libtool supports shared libraries""... $ac_c" 1>&6 ++echo "configure:4339: checking if libtool supports shared libraries" >&5 ++echo "$ac_t""$can_build_shared" 1>&6 ++ ++echo $ac_n "checking whether to build shared libraries""... $ac_c" 1>&6 ++echo "configure:4343: checking whether to build shared libraries" >&5 ++test "$can_build_shared" = "no" && enable_shared=no ++ ++# On AIX, shared libraries and static libraries use the same namespace, and ++# are all built from PIC. ++case "$host_os" in ++aix3*) ++ test "$enable_shared" = yes && enable_static=no ++ if test -n "$RANLIB"; then ++ archive_cmds="$archive_cmds~\$RANLIB \$lib" ++ postinstall_cmds='$RANLIB $lib' ++ fi ++ ;; ++ ++aix4*) ++ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then ++ test "$enable_shared" = yes && enable_static=no ++ fi ++ ;; ++esac ++echo "$ac_t""$enable_shared" 1>&6 ++ ++echo $ac_n "checking whether to build static libraries""... $ac_c" 1>&6 ++echo "configure:4366: checking whether to build static libraries" >&5 ++# Make sure either enable_shared or enable_static is yes. ++test "$enable_shared" = yes || enable_static=yes ++echo "$ac_t""$enable_static" 1>&6 ++ ++if test "$hardcode_action" = relink; then ++ # Fast installation is not supported ++ enable_fast_install=no ++elif test "$shlibpath_overrides_runpath" = yes || ++ test "$enable_shared" = no; then ++ # Fast installation is not necessary ++ enable_fast_install=needless ++fi ++ ++variables_saved_for_relink="PATH $shlibpath_var $runpath_var" ++if test "$GCC" = yes; then ++ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" ++fi ++ ++if test "x$enable_dlopen" != xyes; then ++ enable_dlopen=unknown ++ enable_dlopen_self=unknown ++ enable_dlopen_self_static=unknown ++else ++ lt_cv_dlopen=no ++ lt_cv_dlopen_libs= ++ ++ case $host_os in ++ beos*) ++ lt_cv_dlopen="load_add_on" ++ lt_cv_dlopen_libs= ++ lt_cv_dlopen_self=yes ++ ;; ++ ++ cygwin* | mingw* | pw32*) ++ lt_cv_dlopen="LoadLibrary" ++ lt_cv_dlopen_libs= ++ ;; ++ ++ *) ++ echo $ac_n "checking for shl_load""... $ac_c" 1>&6 ++echo "configure:4407: checking for shl_load" >&5 ++if eval "test \"`echo '$''{'ac_cv_func_shl_load'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ cat > conftest.$ac_ext < ++/* Override any gcc2 internal prototype to avoid an error. */ ++/* We use char because int might match the return type of a gcc2 ++ builtin and then its argument prototype would still apply. */ ++char shl_load(); ++ ++int main() { ++ ++/* The GNU C library defines this for functions which it implements ++ to always fail with ENOSYS. Some functions are actually named ++ something starting with __ and the normal name is an alias. */ ++#if defined (__stub_shl_load) || defined (__stub___shl_load) ++choke me ++#else ++shl_load(); ++#endif ++ ++; return 0; } ++EOF ++if { (eval echo configure:4435: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_func_shl_load=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_func_shl_load=no" ++fi ++rm -f conftest* ++fi ++ ++if eval "test \"`echo '$ac_cv_func_'shl_load`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ lt_cv_dlopen="shl_load" ++else ++ echo "$ac_t""no" 1>&6 ++echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6 ++echo "configure:4453: checking for shl_load in -ldld" >&5 ++ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'` ++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ac_save_LIBS="$LIBS" ++LIBS="-ldld $LIBS" ++cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=no" ++fi ++rm -f conftest* ++LIBS="$ac_save_LIBS" ++ ++fi ++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" ++else ++ echo "$ac_t""no" 1>&6 ++echo $ac_n "checking for dlopen""... $ac_c" 1>&6 ++echo "configure:4491: checking for dlopen" >&5 ++if eval "test \"`echo '$''{'ac_cv_func_dlopen'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ cat > conftest.$ac_ext < ++/* Override any gcc2 internal prototype to avoid an error. */ ++/* We use char because int might match the return type of a gcc2 ++ builtin and then its argument prototype would still apply. */ ++char dlopen(); ++ ++int main() { ++ ++/* The GNU C library defines this for functions which it implements ++ to always fail with ENOSYS. Some functions are actually named ++ something starting with __ and the normal name is an alias. */ ++#if defined (__stub_dlopen) || defined (__stub___dlopen) ++choke me ++#else ++dlopen(); ++#endif ++ ++; return 0; } ++EOF ++if { (eval echo configure:4519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_func_dlopen=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_func_dlopen=no" ++fi ++rm -f conftest* ++fi ++ ++if eval "test \"`echo '$ac_cv_func_'dlopen`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ lt_cv_dlopen="dlopen" ++else ++ echo "$ac_t""no" 1>&6 ++echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 ++echo "configure:4537: checking for dlopen in -ldl" >&5 ++ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` ++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ac_save_LIBS="$LIBS" ++LIBS="-ldl $LIBS" ++cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=no" ++fi ++rm -f conftest* ++LIBS="$ac_save_LIBS" ++ ++fi ++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" ++else ++ echo "$ac_t""no" 1>&6 ++echo $ac_n "checking for dlopen in -lsvld""... $ac_c" 1>&6 ++echo "configure:4575: checking for dlopen in -lsvld" >&5 ++ac_lib_var=`echo svld'_'dlopen | sed 'y%./+-%__p_%'` ++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ac_save_LIBS="$LIBS" ++LIBS="-lsvld $LIBS" ++cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=no" ++fi ++rm -f conftest* ++LIBS="$ac_save_LIBS" ++ ++fi ++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" ++else ++ echo "$ac_t""no" 1>&6 ++echo $ac_n "checking for dld_link in -ldld""... $ac_c" 1>&6 ++echo "configure:4613: checking for dld_link in -ldld" >&5 ++ac_lib_var=`echo dld'_'dld_link | sed 'y%./+-%__p_%'` ++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ac_save_LIBS="$LIBS" ++LIBS="-ldld $LIBS" ++cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=no" ++fi ++rm -f conftest* ++LIBS="$ac_save_LIBS" ++ ++fi ++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++ ++fi ++ ++ ++fi ++ ++ ++fi ++ ++ ++fi ++ ++ ++fi ++ ++ ;; ++ esac ++ ++ if test "x$lt_cv_dlopen" != xno; then ++ enable_dlopen=yes ++ else ++ enable_dlopen=no ++ fi ++ ++ case $lt_cv_dlopen in ++ dlopen) ++ save_CPPFLAGS="$CPPFLAGS" ++ test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" ++ ++ save_LDFLAGS="$LDFLAGS" ++ eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" ++ ++ save_LIBS="$LIBS" ++ LIBS="$lt_cv_dlopen_libs $LIBS" ++ ++ echo $ac_n "checking whether a program can dlopen itself""... $ac_c" 1>&6 ++echo "configure:4688: checking whether a program can dlopen itself" >&5 ++if eval "test \"`echo '$''{'lt_cv_dlopen_self'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test "$cross_compiling" = yes; then : ++ lt_cv_dlopen_self=cross ++else ++ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 ++ lt_status=$lt_dlunknown ++ cat > conftest.$ac_ext < ++#endif ++ ++#include ++ ++#ifdef RTLD_GLOBAL ++# define LT_DLGLOBAL RTLD_GLOBAL ++#else ++# ifdef DL_GLOBAL ++# define LT_DLGLOBAL DL_GLOBAL ++# else ++# define LT_DLGLOBAL 0 ++# endif ++#endif ++ ++/* We may have to define LT_DLLAZY_OR_NOW in the command line if we ++ find out it does not work in some platform. */ ++#ifndef LT_DLLAZY_OR_NOW ++# ifdef RTLD_LAZY ++# define LT_DLLAZY_OR_NOW RTLD_LAZY ++# else ++# ifdef DL_LAZY ++# define LT_DLLAZY_OR_NOW DL_LAZY ++# else ++# ifdef RTLD_NOW ++# define LT_DLLAZY_OR_NOW RTLD_NOW ++# else ++# ifdef DL_NOW ++# define LT_DLLAZY_OR_NOW DL_NOW ++# else ++# define LT_DLLAZY_OR_NOW 0 ++# endif ++# endif ++# endif ++# endif ++#endif ++ ++#ifdef __cplusplus ++extern "C" void exit (int); ++#endif ++ ++void fnord() { int i=42;} ++int main () ++{ ++ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); ++ int status = $lt_dlunknown; ++ ++ if (self) ++ { ++ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; ++ else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; ++ /* dlclose (self); */ ++ } ++ ++ exit (status); ++} ++EOF ++ if { (eval echo configure:4759: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} 2>/dev/null; then ++ (./conftest; exit; ) 2>/dev/null ++ lt_status=$? ++ case x$lt_status in ++ x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; ++ x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; ++ x$lt_unknown|x*) lt_cv_dlopen_self=no ;; ++ esac ++ else : ++ # compilation failed ++ lt_cv_dlopen_self=no ++ fi ++fi ++rm -fr conftest* ++ ++ ++fi ++ ++echo "$ac_t""$lt_cv_dlopen_self" 1>&6 ++ ++ if test "x$lt_cv_dlopen_self" = xyes; then ++ LDFLAGS="$LDFLAGS $link_static_flag" ++ echo $ac_n "checking whether a statically linked program can dlopen itself""... $ac_c" 1>&6 ++echo "configure:4782: checking whether a statically linked program can dlopen itself" >&5 ++if eval "test \"`echo '$''{'lt_cv_dlopen_self_static'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ if test "$cross_compiling" = yes; then : ++ lt_cv_dlopen_self_static=cross ++else ++ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 ++ lt_status=$lt_dlunknown ++ cat > conftest.$ac_ext < ++#endif ++ ++#include ++ ++#ifdef RTLD_GLOBAL ++# define LT_DLGLOBAL RTLD_GLOBAL ++#else ++# ifdef DL_GLOBAL ++# define LT_DLGLOBAL DL_GLOBAL ++# else ++# define LT_DLGLOBAL 0 ++# endif ++#endif ++ ++/* We may have to define LT_DLLAZY_OR_NOW in the command line if we ++ find out it does not work in some platform. */ ++#ifndef LT_DLLAZY_OR_NOW ++# ifdef RTLD_LAZY ++# define LT_DLLAZY_OR_NOW RTLD_LAZY ++# else ++# ifdef DL_LAZY ++# define LT_DLLAZY_OR_NOW DL_LAZY ++# else ++# ifdef RTLD_NOW ++# define LT_DLLAZY_OR_NOW RTLD_NOW ++# else ++# ifdef DL_NOW ++# define LT_DLLAZY_OR_NOW DL_NOW ++# else ++# define LT_DLLAZY_OR_NOW 0 ++# endif ++# endif ++# endif ++# endif ++#endif ++ ++#ifdef __cplusplus ++extern "C" void exit (int); ++#endif ++ ++void fnord() { int i=42;} ++int main () ++{ ++ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); ++ int status = $lt_dlunknown; ++ ++ if (self) ++ { ++ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; ++ else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; ++ /* dlclose (self); */ ++ } ++ ++ exit (status); ++} ++EOF ++ if { (eval echo configure:4853: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} 2>/dev/null; then ++ (./conftest; exit; ) 2>/dev/null ++ lt_status=$? ++ case x$lt_status in ++ x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; ++ x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; ++ x$lt_unknown|x*) lt_cv_dlopen_self_static=no ;; ++ esac ++ else : ++ # compilation failed ++ lt_cv_dlopen_self_static=no ++ fi ++fi ++rm -fr conftest* ++ ++ ++fi ++ ++echo "$ac_t""$lt_cv_dlopen_self_static" 1>&6 ++ fi ++ ++ CPPFLAGS="$save_CPPFLAGS" ++ LDFLAGS="$save_LDFLAGS" ++ LIBS="$save_LIBS" ++ ;; ++ esac ++ ++ case $lt_cv_dlopen_self in ++ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; ++ *) enable_dlopen_self=unknown ;; ++ esac ++ ++ case $lt_cv_dlopen_self_static in ++ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; ++ *) enable_dlopen_self_static=unknown ;; ++ esac ++fi ++ ++ ++if test "$enable_shared" = yes && test "$GCC" = yes; then ++ case $archive_cmds in ++ *'~'*) ++ # FIXME: we may have to deal with multi-command sequences. ++ ;; ++ '$CC '*) ++ # Test whether the compiler implicitly links with -lc since on some ++ # systems, -lgcc has to come before -lc. If gcc already passes -lc ++ # to ld, don't add -lc before -lgcc. ++ echo $ac_n "checking whether -lc should be explicitly linked in""... $ac_c" 1>&6 ++echo "configure:4902: checking whether -lc should be explicitly linked in" >&5 ++ if eval "test \"`echo '$''{'lt_cv_archive_cmds_need_lc'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ $rm conftest* ++ echo 'static int dummy;' > conftest.$ac_ext ++ ++ if { (eval echo configure:4909: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++ soname=conftest ++ lib=conftest ++ libobjs=conftest.$ac_objext ++ deplibs= ++ wl=$lt_cv_prog_cc_wl ++ compiler_flags=-v ++ linker_flags=-v ++ verstring= ++ output_objdir=. ++ libname=conftest ++ save_allow_undefined_flag=$allow_undefined_flag ++ allow_undefined_flag= ++ if { (eval echo configure:4922: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\") 1>&5; (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5; } ++ then ++ lt_cv_archive_cmds_need_lc=no ++ else ++ lt_cv_archive_cmds_need_lc=yes ++ fi ++ allow_undefined_flag=$save_allow_undefined_flag ++ else ++ cat conftest.err 1>&5 ++ fi ++fi ++ ++ echo "$ac_t""$lt_cv_archive_cmds_need_lc" 1>&6 ++ ;; ++ esac ++fi ++need_lc=${lt_cv_archive_cmds_need_lc-yes} ++ ++# The second clause should only fire when bootstrapping the ++# libtool distribution, otherwise you forgot to ship ltmain.sh ++# with your package, and you will get complaints that there are ++# no rules to generate ltmain.sh. ++if test -f "$ltmain"; then ++ : ++else ++ # If there is no Makefile yet, we rely on a make rule to execute ++ # `config.status --recheck' to rerun these tests and create the ++ # libtool script then. ++ test -f Makefile && make "$ltmain" ++fi ++ ++if test -f "$ltmain"; then ++ trap "$rm \"${ofile}T\"; exit 1" 1 2 15 ++ $rm -f "${ofile}T" ++ ++ echo creating $ofile ++ ++ # Now quote all the things that may contain metacharacters while being ++ # careful not to overquote the AC_SUBSTed values. We take copies of the ++ # variables and quote the copies for generation of the libtool script. ++ for var in echo old_CC old_CFLAGS SED \ ++ AR AR_FLAGS CC LD LN_S NM SHELL \ ++ reload_flag reload_cmds wl \ ++ pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \ ++ thread_safe_flag_spec whole_archive_flag_spec libname_spec \ ++ library_names_spec soname_spec \ ++ RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \ ++ old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds \ ++ postuninstall_cmds extract_expsyms_cmds old_archive_from_expsyms_cmds \ ++ old_striplib striplib file_magic_cmd export_symbols_cmds \ ++ deplibs_check_method allow_undefined_flag no_undefined_flag \ ++ finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \ ++ global_symbol_to_c_name_address \ ++ hardcode_libdir_flag_spec hardcode_libdir_separator \ ++ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ ++ compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do ++ ++ case $var in ++ reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \ ++ old_postinstall_cmds | old_postuninstall_cmds | \ ++ export_symbols_cmds | archive_cmds | archive_expsym_cmds | \ ++ extract_expsyms_cmds | old_archive_from_expsyms_cmds | \ ++ postinstall_cmds | postuninstall_cmds | \ ++ finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) ++ # Double-quote double-evaled strings. ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ++ ;; ++ *) ++ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ++ ;; ++ esac ++ done ++ ++ cat <<__EOF__ > "${ofile}T" ++#! $SHELL ++ ++# `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. ++# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) ++# NOTE: Changes made to this file will be lost: look at ltmain.sh. ++# ++# Copyright (C) 1996-2000 Free Software Foundation, Inc. ++# Originally by Gordon Matzigkeit , 1996 ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, but ++# WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# ++# As a special exception to the GNU General Public License, if you ++# distribute this file as part of a program that contains a ++# configuration script generated by Autoconf, you may include it under ++# the same distribution terms that you use for the rest of that program. ++ ++# A sed that does not truncate output. ++SED=$lt_SED ++ ++# Sed that helps us avoid accidentally triggering echo(1) options like -n. ++Xsed="${SED} -e s/^X//" ++ ++# The HP-UX ksh and POSIX shell print the target directory to stdout ++# if CDPATH is set. ++if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi ++ ++# ### BEGIN LIBTOOL CONFIG ++ ++# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: ++ ++# Shell to use when invoking shell scripts. ++SHELL=$lt_SHELL ++ ++# Whether or not to build shared libraries. ++build_libtool_libs=$enable_shared ++ ++# Whether or not to build static libraries. ++build_old_libs=$enable_static ++ ++# Whether or not to add -lc for building shared libraries. ++build_libtool_need_lc=$need_lc ++ ++# Whether or not to optimize for fast installation. ++fast_install=$enable_fast_install ++ ++# The host system. ++host_alias=$host_alias ++host=$host ++ ++# An echo program that does not interpret backslashes. ++echo=$lt_echo ++ ++# The archiver. ++AR=$lt_AR ++AR_FLAGS=$lt_AR_FLAGS ++ ++# The default C compiler. ++CC=$lt_CC ++ ++# Is the compiler the GNU C compiler? ++with_gcc=$GCC ++ ++# The linker used to build libraries. ++LD=$lt_LD ++ ++# Whether we need hard or soft links. ++LN_S=$lt_LN_S ++ ++# A BSD-compatible nm program. ++NM=$lt_NM ++ ++# A symbol stripping program ++STRIP="$STRIP" ++ ++# Used to examine libraries when file_magic_cmd begins "file" ++MAGIC_CMD=$MAGIC_CMD ++ ++# Used on cygwin: DLL creation program. ++DLLTOOL="$DLLTOOL" ++ ++# Used on cygwin: object dumper. ++OBJDUMP="$OBJDUMP" ++ ++# Used on cygwin: assembler. ++AS="$AS" ++ ++# The name of the directory that contains temporary libtool files. ++objdir=$objdir ++ ++# How to create reloadable object files. ++reload_flag=$lt_reload_flag ++reload_cmds=$lt_reload_cmds ++ ++# How to pass a linker flag through the compiler. ++wl=$lt_wl ++ ++# Object file suffix (normally "o"). ++objext="$ac_objext" ++ ++# Old archive suffix (normally "a"). ++libext="$libext" ++ ++# Executable file suffix (normally ""). ++exeext="$exeext" ++ ++# Additional compiler flags for building library objects. ++pic_flag=$lt_pic_flag ++pic_mode=$pic_mode ++ ++# Does compiler simultaneously support -c and -o options? ++compiler_c_o=$lt_compiler_c_o ++ ++# Can we write directly to a .lo ? ++compiler_o_lo=$lt_compiler_o_lo ++ ++# Must we lock files when doing compilation ? ++need_locks=$lt_need_locks ++ ++# Do we need the lib prefix for modules? ++need_lib_prefix=$need_lib_prefix + +-LD="$ac_cv_path_LD" +-if test -n "$LD"; then +- echo "$ac_t""$LD" 1>&6 +-else +- echo "$ac_t""no" 1>&6 +-fi +-test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } +-echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 +-echo "configure:1424: checking if the linker ($LD) is GNU ld" >&5 +-if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then +- echo $ac_n "(cached) $ac_c" 1>&6 +-else +- # I'd rather use --version here, but apparently some GNU ld's only accept -v. +-if $LD -v 2>&1 &5; then +- ac_cv_prog_gnu_ld=yes +-else +- ac_cv_prog_gnu_ld=no +-fi +-fi ++# Do we need a version for libraries? ++need_version=$need_version + +-echo "$ac_t""$ac_cv_prog_gnu_ld" 1>&6 ++# Whether dlopen is supported. ++dlopen_support=$enable_dlopen + ++# Whether dlopen of programs is supported. ++dlopen_self=$enable_dlopen_self + +-echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 +-echo "configure:1440: checking for BSD-compatible nm" >&5 +-if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then +- echo $ac_n "(cached) $ac_c" 1>&6 +-else +- if test -n "$NM"; then +- # Let the user override the test. +- ac_cv_path_NM="$NM" +-else +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" +- for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do +- test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then +- # Check to see if the nm accepts a BSD-compat flag. +- # Adding the `sed 1q' prevents false positives on HP-UX, which says: +- # nm: unknown option "B" ignored +- if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -B" +- break +- elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then +- ac_cv_path_NM="$ac_dir/nm -p" +- break +- else +- ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but +- continue # so that we can try to find one that supports BSD flags +- fi +- fi +- done +- IFS="$ac_save_ifs" +- test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm +-fi +-fi ++# Whether dlopen of statically linked programs is supported. ++dlopen_self_static=$enable_dlopen_self_static + +-NM="$ac_cv_path_NM" +-echo "$ac_t""$NM" 1>&6 ++# Compiler flag to prevent dynamic linking. ++link_static_flag=$lt_link_static_flag + +-echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 +-echo "configure:1476: checking whether ln -s works" >&5 +-if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then +- echo $ac_n "(cached) $ac_c" 1>&6 +-else +- rm -f conftestdata +-if ln -s X conftestdata 2>/dev/null +-then +- rm -f conftestdata +- ac_cv_prog_LN_S="ln -s" +-else +- ac_cv_prog_LN_S=ln +-fi +-fi +-LN_S="$ac_cv_prog_LN_S" +-if test "$ac_cv_prog_LN_S" = "ln -s"; then +- echo "$ac_t""yes" 1>&6 +-else +- echo "$ac_t""no" 1>&6 +-fi ++# Compiler flag to turn off builtin functions. ++no_builtin_flag=$lt_no_builtin_flag + ++# Compiler flag to allow reflexive dlopens. ++export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +-case "$target" in +-NONE) lt_target="$host" ;; +-*) lt_target="$target" ;; +-esac ++# Compiler flag to generate shared objects directly from archives. ++whole_archive_flag_spec=$lt_whole_archive_flag_spec + +-# Check for any special flags to pass to ltconfig. +-libtool_flags="--cache-file=$cache_file" +-test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared" +-test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static" +-test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install" +-test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc" +-test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld" ++# Compiler flag to generate thread-safe objects. ++thread_safe_flag_spec=$lt_thread_safe_flag_spec + ++# Library versioning type. ++version_type=$version_type + +-# Check whether --enable-libtool-lock or --disable-libtool-lock was given. +-if test "${enable_libtool_lock+set}" = set; then +- enableval="$enable_libtool_lock" +- : +-fi ++# Format of library name prefix. ++libname_spec=$lt_libname_spec + +-test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock" +-test x"$silent" = xyes && libtool_flags="$libtool_flags --silent" ++# List of archive names. First name is the real one, the rest are links. ++# The last name is the one that the linker finds with -lNAME. ++library_names_spec=$lt_library_names_spec + +-# Some flags need to be propagated to the compiler or linker for good +-# libtool support. +-case "$lt_target" in +-*-*-irix6*) +- # Find out which ABI we are using. +- echo '#line 1525 "configure"' > conftest.$ac_ext +- if { (eval echo configure:1526: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +- case "`/usr/bin/file conftest.o`" in +- *32-bit*) +- LD="${LD-ld} -32" +- ;; +- *N32*) +- LD="${LD-ld} -n32" +- ;; +- *64-bit*) +- LD="${LD-ld} -64" +- ;; +- esac +- fi +- rm -rf conftest* +- ;; ++# The coded name of the library, if different from the real name. ++soname_spec=$lt_soname_spec + +-*-*-sco3.2v5*) +- # On SCO OpenServer 5, we need -belf to get full-featured binaries. +- SAVE_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS -belf" +- echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 +-echo "configure:1547: checking whether the C compiler needs -belf" >&5 +-if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then +- echo $ac_n "(cached) $ac_c" 1>&6 +-else +- cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +- rm -rf conftest* +- lt_cv_cc_needs_belf=yes +-else +- echo "configure: failed program was:" >&5 +- cat conftest.$ac_ext >&5 +- rm -rf conftest* +- lt_cv_cc_needs_belf=no +-fi +-rm -f conftest* +-fi ++# Create a temporary old-style archive to link instead of a shared archive. ++old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +-echo "$ac_t""$lt_cv_cc_needs_belf" 1>&6 +- if test x"$lt_cv_cc_needs_belf" != x"yes"; then +- # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf +- CFLAGS="$SAVE_CFLAGS" +- fi +- ;; ++# Commands used to build and install a shared archive. ++archive_cmds=$lt_archive_cmds ++archive_expsym_cmds=$lt_archive_expsym_cmds ++postinstall_cmds=$lt_postinstall_cmds ++postuninstall_cmds=$lt_postuninstall_cmds + ++# Commands to strip libraries. ++old_striplib=$lt_old_striplib ++striplib=$lt_striplib + +-esac ++# Method to check whether dependent libraries are shared objects. ++deplibs_check_method=$lt_deplibs_check_method + ++# Command to use when deplibs_check_method == file_magic. ++file_magic_cmd=$lt_file_magic_cmd + +-# Save cache, so that ltconfig can load it +-cat > confcache <<\EOF +-# This file is a shell script that caches the results of configure +-# tests run on this system so they can be shared between configure +-# scripts and configure runs. It is not useful on other systems. +-# If it contains results you don't want to keep, you may remove or edit it. ++# Flag that allows shared libraries with undefined symbols to be built. ++allow_undefined_flag=$lt_allow_undefined_flag ++ ++# Flag that forces no undefined symbols. ++no_undefined_flag=$lt_no_undefined_flag ++ ++# Commands used to finish a libtool library installation in a directory. ++finish_cmds=$lt_finish_cmds ++ ++# Same as above, but a single script fragment to be evaled but not shown. ++finish_eval=$lt_finish_eval ++ ++# Take the output of nm and produce a listing of raw symbols and C names. ++global_symbol_pipe=$lt_global_symbol_pipe ++ ++# Transform the output of nm in a proper C declaration ++global_symbol_to_cdecl=$lt_global_symbol_to_cdecl ++ ++# Transform the output of nm in a C name address pair ++global_symbol_to_c_name_address=$lt_global_symbol_to_c_name_address ++ ++# This is the shared library runtime path variable. ++runpath_var=$runpath_var ++ ++# This is the shared library path variable. ++shlibpath_var=$shlibpath_var ++ ++# Is shlibpath searched before the hard-coded library search path? ++shlibpath_overrides_runpath=$shlibpath_overrides_runpath ++ ++# How to hardcode a shared library path into an executable. ++hardcode_action=$hardcode_action ++ ++# Whether we should hardcode library paths into libraries. ++hardcode_into_libs=$hardcode_into_libs ++ ++# Flag to hardcode \$libdir into a binary during linking. ++# This must work even if \$libdir does not exist. ++hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec ++ ++# Whether we need a single -rpath flag with a separated argument. ++hardcode_libdir_separator=$lt_hardcode_libdir_separator ++ ++# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the ++# resulting binary. ++hardcode_direct=$hardcode_direct ++ ++# Set to yes if using the -LDIR flag during linking hardcodes DIR into the ++# resulting binary. ++hardcode_minus_L=$hardcode_minus_L ++ ++# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into ++# the resulting binary. ++hardcode_shlibpath_var=$hardcode_shlibpath_var ++ ++# Variables whose values should be saved in libtool wrapper scripts and ++# restored at relink time. ++variables_saved_for_relink="$variables_saved_for_relink" ++ ++# Whether libtool must link a program against all its dependency libraries. ++link_all_deplibs=$link_all_deplibs ++ ++# Compile-time system search path for libraries ++sys_lib_search_path_spec=$lt_sys_lib_search_path_spec ++ ++# Run-time system search path for libraries ++sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec ++ ++# Fix the shell variable \$srcfile for the compiler. ++fix_srcfile_path="$fix_srcfile_path" ++ ++# Set to yes if exported symbols are required. ++always_export_symbols=$always_export_symbols ++ ++# The commands to list exported symbols. ++export_symbols_cmds=$lt_export_symbols_cmds ++ ++# The commands to extract the exported symbol list from a shared archive. ++extract_expsyms_cmds=$lt_extract_expsyms_cmds ++ ++# Symbols that should not be listed in the preloaded symbols. ++exclude_expsyms=$lt_exclude_expsyms ++ ++# Symbols that must always be exported. ++include_expsyms=$lt_include_expsyms ++ ++# ### END LIBTOOL CONFIG ++ ++__EOF__ ++ ++ case $host_os in ++ aix3*) ++ cat <<\EOF >> "${ofile}T" ++ ++# AIX sometimes has problems with the GCC collect2 program. For some ++# reason, if we set the COLLECT_NAMES environment variable, the problems ++# vanish in a puff of smoke. ++if test "X${COLLECT_NAMES+set}" != Xset; then ++ COLLECT_NAMES= ++ export COLLECT_NAMES ++fi ++EOF ++ ;; ++ esac ++ ++ case $host_os in ++ cygwin* | mingw* | pw32* | os2*) ++ cat <<'EOF' >> "${ofile}T" ++ # This is a source program that is used to create dlls on Windows ++ # Don't remove nor modify the starting and closing comments ++# /* ltdll.c starts here */ ++# #define WIN32_LEAN_AND_MEAN ++# #include ++# #undef WIN32_LEAN_AND_MEAN ++# #include + # +-# By default, configure uses ./config.cache as the cache file, +-# creating it if it does not exist already. You can give configure +-# the --cache-file=FILE option to use a different cache file; that is +-# what configure does when it calls configure scripts in +-# subdirectories, so they share the cache. +-# Giving --cache-file=/dev/null disables caching, for debugging configure. +-# config.status only pays attention to the cache file if you give it the +-# --recheck option to rerun configure. ++# #ifndef __CYGWIN__ ++# # ifdef __CYGWIN32__ ++# # define __CYGWIN__ __CYGWIN32__ ++# # endif ++# #endif ++# ++# #ifdef __cplusplus ++# extern "C" { ++# #endif ++# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); ++# #ifdef __cplusplus ++# } ++# #endif ++# ++# #ifdef __CYGWIN__ ++# #include ++# DECLARE_CYGWIN_DLL( DllMain ); ++# #endif ++# HINSTANCE __hDllInstance_base; ++# ++# BOOL APIENTRY ++# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) ++# { ++# __hDllInstance_base = hInst; ++# return TRUE; ++# } ++# /* ltdll.c ends here */ ++ # This is a source program that is used to create import libraries ++ # on Windows for dlls which lack them. Don't remove nor modify the ++ # starting and closing comments ++# /* impgen.c starts here */ ++# /* Copyright (C) 1999-2000 Free Software Foundation, Inc. ++# ++# This file is part of GNU libtool. + # ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# */ ++# ++# #include /* for printf() */ ++# #include /* for open(), lseek(), read() */ ++# #include /* for O_RDONLY, O_BINARY */ ++# #include /* for strdup() */ ++# ++# /* O_BINARY isn't required (or even defined sometimes) under Unix */ ++# #ifndef O_BINARY ++# #define O_BINARY 0 ++# #endif ++# ++# static unsigned int ++# pe_get16 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[2]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 2); ++# return b[0] + (b[1]<<8); ++# } ++# ++# static unsigned int ++# pe_get32 (fd, offset) ++# int fd; ++# int offset; ++# { ++# unsigned char b[4]; ++# lseek (fd, offset, SEEK_SET); ++# read (fd, b, 4); ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# static unsigned int ++# pe_as32 (ptr) ++# void *ptr; ++# { ++# unsigned char *b = ptr; ++# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); ++# } ++# ++# int ++# main (argc, argv) ++# int argc; ++# char *argv[]; ++# { ++# int dll; ++# unsigned long pe_header_offset, opthdr_ofs, num_entries, i; ++# unsigned long export_rva, export_size, nsections, secptr, expptr; ++# unsigned long name_rvas, nexp; ++# unsigned char *expdata, *erva; ++# char *filename, *dll_name; ++# ++# filename = argv[1]; ++# ++# dll = open(filename, O_RDONLY|O_BINARY); ++# if (dll < 1) ++# return 1; ++# ++# dll_name = filename; ++# ++# for (i=0; filename[i]; i++) ++# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':') ++# dll_name = filename + i +1; ++# ++# pe_header_offset = pe_get32 (dll, 0x3c); ++# opthdr_ofs = pe_header_offset + 4 + 20; ++# num_entries = pe_get32 (dll, opthdr_ofs + 92); ++# ++# if (num_entries < 1) /* no exports */ ++# return 1; ++# ++# export_rva = pe_get32 (dll, opthdr_ofs + 96); ++# export_size = pe_get32 (dll, opthdr_ofs + 100); ++# nsections = pe_get16 (dll, pe_header_offset + 4 +2); ++# secptr = (pe_header_offset + 4 + 20 + ++# pe_get16 (dll, pe_header_offset + 4 + 16)); ++# ++# expptr = 0; ++# for (i = 0; i < nsections; i++) ++# { ++# char sname[8]; ++# unsigned long secptr1 = secptr + 40 * i; ++# unsigned long vaddr = pe_get32 (dll, secptr1 + 12); ++# unsigned long vsize = pe_get32 (dll, secptr1 + 16); ++# unsigned long fptr = pe_get32 (dll, secptr1 + 20); ++# lseek(dll, secptr1, SEEK_SET); ++# read(dll, sname, 8); ++# if (vaddr <= export_rva && vaddr+vsize > export_rva) ++# { ++# expptr = fptr + (export_rva - vaddr); ++# if (export_rva + export_size > vaddr + vsize) ++# export_size = vsize - (export_rva - vaddr); ++# break; ++# } ++# } ++# ++# expdata = (unsigned char*)malloc(export_size); ++# lseek (dll, expptr, SEEK_SET); ++# read (dll, expdata, export_size); ++# erva = expdata - export_rva; ++# ++# nexp = pe_as32 (expdata+24); ++# name_rvas = pe_as32 (expdata+32); ++# ++# printf ("EXPORTS\n"); ++# for (i = 0; i&1 | +- case `(ac_space=' '; set | grep ac_space) 2>&1` in +- *ac_space=\ *) +- # `set' does not quote correctly, so add quotes (double-quote substitution +- # turns \\\\ into \\, and sed turns \\ into \). +- sed -n \ +- -e "s/'/'\\\\''/g" \ +- -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p" +- ;; +- *) +- # `set' quotes correctly as required by POSIX, so do not add quotes. +- sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p' + ;; +- esac >> confcache +-if cmp -s $cache_file confcache; then +- : +-else +- if test -w $cache_file; then +- echo "updating cache $cache_file" +- cat confcache > $cache_file +- else +- echo "not updating unwritable cache $cache_file" +- fi ++ esac ++ ++ # We use sed instead of cat because bash on DJGPP gets confused if ++ # if finds mixed CR/LF and LF-only lines. Since sed operates in ++ # text mode, it properly converts lines to CR/LF. This bash problem ++ # is reportedly fixed, but why not run on old versions too? ++ sed '$q' "$ltmain" >> "${ofile}T" || (rm -f "${ofile}T"; exit 1) ++ ++ mv -f "${ofile}T" "$ofile" || \ ++ (rm -f "$ofile" && cp "${ofile}T" "$ofile" && rm -f "${ofile}T") ++ chmod +x "$ofile" + fi +-rm -f confcache + + +-# Actually configure libtool. ac_aux_dir is where install-sh is found. +-CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ +-LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \ +-LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \ +-DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \ +-${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \ +-$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target \ +-|| { echo "configure: error: libtool configure failed" 1>&2; exit 1; } + +-# Reload cache, that may have been modified by ltconfig +-if test -r "$cache_file"; then +- echo "loading cache $cache_file" +- . $cache_file +-else +- echo "creating cache $cache_file" +- > $cache_file +-fi + + + # This can be used to rebuild libtool when needed +-LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh" ++LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' + +-# Redirect the config.log output again, so that the ltconfig log is not +-# clobbered by the next message. +-exec 5>>./config.log ++# Prevent multiple expansion + + +-echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 +-echo "configure:1662: checking for POSIXized ISC" >&5 +-if test -d /etc/conf/kconfig.d && +- grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 +-then +- echo "$ac_t""yes" 1>&6 +- ISC=yes # If later tests want to check for ISC. +- cat >> confdefs.h <<\EOF +-#define _POSIX_SOURCE 1 ++ ++ ++ echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6 ++echo "configure:5509: checking for strerror in -lcposix" >&5 ++ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'` ++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ac_save_LIBS="$LIBS" ++LIBS="-lcposix $LIBS" ++cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=no" ++fi ++rm -f conftest* ++LIBS="$ac_save_LIBS" + +- if test "$GCC" = yes; then +- CC="$CC -posix" +- else +- CC="$CC -Xp" +- fi ++fi ++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ LIBS="$LIBS -lcposix" + else + echo "$ac_t""no" 1>&6 +- ISC= + fi + ++ ++ + + + + echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&6 +-echo "configure:1686: checking for ${CC-cc} option to accept ANSI C" >&5 ++echo "configure:5554: checking for ${CC-cc} option to accept ANSI C" >&5 + if eval "test \"`echo '$''{'am_cv_prog_cc_stdc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -1698,7 +5566,7 @@ + do + CC="$ac_save_CC $ac_arg" + cat > conftest.$ac_ext < + #include +@@ -1735,7 +5603,7 @@ + + ; return 0; } + EOF +-if { (eval echo configure:1739: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++if { (eval echo configure:5607: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + am_cv_prog_cc_stdc="$ac_arg"; break + else +@@ -1761,7 +5629,7 @@ + + + echo $ac_n "checking for function prototypes""... $ac_c" 1>&6 +-echo "configure:1765: checking for function prototypes" >&5 ++echo "configure:5633: checking for function prototypes" >&5 + if test "$am_cv_prog_cc_stdc" != no; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<\EOF +@@ -1774,12 +5642,12 @@ + U=_ ANSI2KNR=./ansi2knr + # Ensure some checks needed by ansi2knr itself. + echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 +-echo "configure:1778: checking for ANSI C header files" >&5 ++echo "configure:5646: checking for ANSI C header files" >&5 + if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + #include +@@ -1787,7 +5655,7 @@ + #include + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:1791: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:5659: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -1804,7 +5672,7 @@ + if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat > conftest.$ac_ext < + EOF +@@ -1822,7 +5690,7 @@ + if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat > conftest.$ac_ext < + EOF +@@ -1843,7 +5711,7 @@ + : + else + cat > conftest.$ac_ext < + #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +@@ -1854,7 +5722,7 @@ + exit (0); } + + EOF +-if { (eval echo configure:1858: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:5726: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + : + else +@@ -1881,17 +5749,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:1885: checking for $ac_hdr" >&5 ++echo "configure:5753: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:1895: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:5763: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -1920,12 +5788,12 @@ + fi + + echo $ac_n "checking for working const""... $ac_c" 1>&6 +-echo "configure:1924: checking for working const" >&5 ++echo "configure:5792: checking for working const" >&5 + if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++if { (eval echo configure:5846: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ac_cv_c_const=yes + else +@@ -1995,21 +5863,21 @@ + fi + + echo $ac_n "checking for inline""... $ac_c" 1>&6 +-echo "configure:1999: checking for inline" >&5 ++echo "configure:5867: checking for inline" >&5 + if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_cv_c_inline=no + for ac_kw in inline __inline__ __inline; do + cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++if { (eval echo configure:5881: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ac_cv_c_inline=$ac_kw; break + else +@@ -2039,7 +5907,7 @@ + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 + echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +-echo "configure:2043: checking for $ac_word" >&5 ++echo "configure:5911: checking for $ac_word" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -2076,7 +5944,7 @@ + # Extract the first word of "flex", so it can be a program name with args. + set dummy flex; ac_word=$2 + echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +-echo "configure:2080: checking for $ac_word" >&5 ++echo "configure:5948: checking for $ac_word" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -2110,7 +5978,7 @@ + *) ac_lib=l ;; + esac + echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6 +-echo "configure:2114: checking for yywrap in -l$ac_lib" >&5 ++echo "configure:5982: checking for yywrap in -l$ac_lib" >&5 + ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +@@ -2118,7 +5986,7 @@ + ac_save_LIBS="$LIBS" + LIBS="-l$ac_lib $LIBS" + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6001: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" + else +@@ -2152,7 +6020,7 @@ + fi + + echo $ac_n "checking lex output file root""... $ac_c" 1>&6 +-echo "configure:2156: checking lex output file root" >&5 ++echo "configure:6024: checking lex output file root" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_lex_root'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -2173,7 +6041,7 @@ + LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root + + echo $ac_n "checking whether yytext is a pointer""... $ac_c" 1>&6 +-echo "configure:2177: checking whether yytext is a pointer" >&5 ++echo "configure:6045: checking whether yytext is a pointer" >&5 + if eval "test \"`echo '$''{'ac_cv_prog_lex_yytext_pointer'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -2185,14 +6053,14 @@ + ac_save_LIBS="$LIBS" + LIBS="$LIBS $LEXLIB" + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6064: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + ac_cv_prog_lex_yytext_pointer=yes + else +@@ -2216,12 +6084,12 @@ + fi + + echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 +-echo "configure:2220: checking for ANSI C header files" >&5 ++echo "configure:6088: checking for ANSI C header files" >&5 + if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + #include +@@ -2229,7 +6097,7 @@ + #include + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2233: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:6101: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -2246,7 +6114,7 @@ + if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat > conftest.$ac_ext < + EOF +@@ -2264,7 +6132,7 @@ + if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat > conftest.$ac_ext < + EOF +@@ -2285,7 +6153,7 @@ + : + else + cat > conftest.$ac_ext < + #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +@@ -2296,7 +6164,7 @@ + exit (0); } + + EOF +-if { (eval echo configure:2300: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:6168: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + : + else +@@ -2323,17 +6191,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:2327: checking for $ac_hdr" >&5 ++echo "configure:6195: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2337: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:6205: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -2360,12 +6228,12 @@ + done + + echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 +-echo "configure:2364: checking return type of signal handlers" >&5 ++echo "configure:6232: checking return type of signal handlers" >&5 + if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + #include +@@ -2382,7 +6250,7 @@ + int i; + ; return 0; } + EOF +-if { (eval echo configure:2386: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++if { (eval echo configure:6254: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ac_cv_type_signal=void + else +@@ -2401,12 +6269,12 @@ + + + echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 +-echo "configure:2405: checking whether time.h and sys/time.h may both be included" >&5 ++echo "configure:6273: checking whether time.h and sys/time.h may both be included" >&5 + if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + #include +@@ -2415,7 +6283,7 @@ + struct tm *tp; + ; return 0; } + EOF +-if { (eval echo configure:2419: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++if { (eval echo configure:6287: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ac_cv_header_time=yes + else +@@ -2440,17 +6308,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:2444: checking for $ac_hdr" >&5 ++echo "configure:6312: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2454: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:6322: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -2478,12 +6346,12 @@ + + + echo $ac_n "checking for struct utimbuf""... $ac_c" 1>&6 +-echo "configure:2482: checking for struct utimbuf" >&5 ++echo "configure:6350: checking for struct utimbuf" >&5 + if eval "test \"`echo '$''{'fu_cv_sys_struct_utimbuf'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then ++if { (eval echo configure:6376: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + fu_cv_sys_struct_utimbuf=yes + else +@@ -2530,12 +6398,12 @@ + for ac_func in dup2 mbrtowc rename setlocale strerror strndup wcrtomb + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:2534: checking for $ac_func" >&5 ++echo "configure:6402: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6430: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -2585,12 +6453,12 @@ + for ac_func in strtol strtoul + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:2589: checking for $ac_func" >&5 ++echo "configure:6457: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6485: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -2642,19 +6510,19 @@ + # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works + # for constant arguments. Useless! + echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 +-echo "configure:2646: checking for working alloca.h" >&5 ++echo "configure:6514: checking for working alloca.h" >&5 + if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + int main() { + char *p = alloca(2 * sizeof(int)); + ; return 0; } + EOF +-if { (eval echo configure:2658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6526: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + ac_cv_header_alloca_h=yes + else +@@ -2675,12 +6543,12 @@ + fi + + echo $ac_n "checking for alloca""... $ac_c" 1>&6 +-echo "configure:2679: checking for alloca" >&5 ++echo "configure:6547: checking for alloca" >&5 + if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6580: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + ac_cv_func_alloca_works=yes + else +@@ -2740,12 +6608,12 @@ + + + echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 +-echo "configure:2744: checking whether alloca needs Cray hooks" >&5 ++echo "configure:6612: checking whether alloca needs Cray hooks" >&5 + if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&6 +-echo "configure:2774: checking for $ac_func" >&5 ++echo "configure:6642: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -2825,7 +6693,7 @@ + fi + + echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 +-echo "configure:2829: checking stack direction for C alloca" >&5 ++echo "configure:6697: checking stack direction for C alloca" >&5 + if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -2833,7 +6701,7 @@ + ac_cv_c_stack_direction=0 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:6724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + ac_cv_c_stack_direction=1 + else +@@ -2874,12 +6742,12 @@ + fi + + echo $ac_n "checking for vprintf""... $ac_c" 1>&6 +-echo "configure:2878: checking for vprintf" >&5 ++echo "configure:6746: checking for vprintf" >&5 + if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6774: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_vprintf=yes" + else +@@ -2926,12 +6794,12 @@ + + if test "$ac_cv_func_vprintf" != yes; then + echo $ac_n "checking for _doprnt""... $ac_c" 1>&6 +-echo "configure:2930: checking for _doprnt" >&5 ++echo "configure:6798: checking for _doprnt" >&5 + if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:6826: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func__doprnt=yes" + else +@@ -2986,7 +6854,7 @@ + + + echo $ac_n "checking for working malloc""... $ac_c" 1>&6 +-echo "configure:2990: checking for working malloc" >&5 ++echo "configure:6858: checking for working malloc" >&5 + if eval "test \"`echo '$''{'jm_cv_func_working_malloc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -2994,7 +6862,7 @@ + jm_cv_func_working_malloc=no + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:6877: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + jm_cv_func_working_malloc=yes + else +@@ -3037,7 +6905,7 @@ + + + echo $ac_n "checking for working realloc""... $ac_c" 1>&6 +-echo "configure:3041: checking for working realloc" >&5 ++echo "configure:6909: checking for working realloc" >&5 + if eval "test \"`echo '$''{'jm_cv_func_working_realloc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -3045,7 +6913,7 @@ + jm_cv_func_working_realloc=no + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:6928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + jm_cv_func_working_realloc=yes + else +@@ -3090,7 +6958,7 @@ + fi + + echo $ac_n "checking host system type""... $ac_c" 1>&6 +-echo "configure:3094: checking host system type" >&5 ++echo "configure:6962: checking host system type" >&5 + + host_alias=$host + case "$host_alias" in +@@ -3115,17 +6983,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:3119: checking for $ac_hdr" >&5 ++echo "configure:6987: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:3129: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:6997: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -3154,12 +7022,12 @@ + for ac_func in nl_langinfo + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:3158: checking for $ac_func" >&5 ++echo "configure:7026: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7054: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -3208,19 +7076,19 @@ + + + echo $ac_n "checking for nl_langinfo and CODESET""... $ac_c" 1>&6 +-echo "configure:3212: checking for nl_langinfo and CODESET" >&5 ++echo "configure:7080: checking for nl_langinfo and CODESET" >&5 + if eval "test \"`echo '$''{'jm_cv_langinfo_codeset'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + int main() { + char* cs = nl_langinfo(CODESET); + ; return 0; } + EOF +-if { (eval echo configure:3224: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + jm_cv_langinfo_codeset=yes + else +@@ -3243,12 +7111,12 @@ + + + echo $ac_n "checking whether we are using the GNU C Library 2.1 or newer""... $ac_c" 1>&6 +-echo "configure:3247: checking whether we are using the GNU C Library 2.1 or newer" >&5 ++echo "configure:7115: checking whether we are using the GNU C Library 2.1 or newer" >&5 + if eval "test \"`echo '$''{'ac_cv_gnu_library_2_1'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < +@@ -3280,7 +7148,7 @@ + + + echo $ac_n "checking if malloc debugging is wanted""... $ac_c" 1>&6 +-echo "configure:3284: checking if malloc debugging is wanted" >&5 ++echo "configure:7152: checking if malloc debugging is wanted" >&5 + # Check whether --with-dmalloc or --without-dmalloc was given. + if test "${with_dmalloc+set}" = set; then + withval="$with_dmalloc" +@@ -3303,7 +7171,7 @@ + + + echo $ac_n "checking whether NLS is wanted""... $ac_c" 1>&6 +-echo "configure:3307: checking whether NLS is wanted" >&5 ++echo "configure:7175: checking whether NLS is wanted" >&5 + # Check whether --enable-nls or --disable-nls was given. + if test "${enable_nls+set}" = set; then + enableval="$enable_nls" +@@ -3340,12 +7208,12 @@ + for ac_func in gettext + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:3344: checking for $ac_func" >&5 ++echo "configure:7212: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7240: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -3393,7 +7261,7 @@ + done + + echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6 +-echo "configure:3397: checking for gettext in -lintl" >&5 ++echo "configure:7265: checking for gettext in -lintl" >&5 + ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +@@ -3401,7 +7269,7 @@ + ac_save_LIBS="$LIBS" + LIBS="-lintl $LIBS" + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7284: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" + else +@@ -3434,7 +7302,7 @@ + + if test $ac_cv_lib_intl_gettext$ac_cv_func_gettext != nono; then + echo $ac_n "checking whether the included gettext is preferred""... $ac_c" 1>&6 +-echo "configure:3438: checking whether the included gettext is preferred" >&5 ++echo "configure:7306: checking whether the included gettext is preferred" >&5 + # Check whether --with-included-gettext or --without-included-gettext was given. + if test "${with_included_gettext+set}" = set; then + withval="$with_included_gettext" +@@ -3465,17 +7333,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:3469: checking for $ac_hdr" >&5 ++echo "configure:7337: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:3479: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:7347: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -3504,12 +7372,12 @@ + for ac_func in dcgettext gettext + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:3508: checking for $ac_func" >&5 ++echo "configure:7376: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -3562,17 +7430,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:3566: checking for $ac_hdr" >&5 ++echo "configure:7434: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:3576: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:7444: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -3602,17 +7470,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:3606: checking for $ac_hdr" >&5 ++echo "configure:7474: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:3616: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:7484: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -3641,12 +7509,12 @@ + for ac_func in getpagesize + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:3645: checking for $ac_func" >&5 ++echo "configure:7513: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7541: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -3694,7 +7562,7 @@ + done + + echo $ac_n "checking for working mmap""... $ac_c" 1>&6 +-echo "configure:3698: checking for working mmap" >&5 ++echo "configure:7566: checking for working mmap" >&5 + if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -3702,7 +7570,7 @@ + ac_cv_func_mmap_fixed_mapped=no + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:7714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + ac_cv_func_mmap_fixed_mapped=yes + else +@@ -3867,12 +7735,12 @@ + for ac_func in getcwd mempcpy munmap setlocale stpcpy strcasecmp strchr strdup __argz_count __argz_stringify __argz_next + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:3871: checking for $ac_func" >&5 ++echo "configure:7739: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7767: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" + else +@@ -3921,19 +7789,19 @@ + + if test $ac_cv_header_locale_h = yes; then + echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 +-echo "configure:3925: checking for LC_MESSAGES" >&5 ++echo "configure:7793: checking for LC_MESSAGES" >&5 + if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + int main() { + return LC_MESSAGES + ; return 0; } + EOF +-if { (eval echo configure:3937: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:7805: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + am_cv_val_LC_MESSAGES=yes + else +@@ -3968,7 +7836,7 @@ + + + echo $ac_n "checking which translations to install""... $ac_c" 1>&6 +-echo "configure:3972: checking which translations to install" >&5 ++echo "configure:7840: checking which translations to install" >&5 + if test -z "$LINGUAS"; then + ac_print="$ALL_LINGUAS" + MOFILES="$ALL_MOFILES" +@@ -4172,8 +8040,12 @@ + s%@build_cpu@%$build_cpu%g + s%@build_vendor@%$build_vendor%g + s%@build_os@%$build_os%g +-s%@RANLIB@%$RANLIB%g + s%@LN_S@%$LN_S%g ++s%@OBJEXT@%$OBJEXT%g ++s%@EXEEXT@%$EXEEXT%g ++s%@ECHO@%$ECHO%g ++s%@RANLIB@%$RANLIB%g ++s%@STRIP@%$STRIP%g + s%@LIBTOOL@%$LIBTOOL%g + s%@U@%$U%g + s%@ANSI2KNR@%$ANSI2KNR%g +--- recode-3.6.orig/config.guess ++++ recode-3.6/config.guess +@@ -1,8 +1,11 @@ + #! /bin/sh + # Attempt to guess a canonical system name. +-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999 +-# Free Software Foundation, Inc. +-# ++# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, ++# Inc. ++ ++timestamp='2006-07-02' ++ + # This file 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 +@@ -15,156 +18,293 @@ + # + # 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA ++# 02110-1301, USA. + # + # As a special exception to the GNU General Public License, if you + # distribute this file as part of a program that contains a + # configuration script generated by Autoconf, you may include it under + # the same distribution terms that you use for the rest of that program. + +-# Written by Per Bothner . +-# The master version of this file is at the FSF in /home/gd/gnu/lib. +-# Please send patches to . ++ ++# Originally written by Per Bothner . ++# Please send patches to . Submit a context ++# diff and a properly formatted ChangeLog entry. + # + # This script attempts to guess a canonical system name similar to + # config.sub. If it succeeds, it prints the system name on stdout, and + # exits with 0. Otherwise, it exits with 1. + # + # The plan is that this can be called by configure scripts if you +-# don't specify an explicit system type (host/target name). +-# +-# Only a few systems have been added to this list; please add others +-# (but try to keep the structure clean). +-# ++# don't specify an explicit build system type. + +-# Use $HOST_CC if defined. $CC may point to a cross-compiler +-if test x"$CC_FOR_BUILD" = x; then +- if test x"$HOST_CC" != x; then +- CC_FOR_BUILD="$HOST_CC" +- else +- if test x"$CC" != x; then +- CC_FOR_BUILD="$CC" +- else +- CC_FOR_BUILD=cc +- fi +- fi ++me=`echo "$0" | sed -e 's,.*/,,'` ++ ++usage="\ ++Usage: $0 [OPTION] ++ ++Output the configuration name of the system \`$me' is run on. ++ ++Operation modes: ++ -h, --help print this help, then exit ++ -t, --time-stamp print date of last modification, then exit ++ -v, --version print version number, then exit ++ ++Report bugs and patches to ." ++ ++version="\ ++GNU config.guess ($timestamp) ++ ++Originally written by Per Bothner. ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 ++Free Software Foundation, Inc. ++ ++This is free software; see the source for copying conditions. There is NO ++warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." ++ ++help=" ++Try \`$me --help' for more information." ++ ++# Parse command line ++while test $# -gt 0 ; do ++ case $1 in ++ --time-stamp | --time* | -t ) ++ echo "$timestamp" ; exit ;; ++ --version | -v ) ++ echo "$version" ; exit ;; ++ --help | --h* | -h ) ++ echo "$usage"; exit ;; ++ -- ) # Stop option processing ++ shift; break ;; ++ - ) # Use stdin as input. ++ break ;; ++ -* ) ++ echo "$me: invalid option $1$help" >&2 ++ exit 1 ;; ++ * ) ++ break ;; ++ esac ++done ++ ++if test $# != 0; then ++ echo "$me: too many arguments$help" >&2 ++ exit 1 + fi + ++trap 'exit 1' 1 2 15 ++ ++# CC_FOR_BUILD -- compiler used by this script. Note that the use of a ++# compiler to aid in system detection is discouraged as it requires ++# temporary files to be created and, as you can see below, it is a ++# headache to deal with in a portable fashion. ++ ++# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still ++# use `HOST_CC' if defined, but it is deprecated. ++ ++# Portable tmp directory creation inspired by the Autoconf team. ++ ++set_cc_for_build=' ++trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; ++trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; ++: ${TMPDIR=/tmp} ; ++ { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || ++ { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || ++ { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || ++ { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; ++dummy=$tmp/dummy ; ++tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; ++case $CC_FOR_BUILD,$HOST_CC,$CC in ++ ,,) echo "int x;" > $dummy.c ; ++ for c in cc gcc c89 c99 ; do ++ if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then ++ CC_FOR_BUILD="$c"; break ; ++ fi ; ++ done ; ++ if test x"$CC_FOR_BUILD" = x ; then ++ CC_FOR_BUILD=no_compiler_found ; ++ fi ++ ;; ++ ,,*) CC_FOR_BUILD=$CC ;; ++ ,*,*) CC_FOR_BUILD=$HOST_CC ;; ++esac ; set_cc_for_build= ;' + + # This is needed to find uname on a Pyramid OSx when run in the BSD universe. +-# (ghazi@noc.rutgers.edu 8/24/94.) ++# (ghazi@noc.rutgers.edu 1994-08-24) + if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH + fi + + UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown + UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +-UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown ++UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown + UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +-dummy=dummy-$$ +-trap 'rm -f $dummy.c $dummy.o $dummy; exit 1' 1 2 15 +- + # Note: order is significant - the case branches are not exclusive. + + case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in ++ *:NetBSD:*:*) ++ # NetBSD (nbsd) targets should (where applicable) match one or ++ # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, ++ # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently ++ # switched to ELF, *-*-netbsd* would select the old ++ # object file format. This provides both forward ++ # compatibility and a consistent mechanism for selecting the ++ # object file format. ++ # ++ # Note: NetBSD doesn't particularly care about the vendor ++ # portion of the name. We always set it to "unknown". ++ sysctl="sysctl -n hw.machine_arch" ++ UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ ++ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` ++ case "${UNAME_MACHINE_ARCH}" in ++ armeb) machine=armeb-unknown ;; ++ arm*) machine=arm-unknown ;; ++ sh3el) machine=shl-unknown ;; ++ sh3eb) machine=sh-unknown ;; ++ *) machine=${UNAME_MACHINE_ARCH}-unknown ;; ++ esac ++ # The Operating System including object format, if it has switched ++ # to ELF recently, or will in the future. ++ case "${UNAME_MACHINE_ARCH}" in ++ arm*|i386|m68k|ns32k|sh3*|sparc|vax) ++ eval $set_cc_for_build ++ if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ ++ | grep __ELF__ >/dev/null ++ then ++ # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). ++ # Return netbsd for either. FIX? ++ os=netbsd ++ else ++ os=netbsdelf ++ fi ++ ;; ++ *) ++ os=netbsd ++ ;; ++ esac ++ # The OS release ++ # Debian GNU/NetBSD machines have a different userland, and ++ # thus, need a distinct triplet. However, they do not need ++ # kernel version information, so it can be replaced with a ++ # suitable tag, in the style of linux-gnu. ++ case "${UNAME_VERSION}" in ++ Debian*) ++ release='-gnu' ++ ;; ++ *) ++ release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ++ ;; ++ esac ++ # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: ++ # contains redundant information, the shorter form: ++ # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. ++ echo "${machine}-${os}${release}" ++ exit ;; ++ *:OpenBSD:*:*) ++ UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` ++ echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} ++ exit ;; ++ *:ekkoBSD:*:*) ++ echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} ++ exit ;; ++ *:SolidBSD:*:*) ++ echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} ++ exit ;; ++ macppc:MirBSD:*:*) ++ echo powerpc-unknown-mirbsd${UNAME_RELEASE} ++ exit ;; ++ *:MirBSD:*:*) ++ echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} ++ exit ;; + alpha:OSF1:*:*) +- if test $UNAME_RELEASE = "V4.0"; then ++ case $UNAME_RELEASE in ++ *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` +- fi ++ ;; ++ *5.*) ++ UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ++ ;; ++ esac ++ # According to Compaq, /usr/sbin/psrinfo has been available on ++ # OSF/1 and Tru64 systems produced since 1995. I hope that ++ # covers most systems running today. This code pipes the CPU ++ # types through head -n 1, so we only detect the type of CPU 0. ++ ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` ++ case "$ALPHA_CPU_TYPE" in ++ "EV4 (21064)") ++ UNAME_MACHINE="alpha" ;; ++ "EV4.5 (21064)") ++ UNAME_MACHINE="alpha" ;; ++ "LCA4 (21066/21068)") ++ UNAME_MACHINE="alpha" ;; ++ "EV5 (21164)") ++ UNAME_MACHINE="alphaev5" ;; ++ "EV5.6 (21164A)") ++ UNAME_MACHINE="alphaev56" ;; ++ "EV5.6 (21164PC)") ++ UNAME_MACHINE="alphapca56" ;; ++ "EV5.7 (21164PC)") ++ UNAME_MACHINE="alphapca57" ;; ++ "EV6 (21264)") ++ UNAME_MACHINE="alphaev6" ;; ++ "EV6.7 (21264A)") ++ UNAME_MACHINE="alphaev67" ;; ++ "EV6.8CB (21264C)") ++ UNAME_MACHINE="alphaev68" ;; ++ "EV6.8AL (21264B)") ++ UNAME_MACHINE="alphaev68" ;; ++ "EV6.8CX (21264D)") ++ UNAME_MACHINE="alphaev68" ;; ++ "EV6.9A (21264/EV69A)") ++ UNAME_MACHINE="alphaev69" ;; ++ "EV7 (21364)") ++ UNAME_MACHINE="alphaev7" ;; ++ "EV7.9 (21364A)") ++ UNAME_MACHINE="alphaev79" ;; ++ esac ++ # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. +- cat <$dummy.s +- .globl main +- .ent main +-main: +- .frame \$30,0,\$26,0 +- .prologue 0 +- .long 0x47e03d80 # implver $0 +- lda \$2,259 +- .long 0x47e20c21 # amask $2,$1 +- srl \$1,8,\$2 +- sll \$2,2,\$2 +- sll \$0,3,\$0 +- addl \$1,\$0,\$0 +- addl \$2,\$0,\$0 +- ret \$31,(\$26),1 +- .end main +-EOF +- $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null +- if test "$?" = 0 ; then +- ./$dummy +- case "$?" in +- 7) +- UNAME_MACHINE="alpha" +- ;; +- 15) +- UNAME_MACHINE="alphaev5" +- ;; +- 14) +- UNAME_MACHINE="alphaev56" +- ;; +- 10) +- UNAME_MACHINE="alphapca56" +- ;; +- 16) +- UNAME_MACHINE="alphaev6" +- ;; +- esac +- fi +- rm -f $dummy.s $dummy +- echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` +- exit 0 ;; ++ echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` ++ exit ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix +- exit 0 ;; ++ exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 +- exit 0 ;; ++ exit ;; + Amiga*:UNIX_System_V:4.0:*) +- echo m68k-cbm-sysv4 +- exit 0;; +- amiga:NetBSD:*:*) +- echo m68k-cbm-netbsd${UNAME_RELEASE} +- exit 0 ;; +- amiga:OpenBSD:*:*) +- echo m68k-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; ++ echo m68k-unknown-sysv4 ++ exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos +- exit 0 ;; +- arc64:OpenBSD:*:*) +- echo mips64el-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- arc:OpenBSD:*:*) +- echo mipsel-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- hkmips:OpenBSD:*:*) +- echo mips-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- pmax:OpenBSD:*:*) +- echo mipsel-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- sgi:OpenBSD:*:*) +- echo mips-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- wgrisc:OpenBSD:*:*) +- echo mipsel-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; ++ *:[Mm]orph[Oo][Ss]:*:*) ++ echo ${UNAME_MACHINE}-unknown-morphos ++ exit ;; ++ *:OS/390:*:*) ++ echo i370-ibm-openedition ++ exit ;; ++ *:z/VM:*:*) ++ echo s390-ibm-zvmoe ++ exit ;; ++ *:OS400:*:*) ++ echo powerpc-ibm-os400 ++ exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} +- exit 0;; +- arm32:NetBSD:*:*) +- echo arm-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` +- exit 0 ;; +- SR2?01:HI-UX/MPP:*:*) ++ exit ;; ++ arm:riscos:*:*|arm:RISCOS:*:*) ++ echo arm-unknown-riscos ++ exit ;; ++ SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp +- exit 0;; ++ exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then +@@ -172,25 +312,32 @@ + else + echo pyramid-pyramid-bsd + fi +- exit 0 ;; ++ exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 +- exit 0 ;; ++ exit ;; ++ DRS?6000:unix:4.0:6*) ++ echo sparc-icl-nx6 ++ exit ;; ++ DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) ++ case `/usr/bin/uname -p` in ++ sparc) echo sparc-icl-nx7; exit ;; ++ esac ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` +- exit 0 ;; ++ exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` +- exit 0 ;; ++ exit ;; + i86pc:SunOS:5.*:*) + echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` +- exit 0 ;; ++ exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` +- exit 0 ;; ++ exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) +@@ -199,12 +346,12 @@ + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` +- exit 0 ;; ++ exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + sun*:*:4.2BSD:*) +- UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` ++ UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) +@@ -214,19 +361,13 @@ + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac +- exit 0 ;; ++ exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} +- exit 0 ;; +- atari*:NetBSD:*:*) +- echo m68k-atari-netbsd${UNAME_RELEASE} +- exit 0 ;; +- atari*:OpenBSD:*:*) +- echo m68k-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not +- # "atarist" or "atariste" at least should have a processor ++ # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not +@@ -234,61 +375,45 @@ + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} +- exit 0 ;; +- sun3*:NetBSD:*:*) +- echo m68k-sun-netbsd${UNAME_RELEASE} +- exit 0 ;; +- sun3*:OpenBSD:*:*) +- echo m68k-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- mac68k:NetBSD:*:*) +- echo m68k-apple-netbsd${UNAME_RELEASE} +- exit 0 ;; +- mac68k:OpenBSD:*:*) +- echo m68k-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- mvme68k:OpenBSD:*:*) +- echo m68k-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- mvme88k:OpenBSD:*:*) +- echo m88k-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; ++ m68k:machten:*:*) ++ echo m68k-apple-machten${UNAME_RELEASE} ++ exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} +- exit 0 ;; +- macppc:NetBSD:*:*) +- echo powerpc-apple-netbsd${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 +- exit 0 ;; ++ exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) ++ eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __cplusplus ++#include /* for printf() prototype */ + int main (int argc, char *argv[]) { + #else + int main (argc, argv) int argc; char *argv[]; { +@@ -307,61 +432,82 @@ + exit (-1); + } + EOF +- $CC_FOR_BUILD $dummy.c -o $dummy \ +- && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ +- && rm $dummy.c $dummy && exit 0 +- rm -f $dummy.c $dummy ++ $CC_FOR_BUILD -o $dummy $dummy.c && ++ dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && ++ SYSTEM_NAME=`$dummy $dummyarg` && ++ { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; ++ Motorola:PowerMAX_OS:*:*) ++ echo powerpc-motorola-powermax ++ exit ;; ++ Motorola:*:4.3:PL8-*) ++ echo powerpc-harris-powermax ++ exit ;; ++ Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) ++ echo powerpc-harris-powermax ++ exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix +- exit 0 ;; ++ exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 +- exit 0 ;; ++ exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 +- exit 0 ;; ++ exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 +- exit 0 ;; ++ exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` +- if [ $UNAME_PROCESSOR = mc88100 -o $UNAME_PROCESSOR = mc88110 ] ; then +- if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \ +- -o ${TARGET_BINARY_INTERFACE}x = x ] ; then ++ if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] ++ then ++ if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ ++ [ ${TARGET_BINARY_INTERFACE}x = x ] ++ then + echo m88k-dg-dgux${UNAME_RELEASE} +- else ++ else + echo m88k-dg-dguxbcs${UNAME_RELEASE} ++ fi ++ else ++ echo i586-dg-dgux${UNAME_RELEASE} + fi +- else echo i586-dg-dgux${UNAME_RELEASE} +- fi +- exit 0 ;; ++ exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 +- exit 0 ;; ++ exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 +- exit 0 ;; ++ exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 +- exit 0 ;; ++ exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd +- exit 0 ;; ++ exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` +- exit 0 ;; ++ exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. +- echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id +- exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' +- i?86:AIX:*:*) ++ echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id ++ exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' ++ i*86:AIX:*:*) + echo i386-ibm-aix +- exit 0 ;; ++ exit ;; ++ ia64:AIX:*:*) ++ if [ -x /usr/bin/oslevel ] ; then ++ IBM_REV=`/usr/bin/oslevel` ++ else ++ IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} ++ fi ++ echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} ++ exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then ++ eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + +@@ -373,18 +519,21 @@ + exit(0); + } + EOF +- $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0 +- rm -f $dummy.c $dummy +- echo rs6000-ibm-aix3.2.5 ++ if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` ++ then ++ echo "$SYSTEM_NAME" ++ else ++ echo rs6000-ibm-aix3.2.5 ++ fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi +- exit 0 ;; +- *:AIX:*:4) +- IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'` +- if /usr/sbin/lsattr -EHl ${IBM_CPU_ID} | grep POWER >/dev/null 2>&1; then ++ exit ;; ++ *:AIX:*:[45]) ++ IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` ++ if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc +@@ -392,37 +541,56 @@ + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else +- IBM_REV=4.${UNAME_RELEASE} ++ IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} +- exit 0 ;; ++ exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix +- exit 0 ;; ++ exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 +- exit 0 ;; +- ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC NetBSD and ++ exit ;; ++ ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to +- exit 0 ;; # report: romp-ibm BSD 4.3 ++ exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx +- exit 0 ;; ++ exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 +- exit 0 ;; ++ exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd +- exit 0 ;; ++ exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 +- exit 0 ;; ++ exit ;; + 9000/[34678]??:HP-UX:*:*) ++ HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) +- sed 's/^ //' << EOF >$dummy.c ++ if [ -x /usr/bin/getconf ]; then ++ sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` ++ sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` ++ case "${sc_cpu_version}" in ++ 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 ++ 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 ++ 532) # CPU_PA_RISC2_0 ++ case "${sc_kernel_bits}" in ++ 32) HP_ARCH="hppa2.0n" ;; ++ 64) HP_ARCH="hppa2.0w" ;; ++ '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 ++ esac ;; ++ esac ++ fi ++ if [ "${HP_ARCH}" = "" ]; then ++ eval $set_cc_for_build ++ sed 's/^ //' << EOF >$dummy.c ++ ++ #define _HPUX_SOURCE + #include + #include + +@@ -453,13 +621,39 @@ + exit (0); + } + EOF +- ($CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy` +- rm -f $dummy.c $dummy ++ (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` ++ test -z "$HP_ARCH" && HP_ARCH=hppa ++ fi ;; + esac +- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` ++ if [ ${HP_ARCH} = "hppa2.0w" ] ++ then ++ eval $set_cc_for_build ++ ++ # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating ++ # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler ++ # generating 64-bit code. GNU and HP use different nomenclature: ++ # ++ # $ CC_FOR_BUILD=cc ./config.guess ++ # => hppa2.0w-hp-hpux11.23 ++ # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess ++ # => hppa64-hp-hpux11.23 ++ ++ if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | ++ grep __LP64__ >/dev/null ++ then ++ HP_ARCH="hppa2.0w" ++ else ++ HP_ARCH="hppa64" ++ fi ++ fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} +- exit 0 ;; ++ exit ;; ++ ia64:HP-UX:*:*) ++ HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` ++ echo ia64-hp-hpux${HPUX_REV} ++ exit ;; + 3050*:HI-UX:*:*) ++ eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int +@@ -485,410 +679,475 @@ + exit (0); + } + EOF +- $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0 +- rm -f $dummy.c $dummy ++ $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && ++ { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 +- exit 0 ;; ++ exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd +- exit 0 ;; ++ exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd +- exit 0 ;; +- *9??*:MPE/iX:*:*) ++ exit ;; ++ *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix +- exit 0 ;; ++ exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf +- exit 0 ;; ++ exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf +- exit 0 ;; +- i?86:OSF1:*:*) ++ exit ;; ++ i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi +- exit 0 ;; ++ exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites +- exit 0 ;; +- hppa*:OpenBSD:*:*) +- echo hppa-unknown-openbsd +- exit 0 ;; ++ exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd +- exit 0 ;; ++ exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi +- exit 0 ;; ++ exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd +- exit 0 ;; ++ exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd +- exit 0 ;; ++ exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd +- exit 0 ;; +- CRAY*X-MP:*:*:*) +- echo xmp-cray-unicos +- exit 0 ;; ++ exit ;; + CRAY*Y-MP:*:*:*) +- echo ymp-cray-unicos${UNAME_RELEASE} +- exit 0 ;; ++ echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' ++ exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ +- -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ +- exit 0 ;; ++ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ ++ -e 's/\.[^.]*$/.X/' ++ exit ;; + CRAY*TS:*:*:*) +- echo t90-cray-unicos${UNAME_RELEASE} +- exit 0 ;; ++ echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' ++ exit ;; + CRAY*T3E:*:*:*) +- echo alpha-cray-unicosmk${UNAME_RELEASE} +- exit 0 ;; +- CRAY-2:*:*:*) +- echo cray2-cray-unicos +- exit 0 ;; +- F300:UNIX_System_V:*:*) ++ echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' ++ exit ;; ++ CRAY*SV1:*:*:*) ++ echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' ++ exit ;; ++ *:UNICOS/mp:*:*) ++ echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' ++ exit ;; ++ F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) ++ FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` +- echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" +- exit 0 ;; +- F301:UNIX_System_V:*:*) +- echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'` +- exit 0 ;; +- hp3[0-9][05]:NetBSD:*:*) +- echo m68k-hp-netbsd${UNAME_RELEASE} +- exit 0 ;; +- hp300:OpenBSD:*:*) +- echo m68k-unknown-openbsd${UNAME_RELEASE} +- exit 0 ;; +- i?86:BSD/386:*:* | i?86:BSD/OS:*:*) ++ echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ++ exit ;; ++ 5000:UNIX_System_V:4.*:*) ++ FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` ++ FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` ++ echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ++ exit ;; ++ i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + *:FreeBSD:*:*) +- if test -x /usr/bin/objformat; then +- if test "elf" = "`/usr/bin/objformat`"; then +- echo ${UNAME_MACHINE}-unknown-freebsdelf`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'` +- exit 0 +- fi +- fi +- echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` +- exit 0 ;; +- *:NetBSD:*:*) +- echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` +- exit 0 ;; +- *:OpenBSD:*:*) +- echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` +- exit 0 ;; ++ case ${UNAME_MACHINE} in ++ pc98) ++ echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ amd64) ++ echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ *) ++ echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ esac ++ exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin +- exit 0 ;; ++ exit ;; + i*:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 +- exit 0 ;; ++ exit ;; ++ i*:windows32*:*) ++ # uname -m includes "-pc" on this system. ++ echo ${UNAME_MACHINE}-mingw32 ++ exit ;; ++ i*:PW*:*) ++ echo ${UNAME_MACHINE}-pc-pw32 ++ exit ;; ++ x86:Interix*:[3456]*) ++ echo i586-pc-interix${UNAME_RELEASE} ++ exit ;; ++ EM64T:Interix*:[3456]*) ++ echo x86_64-unknown-interix${UNAME_RELEASE} ++ exit ;; ++ [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) ++ echo i${UNAME_MACHINE}-pc-mks ++ exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? +- echo i386-pc-interix +- exit 0 ;; ++ echo i586-pc-interix ++ exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin +- exit 0 ;; ++ exit ;; ++ amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) ++ echo x86_64-unknown-cygwin ++ exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin +- exit 0 ;; ++ exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` +- exit 0 ;; ++ exit ;; + *:GNU:*:*) ++ # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` +- exit 0 ;; +- *:Linux:*:*) +- # uname on the ARM produces all sorts of strangeness, and we need to +- # filter it out. +- case "$UNAME_MACHINE" in +- armv*) UNAME_MACHINE=$UNAME_MACHINE ;; +- arm* | sa110*) UNAME_MACHINE="arm" ;; ++ exit ;; ++ *:GNU/*:*:*) ++ # other systems with GNU libc and userland ++ echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu ++ exit ;; ++ i*86:Minix:*:*) ++ echo ${UNAME_MACHINE}-pc-minix ++ exit ;; ++ arm*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ avr32*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ cris:Linux:*:*) ++ echo cris-axis-linux-gnu ++ exit ;; ++ crisv32:Linux:*:*) ++ echo crisv32-axis-linux-gnu ++ exit ;; ++ frv:Linux:*:*) ++ echo frv-unknown-linux-gnu ++ exit ;; ++ ia64:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ m32r*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ m68*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ mips:Linux:*:*) ++ eval $set_cc_for_build ++ sed 's/^ //' << EOF >$dummy.c ++ #undef CPU ++ #undef mips ++ #undef mipsel ++ #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) ++ CPU=mipsel ++ #else ++ #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) ++ CPU=mips ++ #else ++ CPU= ++ #endif ++ #endif ++EOF ++ eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' ++ /^CPU/{ ++ s: ::g ++ p ++ }'`" ++ test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ++ ;; ++ mips64:Linux:*:*) ++ eval $set_cc_for_build ++ sed 's/^ //' << EOF >$dummy.c ++ #undef CPU ++ #undef mips64 ++ #undef mips64el ++ #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) ++ CPU=mips64el ++ #else ++ #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) ++ CPU=mips64 ++ #else ++ CPU= ++ #endif ++ #endif ++EOF ++ eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' ++ /^CPU/{ ++ s: ::g ++ p ++ }'`" ++ test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ++ ;; ++ or32:Linux:*:*) ++ echo or32-unknown-linux-gnu ++ exit ;; ++ ppc:Linux:*:*) ++ echo powerpc-unknown-linux-gnu ++ exit ;; ++ ppc64:Linux:*:*) ++ echo powerpc64-unknown-linux-gnu ++ exit ;; ++ alpha:Linux:*:*) ++ case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in ++ EV5) UNAME_MACHINE=alphaev5 ;; ++ EV56) UNAME_MACHINE=alphaev56 ;; ++ PCA56) UNAME_MACHINE=alphapca56 ;; ++ PCA57) UNAME_MACHINE=alphapca56 ;; ++ EV6) UNAME_MACHINE=alphaev6 ;; ++ EV67) UNAME_MACHINE=alphaev67 ;; ++ EV68*) UNAME_MACHINE=alphaev68 ;; ++ esac ++ objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null ++ if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi ++ echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} ++ exit ;; ++ parisc:Linux:*:* | hppa:Linux:*:*) ++ # Look for CPU level ++ case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in ++ PA7*) echo hppa1.1-unknown-linux-gnu ;; ++ PA8*) echo hppa2.0-unknown-linux-gnu ;; ++ *) echo hppa-unknown-linux-gnu ;; + esac +- ++ exit ;; ++ parisc64:Linux:*:* | hppa64:Linux:*:*) ++ echo hppa64-unknown-linux-gnu ++ exit ;; ++ s390:Linux:*:* | s390x:Linux:*:*) ++ echo ${UNAME_MACHINE}-ibm-linux ++ exit ;; ++ sh64*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ sh*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ sparc:Linux:*:* | sparc64:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ vax:Linux:*:*) ++ echo ${UNAME_MACHINE}-dec-linux-gnu ++ exit ;; ++ x86_64:Linux:*:*) ++ echo x86_64-unknown-linux-gnu ++ exit ;; ++ i*86:Linux:*:*) + # The BFD linker knows what the default object file format is, so + # first see if it will tell us. cd to the root directory to prevent + # problems with other programs or directories called `ld' in the path. +- ld_help_string=`cd /; ld --help 2>&1` +- ld_supported_emulations=`echo $ld_help_string \ +- | sed -ne '/supported emulations:/!d ++ # Set LC_ALL=C to ensure ld outputs messages in English. ++ ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ ++ | sed -ne '/supported targets:/!d + s/[ ][ ]*/ /g +- s/.*supported emulations: *// ++ s/.*supported targets: *// + s/ .*// + p'` +- case "$ld_supported_emulations" in +- *ia64) echo "${UNAME_MACHINE}-unknown-linux" ; exit 0 ;; +- i?86linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" ; exit 0 ;; +- i?86coff) echo "${UNAME_MACHINE}-pc-linux-gnucoff" ; exit 0 ;; +- sparclinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;; +- armlinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;; +- m68klinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;; +- elf32ppc | elf32ppclinux) +- # Determine Lib Version +- cat >$dummy.c < +-#if defined(__GLIBC__) +-extern char __libc_version[]; +-extern char __libc_release[]; +-#endif +-main(argc, argv) +- int argc; +- char *argv[]; +-{ +-#if defined(__GLIBC__) +- printf("%s %s\n", __libc_version, __libc_release); +-#else +- printf("unkown\n"); +-#endif +- return 0; +-} +-EOF +- LIBC="" +- $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null +- if test "$?" = 0 ; then +- ./$dummy | grep 1\.99 > /dev/null +- if test "$?" = 0 ; then +- LIBC="libc1" +- fi +- fi +- rm -f $dummy.c $dummy +- echo powerpc-unknown-linux-gnu${LIBC} ; exit 0 ;; ++ case "$ld_supported_targets" in ++ elf32-i386) ++ TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ++ ;; ++ a.out-i386-linux) ++ echo "${UNAME_MACHINE}-pc-linux-gnuaout" ++ exit ;; ++ coff-i386) ++ echo "${UNAME_MACHINE}-pc-linux-gnucoff" ++ exit ;; ++ "") ++ # Either a pre-BFD a.out linker (linux-gnuoldld) or ++ # one that does not give us useful --help. ++ echo "${UNAME_MACHINE}-pc-linux-gnuoldld" ++ exit ;; + esac +- +- if test "${UNAME_MACHINE}" = "alpha" ; then +- sed 's/^ //' <$dummy.s +- .globl main +- .ent main +- main: +- .frame \$30,0,\$26,0 +- .prologue 0 +- .long 0x47e03d80 # implver $0 +- lda \$2,259 +- .long 0x47e20c21 # amask $2,$1 +- srl \$1,8,\$2 +- sll \$2,2,\$2 +- sll \$0,3,\$0 +- addl \$1,\$0,\$0 +- addl \$2,\$0,\$0 +- ret \$31,(\$26),1 +- .end main +-EOF +- LIBC="" +- $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null +- if test "$?" = 0 ; then +- ./$dummy +- case "$?" in +- 7) +- UNAME_MACHINE="alpha" +- ;; +- 15) +- UNAME_MACHINE="alphaev5" +- ;; +- 14) +- UNAME_MACHINE="alphaev56" +- ;; +- 10) +- UNAME_MACHINE="alphapca56" +- ;; +- 16) +- UNAME_MACHINE="alphaev6" +- ;; +- esac +- +- objdump --private-headers $dummy | \ +- grep ld.so.1 > /dev/null +- if test "$?" = 0 ; then +- LIBC="libc1" +- fi +- fi +- rm -f $dummy.s $dummy +- echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} ; exit 0 +- elif test "${UNAME_MACHINE}" = "mips" ; then +- cat >$dummy.c </dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0 +- rm -f $dummy.c $dummy +- else +- # Either a pre-BFD a.out linker (linux-gnuoldld) +- # or one that does not give us useful --help. +- # GCC wants to distinguish between linux-gnuoldld and linux-gnuaout. +- # If ld does not provide *any* "supported emulations:" +- # that means it is gnuoldld. +- echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations:" +- test $? != 0 && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0 +- +- case "${UNAME_MACHINE}" in +- i?86) +- VENDOR=pc; +- ;; +- *) +- VENDOR=unknown; +- ;; +- esac +- # Determine whether the default compiler is a.out or elf +- cat >$dummy.c < +-#ifdef __cplusplus +- int main (int argc, char *argv[]) { +-#else +- int main (argc, argv) int argc; char *argv[]; { +-#endif +-#ifdef __ELF__ +-# ifdef __GLIBC__ +-# if __GLIBC__ >= 2 +- printf ("%s-${VENDOR}-linux-gnu\n", argv[1]); +-# else +- printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]); +-# endif +-# else +- printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]); +-# endif +-#else +- printf ("%s-${VENDOR}-linux-gnuaout\n", argv[1]); +-#endif +- return 0; +-} ++ # Determine whether the default compiler is a.out or elf ++ eval $set_cc_for_build ++ sed 's/^ //' << EOF >$dummy.c ++ #include ++ #ifdef __ELF__ ++ # ifdef __GLIBC__ ++ # if __GLIBC__ >= 2 ++ LIBC=gnu ++ # else ++ LIBC=gnulibc1 ++ # endif ++ # else ++ LIBC=gnulibc1 ++ # endif ++ #else ++ #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) ++ LIBC=gnu ++ #else ++ LIBC=gnuaout ++ #endif ++ #endif ++ #ifdef __dietlibc__ ++ LIBC=dietlibc ++ #endif + EOF +- $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0 +- rm -f $dummy.c $dummy +- fi ;; +-# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions +-# are messed up and put the nodename in both sysname and nodename. +- i?86:DYNIX/ptx:4*:*) ++ eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' ++ /^LIBC/{ ++ s: ::g ++ p ++ }'`" ++ test x"${LIBC}" != x && { ++ echo "${UNAME_MACHINE}-pc-linux-${LIBC}" ++ exit ++ } ++ test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ++ ;; ++ i*86:DYNIX/ptx:4*:*) ++ # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. ++ # earlier versions are messed up and put the nodename in both ++ # sysname and nodename. + echo i386-sequent-sysv4 +- exit 0 ;; +- i?86:UNIX_SV:4.2MP:2.*) ++ exit ;; ++ i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} +- exit 0 ;; +- i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*) ++ exit ;; ++ i*86:OS/2:*:*) ++ # If we were able to find `uname', then EMX Unix compatibility ++ # is probably installed. ++ echo ${UNAME_MACHINE}-pc-os2-emx ++ exit ;; ++ i*86:XTS-300:*:STOP) ++ echo ${UNAME_MACHINE}-unknown-stop ++ exit ;; ++ i*86:atheos:*:*) ++ echo ${UNAME_MACHINE}-unknown-atheos ++ exit ;; ++ i*86:syllable:*:*) ++ echo ${UNAME_MACHINE}-pc-syllable ++ exit ;; ++ i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) ++ echo i386-unknown-lynxos${UNAME_RELEASE} ++ exit ;; ++ i*86:*DOS:*:*) ++ echo ${UNAME_MACHINE}-pc-msdosdjgpp ++ exit ;; ++ i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) ++ UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then +- echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE} ++ echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else +- echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE} ++ echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi +- exit 0 ;; +- i?86:*:5:7*) +- UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` +- (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 +- (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) && UNAME_MACHINE=i586 +- (/bin/uname -X|egrep '^Machine.*Pent.*II' >/dev/null) && UNAME_MACHINE=i686 +- (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) && UNAME_MACHINE=i585 +- echo ${UNAME_MACHINE}-${UNAME_SYSTEM}${UNAME_VERSION}-sysv${UNAME_RELEASE} +- exit 0 ;; +- i?86:*:3.2:*) ++ exit ;; ++ i*86:*:5:[678]*) ++ # UnixWare 7.x, OpenUNIX and OpenServer 6. ++ case `/bin/uname -X | grep "^Machine"` in ++ *486*) UNAME_MACHINE=i486 ;; ++ *Pentium) UNAME_MACHINE=i586 ;; ++ *Pent*|*Celeron) UNAME_MACHINE=i686 ;; ++ esac ++ echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} ++ exit ;; ++ i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then +- UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` +- (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 +- (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ ++ UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` ++ (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 ++ (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 +- (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \ ++ (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 +- (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \ ++ (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi +- exit 0 ;; ++ exit ;; + pc:*:*:*) ++ # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i386. + echo i386-pc-msdosdjgpp +- exit 0 ;; ++ exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 +- exit 0 ;; ++ exit ;; + paragon:*:*:*) + echo i860-intel-osf1 +- exit 0 ;; ++ exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi +- exit 0 ;; ++ exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv +- exit 0 ;; +- M68*:*:R3V[567]*:*) +- test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; +- 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) ++ exit ;; ++ mc68k:UNIX:SYSTEM5:3.51m) ++ echo m68k-convergent-sysv ++ exit ;; ++ M680?0:D-NIX:5.3:*) ++ echo m68k-diab-dnix ++ exit ;; ++ M68*:*:R3V[5678]*:*) ++ test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; ++ 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ +- && echo i486-ncr-sysv4.3${OS_REL} && exit 0 ++ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ +- && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; ++ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ +- && echo i486-ncr-sysv4 && exit 0 ;; +- m68*:LynxOS:2.*:*) ++ && { echo i486-ncr-sysv4; exit; } ;; ++ m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 +- exit 0 ;; +- i?86:LynxOS:2.*:* | i?86:LynxOS:3.[01]*:*) +- echo i386-unknown-lynxos${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} +- exit 0 ;; +- rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*) ++ exit ;; ++ rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; ++ PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) ++ echo powerpc-unknown-lynxos${UNAME_RELEASE} ++ exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 +- exit 0 ;; ++ exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 +- exit 0 ;; ++ exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` +@@ -896,59 +1155,155 @@ + else + echo ns32k-sni-sysv + fi +- exit 0 ;; +- PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort +- # says ++ exit ;; ++ PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort ++ # says + echo i586-unisys-sysv4 +- exit 0 ;; ++ exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 +- exit 0 ;; ++ exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 +- exit 0 ;; ++ exit ;; ++ i*86:VOS:*:*) ++ # From Paul.Green@stratus.com. ++ echo ${UNAME_MACHINE}-stratus-vos ++ exit ;; ++ *:VOS:*:*) ++ # From Paul.Green@stratus.com. ++ echo hppa1.1-stratus-vos ++ exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} +- exit 0 ;; +- news*:NEWS-OS:*:6*) ++ exit ;; ++ news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 +- exit 0 ;; ++ exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi +- exit 0 ;; ++ exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos +- exit 0 ;; ++ exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos +- exit 0 ;; ++ exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos +- exit 0 ;; ++ exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; ++ SX-6:SUPER-UX:*:*) ++ echo sx6-nec-superux${UNAME_RELEASE} ++ exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} +- exit 0 ;; ++ exit ;; ++ *:Darwin:*:*) ++ UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown ++ case $UNAME_PROCESSOR in ++ unknown) UNAME_PROCESSOR=powerpc ;; ++ esac ++ echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} ++ exit ;; ++ *:procnto*:*:* | *:QNX:[0123456789]*:*) ++ UNAME_PROCESSOR=`uname -p` ++ if test "$UNAME_PROCESSOR" = "x86"; then ++ UNAME_PROCESSOR=i386 ++ UNAME_MACHINE=pc ++ fi ++ echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} ++ exit ;; ++ *:QNX:*:4*) ++ echo i386-pc-qnx ++ exit ;; ++ NSE-?:NONSTOP_KERNEL:*:*) ++ echo nse-tandem-nsk${UNAME_RELEASE} ++ exit ;; ++ NSR-?:NONSTOP_KERNEL:*:*) ++ echo nsr-tandem-nsk${UNAME_RELEASE} ++ exit ;; ++ *:NonStop-UX:*:*) ++ echo mips-compaq-nonstopux ++ exit ;; ++ BS2000:POSIX*:*:*) ++ echo bs2000-siemens-sysv ++ exit ;; ++ DS/*:UNIX_System_V:*:*) ++ echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} ++ exit ;; ++ *:Plan9:*:*) ++ # "uname -m" is not consistent, so use $cputype instead. 386 ++ # is converted to i386 for consistency with other x86 ++ # operating systems. ++ if test "$cputype" = "386"; then ++ UNAME_MACHINE=i386 ++ else ++ UNAME_MACHINE="$cputype" ++ fi ++ echo ${UNAME_MACHINE}-unknown-plan9 ++ exit ;; ++ *:TOPS-10:*:*) ++ echo pdp10-unknown-tops10 ++ exit ;; ++ *:TENEX:*:*) ++ echo pdp10-unknown-tenex ++ exit ;; ++ KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) ++ echo pdp10-dec-tops20 ++ exit ;; ++ XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) ++ echo pdp10-xkl-tops20 ++ exit ;; ++ *:TOPS-20:*:*) ++ echo pdp10-unknown-tops20 ++ exit ;; ++ *:ITS:*:*) ++ echo pdp10-unknown-its ++ exit ;; ++ SEI:*:*:SEIUX) ++ echo mips-sei-seiux${UNAME_RELEASE} ++ exit ;; ++ *:DragonFly:*:*) ++ echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ++ exit ;; ++ *:*VMS:*:*) ++ UNAME_MACHINE=`(uname -p) 2>/dev/null` ++ case "${UNAME_MACHINE}" in ++ A*) echo alpha-dec-vms ; exit ;; ++ I*) echo ia64-dec-vms ; exit ;; ++ V*) echo vax-dec-vms ; exit ;; ++ esac ;; ++ *:XENIX:*:SysV) ++ echo i386-pc-xenix ++ exit ;; ++ i*86:skyos:*:*) ++ echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' ++ exit ;; ++ i*86:rdos:*:*) ++ echo ${UNAME_MACHINE}-pc-rdos ++ exit ;; + esac + + #echo '(No uname command or uname output not recognized.)' 1>&2 + #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + ++eval $set_cc_for_build + cat >$dummy.c < +@@ -974,7 +1329,7 @@ + #endif + + #if defined (__arm) && defined (__acorn) && defined (__unix) +- printf ("arm-acorn-riscix"); exit (0); ++ printf ("arm-acorn-riscix\n"); exit (0); + #endif + + #if defined (hp300) && !defined (hpux) +@@ -1035,11 +1390,24 @@ + #endif + + #if defined (vax) +-#if !defined (ultrix) +- printf ("vax-dec-bsd\n"); exit (0); +-#else +- printf ("vax-dec-ultrix\n"); exit (0); +-#endif ++# if !defined (ultrix) ++# include ++# if defined (BSD) ++# if BSD == 43 ++ printf ("vax-dec-bsd4.3\n"); exit (0); ++# else ++# if BSD == 199006 ++ printf ("vax-dec-bsd4.3reno\n"); exit (0); ++# else ++ printf ("vax-dec-bsd\n"); exit (0); ++# endif ++# endif ++# else ++ printf ("vax-dec-bsd\n"); exit (0); ++# endif ++# else ++ printf ("vax-dec-ultrix\n"); exit (0); ++# endif + #endif + + #if defined (alliant) && defined (i860) +@@ -1050,12 +1418,12 @@ + } + EOF + +-$CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm $dummy.c $dummy && exit 0 +-rm -f $dummy.c $dummy ++$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && ++ { echo "$SYSTEM_NAME"; exit; } + + # Apollos put the system type in the environment. + +-test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } ++test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + + # Convex versions that predate uname can use getsysinfo(1) + +@@ -1064,25 +1432,69 @@ + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd +- exit 0 ;; ++ exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi +- exit 0 ;; ++ exit ;; + c34*) + echo c34-convex-bsd +- exit 0 ;; ++ exit ;; + c38*) + echo c38-convex-bsd +- exit 0 ;; ++ exit ;; + c4*) + echo c4-convex-bsd +- exit 0 ;; ++ exit ;; + esac + fi + +-#echo '(Unable to guess system type)' 1>&2 ++cat >&2 < in order to provide the needed ++information to handle your system. ++ ++config.guess timestamp = $timestamp ++ ++uname -m = `(uname -m) 2>/dev/null || echo unknown` ++uname -r = `(uname -r) 2>/dev/null || echo unknown` ++uname -s = `(uname -s) 2>/dev/null || echo unknown` ++uname -v = `(uname -v) 2>/dev/null || echo unknown` ++ ++/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` ++/bin/uname -X = `(/bin/uname -X) 2>/dev/null` ++ ++hostinfo = `(hostinfo) 2>/dev/null` ++/bin/universe = `(/bin/universe) 2>/dev/null` ++/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` ++/bin/arch = `(/bin/arch) 2>/dev/null` ++/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` ++/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` ++ ++UNAME_MACHINE = ${UNAME_MACHINE} ++UNAME_RELEASE = ${UNAME_RELEASE} ++UNAME_SYSTEM = ${UNAME_SYSTEM} ++UNAME_VERSION = ${UNAME_VERSION} ++EOF + + exit 1 ++ ++# Local variables: ++# eval: (add-hook 'write-file-hooks 'time-stamp) ++# time-stamp-start: "timestamp='" ++# time-stamp-format: "%:y-%02m-%02d" ++# time-stamp-end: "'" ++# End: diff --git a/office/misc/recode/files/stdlib.patch b/office/misc/recode/files/stdlib.patch new file mode 100644 index 0000000000..db744e1500 --- /dev/null +++ b/office/misc/recode/files/stdlib.patch @@ -0,0 +1,12 @@ +diff -Nur recode-3.6-old/src/argmatch.c recode-3.6/src/argmatch.c +--- recode-3.6-old/src/argmatch.c 2008-05-27 15:17:09.000000000 +0300 ++++ recode-3.6/src/argmatch.c 2008-05-27 15:18:30.000000000 +0300 +@@ -18,6 +18,8 @@ + /* Written by David MacKenzie + Modified by Akim Demaille */ + ++#include ++ + #include "argmatch.h" + + #include diff --git a/office/misc/recode/files/system-aclocal.diff b/office/misc/recode/files/system-aclocal.diff new file mode 100644 index 0000000000..266f3b3e6e --- /dev/null +++ b/office/misc/recode/files/system-aclocal.diff @@ -0,0 +1,12 @@ +diff -Naur recode-3.6-orig/Makefile.am recode-3.6/Makefile.am +--- recode-3.6-orig/Makefile.am 2009-05-15 14:31:12.463908436 +0300 ++++ recode-3.6/Makefile.am 2009-05-15 14:31:31.540660383 +0300 +@@ -18,7 +18,7 @@ + # 02111-1307, USA. + + AUTOMAKE_OPTIONS = gnits +-ACLOCAL = ./aclocal.sh @ACLOCAL@ ++ACLOCAL = /usr/bin/aclocal + ACLOCAL_AMFLAGS = -I m4 + + BABYL = ../rmail/* ../*/rmail/* ../*/*/RMAIL ../*/*/rmail/* diff --git a/office/misc/recode/pspec.xml b/office/misc/recode/pspec.xml new file mode 100644 index 0000000000..a6df9746f7 --- /dev/null +++ b/office/misc/recode/pspec.xml @@ -0,0 +1,92 @@ + + + + + recode + http://www.gnu.org/software/recode/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + File character set converter + Recode can convert files to various character sets (e.g. utf8, iso-8859-1, koi8r..). + http://pkgs.fedoraproject.org/repo/pkgs/recode/recode-3.6.tar.gz/be3f40ad2e93dae5cd5f628264bf1877/recode-3.6.tar.gz + + gettext + libtool + + + recode.patch + recode-3.6-getcwd.patch + recode-bool-bitfield.patch + recode-flex-m4.patch + + stdlib.patch + recode-3.6-gettextfix.diff + + system-aclocal.diff + + + recode-3.6-segfault.patch + recode-automake.patch + + + + + recode + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/locale + + + + + recode-devel + Development files for recode + + recode + + + /usr/include + + + + + + 2016-01-01 + 3.6 + Rebuild for Pisi 2.0 + Stefan Gronewold + groni@pisilinux.org + + + 2014-05-22 + 3.6 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-10 + 3.6 + Rebuild, Url değiş. + Alihan Öztürk + alihan@pisilinux.org + + + 2011-01-03 + 3.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/office/misc/recode/translations.xml b/office/misc/recode/translations.xml new file mode 100644 index 0000000000..4dcd20a9c8 --- /dev/null +++ b/office/misc/recode/translations.xml @@ -0,0 +1,13 @@ + + + + recode + Karakter kümesi dönüşümü aracı + Recode dosyaların bir karakter kümesinden bir başkasına dönüştürülmesine imkân verir. Çok sayıda karakter kümesini destekler. + + + + recode-devel + recode için geliştirme dosyaları + + diff --git a/pisi-index.xml b/pisi-index.xml index 3409c85936..3365e3b72a 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -396,2109 +396,6 @@ screengrab - - - lmdb - http://symas.com/mdb/ - - PisiLinux Community - admins@pisilinux.org - - OpenLDAP - custom - library - app:console - server.database - Symas Lightning Memory-Mapped Database - An ultra-fast, ultra-compact key-value embedded data store. - https://github.com/LMDB/lmdb/archive/LMDB_0.9.16.tar.gz - server/database/lmdb/pspec.xml - - - lmdb - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - lmdb-devel - Development files for lmdb - - lmdb - - - /usr/include - - - - - 2015-08-28 - 0.9.16 - First release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - mariadb - https://mariadb.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:console - server.database - MariaDB is a drop-in replacement for MySQL - Hızlı, çok kullanıcılı ve çok görevli SQL veritabanı sunucusu - MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable SQL server. - MySQL, çoklu iş parçacıklı (multi-threaded), çok kullanıcılı (multi-user), hızlı ve sağlam (robust) bir Veritabanı yönetim sistemidir. Özelllikle basit web uygulamaları için LAMP sistemi içinde sıkça tercih edilmektedir. - ftp://ftp.ulak.net.tr/pub/MariaDB/mariadb-10.0.20/source/mariadb-10.0.20.tar.gz - - ncurses-devel - zlib-devel - libxml2-devel - readline-devel - libevent-devel - openssl-devel - libpcre-devel - libaio-devel - unixODBC-devel - cmake - - server/database/mariadb/pspec.xml - - - mariadb-lib - MariaDB client tools - MySQL istemcileri tarafından gereken paylaşımlı kitaplıklar - app:console - library - - zlib - libgcc - libpcre - libxml2 - openssl - libaio - unixODBC - - - /usr/bin/mysql_config - /usr/include - /usr/lib - /usr/share/mysql/charsets - /usr/share/mysql/czech - /usr/share/mysql/danish - /usr/share/mysql/dutch - /usr/share/mysql/english - /usr/share/mysql/estonian - /usr/share/mysql/french - /usr/share/mysql/german - /usr/share/mysql/greek - /usr/share/mysql/hungarian - /usr/share/mysql/italian - /usr/share/mysql/japanese - /usr/share/mysql/korean - /usr/share/mysql/norwegian - /usr/share/mysql/norwegian-ny - /usr/share/mysql/polish - /usr/share/mysql/portuguese - /usr/share/mysql/romanian - /usr/share/mysql/russian - /usr/share/mysql/serbian - /usr/share/mysql/slovak - /usr/share/mysql/spanish - /usr/share/mysql/swedish - /usr/share/mysql/ukrainian - /usr/share/mysql/errmsg.txt - /usr/share/mysql - - - mysql-lib - - - - mariadb-client - MariaDB client libraries - MariaDB istemci uygulamaları - app:console - - mariadb-lib - libaio - zlib - libgcc - libpcre - ncurses - openssl - - - /usr/bin - - - mysql-client - - - - mariadb-server - MariaDB server and releated files - MariaDB sunucusu ve ilgili dosyalar - service - - mariadb-lib - mariadb-client - zlib - libgcc - openssl - - - /etc - /usr/sbin - /usr/bin/mysql_install_db - /usr/bin/mysqlmanagerc - /usr/bin/mysqlmanager-pwgen - /usr/bin/mysqlmanager - /usr/bin/mysql_secure_installation - /usr/bin/mysql_fix_privilege_tables - /usr/bin/mysqld_safe - /usr/bin/myisamchk - /usr/bin/myisamlog - /usr/bin/myisampack - /usr/bin/myisam_ftdump - /usr/bin/isamchk - /usr/bin/isamlog - /usr/bin/mysql_waitpid - /usr/bin/mysqlbinlog - /usr/bin/pack_isam - /usr/share/mysql/binary-configure - /usr/share/mysql/fill_help_tables.sql - /usr/share/mysql/mysqld_multi.server - /usr/share/mysql/mysql_fix_privilege_tables.sql - /usr/share/mysql/mysql_system_tables_data.sql - /usr/share/mysql/mysql_system_tables.sql - /usr/share/mysql/mysql_test_data_timezone.sql - /usr/share/mysql/ndb-config-2-node.ini - /usr/share/info - /var - /usr/share/doc - /usr/lib/tmpfiles.d/mariadb.conf - /run/mysqld - - - mysql-server - - - System.Service - System.Package - - - my.cnf - tmpfiles.conf - - - - mariadb-man-pages - MariaDB server and client man pages - MariaDB sunucu ve istemci uygulamarına ait kılavuz sayfaları - data - - /usr/share/man - - - mysql-man-pages - - - - - 2015-07-03 - 10.0.20 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-25 - 10.0.17 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-09-25 - 10.0.13 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-09-03 - 5.5.37 - Fix package.py, first create initial db then chown. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-25 - 5.5.37 - Rebuild. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-19 - 5.5.37 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-21 - 5.5.35 - Fix -lprobes_mysql issue - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-18 - 5.5.35 - Fix package.py - Add tmpfiles.conf - Fix replacing mysql - Remove not needed files - Fix and clean actions.py - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-11 - 5.5.35 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - firebird - http://www.firebirdsql.org/ - - PisiLinux Community - admins@pisilinux.org - - IPL-1 - IDPL-1 - LGPLv2.1 - service - library - server.database - A relational database offering many ANSI SQL-99 features - Birçok ANSI SQL-99 özelliği sunan ilişkisel bir veritabanı - Firebird is an open source relational database management system offering many ANSI SQL-99 features. - Birçok ANSI SQL-99 özelliği sunan, küçük, hızlı ve çok kararlı bir veritabanı sunucu. - http://sourceforge.net/projects/firebird/files/firebird/2.5.4-Release/Firebird-2.5.4.26856-0.tar.bz2 - - icu4c-devel - btyacc - libedit-devel - - - editline-dumb-tr.patch - firebird-2.5.1.26351.0-deps-flags.patch - - server/database/firebird/pspec.xml - - - firebird-client - Firebird database client library - Firebird veritabanı istemci kütüphanesi - Firebird relational database client library. - Firebird sunucuya bağlantı için kullanılan istemci kütüphanesi - - libgcc - - - /usr/lib/libfbclient.* - /usr/lib/libgds.* - /usr/lib/libib_util.* - /usr/lib/libfbtrace.so - /opt/firebird/lib/libfbclient.* - /opt/firebird/lib/libgds.* - /opt/firebird/lib/libib_util.* - /opt/firebird/plugins/libfbtrace.so - - - - firebird-superserver - Firebird super server - Firebird veritabanı sunucusu - Firebird veritabanı için super sunucu. Klasik sunucu mimarisine göre, SMP performansı daha fazladır. - - firebird-client - icu4c - libedit - libgcc - - - /etc/firebird - /etc/env.d/50firebird - /opt/firebird/*.conf - /opt/firebird/*.msg - /opt/firebird/security2.fdb - /opt/firebird/README - /opt/firebird/WhatsNew - /opt/firebird/UDF - /opt/firebird/bin - /opt/firebird/doc - /opt/firebird/examples - /opt/firebird/help - /opt/firebird/intl - /opt/firebird/lib/libicu* - /opt/firebird/upgrade - /opt/firebird/firebird.log - /opt/firebird - /run/firebird - - - System.Service - System.Package - - - hosts.equiv - 50firebird - - - - firebird-devel - Development files for firebird - Firebird için geliştirme dosyaları - - firebird-client - - - /usr/include/firebird - - - - - 2015-07-03 - 2.5.4.26856 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-19 - 2.5.2.26540 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-14 - 2.5.2.26539 - Rebuild for icu4c - Ertan Güven - ertan@pisilinux.org - - - 2013-03-20 - 2.5.2.26539 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-10-15 - 2.5.1.26351 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libtdb - http://tdb.samba.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - app:console - server.database - Trivial database library - TDB veritabanına erişim için gerekli kitaplıklar - libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other. - libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir. - http://www.samba.org/ftp/tdb/tdb-1.3.7.tar.gz - - libxslt - python-devel - docbook-xsl - libbsd-devel - - server/database/libtdb/pspec.xml - - - libtdb - - python - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libtdb-devel - Development files for libtdb - libtdb için geliştirme dosyaları - - libtdb - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-07-30 - 1.3.7 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 1.2.13 - rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-26 - 1.2.13 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-09 - 1.2.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-18 - 1.2.11 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.2.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - postgresql - http://www.postgresql.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - server.database - A powerful, open source relational database system - Güçlü bir açık kaynaklı ilişkisel veritabanı sistemi - PostgreSQL is a powerful, open source relational database system. - PostgreSQL, açık kaynak kodlu, güçlü bir ilişkisel veritabanıdır - https://ftp.postgresql.org/pub/source/v9.3.9/postgresql-9.3.9.tar.bz2 - - mit-kerberos - e2fsprogs-devel - pam-devel - readline-devel - zlib-devel - python-devel - openssl-devel - tcl-devel - libxslt-devel - libxml2-devel - openldap-server - - server/database/postgresql/pspec.xml - - - postgresql-lib - Essential shared libraries for any PostgreSQL client program or interface - library - - mit-kerberos - python - zlib - libxml2 - openssl - e2fsprogs - libxslt - openldap-client - - - /usr/lib - /usr/include - /usr/share/postgresql - /usr/bin/pg_config - - - - postgresql-doc - Postgresql documents - Postegresql belgeleri - Additional documentation for PostgreSQL. - PostegreSQL için ek belgelendirme - data:doc - - postgresql-lib - - - /usr/share/doc - - - - postgresql-server - service - - postgresql-lib - pam - zlib - libxml2 - openssl - readline - e2fsprogs - mit-kerberos - openldap-client - - - /etc - /usr/bin - /usr/share/locale - /usr/share/postgresql/contrib - /usr/share/man - /var/lib - - - System.Package - System.Service - - - postgresql.conf-8 - - - - postgresql-pl - - postgresql-lib - tcl - perl - - - /usr/bin/pltcl_listmod - /usr/bin/pltcl_loadmod - /usr/bin/pltcl_delmod - /usr/lib/postgresql/plperl.so - /usr/lib/postgresql/plpython.so - /usr/lib/postgresql/pltcl.so - /usr/share/postgresql/unknown.pltcl - - - - - 2015-07-03 - 9.3.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-19 - 9.3.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 9.3.3 - Rebuild for webp. - Kamil Atlı - suvarice@gmail.com - - - 2014-02-21 - 9.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-17 - 9.3.1 - Fix demp - Richard de Bruin - richdb@pisilinux.org - - - 2013-11-15 - 9.3.1 - Version bump - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-02-25 - 9.2.3 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-10-04 - 9.2.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - bind - http://www.isc.org/products/BIND/bind9.html - - PisiLinux Community - admins@pisilinux.org - - as-is - service - server - The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server - Berkeley İnternet İsim Alanı (BIND) DNS (Alan Adı Sistemi) sunucusu - bind is an implementation of the DNS protocols, bind includes a DNS server (named), a resolver library and tools for verifying that the DNS server is operating properly. - bind, DNS protokollerinin gerçeklenimidir. DNS sunucu (named) ve bu sunucunun düzgün çalışması ve doğrulamasını yapılması için gerekli çözümleyici kitaplık ve araçları içerir. - ftp://ftp.isc.org/isc/bind9/9.10.2/bind-9.10.2.tar.gz - - openssl-devel - libxml2-devel - libcap-devel - zlib-devel - e2fsprogs-devel - readline-devel - geoip-devel - - - nslookup-pisilinux.patch - fedora/bind-9.5-PIE.patch - fedora/bind-9.5-parallel-build.patch - fedora/bind-96-libtool2.patch - fedora/bind-95-rh452060.patch - fedora/bind93-rh490837.patch - fedora/bind97-rh478718.patch - fedora/bind97-rh645544.patch - fedora/bind97-rh693982.patch - - server/bind/pspec.xml - - - bind-libs - bind-libs contains the libraries used by both the bind server package and the tools package - bind kitaplık dosyaları - library - server.library - - openssl - libxml2 - mit-kerberos - - - /usr/lib - - - - bind-devel - bind header and development files - bind geliştirme başlıkları ve araçları - library - server.library - - bind-libs - - - /usr/include - /usr/bin/isc-config.sh - /usr/share/man/man1/isc-config* - /usr/share/man/man3/lwres* - - - - bind-tools - Utilities for querying DNS name servers - DNS isim çözümleme araçları - app:console - network.analyzer - - bind-libs - readline - mit-kerberos - - - /usr/bin - /usr/share/man/man1 - - - - bind-chroot - A chroot runtime environment for the ISC BIND DNS server 'named' - bind sunucusunu chroot içinde çalıştırmak için gerekli dizin ve dosyalar - service - - bind - - - /etc/rsyslog.d/bind_chroot.conf - /var/named/chroot/etc - /var/named/chroot - - - System.Package - System.Service - - - chroot.rsyslog - - - - bind - service - - bind-libs - libcap - libxml2 - openssl - - - /etc - /usr/sbin - /var - /usr/share/man/man3 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc - - - System.Service - System.Package - - - named.conf - named.confd - gentoo/named.ca - gentoo/127.zone - gentoo/localhost.zone - fedora/named.logrotate - - - - - 2015-05-08 - 9.10.2 - Version bump - Vedat Demir - vedat@pisilinux.org - - - 2014-05-24 - 9.10.0 - Version bump - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-01-24 - 9.9.4 - Rebuild for unused link - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-16 - 9.9.4 - Version bump - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-04-23 - 9.9.2 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-10-14 - 9.9.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - openssh - http://www.openssh.com/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - service - server - Port of OpenBSD's free SSH release - OpenBSD'den aktarılmış SSH sürümü - OpenSSH est une version libre des outils de connexion SSH sur lesquels les utilisateurs techniquement chevronnés s'appuient. Les utilisateurs de telnet, rlogin et ftp ne se rendent peut être pas compte que les mots de passe sont transmis sur internet en clair. OpenSSH crypte tout le trafic (y compris les mots de passe) pour éliminer les écoutes passives, les détournements de connexion et autres attaques. - OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on. Users of telnet, rlogin, and ftp may not realize that their password is transmitted across the Internet unencrypted, but it is. OpenSSH encrypts all traffic (including passwords) to effectively eliminate eavesdropping, connection hijacking, and other attacks. - OpenSSH teknik internet kullanıcıların güvendikleri SSH bağlanırlık araçlarının Özgür (free) sürümüdür.telnet, rlogin ve ftp kullanıcıları parolalarının internetten şifresiz olarak aktarıldığını anlayamayabilirler ancak aktarılmaktadır.OpenSSH eavesdropping (iletişim kanalını dinleme), connection hijacking (bağlantı çalma) ve diğer atakları önlemek için tüm bağlantı trafiğini (parolalar dahil) şifrelemektedir. - http://ftp.icm.edu.pl/pub/OpenBSD/OpenSSH/portable/openssh-6.8p1.tar.gz - - libedit-devel - zlib-devel - openssl-devel - mit-kerberos - skey-devel - pam-devel - e2fsprogs-devel - - server/openssh/pspec.xml - - - openssh - - libedit - zlib - openssl - mit-kerberos - skey - pam - - - /etc - /usr/bin - /usr/sbin - /usr/libexec - /usr/lib - /usr/share/openssh - /var/empty - /usr/share/man - /usr/share/doc - - - System.Service - - - sshd.pam - - - - - 2015-04-23 - 6.8_p1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-13 - 6.7_p1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-21 - 6.6_p1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-10 - 6.6_p1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-22 - 6.4_p1 - Version bump - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2012-10-30 - 6.1_p1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - openldap - http://www.openldap.org - - PisiLinux Community - admins@pisilinux.org - - OPENLDAP - server - Open-source suite of LDAP applications and development tools - LDAP uygulamaları ve geliştirme araçları - OpenLDAP is an open-source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools - LDAP hizmeti için gereken uygulamalar ve geliştirme araçlarını içerir - ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.41.tgz - - nss-devel - db-devel - openssl-devel - tcp-wrappers-devel - cyrus-sasl-devel - libtool-ltdl - groff - - - openldap-2.4.39-blfs_paths-1.patch - openldap-2.4.39-symbol_versions-1.patch - openldap-2.4.39-ntlm-1.patch - fedora/openldap-sql-linking.patch - fedora/openldap-reentrant-gethostby.patch - fedora/openldap-ldaprc-currentdir.patch - fedora/openldap-userconfig-setgid.patch - fedora/openldap-syncrepl-unset-tls-options.patch - fedora/openldap-nss-update-list-of-ciphers.patch - fedora/openldap-tls-no-reuse-of-tls_session.patch - fedora/openldap-nss-regex-search-hashed-cacert-dir.patch - fedora/openldap-nss-ignore-certdb-type-prefix.patch - fedora/openldap-nss-certs-from-certdb-fallback-pem.patch - fedora/openldap-nss-pk11-freeslot.patch - fedora/openldap-switch-to-lt_dlopenadvise-to-get-RTLD_GLOBAL-set.patch - fedora/openldap-ldapi-sasl.patch - fedora/openldap-autoconf-pkgconfig-nss.patch - - server/openldap/pspec.xml - - - openldap-client - Command-line ldap client commands (ldapsearch, ldapadd etc..) - library - app:console - - nss - nspr - cyrus-sasl - - - /etc/openldap/ldap.conf* - /usr/include - /usr/bin - /usr/lib - /usr/share/man/man1 - /usr/share/man/man5/ldap.conf.5 - - - - openldap-server - OpenLDAP server slapd and releated tools - OpenLDAP server slapd, additional backends, configuration files, schema definitions required for operation, and database maintenance tools - service - - db - perl - tcp-wrappers - libtool-ltdl - nss - cyrus-sasl - openldap-client - - - /etc/conf.d - /etc/openldap - /usr/lib/tmpfiles.d/openldap-server.conf - /usr/sbin - /usr/libexec - /usr/share/man/man3 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc - /var/lib - /run/openldap - - - System.Package - System.Service - - - tmpfiles.conf - slapd.conf - gencert.sh - - - - openldap-32bit - 32-bit shared libraries for openldap - openldap için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - openssl-32bit - glibc-32bit - libtool-ltdl-32bit - - - glibc-32bit - openssl-32bit - openldap-client - - - /usr/lib32 - - - - - 2015-07-01 - 2.4.41 - Release bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-17 - 2.4.39 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-03 - 2.4.39 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-09 - 2.4.38 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-20 - 2.4.33 - ignore cyrus - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-09-19 - 2.4.33 - First release - PisiLinux Community - admins@pisilinux.org - - - 2012-09-19 - 2.4.32 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libvncserver - http://libvncserver.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - server.misc - Library for creating VNC (Virtual Network Computing) servers - VNC sunucu oluşturmak için kütüphane - Biblioteka do łatwego implementowania serwera VNC - libvncserver provides a C library to create VNC servers. - VNC sunucu benzeri kendi VNC (Virtual Network Computing) sunucunuzu oluşturmak isterseniz gerekli kütüphane - Wieloplatformowa biblioteka C, pozwalającą na łatwą implementację trybu serwera lub klienta VNC (Virtual Network Computing) we własnym programie. - mirrors://sourceforge/libvncserver/LibVNCServer-0.9.9.tar.gz - - gnutls-devel - libjpeg-turbo-devel - libgcrypt-devel - libpng-devel - - server/misc/libvncserver/pspec.xml - - - libvncserver - - zlib - libpng - libgcrypt - gnutls - libjpeg-turbo - - - /usr/bin/*-config - /usr/lib - - - - libvncserver-devel - Development files for libvncserver - libvncserver için geliştirme dosyaları - Pliki nagłówkowe libvncserver - - libvncserver - zlib-devel - libpng-devel - libgcrypt-devel - gnutls-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-06-14 - 0.9.9 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 0.9.9 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-28 - 0.9.9 - Release bump - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-07-30 - 0.9.9 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-10-17 - 0.9.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - dhcp - http://www.isc.org/products/DHCP - - PisiLinux Community - admins@pisilinux.org - - isc-dhcp - app:console - library - service - server - DHCP Sunucusu - DHCP-Server - Dynamic host configuration protocol software - DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. - IP adresi atanmasını ve TCP/IP bilgilerinin yapılandırılmasını sağlayan DHCP Sunucusu - http://ftp.isc.org/isc/dhcp/4.3.0/dhcp-4.3.0.tar.gz - - groff - openldap-client - bind-devel - - - dhcp-4.2.0-release-by-ifup.patch - dhcp-4.2.0-dhclient-decline-backoff.patch - dhcp-4.2.0-unicast-bootp.patch - dhcp-4.2.0-default-requested-options.patch - dhcp-4.2.0-paths.patch - dhcp-4.2.0-inherit-leases.patch - dhcp-4.2.0-garbage-chars.patch - dhcp-4.2.0-IFNAMSIZ.patch - dhcp-4.2.0-add_timeout_when_NULL.patch - dhcp-4.2.0-logpid.patch - dhcp-4.2.0-sendDecline.patch - dhcp-4.2.1-retransmission.patch - dhcp-4.2.0-honor-expired.patch - dhcp-4.3.0a1-PPP.patch - dhcp-4.2.0-P2-omapi.patch - - server/dhcp/pspec.xml - - - dhcp - - openldap-client - bind-libs - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /var/lib - /run - /usr/share/man - /usr/share/doc - - - System.Service - System.Service - System.Service - System.Package - - - dhcpd - dhcpd6 - dhcrelay - dhcpd.conf - - - - dhclient - Provides the dhclient ISC DHCP client daemon - DHCP İstemcisi - app:console - - dhcp - bind-libs - - - /etc/dhcp/dhclient.conf - /usr/sbin/dhclient - /var/lib/dhclient - /usr/share/man/man5/dhclient* - /usr/share/man/man8/dhclient* - /usr/share/man/man5/dhcp-options* - /usr/share/man/man5/dhcp-eval* - /usr/share/doc/dhcp/dhclient* - - - dhclient.conf - - - - dhcp-devel - Development files for dhcp - dhcp için geliştirme dosyaları - - dhcp - - - /usr/include - /usr/share/man/man3 - - - - - 2014-05-19 - 4.3.0 - Version Bump - Vedat Demir - vedat@pisilinux.org - - - 2014-01-22 - 4.2.5 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-14 - 4.2.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - samba - http://www.samba.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - server - A suite of SMB and CIFS client/server programs for UNIX - Linux için Windows ağ paylaşım servisi - samba is a free software implementation of Microsoft's networking protocol released under the GNU General Public License. As of version 3, Samba not only provides file and print services for various Microsoft Windows clients but can also integrate with a Windows Server domain, either as a Primary Domain Controller (PDC) or as a Domain Member. It can also be part of an Active Directory domain. - Samba, Linux ve Unix işletim sistemleri ile Windows NT ve Windows 9x işletim sistemleri arasındaki iletişimi sağlayan bir ağ sunucusu uygulamasıdır. Samba yalnızca Linux ve windows makinaların birbirlerini görmelerini sağlamaz aynı zamanda Linux çalıştıran bilgisayarların windows ağında yazıcı sunucusu gibi işlevleri edinmesi içinde kullanılır. Ayrıca Active Directory ile de uyumludur. - http://us1.samba.org/samba/ftp/stable/samba-4.2.3.tar.gz - - keyutils - acl-devel - pam-devel - attr-devel - popt-devel - zlib-devel - libcap-devel - python-devel - ncurses-devel - readline-devel - e2fsprogs-devel - libgcrypt-devel - libbsd-devel - avahi-libs - cups-devel - avahi-devel - gnutls-devel - libaio-devel - mit-kerberos - iniparser-devel - libtalloc-devel - libtevent-devel - openldap-client - libarchive-devel - nss-devel - docbook-xsl - libxslt - libtdb-devel - cyrus-sasl-devel - - server/samba/pspec.xml - - - samba - - acl - pam - attr - popt - zlib - libcap - python - ncurses - readline - e2fsprogs - libgcrypt - libarchive - cups - avahi - gdb - gnutls - libbsd - libaio - keyutils - iniparser - libtalloc - libtevent - avahi-libs - openldap-client - cyrus-sasl - libtdb - - - /run - /etc - /var/lib - /var/log - /usr/lib - /sbin - /usr/share/man - /usr/bin - /usr/sbin - /lib/security - /usr/share/samba - /usr/share/perl5 - /var/cache/samba - /var/run/ctdb - /usr/share/locale - /usr/lib/tmpfiles.d/samba.conf - - - System.Package - System.Service - - - lmhosts - samba.pam - smbusers - smb.conf - samba.confd - tmpfiles.conf - system-auth-winbind - - - - samba-devel - Development files for samba - samba için geliştirme dosyaları - - libtalloc-devel - libtevent-devel - samba - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-30 - 4.2.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-25 - 4.1.16 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-07-04 - 4.1.9 - Version Bump and security update(CVE-2014-0244, CVE-2014-3493). - Vedat Demir - vedat@pisilinux.org - - - 2014-06-04 - 4.1.8 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-20 - 4.1.7 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-04-25 - 4.1.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-04 - 4.1.6 - Fix build with readline6.3 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-13 - 4.1.6 - Version bump, remove swat package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-10 - 4.1.3 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-09 - 4.1.3 - Version bump. Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-16 - 4.1.1 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-07-07 - 4.0.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-18 - 3.6.12 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2011-09-09 - 3.5.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - apache - http://httpd.apache.org/ - - Pisi Linux Admins - admins@pisilinux.org - - Apache-2.0 - service - server.web - Apache web sunucusu - Apache Webserver - Apache web server - Apache HTTP Server is a free software/open source web server for Unix-like systems, Microsoft Windows, Novell NetWare and other operating systems. Apache is notable for playing a key role in the initial growth of the World Wide Web, and continues to be the most popular web server in use, serving as the de facto reference platform against which other web servers are designed and judged. - Dünyanın en çok tercih edilen web sunucu olan Apache artık diğer genelağ sunucularının standartlarını belirlemek için takip ettiği hızlı, güçlü, esnek ve yüksek özelleştirilebilirliğe sahip bir genelağ sunucusudur. - http://archive.apache.org/dist/httpd/httpd-2.4.16.tar.bz2 - - apr-devel - nss-devel - lua-devel - zlib-devel - openssl-devel - libxml2-devel - db-devel - expat-devel - libpcre-devel - apr-util-devel - cyrus-sasl-devel - - server/web/apache/pspec.xml - - - apache - - nss - apr - lua - apr-util - cyrus-sasl - openldap-client - zlib - openssl - libxml2 - libpcre - db - expat - - - /etc - /usr/sbin - /usr/bin - /usr/include - /var/log/apache2 - /var/www - /run/apache2 - /var/cache - /usr/share/doc - /usr/share/man - /usr/lib - /lib/systemd/system - - - System.Package - System.Service - - - apache.service - apache2.confd - httpd.conf - 00_default_vhost.conf - 00_apache_manual.conf - 40_mod_ssl.conf - 41_mod_ssl.default-vhost.conf - 45_mod_dav.conf - 46_mod_ldap.conf - webroot/apache.css - webroot/apache_pb.gif - webroot/index.html - webroot/index-tr.html - webroot/index-ptbr.html - webroot/index-es.html - webroot/index-de.html - webroot/pisi-linux.png - - - - - 2015-09-04 - 2.4.16 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-01 - 2.4.12 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-12-20 - 2.4.10 - Rebuild for lua. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-10-02 - 2.4.10 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-30 - 2.4.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-11 - 2.4.6 - Rebuild for cyrus-sasl - Kamil Atlı - suvarice@gmail.com - - - 2013-12-30 - 2.4.6 - Rebuild - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-11-16 - 2.4.6 - Version Bump - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-04-23 - 2.4.3 - Dep fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-02-17 - 2.4.3 - Cosmetic corrections - Ertan Güven - ertan@pisilinux.org - - - 2012-10-07 - 2.4.3 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libpwquality - https://fedorahosted.org/libpwquality/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - server.auth - Password quality checking - The libpwquality package contains a library used for password quality checking and generation of random passwords that pass the checks. - https://fedorahosted.org/releases/l/i/libpwquality/libpwquality-1.2.4.tar.bz2 - - cracklib-devel - pam-devel - - server/auth/libpwquality/pspec.xml - - - libpwquality - - cracklib - pam - - - /lib - /etc/security - /usr/lib - /usr/share/man/man1 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc/libpwquality - /usr/share/locale - /usr/bin - - - - libpwquality-devel - libpwquality için geliştirme dosyaları - libpwquality için geliştirme dosyaları - - libpwquality - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-23 - 1.2.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-01 - 1.2.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-20 - 1.2.2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-12 - 1.2.2 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 1.2.1 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-04 - 1.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-01 - 1.2.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - mit-kerberos - http://web.mit.edu/kerberos/www/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - app:console - server.auth - MIT Kerberos Library - MIT Kerberos kütüphanesi - Kerberos is a network authentication protocol. It is designed to provide strong authentication for client/server applications by using secret-key cryptography. - Kerberos bir ağ doğrulama protokolüdür. Sunucu/istemci uygulamalarında, gizli anahtar kriptoloji teknolojisini kullanarak, güçlü bir doğrulama sağlar. - http://source.pisilinux.org/1.0/krb5-1.13.1.tar.gz - - keyutils - openssl-devel - e2fsprogs-devel - - - krb5-config_LDFLAGS.patch - rebuild-configure-scripts.patch - fix-python-detection.patch - - server/auth/mit-kerberos/pspec.xml - - - mit-kerberos - - keyutils - openssl - e2fsprogs - - - /etc - /usr/include - /usr/bin - /usr/sbin - /usr/lib - /usr/share - /var/lib - /usr/share/info - /usr/share/man - - - krb5.conf - kdc.conf - - - - - 2015-04-23 - 1.13.1 - Version bump,fix deps. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-13 - 1.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-17 - 1.12.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-22 - 1.11.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-20 - 1.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-27 - 1.10.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - cyrus-sasl - http://asg.web.cmu.edu/sasl/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - service - server.auth - The Cyrus SASL (Simple Authentication and Security Layer) - Cyrus basit kimlik tanımlama ve güvenlik katmanı - cyrus-sasl is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols. To use SASL, a protocol includes a command for identifying and authenticating a user to a server and for optionally negotiating protection of subsequent protocol interactions. - Cyrus-sasl, bağlantı tabanlı protokoller için kullanılan bir kimlik doğrulama uygulamasıdır. Çoğunlukla Smtp doğrulaması için kullanılır. - http://cyrusimap.org/releases/cyrus-sasl-2.1.26.tar.gz - - mit-kerberos - pam-devel - gdbm-devel - e2fsprogs-devel - openssl-devel - groff - - - CVE-2013-4122.patch - 0011_saslauthd_ac_prog_libtool.patch - 0025_ld_as_needed.patch - 0026_drop_krb5support_dependency.patch - 0030-dont_use_la_files_for_opening_plugins.patch - cyrus-sasl-2.1.20-saslauthd.conf-path.patch - cyrus-sasl-2.1.21-sizes.patch - cyrus-sasl-2.1.22-as-needed.patch - cyrus-sasl-2.1.22-qa.patch - cyrus-sasl-2.1.22-kerberos4.patch - cyrus-sasl-2.1.22-ldap-timeout.patch - cyrus-sasl-2.1.23-man.patch - cyrus-sasl-2.1.26-keytab.patch - cyrus-sasl-2.1.26-no_rpath.patch - cyrus-sasl-2.1.26-obsolete-macro.patch - cyrus-sasl-2.1.26-prefer-SCRAM-SHA-1-over-PLAIN.patch - cyrus-sasl-2.1.26-relro.patch - cyrus-sasl-2.1.26-size_t.patch - cyrus-sasl-2.1.26-warnings.patch - - server/auth/cyrus-sasl/pspec.xml - - - cyrus-sasl - - mit-kerberos - pam - gdbm - e2fsprogs - openssl - - - /etc - /usr/lib/tmpfiles.d/cyrus-sasl.conf - /usr/sbin - /usr/lib - /usr/share/cyrus-sasl-2 - /run - /usr/share/man - /usr/share/doc - - - System.Service - System.Package - - - saslauthd.confd - saslauthd.pam - tmpfiles.conf - - - - cyrus-sasl-devel - Development files for cyrus-sasl - cyrus-sasl için geliştirme dosyaları - - cyrus-sasl - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/cyrus-sasl/*.txt - /usr/share/man/man3 - - - - - 2014-07-05 - 2.1.26 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-09 - 2.1.26 - Version bump. Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 2.1.25 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-05-05 - 2.1.25 - Added some patches and remove unused. - Aydın Demirel - aydin@demirel.web.tr - - - 2013-04-25 - 2.1.25 - Dep Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2012-09-29 - 2.1.25 - First release - PisiLinux Community - admins@pisilinux.org - - - perf @@ -3162,598 +1059,6 @@ - - - module-fglrx - http://ati.amd.com/support/driver.html - - PisiLinux Community - admins@pisilinux.org - - ATI - kernel.drivers - Pilote d'affichage ATI - ATI display drivers. - ATI ekran kartı sürücüleri - Controlador display ATI - Fglrx is a driver written by AMD(ATI) for ATI graphics cards.Radeons HD 2 3 4 X series are not supported - AMD(ATI) tarafından ATI ekran kartları için yazılmış sürücüler.Radeon HD 2 3 4 X serisi ekran kartlarını desteklememektedir. - http://archive.ubuntu.com/ubuntu/pool/restricted/f/fglrx-installer/fglrx-installer_15.200.orig.tar.gz - - desktop-files.patch - makefile_compat.patch - fglrx_gpl_symbol.patch - kolasa_4.0-cr4-strn.patch - lano1106_fglrx_intel_iommu.patch - lano1106_kcl_agp_13_4.patch - LICENSE.TXT - - - kernel-module-headers - - kernel/drivers/module-fglrx/pspec.xml - - - module-fglrx - Kernel module for ATI display drivers - ATI ekran sürücüleri için çekirdek modülü - driver - - noDelta - - - kernel - - - /lib/modules - /etc/conf.d - /etc/modprobe.d - - - module-fglrx-legacy - - - blacklist-fglrx.conf - modprobe.conf - atieventsd - - - - xorg-video-fglrx - ATI ekran kartı sürücüleri için paylaşımlı kitaplıklar ve araçlar - driver - x11.driver - - noDelta - - - qt - mesa - libSM - libICE - uClibc - libXext - libXrandr - libXfixes - libXcursor - libXrender - fontconfig - libXxf86vm - libXinerama - xorg-server - - module-fglrx - - - - /usr/share - /etc - /usr/bin - /usr/sbin - /usr/X11R6 - /usr/lib - /usr/share/doc - /usr/share/man - - - xorg-video-fglrx-legacy - - - System.Package - System.Service - - - - xorg-video-fglrx-32bit - 32-bit shared libraries for xorg-video-fglrx - xorg-video-fglrx için 32-bit paylaşımlı kitaplıklar - emul32 - - noDelta - - emul32 - - xvba-video-32bit - fontconfig-32bit - freetype-32bit - libXcursor-32bit - libXext-32bit - libXfixes-32bit - libXinerama-32bit - libXrandr-32bit - libXrender-32bit - libXxf86vm-32bit - libX11-32bit - glibc-32bit - - - xorg-video-fglrx - libXext-32bit - libX11-32bit - mesa-32bit - glibc-32bit - libgcc - - - /usr/lib32 - - - xorg-video-fglrx-legacy-32bit - - - System.Package - - - - - 2015-05-26 - 15.20 - Rebuild for kernel-3.19.8 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-05 - 15.20 - Rebuild for kernel-3.19.6 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-24 - 15.20 - Rebuild for kernel-3.19.5 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-16 - 15.20 - Rebuild for kernel-3.19.4 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-02 - 15.20 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-03-01 - 14.12 - Rebuild for kernel-3.19.1 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-01 - 14.12 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-01 - 14.12 - Version bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2015-01-20 - 14.9 - Rebuild for kernel 3.18.1 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-12-08 - 14.9 - Rebuild for kernel 3.17.4 - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-10-19 - 14.9 - Update unoffical release - * working with xorg-server 1.16 - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-09-03 - 14.6 - Rebuild for kernel 3.16.1 - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-07-24 - 14.6 - Rebuil for kernel 3.15.6 - Vedat Demir - vedat@pisilinux.org - - - 2014-06-15 - 14.6 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-02 - 14.4 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-02 - 14.3b - Rebuild for kernel 3.14.2. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-04-15 - 14.3b - Rebuild for kernel 3.13.10. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-04-11 - 14.3b - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2014-03-23 - 13.4 - Rebuild for 3.13.6 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-09 - 13.4 - Rebuild for 3.12.13 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-02 - 13.4 - Rebuild for 3.12.13 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-17 - 13.4 - Rebuild for 3.12.8 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-17 - 13.4 - Rebuild for 3.12.5 - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-12-14 - 13.4 - Rebuild for 3.12.5 - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-23 - 13.4 - Rebuild for 3.10.20 - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-05 - 13.4 - Rebuild for 3.10.18 - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-30 - 13.4 - 3.10.15 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 13.4 - 3.10.13 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 13.4 - 3.10.12 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 13.4 - 3.10.10 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-20 - 13.4 - 3.10.9 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-20 - 13.4 - rebuild for kernele 3.10.6. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-06 - 13.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-15 - 13.3_beta3 - build for Kernel 3.8.13 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-06-15 - 13.3_beta3 - rebuild for Kernel 3.8.13 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-05-26 - 13.3_beta3 - Kernel 3.9.3 - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-12 - 13.3_beta3 - V.bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-10-03 - 12.9_beta1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - module-nvidia340 - http://www.nvidia.com - - Pisi Linux Community - admins@pisilinux.org - - NVIDIA - kernel.drivers - NVIDIA drivers for GeForce 6xxx and newer GPUs - NVIDIA graphics drivers provide optimized 2D/3D performance. - http://http.download.nvidia.com/XFree86/Linux-x86/340.96/NVIDIA-Linux-x86-340.96.run - http://http.download.nvidia.com/XFree86/Linux-x86_64/340.96/NVIDIA-Linux-x86_64-340.96.run - - kernel-module-headers - - kernel/drivers/module-nvidia340/pspec.xml - - - module-nvidia340 - Kernel module for NVIDIA driver 340.xx releases - driver - - noDelta - - - kernel - - - /lib/modules - - - - xorg-video-nvidia340 - driver - x11.driver - - noDelta - - - libXext - xorg-server - module-nvidia340 - libX11 - - - /etc/OpenCL - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/man - - - xorg-video-nvidia-current - xorg-video-nvidia304 - - - System.Package - - - - xorg-video-nvidia340-32bit - 32-bit shared libraries for xorg-video-nvidia340 - emul32 - - noDelta - - emul32 - - libvdpau-32bit - glibc-32bit - - - zlib-32bit - libX11-32bit - libXext-32bit - glibc-32bit - xorg-video-nvidia340 - - - /usr/lib32 - /usr/share/nvidia-current/32bit-ld.so.conf - - - xorg-video-nvidia-current-32bit - xorg-video-nvidia304-32bit - - - System.Package - - - - - 2015-12-13 - 340.96 - Version bump for kernel 4.3.2 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-22 - 340.76 - Rebuild for kernel 3.19.8 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-05 - 340.76 - Rebuild for kernel 3.19.6 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-24 - 340.76 - Rebuild for kernel 3.19.5 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-16 - 340.76 - Rebuild for kernel 3.19.4 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-02 - 340.76 - Rebuid for kernel 3.19.3 - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-03-08 - 340.76 - Rebuild for kernel 3.19.1 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-01 - 340.76 - Version bump, Rebuild for kernel 3.19.0 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-31 - 340.76 - Version bump, Rebuild for kernel 3.18.3 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-13 - 340.65 - version bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-12-08 - 340.58 - Rebuild for kernel 3.17.4 - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-11-13 - 340.58 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - module-nvidia304 @@ -4039,6 +1344,186 @@ + + + module-nvidia340 + http://www.nvidia.com + + Pisi Linux Community + admins@pisilinux.org + + NVIDIA + kernel.drivers + NVIDIA drivers for GeForce 6xxx and newer GPUs + NVIDIA graphics drivers provide optimized 2D/3D performance. + http://http.download.nvidia.com/XFree86/Linux-x86/340.96/NVIDIA-Linux-x86-340.96.run + http://http.download.nvidia.com/XFree86/Linux-x86_64/340.96/NVIDIA-Linux-x86_64-340.96.run + + kernel-module-headers + + kernel/drivers/module-nvidia340/pspec.xml + + + module-nvidia340 + Kernel module for NVIDIA driver 340.xx releases + driver + + noDelta + + + kernel + + + /lib/modules + + + + xorg-video-nvidia340 + driver + x11.driver + + noDelta + + + libXext + xorg-server + module-nvidia340 + libX11 + + + /etc/OpenCL + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/man + + + xorg-video-nvidia-current + xorg-video-nvidia304 + + + System.Package + + + + xorg-video-nvidia340-32bit + 32-bit shared libraries for xorg-video-nvidia340 + emul32 + + noDelta + + emul32 + + libvdpau-32bit + glibc-32bit + + + zlib-32bit + libX11-32bit + libXext-32bit + glibc-32bit + xorg-video-nvidia340 + + + /usr/lib32 + /usr/share/nvidia-current/32bit-ld.so.conf + + + xorg-video-nvidia-current-32bit + xorg-video-nvidia304-32bit + + + System.Package + + + + + 2015-12-13 + 340.96 + Version bump for kernel 4.3.2 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-22 + 340.76 + Rebuild for kernel 3.19.8 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-05 + 340.76 + Rebuild for kernel 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-24 + 340.76 + Rebuild for kernel 3.19.5 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 340.76 + Rebuild for kernel 3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 340.76 + Rebuid for kernel 3.19.3 + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-08 + 340.76 + Rebuild for kernel 3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 340.76 + Version bump, Rebuild for kernel 3.19.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-31 + 340.76 + Version bump, Rebuild for kernel 3.18.3 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-13 + 340.65 + version bump + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-12-08 + 340.58 + Rebuild for kernel 3.17.4 + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-11-13 + 340.58 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + module-nvidia-current @@ -4494,624 +1979,593 @@ - wcslib - http://www.atnf.csiro.au/people/Mark.Calabretta/WCS/ + module-fglrx + http://ati.amd.com/support/driver.html + + PisiLinux Community + admins@pisilinux.org + + ATI + kernel.drivers + Pilote d'affichage ATI + ATI display drivers. + ATI ekran kartı sürücüleri + Controlador display ATI + Fglrx is a driver written by AMD(ATI) for ATI graphics cards.Radeons HD 2 3 4 X series are not supported + AMD(ATI) tarafından ATI ekran kartları için yazılmış sürücüler.Radeon HD 2 3 4 X serisi ekran kartlarını desteklememektedir. + http://archive.ubuntu.com/ubuntu/pool/restricted/f/fglrx-installer/fglrx-installer_15.200.orig.tar.gz + + desktop-files.patch + makefile_compat.patch + fglrx_gpl_symbol.patch + kolasa_4.0-cr4-strn.patch + lano1106_fglrx_intel_iommu.patch + lano1106_kcl_agp_13_4.patch + LICENSE.TXT + + + kernel-module-headers + + kernel/drivers/module-fglrx/pspec.xml + + + module-fglrx + Kernel module for ATI display drivers + ATI ekran sürücüleri için çekirdek modülü + driver + + noDelta + + + kernel + + + /lib/modules + /etc/conf.d + /etc/modprobe.d + + + module-fglrx-legacy + + + blacklist-fglrx.conf + modprobe.conf + atieventsd + + + + xorg-video-fglrx + ATI ekran kartı sürücüleri için paylaşımlı kitaplıklar ve araçlar + driver + x11.driver + + noDelta + + + qt + mesa + libSM + libICE + uClibc + libXext + libXrandr + libXfixes + libXcursor + libXrender + fontconfig + libXxf86vm + libXinerama + xorg-server + + module-fglrx + + + + /usr/share + /etc + /usr/bin + /usr/sbin + /usr/X11R6 + /usr/lib + /usr/share/doc + /usr/share/man + + + xorg-video-fglrx-legacy + + + System.Package + System.Service + + + + xorg-video-fglrx-32bit + 32-bit shared libraries for xorg-video-fglrx + xorg-video-fglrx için 32-bit paylaşımlı kitaplıklar + emul32 + + noDelta + + emul32 + + xvba-video-32bit + fontconfig-32bit + freetype-32bit + libXcursor-32bit + libXext-32bit + libXfixes-32bit + libXinerama-32bit + libXrandr-32bit + libXrender-32bit + libXxf86vm-32bit + libX11-32bit + glibc-32bit + + + xorg-video-fglrx + libXext-32bit + libX11-32bit + mesa-32bit + glibc-32bit + libgcc + + + /usr/lib32 + + + xorg-video-fglrx-legacy-32bit + + + System.Package + + + + + 2015-05-26 + 15.20 + Rebuild for kernel-3.19.8 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-05 + 15.20 + Rebuild for kernel-3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-24 + 15.20 + Rebuild for kernel-3.19.5 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-16 + 15.20 + Rebuild for kernel-3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 15.20 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-01 + 14.12 + Rebuild for kernel-3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 14.12 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-01 + 14.12 + Version bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2015-01-20 + 14.9 + Rebuild for kernel 3.18.1 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-12-08 + 14.9 + Rebuild for kernel 3.17.4 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-10-19 + 14.9 + Update unoffical release + * working with xorg-server 1.16 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-03 + 14.6 + Rebuild for kernel 3.16.1 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-07-24 + 14.6 + Rebuil for kernel 3.15.6 + Vedat Demir + vedat@pisilinux.org + + + 2014-06-15 + 14.6 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-02 + 14.4 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-02 + 14.3b + Rebuild for kernel 3.14.2. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-15 + 14.3b + Rebuild for kernel 3.13.10. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-11 + 14.3b + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2014-03-23 + 13.4 + Rebuild for 3.13.6 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-09 + 13.4 + Rebuild for 3.12.13 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-02 + 13.4 + Rebuild for 3.12.13 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-17 + 13.4 + Rebuild for 3.12.8 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-17 + 13.4 + Rebuild for 3.12.5 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-14 + 13.4 + Rebuild for 3.12.5 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-23 + 13.4 + Rebuild for 3.10.20 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-05 + 13.4 + Rebuild for 3.10.18 + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-30 + 13.4 + 3.10.15 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 13.4 + 3.10.13 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 13.4 + 3.10.12 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 13.4 + 3.10.10 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-20 + 13.4 + 3.10.9 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-20 + 13.4 + rebuild for kernele 3.10.6. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-06 + 13.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-15 + 13.3_beta3 + build for Kernel 3.8.13 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-06-15 + 13.3_beta3 + rebuild for Kernel 3.8.13 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-05-26 + 13.3_beta3 + Kernel 3.9.3 + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-12 + 13.3_beta3 + V.bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-10-03 + 12.9_beta1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + gdb + http://www.gnu.org/software/gdb/gdb.html PisiLinux Community admins@pisilinux.org GPLv3 - library - science.misc - A C library that implements the 'World Coordinate System' (WCS) standard in FITS - The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. - ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-5.12.tar.bz2 - - gcc - flex - libgfortran - cfitsio-devel - - science/misc/wcslib/pspec.xml - - - wcslib - - cfitsio - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - wcslib-devel - Development files for wcslib - - wcslib - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-18 - 5.12 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - cfitsio - http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html - - PisiLinux Community - admins@pisilinux.org - - as-is - library app:console - science.misc - C and Fortran library for manipulating FITS files - FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi - CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format. - CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar. - http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3370.tar.gz - science/misc/cfitsio/pspec.xml - - - cfitsio - - /usr/lib - /usr/bin - /usr/share/doc - - - - cfitsio-devel - Development files for cfitsio - cfitsio için geliştirme dosyaları - - cfitsio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-18 - 3.370 - Version Bump. - Stefan Gronewold - groni@pisilinux.org - - - 2014-05-31 - 3.360 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-20 - 3.360 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-13 - 3.310 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libnova - http://libnova.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - science.misc - Celestial Mechanics and Astronomical Calculation Library - Gökyüzü mekaniği ve astronomik hesaplama kütüphanesi - libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library. - libnova genel amaçlı, çift hassasiyetli, gökyüzü mekaniği, astrometri ve astrodinamik kütüphanesidir. - mirrors://sourceforge/libnova/libnova/v%200.14.0/libnova-0.14.0.tar.gz - science/misc/libnova/pspec.xml - - - libnova - - /usr/bin - /usr/lib - /usr/share/doc - - - - libnova-devel - Development files for libnova - libnova için geliştirme dosyaları - - libnova - - - /usr/include - /usr/bin/libnovaconfig - - - - - 2014-06-14 - 0.14.0 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-01 - 0.14.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-02-13 - 0.14.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libindi - http://www.indilib.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - library - science.misc - Astronomical control protocol library - indilib is a distributed control protocol designed to operate astronomical instrumentation. indilib is small, flexible, easy to parse, and scalable. - http://www.indilib.org/jdownloads/Source/libindi_1.1.0.tar.gz + programming.debug + GNU debugger + GNU hata ayıklayıcısı + Depurador GNU + GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed. + GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar. + GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado. + mirrors://gnu/gdb/gdb-7.9.1.tar.xz - libnova-devel - cfitsio-devel - gsl-devel - curl-devel - libjpeg-turbo-devel - libusb-devel - boost-devel - zlib-devel - pkgconfig - cmake + texinfo + expat-devel + python-devel + readline-devel + ncurses-devel - science/misc/libindi/pspec.xml + programming/debug/gdb/pspec.xml - libindi + gdb - libnova - cfitsio - gsl - curl - libjpeg-turbo - libusb - gsl - libgcc - zlib + guile + expat + python + readline + ncurses /usr/bin /usr/lib - /lib/udev/rules.d - /usr/share/indi - /usr/share/doc + /usr/share/doc/gdb + /usr/share/gdb + /usr/share/info + /usr/share/man + + gstack.1 + - libindi-devel - Development files for libindi + gdb-devel + Development files for gdb + gdb için geliştirme dosyaları - libindi + gdb /usr/include - /usr/lib/pkgconfig - - 2015-11-18 - 1.1.0 - Version Bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-06-14 - 0.9.7 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-26 - 0.9.7 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-28 - 0.9.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - eigen3 - http://eigen.tuxfamily.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2-with-exceptions - library - science.misc - Lightweight C++ template library for linear algebra - Lineer cebir için hafif bir C++ şablon kitaplığı - eigen3 is a lightweight C++ template library for vector and matrix math, a.k.a. linear algebra. - Eigen3, lineer cebir için kullanılan hafif bir C++ şablon kitaplığıdır. - http://bitbucket.org/eigen/eigen/get/3.2.5.tar.bz2 - - cmake - freeglut-devel - fftw3-devel - gmp-devel - mpfr-devel - mesa-devel - - science/misc/eigen3/pspec.xml - - - eigen3 - - /usr/include - /usr/share - - - - - 2015-07-23 - 3.2.5 + + 2015-07-30 + 7.9.1 Version bump. Ertuğrul Erata ertugrulerata@gmail.com + + 2015-02-22 + 7.9 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + - 2015-01-29 - 3.2.4 + 2014-05-20 + 7.7.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-19 + 7.7 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-01-25 + 7.6 Version bump. Stefan Gronewold(groni) groni@pisilinux.org - - 2014-07-07 - 3.2.1 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-14 - 3.2.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - 2014-02-09 - 3.2.0 + 2012-09-23 + 7.5 First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - ilmbase - http://www.openexr.com - PisiLinux Community admins@pisilinux.org - - BSD - library - science.misc - Several utility libraries from ILM (Industrial Light & Magic) used by OpenEXR - ILM (Industrial Light & Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar - IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library). - IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf ("yarım" değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz. - http://download.savannah.nongnu.org/releases/openexr/ilmbase-2.0.1.tar.gz - - ilmbase-2.0.1-no_undefined.patch - ilmbase-IexMath.patch - ilmbase-1.0.3-pkgconfig.patch - - science/misc/ilmbase/pspec.xml - - - ilmbase - - libgcc - - - /usr/lib - /usr/share/doc - - - - ilmbase-devel - Development files for ilmbase - ilmbase için geliştirme dosyaları - - ilmbase - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 2.0.1 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-16 - 2.0.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-13 - 1.0.2 - First release - Gökcen Eraslan - admins@pisilinux.org - xplanet - http://xplanet.sourceforge.net + valgrind + http://www.valgrind.org PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - science.astronomy - Render a planetary image into an X window - Gezegen görüntülerini bir X penceresine çizdirir - Xplanet was inspired by Xearth, which renders an image of the earth into the X root window. All of the major planets and most satellites can be drawn, similar to the Solar System Simulator. A number of different map projections are also supported, including azimuthal, Lambert, Mercator, Mollweide, orthographic, and rectangular. - Xplanet, Dünya'nın bir görüntüsünü bir X penceresine çizdiren Xearth programından esinlenilerek yapılmıştır. Güneş Sistemi Simülatörü'ne benzer şekilde bir çok büyük gezegen ve uydu çizdirilebilir. Azimut, Lambert, Mercator, Mollweide, ortografik, dikdörtgen de dahil olmak üzere bir çok farklı harita projeksiyonunu destekler. - mirrors://sourceforge/project/xplanet/xplanet/1.3.0/xplanet-1.3.0.tar.gz + app:console + programming.profiler + Memory access debugger for X86 and PPC Linux platforms + X86 ve PPC Linux platformları için bellek erişimi hata ayıklayıcı + Valgrind is an award-winning suite of tools for debugging and profiling Linux programs. With the tools that come with Valgrind, you can automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making your programs more stable. You can also perform detailed profiling, to speed up and reduce memory use of your programs. + Valgrind, bu konuda ödül kazanmış Linux için çizge ve hata ayıklama araçları takımıdır. Valgrind ile gelen araçlar yardımıyla, birçok hafıza yönetimi ve iş parçacığı hatalarını otomatik olarak yakalayabilir, boşa geçen hata ayıklama saatlerinizi kazanabilir, programlarınızı daha kararlı bir hale getirebilirsiniz. Ayrıca programlarınızı daha hızlı çalışır yapmak ve kullandıkları hafızayı azaltmak için iş parçacıklarını detaylı olarak inceleyebilirsiniz. + http://www.valgrind.org/downloads/valgrind-3.10.1.tar.bz2 - pango-devel - netpbm-devel - libXScrnSaver-devel - giflib-devel - libjpeg-turbo-devel - tiff-devel + glibc-devel - giflib6.patch - xplanet-1.2.1-fix-gcc44.patch + valgrind-3.9.0-glibc-2.21.patch - science/astronomy/xplanet/pspec.xml + programming/profiler/valgrind/pspec.xml - xplanet - - pango - netpbm - libXScrnSaver - giflib - libjpeg-turbo - tiff - + valgrind /usr/bin - /usr/share/doc - /usr/share + /usr/include/valgrind + /usr/lib + /usr/share/doc/valgrind /usr/share/man + + 2015-07-21 + 3.10.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-10-31 + 3.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + - 2014-06-14 - 1.3.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org + 2014-05-20 + 3.9.0 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2014-01-29 - 1.3.0 - add giflib patch + 2014-02-08 + 3.9.0 + Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2014-01-17 - 1.3.0 - Rebuild for 1.0 - Richard de Bruin - richdb@pisilinux.org + 2013-02-19 + 3.8.1 + Add glibc-2.17 patch. + Serdar Soytetir + kaptan@pisilinux.org - 2012-10-28 - 1.3.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gsl - http://www.gnu.org/software/gsl/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - science.mathematics - GNU scientific library - GNU bilimsel kütüphane - La librairie scientifique GNU (GSL) est une librairie numérique pour programmes C et C++. - The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. - C ve C++ programcıları tarafından kullanılan nümerik kütüphane - GNU Scientific Library (GSL) es una libería numérica para programadores C y C++. - http://ftp.gnu.org/gnu/gsl/gsl-1.16.tar.gz - science/mathematics/gsl/pspec.xml - - - gsl - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - gsl-devel - Development files for gsl - gsl için geliştirme dosyaları - - gsl - - - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - - 2014-05-30 - 1.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - fftw3 - http://www.fftw.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - A library for computing the discrete Fourier transform (DFT) - Ayrık Fourier dönüşümü hesaplamak için bir kütüphane - FFTW v3 est une librairie sous-routine C pour le calcul discret de transformation de Fourier (DFT) dans une ou plusieurs dimensions, pour une entrée de taille arbitraire, aussi bien pour des données réeles ou complexes (ainsi que les données paires/impaires, i.e. la transformation discrète cosinus/sinus ou DCT/DST). - fftw3 is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). - fftw3, ayrık Fourier dönüşümü hesaplamak için kullanılabilecek bir C kütüphanesidir. - FFTW v3 es una librería con subrutinas C para computar la transformación Fourier discreta (DFT) en una o más dimensiones, con longitud de entrada arbitraria, para datos reales y complejos (y también de datos par/impar, i.e. transformación discreta coseno/seno DCT/DST). - http://www.fftw.org/fftw-3.3.4.tar.gz - - libgfortran - libquadmath - gettext - - science/mathematics/fftw3/pspec.xml - - - fftw3 - - libquadmath - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/info - - - - fftw3-devel - Development files for fftw3 - fftw3 için geliştirme dosyaları - - fftw3 - - - /usr/lib/pkgconfig - /usr/include - /usr/share/doc/fftw3/html - - - - - 2014-05-25 - 3.3.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-24 - 3.3.3 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-01-07 - 3.3.3 + 2012-10-24 + 3.8.1 First release Erdinç Gültekin admins@pisilinux.org @@ -5120,60 +2574,1620 @@ - libqalculate - http://qalculate.sourceforge.net/ + libgit2 + https://libgit2.github.com + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:gui + programming.scm + git c dili kütüphanesi + A linkable library for Git + git için c kütüphanesi + A plain C library to interface with the git version control system + libgit2 + https://github.com/libgit2/libgit2/archive/v0.23.0.tar.gz + + zlib-devel + openssl-devel + python + cmake + + programming/scm/libgit2/pspec.xml + + + libgit2 + + zlib + openssl + + + /usr/lib + + + + libgit2-devel + + libgit2 + zlib + openssl + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-08-01 + 0.23.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + mercurial + http://www.selenic.com/mercurial + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.scm + A distributed SCM tool + Dağıtık bir kaynak kod yönetim aracı + Système de gestion de code source, rapide et léger conçu pour gérer de manière efficace les projets distribués de très grande taille. + A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects. + Çok büyük dağıtık projelerin verimli bir şekilde idare edilmesi amacıyla geliştirilmiş hızlı, hafif bir kaynak kod kontrol yönetimi sistemi + Un sistema rápido y liviano de administración de fuentes (Source Control Management) diseñado para manejo eficaz de proyectos muy largos y distribuidos. + http://mercurial.selenic.com/release/mercurial-3.3.3.tar.gz + + python-devel + + programming/scm/mercurial/pspec.xml + + + mercurial + + python + + + /usr/bin + /etc/bash_completion.d + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2015-04-04 + 3.3.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-01-10 + 3.2.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-07 + 2.9.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-01 + 2.8 + Ver. bump + Kamil Atlı + suvarice@gmail.com + + + 2012-10-06 + 2.3.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + git + http://git-scm.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + programming.scm + Fast Version Control System + Hızlı Sürüm Denetim Sistemi + Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. + Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir. + GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos. + https://www.kernel.org/pub/software/scm/git/git-2.4.4.tar.xz + + tcltk-devel + openssl-devel + libpcre-devel + curl-devel + zlib-devel + expat-devel + xmlto + asciidoc + perl-Error + perl + libxslt + util-linux + + + project-root.patch + gitk-fonts.patch + git-1.5-gitweb-home-link.patch + git-cvsps-ignore.patch + fix-gitwebdir.patch + + programming/scm/git/pspec.xml + + + git + app:console + + perl-String-ShellQuote + perl-Net-SMTP-SSL + perl-Authen-SASL + perl-libwww + libpcre + perl-Git + openssh + openssl + rsync + expat + zlib + curl + + + /usr/bin + /usr/libexec/git-core + /etc/bash_completion.d + /usr/share/git-core + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + git-daemon + GIT protocol daemon + GIT protokolü hizmeti + service + + zlib + libpcre + git + + + /etc/conf.d/git-daemon + /usr/libexec/git-core/git-daemon + /usr/share/man/man1/*daemon*.1* + /pub/scm + + + System.Service + + + git-daemon.confd + + + + perl-Git + Perl interface to GIT + GIT için perl arayüzü + library + programming.language.perl + + perl-Error + perl + + + /usr/lib/perl5 + /usr/share/man/man3/Git.3pm + + + + gitk + Git revision tree visualiser + Git sürüm ağacı görüntüleyici + app:gui + + git + tcltk + + + /usr/bin/gitk + /usr/share/gitk + /usr/share/man/man1/*gitk*.1* + + + + git-gui + Git GUI tool + GIT için basit bir grafik arayüz + app:gui + + git + gitk + tcltk + + + /usr/libexec/git-core/git-gui* + /usr/libexec/git-core/git-citool + /usr/share/git-gui + /usr/share/man/man1/git-gui.1* + /usr/share/man/man1/git-citool.1* + + + + gitweb + Simple web interface to GIT repositories + GIT için Web arayüzü + interfaz web para GIT + app:web + server.web + + git + + + /var/www/localhost + /etc/conf.d/gitweb + /etc/apache2/conf.d + + + gitweb.confd + git.conf.httpd + + + + + 2015-06-20 + 2.4.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-04-04 + 2.3.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-07 + 2.3.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-19 + 2.2.2 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-09-13 + 2.1.0 + Rebuild for new perl. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-16 + 2.1.0 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-25 + 2.0.1 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-01 + 2.0.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-15 + 1.9.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-11 + 1.8.5.4 + Version bump and new rsync + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-21 + 1.8.4.4 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-29 + 1.8.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-21 + 1.8.3.2 + fix dep + Kamil Atlı + suvarice@gmail.com + + + 2013-07-04 + 1.8.3.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-08 + 1.8.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-29 + 1.8.1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-28 + 1.8.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + subversion + http://subversion.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Subversion + app:console + service + programming.scm + A compelling replacement for CVS + Bir sürüm kontrol sistemi + SVN est un gestionnaire de configuration permettant de stocker des fichiers et de contrôler leur historique de changement dans un dépôt. + SVN is a version controlling system to store files and control their change history in a repository. + Daha gelişmiş özellikleri olan ve önceki CVS yerine kullanılan, bir sürüm yönetim sistemidir. + http://archive.apache.org/dist/subversion/subversion-1.9.1.tar.bz2 + + apache + expat-devel + zlib-devel + ruby-devel + serf-devel + sqlite-devel + jdk7-openjdk + apr-util-devel + cyrus-sasl-devel + python-devel + dbus-devel + glib2-devel + openssl-devel + swig + + + subversion-swig-perl-install_vendor.patch + subversion.rpath.fix.patch + dont_compile_pyc.patch + + programming/scm/subversion/pspec.xml + + + subversion + + file + zlib + expat + libgcc + sqlite + apr + serf + apr-util + cyrus-sasl + + + /etc/conf.d + /etc/subversion + /etc/bash_completion.d + /usr/share/build + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/locale + /usr/share/man + /var/svn + + + System.Service + System.Package + + + svnserve.confd + subversion.config + + + + subversion-devel + Development files for subversion + Subversion için geliştirme dosyaları + + openssl-devel + apr-devel + serf-devel + sqlite-devel + apr-util-devel + subversion + + + /usr/include + /usr/share/pkgconfig + + + + mod_dav_svn + server.web + + apr + apache + apr-util + subversion + + + /usr/lib/apache2 + /usr/libexec/mod_dav_svn.so + /usr/libexec/mod_authz_svn.so + /etc/apache2/modules.d + /var/www/localhost/htdocs + + + System.Package + + + 47_mod_dav_svn.conf + + + + + 2015-09-04 + 1.9.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-04 + 1.8.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-14 + 1.8.10 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-06-21 + 1.8.9 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-03 + 1.8.8 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-03 + 1.8.5 + rebuild for openjdk + Kamil Atlı + suvarice@gmail.com + + + 2014-01-11 + 1.8.5 + rebuild for cyrus-sasl + Kamil Atlı + suvarice@gmail.com + + + 2013-12-28 + 1.8.5 + Fix Deps + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-24 + 1.8.5 + Version bump, fix deps, add mandatory serf dependency. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-30 + 1.8.1 + rebuild for perl-svn-simple + Kamil Atlı + suvarice@gmail.com + + + 2013-08-17 + 1.8.1 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-03 + 1.8.1 + *Version bump to 1.8.1 + *Disable neon as suggested in http://subversion.apache.org/docs/release-notes/1.8.html#neon-deleted + Fatih Turgel + hitaf@pisilinux.org + + + 2012-10-24 + 1.7.7 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libsigc++ + http://libsigc.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Système de rappels à types sûrs (typesafe callback) pour C++. + Typesafe signal framework for C++ + C++ için sinyal altyapısı + libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. + libsigc++, widget kitaplıkları, soyut arabirimlerde ve genel programlama esnasında kullanılmak üzere tasarlanmış bir sinyal ve callback altyapısıdır. + mirrors://gnome/libsigc++/2.4/libsigc++-2.4.1.tar.xz + programming/misc/libsigc++/pspec.xml + + + libsigc++ + + libgcc + + + /usr/lib + /usr/share/doc + + + + libsigc++-devel + Development files for libsigc++ + libsigc++ için geliştirme dosyaları + + libsigc++ + + + /usr/include + /usr/lib/sigc++*/include + /usr/lib/pkgconfig + + + + libsigc++-docs + Development documents for libsigc++ + libsigc++ için geliştirme belgeleri + + /usr/share/doc/libsigc++/html + + + + + 2015-07-21 + 2.4.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2013-05-18 + 2.3.1 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-03-04 + 2.3.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-29 + 2.2.11 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libwpg + http://libwpg.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C++ library designed to help process WordPerfect Graphics documents + WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı + Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations. + Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır. + http://dev-www.libreoffice.org/src/libwpg-0.3.0.tar.bz2 + + doxygen + libwpd-devel + libtool + grep + pkgconfig + + programming/misc/libwpg/pspec.xml + + + libwpg + + libwpd + librevenge + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libwpg-devel + Development files for libwpg + libwpg için geliştirme dosyaları + + libwpd-devel + librevenge-devel + libwpg + + + /usr/include + /usr/lib/pkgconfig + + + + libwpg-docs + Documentation for libwpg + + /usr/share/doc/libwpg/html + + + + + 2015-01-02 + 0.3.0 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-26 + 0.3.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-24 + 0.2.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-29 + 0.2.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-14 + 0.2.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + boost + http://boost.org PisiLinux Community admins@pisilinux.org GPLv2 library - science.mathematics - Qalculate ! est une calculatrice de bureau multi-usage pour GNU/Linux. - Multi-purpose calculator library - Genel amaçlı hesap makinesi kütüphanesi - libqalculate underpins the Qalculate! multi-purpose desktop calculator for GNU/Linux. - libqalculate, Qalculate! hesap makinesi tarafından ihtiyaç duyulan genel amaçlı bir kütüphanedir. - mirrors://sourceforge/qalculate/libqalculate-0.9.7.tar.gz + programming.language + Peer-reviewed portable C++ source libraries + Açık kaynak kodlu ve taşınabilir C++ kaynak kitaplıkları + Boost propose des librairies C++ gratuites, portables et relues en comité. L'accent est porté sur les librairies portables qui fonctionnent bien avec la Librairie Standard C++. + Boost provides free portable peer-reviewed C++ libraries. The emphasis is on portable libraries which work well with the C++ Standard Library. + Boost, kaynak kodları gözden geçirilmiş C++ kitaplıklarını içerir. + mirrors://sourceforge/boost/boost_1_58_0.tar.bz2 - cln-devel - gmp-devel - libxml2-devel - glib2-devel - gettext-devel - intltool + icu4c-devel + zlib-devel + python-devel + bzip2 + libxslt - libqalculate-0.9.6-check-fix.patch - libqalculate-0.9.6-gcc4.3.patch + boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch - science/mathematics/libqalculate/pspec.xml + programming/misc/boost/pspec.xml - libqalculate + boost - cln - libxml2 - glib2 + icu4c + zlib + bzip2 libgcc /usr/bin /usr/lib /usr/share/doc - /usr/share/locale - /usr/share/qalculate + /usr/share/boostbook - libqalculate-devel - Development files for libqalculate - libqalculate için geliştirme dosyaları + boost-devel + Headers and library documentation for boost + boost için başlık dosyaları ve kitaplık belgeleri + data:doc - libqalculate - cln-devel - libxml2-devel + boost + + + /usr/include + /usr/share/doc/*/html + + + + + 2015-07-20 + 1.58.0 + Version bump, openmpi disabled. + Ali Algul + alialgul@pisilinux.org + + + 2014-12-19 + 1.57.0 + Version bump. + Ergün Salman Aydemir + poyraz76@pisilinux.org + + + 2014-05-19 + 1.55.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-07 + 1.54.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 1.53.0 + Rebuild for icu4c + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-04 + 1.53.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-14 + 1.52.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libyaml + http://pyyaml.org/wiki/LibYAML + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + YAML 1.1 parser and emitter written in C + C ile yazılmış YAML 1.1 ayrıştırıcısı + libyaml is a YAML 1.1 parser and emitter written in C. + libyaml C ile yazılmış bir YAML 1.1 ayrıştırıcısıdır. + http://pyyaml.org/download/libyaml/yaml-0.1.5.tar.gz + programming/misc/libyaml/pspec.xml + + + libyaml + + /usr/lib + /usr/share/doc + + + + libyaml-devel + Development headers for libyaml + libyaml için başlık dosyaları + libyaml-devel provides development headers for libyaml. + libyaml-devel, libyaml için başlık dosyalarını içerir. + + libyaml + + + /usr/include + /usr/share/doc/libyaml/html/ + + + + + 2015-07-22 + 0.1.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-10-29 + 0.1.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-12 + 0.1.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libgsf + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + programming.misc + Gnome structured file library + Gnome yapılandırılmış dosya kitaplığı + The libgsf is a library for reading and writing structured files (eg MS OLE and Zip). + Libgsf MS, OLE ve Zip gibi yapılandırılmış dosyaları okuyup yazmaya yarayan bir kitaplığıdır. + mirrors://gnome/libgsf/1.14/libgsf-1.14.31.tar.xz + + libbonobo-devel + gtk2-devel + python-gtk-devel + orbit2-devel glib2-devel + libxml2-devel + intltool + gettext-devel + perl + gobject-introspection-devel + gtk-doc + gdk-pixbuf-devel + + programming/misc/libgsf/pspec.xml + + + libgsf + app:console + library + + zlib + bzip2 + glib2 + libxml2 + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/thumbnailers/gsf-office.thumbnailer + /usr/share/gir-1.0/Gsf-1.gir + /usr/share/man + + + + libgsf-gnome + Gnome support for libgsf + libgsf için Gnome desteği + app:console + library + + libgsf + gdk-pixbuf + + + /etc + /usr/bin/gsf-office-thumbnailer + /usr/lib/libgsf-gnome* + /usr/lib/python*/site-packages/gsf/gnome* + /usr/share/man/man1/gst-office-thumbnailer* + + + + libgsf-docs + Libgsf reference documents + libgsf referans belgeleri + data:doc + + libgsf + + + /usr/share/doc + /usr/share/gtk-doc + + + + libgsf-devel + Development files for libgsf + libgsf paketi geliştirme dosyaları + library + + libgsf + libgsf-gnome + libbonobo-devel + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-02-07 + 1.14.31 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 1.14.30 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 1.14.30 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-27 + 1.14.28 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 1.14.25 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-02-23 + 1.14.25 + version bump, fix-call missing Gsf-1.gir + Erdinç Gültekin + admins@pisilinux.org + + + 2012-10-02 + 1.14.24 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libnice + http://nice.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + LGPLv2.1 + app:console + library + programming.misc + GLib ICE library + GLIB ICE kitaplığı + Nice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE). + Nice, IETF'ye ait bir taslak olan Etkileşimli Bağlanırlık Birliği standardı uygulamasıdır. + http://nice.freedesktop.org/releases/libnice-0.1.13.tar.gz + + glib2-devel + gobject-introspection-devel + gstreamer-devel + + programming/misc/libnice/pspec.xml + + + libnice + + glib2 + libxml2 + gstreamer + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + libnice-devel + Development files for libnice + libnice için geliştirme dosyaları + + libnice + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-27 + 0.1.13 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-10 + 0.1.4 + runtime dep. fixed + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.1.4 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-04-19 + 0.1.4 + build with gst-10 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-04-12 + 0.1.4 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.1.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + unixODBC + http://www.unixodbc.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + programming.misc + ODBC Interface for Linux + The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms. + http://www.unixodbc.org/unixODBC-2.3.2.tar.gz + + libtool-ltdl + + programming/misc/unixODBC/pspec.xml + + + unixODBC + + libtool-ltdl + + + /etc + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/unixODBC/AUTHORS + /usr/share/doc/unixODBC/README + + + + unixODBC-devel + Development files for unixODBC + unixODBC için geliştirme dosyaları. + + unixODBC + + + /usr/bin/odbc_config + /usr/include + + + + unixODBC-docs + Documentation for unixODBC + unixODBC için belgelendirme dosyaları. + data:doc + + /usr/share/doc/unixODBC + + + + + 2014-05-19 + 2.3.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-10-04 + 2.3.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdaemon + http://0pointer.de/lennart/projects/libdaemon + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Library for writing UNIX daemons + UNIX hizmetleri yazmak için bir kitaplığı + libdaemon is a lightweight C library which eases the writing of UNIX daemons. + libdaemon, UNIX hizmetleri yazmayı kolaylaştıran hafif bir C kitaplığıdır. + http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz + programming/misc/libdaemon/pspec.xml + + + libdaemon + + /usr/lib + /usr/share/doc + + + + libdaemon-devel + Development files for libdaemon + libdaemon için geliştirme dosyaları + + libdaemon + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man/man3 + + + + libdaemon-32bit + 32-bit shared libraries for libdaemon + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libdaemon + + + /usr/lib32 + + + + + 2014-03-09 + 0.14 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 0.14 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-02-15 + 0.14 + add emul32 + Erdinç Gültekin + admins@pisilinux.org + + + 2010-10-12 + 0.14 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + xsd + http://www.codesynthesis.com/products/xsd + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + An open-source, cross-platform W3C XML Schema to C++ data binding compiler + Kompilator schematów W3C XML do wiązań danych C++ + CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. Provided with an XML instance specification (XML Schema), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. You can then access the data stored in XML using types and functions that semantically correspond to your application domain rather than dealing with intricacies of reading and writing XML. + CodeSynthesis XSD to mający otwarte źródła wieloplatformowy kompilator schematów W3C XML do wiązań danych C++. Na podstawie specyfikacji instancji XML (schematu XML) generuje klasy C++ reprezentujące podany słownik, a także kod analizujący i serializujący. Następnie można odwoływać się do danych zapisanych w XML-u przy użyciu typów i funkcji semantycznie odpowiadających działaniu aplikacji, bez zajmowania się skomplikowaniem odczytu i zapisu XML-a. + http://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2 + + xerces-c-devel + boost-devel + + + xsdcxx.patch + + programming/misc/xsd/pspec.xml + + + xsd + + xerces-c + boost + + + /usr/bin + /usr/share/man + + + + xsd-devel + Development files for xsd + xsd için geliştirme dosyaları + Pliki nagłówkowe xsd + + xsd + + + /usr/include + /usr/lib/pkgconfig + + + + xsd-docs + Document files for xsd + + xsd + + + /usr/share/doc + + + + + 2014-12-24 + 4.0.0 + Rebuild for boost. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-20 + 3.3.0 + Rebuild for boost. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-09 + 3.3.0 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 3.3.0 + Rebuild for icu4c + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-07 + 3.3.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + apr + http://apr.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Apache portable runtime library + Apache portatif çalışma ortamı kitaplığı (eski sürüm) + Apache Portable Runtime – przenośna biblioteka uruchomieniowa + L'Apache Portable Runtime (APR) a pour mission de fournir une librairie libre C de structures de donnés et de routines. Le numéro de version majeur commence par un 0. + The mission of the Apache portable runtime (APR) is to provide a free library of C data structures and routines. + Apache portatif çalışma ortamı kitaplığı (APR), C data yapıları için özgür kitaplığı sağlar. Bu sürüm 0 ile başlar. + APR to Przenośna Biblioteka Fazy Wykonywania Apache, zaprojektowana jako biblioteka wspomagająca, która udostępnia przewidywalny i spójny interfejs do podstawowych, specyficznych dla platformy implementacji. + mirrors://apache/apr/apr-1.5.2.tar.gz + + libutil-linux-devel + + programming/misc/apr/pspec.xml + + + apr + + libutil-linux + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/aclocal + /usr/lib/apr-1/build + + + + apr-devel + Development files for apr + Development files for apr + + apr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-09-01 + 1.5.2 + Version bump, fix deps. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-19 + 1.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-28 + 1.5.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-05-26 + 1.4.6 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + apr-util + http://apr.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Apache portable runtime utils + Apache çalışma ortamı araçları (eski sürüm) + L'Apache Portable Runtime Utils (APR-Utils) contient des interfaces utilitaires supplémentaires pour APR fournissant un support pour, XML, LDAP,des interfaces pour les bases de données, d'analyse d'URI, et plus encore. La numéro de version majeur commence par un 1. + Apache portable runtime utils (APR-Util) contains additional utility interfaces for APR; including support for XML, database interfaces, URI parsing and more. + Apache portatif çalışma ortamı araçları (APR-Util) ek arabirimleri içerir; XML, LDAP, veritabanı, URI ve diğer arabirimler. Bu sürüm 0 ile başlar. + Narzędzie APR to biblioteka narzędziowa zaimplementowana na bazie apr, oferująca dostęp do bazy danych, przetwarzanie XML oraz inne przydatne funkcje. + mirrors://apache/apr/apr-util-1.5.4.tar.bz2 + + db-devel + zlib-devel + expat-devel + sqlite-devel + libutil-linux-devel + openssl-devel + unixODBC-devel + apr-devel + mariadb-lib + postgresql-lib + cyrus-sasl-devel + openldap-client + + programming/misc/apr-util/pspec.xml + + + apr-util + + db + zlib + expat + sqlite + libutil-linux + openssl + apr + unixODBC + mariadb-lib + postgresql-lib + cyrus-sasl + openldap-client + + + /usr/lib + /usr/share/doc + /usr/bin + + + + apr-util-devel + Development files for apr-util + + apr-util + apr-devel /usr/include @@ -5181,349 +4195,51 @@ - - 2014-06-14 - 0.9.7 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org + + 2015-05-01 + 1.5.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - - 2014-02-01 - 0.9.7 + + 2014-05-23 + 1.5.3 Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - - 2011-07-14 - 0.9.7 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libspiro - http://libspiro.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - Library to simplify the drawing of beautiful curves - Eğri çizimi kütüphanesi - libspiro is a library that will take an array of spiro control points and convert them into a series of bezier splines which can then be used in the myriad of ways the world has come to use beziers. - libspiro, verilen kontrol noktalarını bezier eğrilerine çeviren bir kütüphanedir. - mirrors://sourceforge/libspiro/libspiro_src-20071029.tar.bz2 - science/mathematics/libspiro/pspec.xml - - - libspiro - - /usr/lib - /usr/share/doc - - - - libspiro-devel - Development files for libspiro - libspiro için geliştirme dosyaları - - libspiro - - - /usr/include - /usr/share/man/man3 - - - - - 2014-06-14 - 20071029 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-01 - 20071029 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 20071029 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - djbfft - http://cr.yp.to/djbfft.html - - PisiLinux Community - admins@pisilinux.org - - public-domain - library - science.mathematics - Fast float library - Hızlı küsürlü sayı kitaplığı - An extremely fast library for floating-point convolution. - djbfft çok hızlı küsürlü sayı bükülme kitaplığıdır. - http://cr.yp.to/djbfft/djbfft-0.76.tar.gz - - gcc3.patch - shared.patch - headers.patch - - science/mathematics/djbfft/pspec.xml - - - djbfft - - /usr/lib - /usr/share/doc - - - - djbfft-devel - Development files for djbfft - djbfft için geliştirme dosyaları - - djbfft - - - /usr/include - - - - - 2014-05-20 - 0.76 - Rebuild. + + 2014-02-20 + 1.5.3 + Rebuild for Mariadb. Serdar Soytetir kaptan@pisilinux.org - - 2014-01-22 - 0.76 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.76 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - plotutils - http://www.gnu.org/software/plotutils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - 2D vector graphics library - 2B vektörel grafik araçları - PlotUtils is a powerful C/C++ function library for exporting 2D vector graphics. - 2B vektörel grafik üretmeye yarayan C/C++ kütüphanesi ve araçlar - ftp://aeneas.mit.edu/pub/gnu/plotutils/plotutils-2.6.tar.gz - - libXaw-devel - libXext-devel - libXt-devel - - - plotutils-2.6-png15.patch - - science/mathematics/plotutils/pspec.xml - - - plotutils - - libSM - libICE - libXmu - libXaw - libXext - libXt - libX11 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - /usr/share/libplot - /usr/share/ode - /usr/share/pic2plot - /usr/share/tek2plot - - - - plotutils-devel - Development files for plotutils - plotutils için geliştirme dosyaları - - plotutils - - - /usr/include - - - - 2014-06-14 - 2.6 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org + 2014-01-09 + 1.5.3 + Rebuild for cyrus-sasl and openldap + Marcin Bojara + marcin@pisilinux.org - 2014-03-10 - 2.6 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 2.6 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-11 - 2.6 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - lapack - http://www.netlib.org/lapack - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.mathematics - Linear Algebra PACKage - Doğrusal cebir paketi - 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. - 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. - http://www.netlib.org/lapack/lapack-3.5.0.tgz - - libgfortran - cmake - - - lapack-sharedlib.patch - - science/mathematics/lapack/pspec.xml - - - blas - Basic Linear Algebra Subprograms - Temel lineer cebir yordamları - Blas is a standard library which provides a number of basic algorithms for numerical algebra. - - libgfortran - - - /usr/lib/libblas.so* - - - - blas-devel - Development files for blas - blas için geliştirme dosyaları - static - - blas - - - /usr/lib/libblas.a - /usr/lib/pkgconfig/blas.pc - - - - lapack - - libgcc - libgfortran - blas - - - /usr/share/doc - /usr/lib/liblapack.so* - - - - lapack-devel - Development files for lapack - lapack için geliştirme dosyaları - static - - lapack - blas-devel - - - /usr/lib/cmake - /usr/lib/liblapack.a - /usr/lib/pkgconfig/lapack.pc - - - - - 2014-12-23 - 3.5.0 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2014-05-26 - 3.5.0 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2013-11-18 - 3.5.0 + 2013-12-28 + 1.5.3 Version bump - Richard de Bruin - richdb@pisilinux.org + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 1.4.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org - 2012-10-03 - 3.4.2 + 2012-09-29 + 1.4.1 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -5532,47 +4248,561 @@ - SuiteSparse - http://www.cise.ufl.edu/research/sparse + qrencode + http://fukuchi.org/works/qrencode/index.en.html + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C library for encoding data in a QR code symbol + QR kod sembolüne veri gömmek için bir kitaplık + qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. + qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. + http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz + + libsdl-devel + m4 + + programming/misc/qrencode/pspec.xml + + + qrencode + + libpng + + + /usr/lib + /usr/bin/qrencode + /usr/share/man/man1 + /usr/share/doc + + + + qrencode-devel + Development files for qrencode + qrencode için geliştirme dosyaları + + qrencode + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-02-22 + 3.4.4 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-22 + 3.3.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2012-04-05 + 3.3.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + icu4c + http://site.icu-project.org/home + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.misc + International Components for Unicode + Unicode desteği için uluslarası bileşenler + ICU est un ensemble mature de librairies C/C++ et Java pour le support de l'Unicode, l'internationalisation et la globalisation de logiciel (i18n/g11n). Ce paquet contient les librairies C/C++. + ICU is a mature, widely used set of C/C++ and Java libraries for Unicode support, software internationalization and globalization (i18n/g11n). This package contains the C/C++ libraries. + ICU, Unicode desteği, yazılım uluslararasılaştırma ve yerelleştirme konusunda yaygın olarak kullanılan gelişmiş bir kitaplıktır. ICU, Unicode ve u10a desteği için C/C++ ve Java kitaplıklarını içerir. + ICU es un conjunto maduro y muy utilizado de librerías C/C++ y Java para soporte Unicode, internacionalización y globalización de software (i18n/g11n). Este paque te contiene las librerías C/C++. + http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.tgz + + libgcc + + programming/misc/icu4c/pspec.xml + + + icu4c + + libgcc + + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc/icu4c/html + + + + icu4c-devel + Development files for icu4c + icu4c için geliştirme dosyaları + + icu4c + + + /usr/bin/icu-config + /usr/lib/icu + /usr/share/icu + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig/ + + + + icu4c-32bit + 32-bit shared libraries for icu4c + emul32 + _emul32 + + libgcc + glibc-32bit + + + icu4c + libgcc + glibc-32bit + + + /usr/lib32/libicu* + /usr/lib32/icu + + + + + 2015-07-03 + 55.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-22 + 54.1 + Version bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2014-05-17 + 53.1 + Version bump and add patch. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-13 + 52.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-27 + 51.2 + Move pc files to devel pack, rebuild + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-05-15 + 51.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 50.1.2 + Version bump, add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-24 + 50.1.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libnotify + http://www.galago-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + Desktop notification library + Masaüstü bildirim kitaplığı + Envoie les notifications bureautiques à un daemon de notification. + libnotify sends desktop notifications to a notification daemon. + Libnotify, masaüstü uyarılarını uyarı birimine gönderir. + Envía notificaciones de escritorio al demonio de notificaciones + http://ftp.acc.umu.se/pub/GNOME/sources/libnotify/0.7/libnotify-0.7.6.tar.xz + + gtk3-devel + gdk-pixbuf-devel + gnome-common + libepoxy-devel + at-spi2-core-devel + gobject-introspection-devel + gtk-doc + + programming/misc/libnotify/pspec.xml + + + libnotify + + gdk-pixbuf + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/gir-1.0/ + /usr/share/gtk-doc/html + + + + libnotify-devel + Development files for libnotify + libnotify için geliştirme dosyaları + + libnotify + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-31 + 0.7.6 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-27 + 0.7.6 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-28 + 0.7.5 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-23 + 0.7.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libinput + http://www.freedesktop.org/wiki/Software/libinput/ + + Alihan Öztürk + alihan@pisilinux.org + + X11 + app:console + programming.misc + library that handles input devices for display servers and other applications that need to directly deal with input devices. + libinput Wayland Campasitars giriş aygıtları işlemek için ve genel X.Org giriş sürücü sağlamak için bir kütüphane. + It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect. + Bu yüzden kullanıcıların beklediği fonksiyonellik ortak kümesi sağlamak için gereken özel giriş kodu compositors miktarını en az indirerek, aygıt kullanımı, giriş aygıtı olay işleme ve soyutlama sağlar. + http://www.freedesktop.org/software/libinput/libinput-0.20.0.tar.xz + + libevdev + eudev-devel + libmtdev-devel + + programming/misc/libinput/pspec.xml + + + libinput + + eudev + libevdev + libmtdev + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + libinput-devel + Development files for libinput + + libinput + eudev-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-21 + 0.20.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-02-16 + 0.10.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-10-25 + 0.6.0 + Add symbolic link. + Ekin Dursun + ekin.dursun@pisilinux.org + + + 2014-09-19 + 0.6.0 + Version bump.. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-27 + 0.2.0 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + libevent + http://monkey.org/~provos/libevent + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.misc + Une librairie pour exécuter une fonction lorsqu'un événement spécifique a lieu sur un descripteur (descriptor) de fichier. + A library to execute a function when a specific event occurs on a file descriptor + Dosya tanımlayıcıları üzerindeki belirli değişiklerde belirli fonksiyonların çalıştırılmasını sağlayan bir kitaplığı + The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop. + libevent dosya tanımlayıcısında tanımlı bir olay oluştuğunda ya da zamanaşımı olduğunda belirlenmiş fonksiyonların çalıştırılma mekanizmasını sağlar. Olay güdümlü(event-driven) ağ sunucularının bulundurduğu asenkron olay döngülerinin(event-loop) yerine alması anlamına gelir. Uygulamanın olay döngüsünü degiştirmek zorunda kalmadan dinamik olarak olay ekleme ve silme işlemlerini yapabilmek için yalnızca event_dispatch() fonksiyonunu çağırması yeterli olur. + https://github.com/libevent/libevent/archive/release-2.0.22-stable.tar.gz + + openssl-devel + zlib-devel + + + libevent-linkage_fix.diff + libevent-2.0.13-manpages-on.patch + + programming/misc/libevent/pspec.xml + + + libevent + + openssl + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libevent-devel + Development files for libevent + libevent için geliştirme dosyaları + + libevent + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-07-30 + 2.0.22 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-31 + 2.0.21 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-25 + 2.0.21 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-27 + 2.0.21 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-03-27 + 2.0.21 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-10-14 + 2.0.20 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + flann + http://www.cs.ubc.ca/research/flann/ + + Osman Erkan + osman.erkan@pisilinux.org + + BSD + library + programming.misc + FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional space. + FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset. + http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip + + cmake + + programming/misc/flann/pspec.xml + + + flann + + libgcc + libgomp + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/flann + + + + flann-devel + Development files for flann + + flann + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-25 + 1.8.4 + First release. + Osman Erkan + osman.erkan@pisilinux.org + + + + + + geoip + http://www.maxmind.com/geoip/api/c.shtml PisiLinux Community admins@pisilinux.org LGPLv2.1 - GPLv2 library - science.mathematics - Sparse matrix library - Sparse matrix kütüphanesi - Librairie de matrices Sparse. - SuiteSparse is a single archive that contains sparse matrix libraries. - Sparse matrix kütüphanesi. - http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-4.4.4.tar.gz - - lapack-devel - blas-devel - libgcc - - science/mathematics/SuiteSparse/pspec.xml + programming.misc + C library for country/city/organization to IP address or hostname mapping + Ülke/şehir/organizasyon adı ile IP adresi veya makine adı eşleştirmesi için C kitaplığı + GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. + GeoIP, herhangi bir IP adresinin veya makine adının hangi ülkeye ait olduğunu bulmak için kullanılan bir C kitaplığıdır. + https://github.com/maxmind/geoip-api-c/releases/download/v1.6.2/GeoIP-1.6.2.tar.gz + programming/misc/geoip/pspec.xml - SuiteSparse - - lapack - blas - libgcc - + geoip + /etc /usr/lib /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/GeoIP - SuiteSparse-devel - Development files for SuiteSparse - SuiteSparse için geliştirme dosyaları + geoip-devel + Geoip için geliştirme dosyaları - SuiteSparse + geoip /usr/include @@ -5580,236 +4810,187 @@ - 2015-08-11 - 4.4.4 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2014-07-14 + 1.6.2 + Version Bump. + Vedat Demir + vedat@pisilinux.org - 2014-05-31 - 4.2.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + 2014-06-12 + 1.5.1 + rebuild + Kamil Atlı + suvari@pisilinux.org - 2014-01-17 - 4.2.1 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org + 2014-01-23 + 1.5.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2012-12-08 - 4.0.2 + 2011-05-30 + 1.4.7 First release - Marcin Bojara - marcin@pisilinux.org + Ertuğrul Erata + admins@pisilinux.org - cln - http://www.ginac.de/CLN/ + libassuan + http://www.gnupg.org/ PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv3 library - science.mathematics - CLN, une librairie de classes (C++) pour les nombres. - A class library (C++) for numbers - Sayılar için bir C++ sınıf kütüphanesi - cln is a library for efficient computations with all kinds of numbers in arbitrary precision. - cln, her türlü hassaslıktaki sayılarla hızlı hesaplamalar yapmak için tasarlanmış bir kütüphanedir. - http://www.ginac.de/CLN/cln-1.3.4.tar.bz2 + programming.misc + Librairie IPC (communication inter-processus) auto-suffisante utilisée par gpg, gpgme et newpg. + IPC library for GnuPG related projects + GnuPG, GPGME ve newpg tarafından kullanılan IPC kitaplığı + This is the IPC library used by GnuPG 2, GPGME and a few other packages. + ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-2.2.1.tar.bz2 - gmp-devel + libgpg-error-devel - science/mathematics/cln/pspec.xml + programming/misc/libassuan/pspec.xml - cln + libassuan - gmp - libgcc + libgpg-error /usr/bin /usr/lib - /usr/share/doc /usr/share/info - /usr/share/man - cln-devel - Development files for cln - cln için geliştirme dosyaları + libassuan-devel + Development files for libassuan + libassuan için geliştirme dosyaları - cln - gmp-devel + libassuan /usr/include - /usr/lib/pkgconfig + /usr/share/aclocal + + 2015-08-21 + 2.2.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2015-07-29 - 1.3.4 + 2015-04-13 + 2.2.0 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - 2014-06-14 - 1.3.3 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org + 2014-10-31 + 2.1.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2013-10-30 - 1.3.3 - Version bump + 2013-10-13 + 2.1.1 + Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2012-10-25 - 1.3.2 + 2012-09-29 + 2.0.3 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + PisiLinux Community + admins@pisilinux.org - opencv - http://opencv.willowgarage.com/wiki + libedit + http://www.thrysoee.dk/editline PisiLinux Community admins@pisilinux.org BSD library - science.robotics - Computer vision library - Bilgisayarla görme kütüphanesi - Biblioteka funkcji do grafiki komputerowej w czasie rzeczywistym - 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. - opencv gerçek zamanlı bilgisayarla görme işlemleri için tasarlanmış bir kütüphanedir. İnsan-bilgisayar etkileşimi, nesne tanımlama, yüz tanıma, hareket izleme, mobil robotik, opencv'nin kullanıldığı bazı uygulama alanlarıdır. - OpenCV (Open Source Computer Vision) to biblioteka funkcji przeznaczonych głównie do grafiki komputerowej w czasie rzeczywistym. - https://github.com/Itseez/opencv/archive/2.4.11.tar.gz + programming.misc + An autotool and libtoolized port of the NetBSD Editline library + NetBSD Editline kitaplığının Linux portu + libedit is a command line editing and history library. It is designed to be used by interactive programs that allow the user to type commands at a terminal prompt. + libedit, geçmiş bilgisini ve komut satırı düzenleme işlerini kolaylaştıran bir kitaplıktır. + http://thrysoee.dk/editline/libedit-20150325-3.1.tar.gz - cmake - gtk2-devel - libv4l-devel - openexr-libs - jasper-devel - lapack-devel - ilmbase-devel - openexr-devel - lapack-devel - xine-lib-devel - libdc1394-devel - gstreamer-devel - libjpeg-turbo-devel - gst-plugins-base-devel + ncurses-devel - science/robotics/opencv/pspec.xml + programming/misc/libedit/pspec.xml - opencv + libedit - gtk2 - zlib - glib2 - jasper - libgcc - libpng - libv4l - ilmbase - openexr-libs - xine-lib - libdc1394 - gstreamer - gst-plugins-base - libjpeg-turbo + ncurses /usr/lib - /usr/bin - /usr/share/OpenCV - /usr/share/opencv + /usr/share/man + /usr/share/doc - opencv-docs - Computer vision library documents and examples - - /usr/share/doc/opencv - /usr/share/doc/opencv/samples - - - - opencv-devel - Development files for opencv - opencv için geliştirme dosyaları - Pliki naglowkowe do opencv + libedit-devel + Development files for libedit + libedit için geliştirme dosyaları - opencv + libedit /usr/include /usr/lib/pkgconfig + /usr/share/man/man3 - - 2015-09-15 - 2.4.11 - Version bump,rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-15 - 2.4.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2013-11-20 - 2.4.7 - Version bump - Richard de Bruin - richdb@pisilinux.org + 2015-06-25 + 3.1_20150325 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2013-08-20 - 2.4.6.1 - ignore xine-lib - Erdinç Gültekin - erdincgultekin@pisilinux.org + 2014-05-19 + 3.1_20140213 + Version bump. + Alihan Öztürk + alihan@pisilinux.org - 2013-07-13 - 2.4.6.1 + 2013-10-27 + 3.1_20130712 Version bump. - Marcin Bojara - marcin@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2012-11-08 - 2.4.3 + 2012-10-17 + 3.0_20120601 First release Marcin Bojara marcin@pisilinux.org @@ -5818,66 +4999,669 @@ - rrdtool - http://oss.oetiker.ch/rrdtool/ + npth + http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + New portable threads library + Yeni GNU Taşınabilir iş parçacıkları kitaplığı + Un librairie de threads portable pour les plateformes Unix. Elle permet la synchronisation non-préemptive pour l'exécution de threads ("multithreading") au sein d'applications serveur. + is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems. + Pth Unix platformları için derlenmiş taşınabilir kitaplığıdır. Bir çok iç sunucu uygulamalarının yerine getirilmesi işlerinin öncelikli olmayan planlamasını yapar. + ftp://ftp.gnupg.org/gcrypt/npth/npth-1.2.tar.bz2 + programming/misc/npth/pspec.xml + + + npth + + /usr/lib + /usr/share/doc + + + + npth-devel + Development files for pth + npth için geliştirme dosyaları + + npth + + + /usr/bin/npth-config + /usr/include + /usr/share/aclocal + /usr/share/man + + + + + 2015-04-12 + 1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libwpd + http://libwpd.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C++ library designed to help process WordPerfect documents + WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı + Library that handles Word Perfect documents. + Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır. + mirrors://sourceforge/libwpd/libwpd-0.10.0.tar.gz + + doxygen + libgsf-devel + librevenge-devel + libtool + grep + pkgconfig + + programming/misc/libwpd/pspec.xml + + + libwpd + + librevenge + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libwpd-devel + Development files for libwpd + libwpd için geliştirme dosyaları + + libwpd + librevenge-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libwpd-docs + Documentation for libwpd + + /usr/share/doc/libwpd/html + + + + + 2015-01-06 + 0.10.0 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-26 + 0.10.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-24 + 0.9.9 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-29 + 0.9.9 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-14 + 0.9.6 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + xerces-c + http://xml.apache.org/xerces-c + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Xerces-C++ is a validating XML parser written in a portable subset of C++ + C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcı + Xerces-C++ est un analyseur XML validant écrit dans un sous-ensemble portable du C++. + Xerces-C++ is a validating XML parser written in a portable subset of C++. + Xerces-C++, C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcıdır. + Xerces-C++ es un analizador XML con validación, escrito con un subconjunto portable de C++ + http://mirror.metrocast.net/apache//xerces/c/3/sources/xerces-c-3.1.2.tar.gz + + icu4c-devel + curl-devel + libgcc + + programming/misc/xerces-c/pspec.xml + + + xerces-c + + icu4c + curl + libgcc + + + /usr/bin + /usr/lib + + + + xerces-c-devel + Development files for xerces-c + xerces-c için geliştirme dosyaları + + xerces-c + + + /usr/include + /usr/lib/pkgconfig + + + + xerces-c-docs + Document files for xerces-c + xerces-c için yardım dosyaları ve API belgeleri + + xerces-c + + + /usr/share/doc + + + + + 2015-11-03 + 3.1.2 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-20 + 3.1.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-18 + 3.1.1 + Rebuild for 1.0 + Richard de Bruin + richdb@pisilinux.org + + + 2010-10-21 + 3.1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + xapian-core + http://www.oligarchy.co.uk/xapian PisiLinux Community admins@pisilinux.org GPLv2 - app:console library - network.analyzer - A system to store and display time-series data - Zaman serisi verilerini saklamak ve göstermek için bir araç - RRD is the acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine/room temperature, server load average). - RRD, Round Robin Database için kullanılan bir kısaltmadır. RRD, zaman serisi verilerini (ör. ağ bantgenişliği, makine/oda sıcaklığı, ortalama sunucu yükü) saklamak ve göstermek için kullanılan bir sistemdir. - http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.5.3.tar.gz + app:console + programming.misc + Probabilistic Information Retrieval library + İstatistiksel Bilgi Çıkarma kitaplığı + Xapian is an Open Source Probabilistic Information Retrieval Library. It offers a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to applications. + Xapian, Açık Kaynak Kodlu bir İstatistiksel Bilgi Çıkarma kitaplığıdır. Geliştiricilerin uygulamalara kolaylıkla gelişmiş kataloglama ve arama becerileri eklemelerini sağlayan hayli uyumlu bir araç takımına sahiptir. + http://oligarchy.co.uk/xapian/1.2.18/xapian-core-1.2.18.tar.xz - lua-devel - tcl-devel - ruby-devel - cairo-devel - pango-devel - libart_lgpl-devel - dejavu-fonts - perl - glib2-devel - python-devel - libxml2-devel - tcp-wrappers-devel - groff + zlib-devel + libutil-linux-devel - network/analyzer/rrdtool/pspec.xml + programming/misc/xapian-core/pspec.xml - rrdtool + xapian-core - lua - tcl - ruby - cairo - pango - libart_lgpl - dejavu-fonts - perl - glib2 - python - libxml2 - tcp-wrappers + zlib + libutil-linux + libgcc /usr/bin /usr/lib - /usr/share/man /usr/share/doc - /usr/share/rrdtool + /usr/share/man - rrdtool-devel + xapian-core-devel + Development headers for xapian-core + xapian-core için geliştirme başlıkları + xapian-core-devel provides development headers for xapian-core. + xapian-core-devel, xapian-core için geliştirme başlıklarını içerir. + library - rrdtool + xapian-core + + + /usr/bin/xapian-config* + /usr/include + /usr/lib/cmake/xapian + /usr/share/aclocal + + + + xapian-core-docs + Documentation files for xapian-core + xapian-core için belgelendirme dosyaları + xapian-core-docs provides documentation files for xapian-core. + xapian-core-docs, xapian-core için belgelendirme dosyalarını içerir. + data:doc + + xapian-core + + + /usr/share/doc/xapian-core/*html + /usr/share/doc/xapian-core/apidoc.pdf + /usr/share/doc/xapian-core/apidoc/ + + + + + critical + 2014-09-02 + 1.12.18 + Version down for baloo seg fault. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-25 + 1.3.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-28 + 1.3.1 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-19 + 1.2.12 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libtalloc + http://talloc.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + programming.misc + Hierarchical pool based memory allocator + Bellek yönetim kitaplığı + libtalloc is a library which implements a hierarchical allocator with destructors which is the core memory allocator in samba. + libtalloc, samba hizmetinin temel bellek ayırıcısını oluşturan hiyerarşik havuz tabanlı ayırıcıyı gerçekleyen kitaplıktır. + http://www.samba.org/ftp/talloc/talloc-2.1.2.tar.gz + + docbook-xsl + libxslt-devel + python-devel + attr-devel + + programming/misc/libtalloc/pspec.xml + + + libtalloc + + python + attr + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libtalloc-devel + Development files for libtalloc + libtalloc için geliştirme dosyaları + + libtalloc + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/man/man3 + + + + libtalloc-32bit + 32-bit shared libraries for libtalloc + libtalloc için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + attr-32bit + + + glibc-32bit + attr-32bit + libtalloc + + + /usr/lib32 + + + + + 2015-06-28 + 2.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-22 + 2.1.1 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-23 + 2.1.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.0.8 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-07 + 2.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 2.0.7 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libspectre + http://libspectre.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + A small library for rendering Postscript documents + Postscript belgeleri görüntüleştirme için küçük bir kitaplığı + libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. + libspectre, postscript belgeleri görüntüleştirme için kullanımı kolay bir API sağlar. + http://libspectre.freedesktop.org/releases/libspectre-0.2.7.tar.gz + + ghostscript-devel + cairo + + programming/misc/libspectre/pspec.xml + + + libspectre + + ghostscript + + + /usr/lib + /usr/share/doc + + + + libspectre-devel + Development files for libspectre + libspectre için geliştirme dosyaları + + libspectre + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libspectre-32bit + 32-bit shared libraries for libspectre + emul32 + emul32 + + ghostscript-32bit + + + libspectre + ghostscript-32bit + + + /usr/lib32 + + + + + 2015-11-02 + 0.2.7 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-30 + 0.2.7 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-01-22 + 0.2.7 + Version bump, add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-14 + 0.2.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + vigra + http://ukoethe.github.io/vigra + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.misc + Generic programming library for computer vision + Bilgisayarlı görü (computer vision) için genel programlama kitaplığı + vigra stands for "Vision with Generic Algorithms". It's a novel computer vision library that puts its main emphasis on customizable algorithms and data structures. + vigra, "Genel Algoritmalarla Görü (Vision with Generic Algorithms)" anlamına gelir. Özelleştirilebilir algoritma ve veri yapılarını vurgulayan yeni bir bilgisayarlı görü kitaplığıdır. + https://github.com/ukoethe/vigra/archive/Version-1-10-0.tar.gz + + cmake + doxygen + tiff-devel + hdf5-devel + fftw3-devel + boost-devel + python-nose + python-sphinx + libpng-devel + python-numpy + python-devel + openexr-devel + libjpeg-turbo-devel + + + disable-doc.patch + + programming/misc/vigra/pspec.xml + + + vigra + + hdf5 + tiff + boost + fftw3 + libgcc + libpng + python + ilmbase + openexr-libs + libjpeg-turbo + + + /usr/lib + /usr/share/doc + /usr/bin + + + + vigra-devel + Development files for vigra + vigra için geliştirme dosyaları + + vigra + + + /usr/include + /usr/lib/vigra/*.cmake + + + + + 2015-02-03 + 1.10.0 + Rebuild for openexr + Yusuf Aydemir + yusuf.aydemir@gmail.com + + + + + + libtevent + http://tevent.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + programming.misc + Event system based on the talloc memory management library + talloc bellek yönetim kitaplığına dayanan olay sistemi kitaplığı + libtevent is an event system based on the talloc memory management library. It is the core event system used in Samba. Tevent has support for many event types, including timers, signals, and the classic file descriptor events. + libtevent Samba uygulamasının en temel olay sistem kitaplığıdır. Zamanlayıcı, dosya tanımlayıcı gibi çeşitli olay türlerini desteklemektedir. + http://samba.org/ftp/tevent/tevent-0.9.25.tar.gz + + python-devel + gdb-devel + libtalloc-devel + libxslt + docbook-xsl + + programming/misc/libtevent/pspec.xml + + + libtevent + + libtalloc + python + + + /usr/lib + + + + libtevent-devel + Development files for libtevent + libtevent için geliştirme dosyaları + + libtevent + libtalloc-devel /usr/include @@ -5887,49 +5671,156 @@ 2015-07-30 - 1.5.3 + 0.9.25 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - 2015-04-25 - 1.5.2 - Rebuild for ruby, ver. bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2014-05-22 + 0.9.21 + Rebuild. + Kamil Atlı + suvarice@gmail.com - 2014-12-20 - 1.4.7 - Rebuild for lua. - Ertuğrul Erata - ertugrulerata@gmail.com + 2014-04-23 + 0.9.21 + Version bump. + Marcin Bojara + marcin@pisilinux.org - 2014-05-28 - 1.4.7 - Rebuild, rm unused deps. - Ertuğrul Erata - ertugrulerata@gmail.com + 2014-03-09 + 0.9.18 + Rebuild. + Kamil Atlı + suvarice@gmail.com - 2013-12-01 - 1.4.7 - Rebuild for new perl. + 2013-08-17 + 0.9.18 + Dep Fixed PisiLinux Community admins@pisilinux.org - 2013-05-29 - 1.4.7 - Build for ruby 2.0 - Serdar Soytetir - kaptan@pisilinux.org + 2013-07-07 + 0.9.18 + Version bump. + Marcin Bojara + marcin@pisilinux.org - 2012-09-01 - 1.4.7 + 2010-10-26 + 0.9.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + ragel + http://www.complang.org/ragel/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + programming.misc + Ragel compiles executable finite state machines from regular languages. + Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. + http://fossies.org/linux/misc/ragel-6.9.tar.gz + programming/misc/ragel/pspec.xml + + + ragel + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/vim/ + + + + + 2015-11-19 + 6.9 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libical + https://github.com/libical/libical + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + LGPLv2 + library + programming.misc + An open source reference implementation of the icalendar data type and serialization format + icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi + libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. + libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar. + https://github.com/libical/libical/releases/download/v1.0.1/libical-1.0.1.tar.gz + + cmake + + programming/misc/libical/pspec.xml + + + libical + + /usr/lib + /usr/share/libical/zoneinfo + + + + libical-devel + Development files for libical + libical için geliştirme dosyaları + + libical + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-06 + 1.0.1 + Version bump, fix date + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-01 + 1.0 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-27 + 1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 0.48 First release PisiLinux Community admins@pisilinux.org @@ -5938,433 +5829,7784 @@ - avahi - http://avahi.org/ + dbus-c++ + http://sourceforge.net/projects/dbus-cplusplus/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C++ bindings for DBus library + DBus kitaplığı için C++ bağlayıcıları + dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk and an Ecore mainloop integration. It also offers an optional own main loop. + dbus-c++, DBus kitaplığı için C++ programlama arayüzü sunan bir kitaplıktır. + http://source.pisilinux.org/1.0/dbus-c++.tar.gz + + dbus + libgcc + expat + glib2 + + + dbus-c++-build-fix.patch + dbus-c++-linkfix.patch + gcc-44.patch + + programming/misc/dbus-c++/pspec.xml + + + dbus-c++ + + dbus + libgcc + expat + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + dbus-c++-devel + + dbus-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-01-21 + 0.0_20090907 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-03-07 + 0.0_20090907 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libqjson + http://qjson.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Qt-based library that maps JSON data to QVariant objects + Qt tabanlı bu kitaplığı JSON data haritalarını QVariant nesnelere dönüştürür + Implementacja Qt formatu JSON + libqjson, (JavaScript Object Notation) is a lightweight data-interchange format. It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs. + libqjson, (JavaScript Object Notation) bir veri değişim biçimidir. JSON haritalarını QVariant nesnelere dönüştürür.. + http://source.pisilinux.org/1.0/qjson-0.82_d0f62e65.tar.gz + + qt5-base-devel + cmake + + programming/misc/libqjson/pspec.xml + + + libqjson + + qt5-base + libgcc + + + /usr/lib + /usr/share/doc + + + + libqjson-devel + Development files for libqjson + libqjson için geliştirme dosyaları + Pliki nagłówkowe do libqjson + + libqjson + qt5-base-devel + + + /usr/include/qjson + /usr/lib/pkgconfig + /usr/lib/cmake/qjson + + + + + 2015-10-18 + 0.82_p1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-30 + 0.8.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.8.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 0.8.1 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-01-08 + 0.8.1 + First release + Idris Kalp + yaralikurt15@hotmail.com + + + + + + json-glib + http://live.gnome.org/JsonGlib + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.misc + Library for JavaScript Object Notation format + JavaScript Nesne Notasyon biçimi için bir kitaplık + json-glib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format. + json-glib JavaScript Nesne Notasyon (JSON) biçimi için serileştirme ve ters serileştirme sağlayan bir kitaplıktır. + mirrors://gnome/json-glib/1.0/json-glib-1.0.2.tar.xz + + gobject-introspection-devel + glib2-devel + + programming/misc/json-glib/pspec.xml + + + json-glib + + gobject-introspection + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/locale + + + + json-glib-devel + Development files for json-glib + json-glib için geliştirme dosyaları + + json-glib + glib2-devel + + + /usr/include + /usr/share/gir* + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + json-glib-32bit + 32-bit shared libraries for json-glib + json-glib için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + glibc-32bit + glib2-32bit + + + glibc-32bit + glib2-32bit + json-glib + + + /usr/lib32 + + + + + 2015-03-18 + 1.0.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-18 + 1.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-30 + 1.0.0 + 32bit split packages. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-30 + 1.0.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-13 + 0.16.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-09 + 0.16.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-26 + 0.15.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libsoup + http://live.gnome.org/LibSoup PisiLinux Community admins@pisilinux.org LGPLv2 - app:console - network.analyzer - Local network service discovery - Yerel ağ hizmeti bulma sistemi - avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. - avahi yerel ağ üzerindeki hizmetleri tespit etmeyi kolaylaştıran bir sistemdir. Bu sayede, bilgisayarınızı ağa dahil ettikten sonra anında mevcut bilgisayarları ve yazıcıları görebilir ve kullanabilirsiniz. - http://avahi.org/download/avahi-0.6.31.tar.gz + library + programming.misc + An HTTP library implementation in C + C için HTTP kitaplık gerçekleyicisi + libsoup is an HTTP client/server library for GNOME. + libsoup, GNOME için HTTP istemci / sunucu kitaplığıdır. + mirrors://gnome/libsoup/2.50/libsoup-2.50.0.tar.xz - gtk2-devel - gtk3-devel - libcap-devel - libdaemon-devel - gobject-introspection-devel - libepoxy-devel - at-spi2-core-devel - gdbm-devel + libgcrypt-devel + gtk-doc + glib2-devel + libxml2-devel + sqlite-devel intltool + gettext-devel - - avahi-0.6.31-no-deprecations.patch - - network/analyzer/avahi/pspec.xml + programming/misc/libsoup/pspec.xml - avahi-glib - Libraries for easy use of avahi from glib applications - Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar + libsoup glib2 - avahi - avahi-libs + libxml2 + sqlite + glib-networking - /usr/lib/libavahi-glib.* - /usr/lib/libavahi-gobject.* - - - - avahi-glib-devel - Development files for avahi-glib - avahi-glib için geliştirme dosyaları - - avahi-glib - avahi-devel - - - /usr/include/avahi-glib - /usr/include/avahi-gobject - /usr/lib/pkgconfig/avahi-glib.pc - /usr/lib/pkgconfig/avahi-gobject.pc - - - - avahi-ui - Gtk user interface library for Avahi - avahi için geliştirme dosyaları - - gdbm - gtk2 - glib2 - avahi-libs - avahi-glib - atk - cairo - pango - gdk-pixbuf - fontconfig - - - /usr/lib/libavahi-ui.so* - - - - avahi-ui-devel - Development files for avahi-ui - avahi-ui için geliştirme dosyaları - - gtk2-devel - avahi-ui - avahi-devel - avahi-glib-devel - - - /usr/include/avahi-ui - /usr/lib/pkgconfig/avahi-ui.pc - - - - avahi-ui-gtk3 - Gtk3 user interface library for Avahi - avahi-gtk3, Gtk3 user interface library for Avahi - - gdbm - glib2 - gtk3 - avahi-libs - avahi-glib - atk - cairo - pango - gdk-pixbuf - - - /usr/lib/libavahi-ui-gtk3.so* - - - - avahi-ui-gtk3-devel - Development files for avahi-ui-gtk3 - avahi-ui-gtk3 için geliştirme dosyaları - - gtk2-devel - avahi-ui-gtk3 - avahi-devel - avahi-glib-devel - gtk3-devel - - - /usr/lib/pkgconfig/avahi-ui-gtk3.pc - - - - avahi-ui-tools - UI tools for mDNS browsing - Grafiksel mDNS tarama araçları - - gtk3 - glib2 - avahi - avahi-ui - avahi-glib - avahi-ui-gtk3 - avahi-libs - gtk3 - - - /usr/lib/python*/site-packages - /usr/bin/b* - /usr/bin/avahi-discover* - /usr/bin/avahi-bookmarks - /usr/share/man/man1/b* - /usr/share/man/man1/avahi-discover* - /usr/share/man/man1/avahi-bookmarks* - /usr/share/avahi/interfaces - /usr/share/applications/b* - /usr/share/applications/avahi-discover.desktop - - - - avahi-compat-howl - Libraries for howl compatibility - howl uyumluluk kitaplıkları - - avahi - avahi-libs - - - /usr/lib/libhowl.so* - - - - avahi-compat-howl-devel - Development files for avahi-compat-howl - avahi-compat-howl için geliştirme dosyaları - - avahi-compat-howl - - - /usr/include/avahi-compat-howl - /usr/lib/pkgconfig/avahi-compat-howl.pc - /usr/lib/pkgconfig/howl.pc - - - - avahi-compat-libdns_sd - Libraries for Apple Bonjour mDNSResponder compatibility - libdns_sd uyumluluk kitaplıkları - - avahi - avahi-libs - - - /usr/lib/libdns_sd.so* - - - - avahi-compat-libdns_sd-devel - Development files for avahi-compat-libdns_sd - avahi-compat-libdns_sd için geliştirme dosyaları - - avahi-compat-libdns_sd - - - /usr/include/avahi-compat-libdns_sd - /usr/include/dns_sd.h - /usr/lib/pkgconfig/avahi-compat-libdns_sd.pc - /usr/lib/pkgconfig/libdns_sd.pc - - - - avahi-libs - Libraries needed to run programs that use avahi - Avahi kullanan uygulamaları çalıştırmak için gerekli kitaplıklar - - dbus - - - /usr/lib/libavahi-common.so* - /usr/lib/libavahi-client.so* - - - - avahi - - dbus - expat - libcap - libdaemon - avahi-libs - - - /usr/sbin/avahi-daemon - /usr/lib/libavahi-core.so* - /etc/avahi/avahi-daemon.conf - /etc/avahi/hosts - /etc/avahi/services/ssh.service - /etc/dbus-1/system.d/avahi-dbus.conf - /usr/share/avahi - /usr/share/dbus-1/interfaces/*.xml - /usr/share/dbus-1/system-services - /usr/lib/avahi/service* - /lib/systemd/system - /usr/share/locale + /usr/lib /usr/share/doc - /usr/share/man/man5/* - /usr/share/man/man8/avahi-daemon.* - /run/avahi-daemon - /usr/lib/tmpfiles.d/avahi.conf - - - System.Service - System.Package - - - avahi.conf - - - - avahi-autoipd - Link-local IPv4 address automatic configuration daemon (IPv4LL) - Link-local IPv4 adresi otomatik yapılandırma hizmeti (IPv4LL) - - libdaemon - - - /etc/avahi/avahi-autoipd.action - /usr/sbin/avahi-autoipd - /usr/share/man/man8/avahi-autoipd.* - /var/lib/avahi-autoipd + /usr/share/locale/ + /usr/lib/girepository-1.0/Soup-2.4.typelib - avahi-dnsconfd - Configure local unicast DNS settings based on information published in mDNS - Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti + libsoup-gnome - libdaemon - avahi - avahi-libs + glib2 + libsoup - /etc/avahi/avahi-dnsconfd.action - /usr/sbin/avahi-dnsconfd - /usr/share/man/man8/avahi-dnsconfd.* - - - System.Service - - - - avahi-tools - Command line tools for mDNS browsing and publishing - mDNS taramak ve yayınlamak için komut satırı araçları - - gdbm - avahi - avahi-libs - - - /usr/bin - /usr/share/man/man1 + /usr/lib/lib*gnome* + /usr/lib/girepository-1.0/SoupGNOME-2.4.typelib - avahi-devel - Development files for avahi - avahi için geliştirme dosyaları + libsoup-docs + libsoup reference documents + libsoup başvuru belgeleri + data:doc - avahi-libs + libsoup - /usr/lib/pkgconfig/avahi-core.pc - /usr/lib/pkgconfig/avahi-client.pc - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/include/avahi-client - /usr/include/avahi-common - /usr/include/avahi-core + /usr/share/gtk-doc + + + + libsoup-devel + Development files for libsoup + libsoup için geliştirme dosyaları + + glib2-devel + libxml2-devel + libsoup + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libsoup-32bit + 32-bit shared libraries for libsoup + libsoup için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + glib2-32bit + sqlite-32bit + libxml2-32bit + glibc-32bit + + + glib2-32bit + sqlite-32bit + libxml2-32bit + glibc-32bit + libsoup + + + /usr/lib32 + + 2015-06-14 + 2.50.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-20 + 2.49.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + - 2014-05-20 - 0.6.31 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-25 + 2.46.0 + Rebuil. + Alihan Öztürk + alihan@pisilinux.org - 2014-01-24 - 0.6.31 - rebuild for unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-03-30 + 2.46.0 + 32bit split packages. + PisiLinux Community + admins@pisilinux.org - 2014-01-08 - 0.6.31 - Add avahi.conf, fix build + 2014-03-30 + 2.46.0 + Version bump. Marcin Bojara marcin@pisilinux.org - 2013-08-17 - 0.6.31 - Fix deps - Ertuğrul Erata - ertugrulerata@gmail.com + 2014-02.20 + 2.44.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org - 2013-06-27 - 0.6.31 - Fix avahi-daemon.conf + 2013-10.10 + 2.44.0 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-03-08 + 2.41.91 + bump + Erdinç Gültekin + erdincgultekin@gmail + + + 2013-01-29 + 2.40.3 + Version bump. Marcin Bojara marcin@pisilinux.org - - 2013-05-03 - 0.6.31 - Avahi-ui-gtk3 added - PisiLinux Community - admins@pisilinux.org - - - 2013-04-23 - 0.6.31 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-10-05 - 0.6.31 + + 2012-10-14 + 2.40.0 First release - Erdem Artan + PisiLinux Community admins@pisilinux.org - glib-networking - http://git.gnome.org/browse/glib-networking/ + libxmlpp + http://libxmlplusplus.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C++ wrapper for the libxml2 XML parser library + libxml++ is a C++ wrapper for the libxml XML parser library. + http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/2.38/libxml++-2.38.1.tar.xz + + glibmm-devel + libsigc++-devel + libxml2-devel + + programming/misc/libxmlpp/pspec.xml + + + libxmlpp + + libgcc + libxml2 + glibmm + + + /usr/lib + /usr/share/doc + + + + libxmlpp-devel + Development files for libxmlpp + libxmlpp için geliştirme dosyaları + + libxmlpp + glibmm-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/libxml++-2.6 + + + + libxmlpp-docs + Development documents for libxmlpp in HTML + libxmlpp için HTML formatında geliştirme belgeleri + + /usr/share/doc/libxmlpp/html + /usr/share/devhelp + + + + + 2015-05-21 + 2.38.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2013-10-29 + 2.37.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2011-03-16 + 2.33.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libdbusmenu-qt + https://launchpad.net/libdbusmenu-qt + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + Qt implementation of the DBusMenu spec + DBusMenu spesifikasyonunun Qt gerçeklemesi + libdbusmenu-qt library provides a Qt implementation of the DBusMenu spec. + libdbusmenu-qt kitaplığı DBusMenu spesifikasyonunun Qt gerçeklemesini sağlar. + http://archive.ubuntu.com/ubuntu/pool/main/libd/libdbusmenu-qt/libdbusmenu-qt_0.9.3+15.10.20150604.orig.tar.gz + + libqjson-devel + mesa-devel + qt5-base-devel + doxygen + cmake + + programming/misc/libdbusmenu-qt/pspec.xml + + + libdbusmenu-qt + + qt5-base + libgcc + + + /usr/lib + /usr/share/doc + + + + libdbusmenu-qt-devel + Development files for libdbusmenu-qt + libdbusmenu-qt için geliştirme dosyaları + + libdbusmenu-qt + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-18 + 0.9.3_20150604 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 0.9.2 + rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-08 + 0.9.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 0.9.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-29 + 0.9.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + dotconf + http://www.opentts.org/projects/dotconf + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A library to parse configuration files + Yapılandırma dosyası ayıklama kitaplığı + dotconf is a simple-to-use and powerful configuration file parser library written in C. + dotconf C dilinde yazılmış, basit kullanımlı ve güçlü bir yapılandırma dosyası ayıklama kitaplığıdır. + http://source.pisilinux.org/1.0/dotconf-1.3.tar.gz + programming/misc/dotconf/pspec.xml + + + dotconf + + /usr/lib + /usr/share/doc + + + + dotconf-devel + Development headers and documentation for dotconf + dotconf kitaplığı için geliştirme başlıkları ve belgeleri + + dotconf + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/dotconf/examples + /usr/share/doc/dotconf/dotconf-api.txt + + + + + 2015-08-25 + 1.3 + First release. + Vedat Demir + vedat@pisilinux.org + + + + + + libctemplate + https://github.com/OlafvdSpek/ctemplate + + Pisi Linux Community + admins@pisilinux.org + + BSD + library + programming.misc + CTemplate is a simple but powerful template language for C++. + It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. + https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.3.tar.gz + + glibc-devel + + programming/misc/libctemplate/pspec.xml + + + libctemplate + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libctemplate-devel + Development files for libctemplate + + libctemplate + + + /usr/include + + + + + 2015-11-22 + 2.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-29 + 2.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-05 + 2.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + yajl + http://lloyd.github.com/yajl + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + programming.misc + Yet Another JSON Library (YAJL) + JSON kitaplığı + yajl is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator. + yajl, ANSI C ile yazılmış olay-tabanlı (SAX tarzı) ufak bir JSON ayıklayıcıdır. + http://github.com/lloyd/yajl/tarball/2.1.0/lloyd-yajl-2.1.0.tar.gz + + cmake + + programming/misc/yajl/pspec.xml + + + yajl + + /usr/bin + /usr/lib + /usr/share/doc + + + + yajl-devel + Development headers for yajl + yajl kitaplığı için geliştirme başlıkları + + yajl + + + /usr/include + /usr/share/pkgconfig + + + + + 2015-12-31 + 2.1.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-01-17 + 2.0.1 + Rebuild for 1.0, change URL + Richard de Bruin + richdb@pisilinux.org + + + 2012-08-21 + 2.0.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + iniparser + http://ndevilla.free.fr/iniparser/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + programming.misc + A free ini file parsing library + Bir ini dosyası ayrıştırma kitaplığı + iniparser is a free stand-alone ini file parsing library written in portable ANSI C. + iniparser, ücretsiz ve ANSI C ile taşınabilir bir şekilde yazılmış INI dosyası ayrıştırma kitaplığıdır. + http://ndevilla.free.fr/iniparser/iniparser-3.1.tar.gz + + makefile.patch + + programming/misc/iniparser/pspec.xml + + + iniparser + + /usr/share/doc + /usr/lib + + + + iniparser-devel + Development files for iniparser + iniparser için geliştirme dosyaları + + iniparser + + + /usr/include + + + + + 2013-05-22 + 3.1 + rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-04-30 + 3.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2009-03-19 + 3.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libIDL + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Constructeur d'arbre CORBA + CORBA tree builder + CORBA ağacı inşa aracı + libIDL provides parsing .idl files and generate errors and warning messages in gcc-like format. + libIDL .idl dosyalarını ayrıştırmayı sağlar ve gcc biçimine benzer hata ve uyarı mesajları üretir. + mirrors://gnome/libIDL/0.8/libIDL-0.8.14.tar.bz2 + + glib2-devel + + programming/misc/libIDL/pspec.xml + + + libIDL + + glib2 + + + /usr/bin + /usr/lib + /usr/share/info + /usr/share/doc + + + + libIDL-devel + Development files for libIDL + + libIDL + + + /usr/bin/libIDL-config-2 + /usr/lib/pkgconfig + /usr/include + + + + + 2014-05-20 + 0.8.14 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 0.8.14 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.8.14 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + grantlee-qt5 + https://github.com/simonwagner/grantlee + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.misc + Qt string template engine based on the Django template system + grantlee is a plugin based String Template system written using the Qt framework. The goals of the project are to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming. + http://source.pisilinux.org/1.0/grantlee-5.0.0.tar.gz + + mesa-devel + qt5-base-devel + qt5-script-devel + qt5-linguist + cmake + + programming/misc/grantlee-qt5/pspec.xml + + + grantlee-qt5 + + qt5-base + qt5-script + libgcc + + + /usr/bin + /etc + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + grantlee-qt5-devel + Development files for grantlee + + grantlee-qt5 + qt5-base-devel + qt5-script-devel + + + /usr/include + /usr/lib/grantlee/*.cmake + + + + + 2015-10-18 + 5.0.0 + First release,rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + go + http://golang.org + + Aydın Demirel + aydin.demirel@pisilinux.org + + BSD + app:console + programming.language + Compiler and tools for the Go programming language from Google + Google'dan Go programlama dili için araçlar ve derleyici + Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. + Go basit, güvenilir ve verimli yazılım inşa etmek için onu kolay yapan açık kaynaklı bir programlama dilidir. + https://github.com/golang/go/archive/go1.4.2.tar.gz + + perl + gawk + mercurial + glibc-32bit + git + + programming/language/go/pspec.xml + + + golang + + glibc-32bit + git + + + /usr/bin/ + /usr/lib/ + /etc + /usr/share/ + + + go.sh + + + + + 2015-04-17 + 1.4.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-24 + 1.3.3 + Version bump, remove unneded depse + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-27 + 1.3.2 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + python3 + http://www.python.org/ + + PisiLinux Community + admins@pisilinux.org + + custom + programming.language + Next generation of the python high-level scripting language + Next generation of the python high-level scripting language + http://www.python.org/ftp/python/3.4.3/Python-3.4.3.tar.xz + + valgrind + tcltk-devel + tcl-devel + xz-devel + gdbm-devel + zlib-devel + bzip2 + expat-devel + libffi-devel + sqlite-devel + ncurses-devel + openssl-devel + readline-devel + + + Python-3.1.1-rpath.patch + + programming/language/python3/pspec.xml + + + python3 + + xz + gdbm + zlib + bzip2 + expat + libffi + sqlite + ncurses + openssl + readline + + + /usr/bin/p* + /usr/bin/2to3* + /usr/lib/python3.4/a* + /usr/lib/python3.4/c* + /usr/lib/python3.4/d* + /usr/lib/python3.4/e* + /usr/lib/python3.4/h* + /usr/lib/python3.4/imp* + /usr/lib/python3.4/j* + /usr/lib/python3.4/lib2* + /usr/lib/python3.4/log* + /usr/lib/python3.4/m* + /usr/lib/python3.4/p* + /usr/lib/python3.4/s* + /usr/lib/python3.4/te* + /usr/lib/python3.4/u* + /usr/lib/python3.4/v* + /usr/lib/python3.4/w* + /usr/lib/python3.4/x* + /usr/lib/python3.4/*.py + /usr/lib/python3.4/*.txt + /usr/lib/python3.4/lib-dynload/a* + /usr/lib/python3.4/lib-dynload/b* + /usr/lib/python3.4/lib-dynload/_b* + /usr/lib/python3.4/lib-dynload/c* + /usr/lib/python3.4/lib-dynload/_c* + /usr/lib/python3.4/lib-dynload/_d* + /usr/lib/python3.4/lib-dynload/_e* + /usr/lib/python3.4/lib-dynload/f* + /usr/lib/python3.4/lib-dynload/g* + /usr/lib/python3.4/lib-dynload/_g* + /usr/lib/python3.4/lib-dynload/_h* + /usr/lib/python3.4/lib-dynload/_j* + /usr/lib/python3.4/lib-dynload/_l* + /usr/lib/python3.4/lib-dynload/m* + /usr/lib/python3.4/lib-dynload/_m* + /usr/lib/python3.4/lib-dynload/n* + /usr/lib/python3.4/lib-dynload/o* + /usr/lib/python3.4/lib-dynload/_o* + /usr/lib/python3.4/lib-dynload/_p* + /usr/lib/python3.4/lib-dynload/p* + /usr/lib/python3.4/lib-dynload/r* + /usr/lib/python3.4/lib-dynload/_r* + /usr/lib/python3.4/lib-dynload/_s* + /usr/lib/python3.4/lib-dynload/s* + /usr/lib/python3.4/lib-dynload/te* + /usr/lib/python3.4/lib-dynload/_te* + /usr/lib/python3.4/lib-dynload/ti* + /usr/lib/python3.4/lib-dynload/u* + /usr/lib/python3.4/lib-dynload/x* + /usr/lib/python3.4/lib-dynload/z* + /usr/lib/*.so + /usr/lib/libpython3.4m.so.1.0 + /usr/share/man/man1/* + /usr/share/doc + + + + python3-devel + + python3 + + + /usr/include/python3.4m/* + /usr/lib/pkgconfig/* + + + + python3-tk + Python modules for Tk + library + programming.language.python + + python3 + tcl + tcltk + + + /usr/lib/python3*/tkinter + /usr/lib/python3*/lib-dynload/_tkinter.cpython-34m.so + /usr/lib/python3.4/turtledemo + + + + idle3 + An Integrated Development Environment for Python + app:gui + programming.environment + idle + + python3-tk + python3 + + + /usr/bin/idle3* + /usr/lib/python*/idlelib + /usr/share/applications + /usr/share/pixmaps + + + python-logo.png + idle.desktop + + + + + 2015-08-13 + 3.4.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-26 + 3.4.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-09 + 3.3.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-08-17 + 3.3.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-11 + 3.3.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + tcl + http://www.tcl.tk + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.tcl + Tcl programming language + Tcl programlama dili + Tcl provides a powerful platform for creating integration applications that tie together diverse applications, protocols, devices, and frameworks. + Tcl, çeşitli uygulamalar geliştirmek için kullanılabilen bir programlama dilidir. + Tcl provee una plataforma potente para crear aplicaciones de integración de diversos aplicaciones, protocolos, dispositivos y frameworks + mirrors://sourceforge/tcl/tcl8.6.4-src.tar.gz + + zlib-devel + + programming/language/tcl/tcl/pspec.xml + + + tcl + + zlib + + + /usr/bin + /usr/lib + /usr/lib/tcl8.5 + /usr/share/doc + /usr/share/man + + + + tcl-devel + Development files for tcl + tcl için geliştirme dosyaları + + tcl + zlib-devel + + + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/lib/tclConfig.sh + /usr/share/man/man3 + + + + sqlite-tcl + files for sqlite-tcl + + tcl + + + /usr/lib/sqlite3.8.8.3/libsqlite* + /usr/lib/tcl8/8.6/tdbc/sqlite3-1.0.3.tm + /usr/share/man/mann/tdbc_sqlite3.n + /usr/share/man/mann/sqlite3.n + + + + + 2015-06-11 + 8.6.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-03 + 8.6.3 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-12 + 8.6.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-30 + 8.6.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-17 + 8.6.1 + Add patch. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-06 + 8.6.1 + Rebuild to fix stripping. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-24 + 8.6.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-26 + 8.6.0 + Move pc files to devel pack, increase release no. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-01-26 + 8.6.0 + bump + Erdinç Gültekin + admins@pisilinux.org + + + 2012-09-15 + 8.5.12 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + tcltk + http://www.tcl.tk + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.tcl + Tk est une boîte à outils X11 implémentée avec le langage de script Tcl. + An X11 toolkit implemented with the Tcl scripting language + Tcl betik dili ile yazılmış X11 araç ve kitaplıkları + Tk is an X Windows widget set designed to work closely with the tcl scripting language. It allows you to write simple programs with full featured GUIs in only a little more time then it takes to write a text based interface. + Tk, tcl betik dili ile birlikte kullanılması için tasarlanmış bir X Windows araç setidir. Metin tabanlı arayüzlere oranla daha kısa sürede tam özellikli grafik arayüzlere sahip basit programlar yazmanızı sağlar. + mirrors://sourceforge/tcl/tk8.6.3-src.tar.gz + + tcl-devel + libX11-devel + libXft-devel + fontconfig-devel + + + tk-8.6.1-conf.patch + tk-8.6.1-fix-xft.patch + tk-8.6.1-make.patch + + programming/language/tcl/tcltk/pspec.xml + + + tcltk + + tcl + libX11 + libXft + fontconfig + + + /usr/bin + /usr/lib + /usr/lib/tk8.5 + /usr/share/doc + /usr/share/man + + + + tcltk-devel + Development files for tcltk + tcltk için geliştirme dosyaları + + tcltk + libX11-devel + tcl-devel + + + /usr/include + /usr/lib/*.a + /usr/lib/tkConfig.sh + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-12-14 + 8.6.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-30 + 8.6.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-17 + 8.6.1 + Version bump and add patch. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 8.6.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-26 + 8.6.0 + Move pc files to devel pack, increase release no. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-01-26 + 8.6.0 + bump + Erdinç Gültekin + admins@pisilinux.org + + + 2012-09-15 + 8.5.12 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + vala + http://live.gnome.org/Vala + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + programming.language + A modern programming language for GNOME + GNOME için modern bir programlama dili + Kompilator języka opartego na bibliotece GObject + Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C. + Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir. + Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C. + mirrors://gnome/vala/0.28/vala-0.28.0.tar.xz + + glib2-devel + gobject-introspection-devel + libxslt + + programming/language/vala/pspec.xml + + + vala + app:console + library + + glib2 + + + /usr/lib/vala + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/vala-*/vapi + /usr/share/vim/vimfiles + + + vim/vala.syntax + vim/vala.ftdetect + + + + vala-docs + GNOME devhelp documentation for Vala + Vala için GNOME devhelp kitabı + Pliki dokumentacji dla kompilatora vala + data:doc + + /usr/share/devhelp + + + + vala-devel + Development files for vala + vala için geliştirme dosyaları + Pliki nagłówkowe dla kompilatora vala + + vala + + + /usr/include + /usr/lib/pkgconfig + /usr/share/pkgconfig + /usr/share/aclocal + /usr/share/vala/Makefile.vapigen + /usr/share/man/man3 + + + + + 2015-05-22 + 0.28.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-25 + 0.24.0 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2013-11-18 + 0.22.1 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-04-13 + 0.20.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-15 + 0.18.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + ocaml + http://www.ocaml.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + OPL + app:console + programming.language.ocaml + Fast modern type-inferring functional programming language + Hızlı ve modern bir programlama dili + A fast modern type-inferring functional programming language descended from the ML (Meta Language) family. + OcaML, ML dilinin soyundan gelen fonksiyonel bir programlama dilidir + http://caml.inria.fr/pub/distrib/ocaml-4.02/ocaml-4.02.1.tar.xz + + zlib-devel + ncurses-devel + libX11-devel + chrpath + + + fedora/0001-Don-t-ignore-.-configure-it-s-a-real-git-file.patch + fedora/0002-Ensure-empty-compilerlibs-directory-is-created-by-gi.patch + fedora/0003-Don-t-add-rpaths-to-libraries.patch + fedora/0004-ocamlbyteinfo-ocamlplugininfo-Useful-utilities-from-.patch + fedora/0005-configure-Allow-user-defined-C-compiler-flags.patch + fedora/0009-arg-Add-no_arg-and-get_arg-helper-functions.patch + fedora/0010-arg-Allow-flags-such-as-flag-arg-as-well-as-flag-arg.patch + fedora/0011-PR-6517-use-ISO-C99-types-u-int-32-64-_t-in-preferen.patch + + programming/language/ocaml/ocaml/pspec.xml + + + ocaml + + zlib + ncurses + libX11 + + + /usr/bin/ + /usr/lib/ + /usr/share/doc/ + /usr/share/man/ + + + + + 2015-04-04 + 4.02.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-11-16 + 4.00.2 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-23 + 4.00.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-24 + 3.4.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-07 + 4.00.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 4.01.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-20 + 4.00.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + rhino + http://www.mozilla.org/rhino/ + + PisiLinux Community + admins@pisilinux.org + + GPL2 + programming.language.java + Open-source implementation of JavaScript written entirely in Java + Open-source implementation of JavaScript written entirely in Java + https://github.com/mozilla/rhino/archive/Rhino1_7_7_RELEASE.tar.gz + http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz + + rhino + rhino.1 + rhino-jsc + rhino-jsc.1 + rhino-debugger + rhino-debugger.1 + + + ant + re7-openjdk-headless + + programming/language/java/rhino/pspec.xml + + + rhino + + /usr/share/man + /usr/bin + /usr/share/java/ + + + + + 2015-08-15 + 1.7.7 + Version Bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-03 + 1.7R_4 + Rebuild for openjdk. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-04 + 1.7R_4 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2012-07-23 + 1.7 + First release + Ramazan Utku + admins@pisilinux.org + + + + + + java7-openjdk + http://icedtea.classpath.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + programming.language.java + Open Java Development Kit + OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). + http://icedtea.wildebeest.org/download/source/icedtea-2.6.1.tar.gz + + giflib_5.1.diff + fontconfig-paths.diff + openjdk7_nonreparenting-wm.diff + + + ant + wget + rhino + fastjar + nss-devel + zlib-devel + attr-devel + xorg-proto + gtk2-devel + cups-devel + eclipse-ecj + libXt-devel + libSM-devel + lcms2-devel + jdk7-openjdk + libICE-devel + libpng-devel + giflib-devel + libxslt-devel + libXtst-devel + alsa-lib-devel + libXinerama-devel + libjpeg-turbo-devel + + programming/language/java/java7-openjdk/pspec.xml + + + jre7-openjdk-headless + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs + + atk + cups + gtk2 + zlib + cairo + glib2 + lcms2 + libXi + pango + libX11 + libgcc + libXext + libXtst + freetype + fontconfig + gdk-pixbuf + libXrender + libjpeg-turbo + + + /usr/bin/orbd + /usr/bin/rmid + /usr/bin/java + /etc/env.d/20java_jre.csh + /etc/env.d/20java_jre + /etc/java-7-openjdk/ + /usr/bin/pack200 + /usr/bin/keytool + /usr/bin/tnameserv + /usr/bin/unpack200 + /usr/share/man/man1/rmid.1 + /usr/share/man/man1/orbd.1 + /usr/share/man/man1/java.1 + /usr/bin/servertool + /usr/bin/rmiregistry + /usr/share/doc/java7-openjdk/ + /usr/share/man/ja/man1/rmid.1 + /usr/share/man/ja/man1/java.1 + /usr/share/man/man1/pack200.1 + /usr/share/man/man1/keytool.1 + /usr/share/man/ja/man1/orbd.1 + /usr/share/man/man1/tnameserv.1 + /usr/share/man/man1/unpack200.1 + /usr/share/man/ja/man1/pack200.1 + /usr/share/man/man1/servertool.1 + /usr/share/man/ja/man1/keytool.1 + /usr/share/man/man1/rmiregistry.1 + /usr/share/man/ja/man1/tnameserv.1 + /usr/share/man/ja/man1/unpack200.1 + /usr/share/man/ja/man1/servertool.1 + /usr/share/doc/jre7-openjdk-headless + /usr/share/man/ja/man1/rmiregistry.1 + /usr/lib/jvm/java-7-openjdk/jre/lib + /usr/lib/jvm/java-7-openjdk/jre/java + /usr/lib/jvm/java-7-openjdk/jre/orbd + /usr/lib/jvm/java-7-openjdk/jre/rmid + /usr/lib/jvm/java-7-openjdk/jre/bin/ + /usr/lib/jvm/java-7-openjdk/jre/keytool + /usr/lib/jvm/java-7-openjdk/jre/pack200 + /usr/lib/jvm/java-7-openjdk/jre/bin/orbd + /usr/lib/jvm/java-7-openjdk/jre/bin/java + /usr/lib/jvm/java-7-openjdk/jre/bin/rmid + /usr/lib/jvm/java-7-openjdk/jre/tnameserv + /usr/lib/jvm/java-7-openjdk/jre/unpack200 + /usr/lib/jvm/java-7-openjdk/jre/servertool + /usr/lib/jvm/java-7-openjdk/jre/policytool + /usr/lib/jvm/java-7-openjdk/jre/rmiregistry + /usr/lib/jvm/java-7-openjdk/jre/bin/keytool + /usr/lib/jvm/java-7-openjdk/jre/bin/pack200 + /usr/lib/jvm/java-7-openjdk/lib/*/jli/libjli.so + /usr/lib/jvm/java-7-openjdk/jre/bin/tnameserv + /usr/lib/jvm/java-7-openjdk/jre/bin/unpack200 + /usr/lib/jvm/java-7-openjdk/jre/bin/servertool + /usr/lib/jvm/java-7-openjdk/jre/bin/rmiregistry + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/xawt/libmawt.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/headless/libmawt.so + + + 20java_jre + 20java_jre.csh + + + + jre7-openjdk + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Full Java runtime environment - needed for executing Java GUI and Webstart programs + + zlib + giflib + libX11 + libpng + libXext + alsa-lib + libjpeg-turbo + jre7-openjdk-headless + + + /usr/share/doc/openjdk + /usr/bin/policytool + /usr/share/icons/hicolor/ + /usr/share/man/man1/policytool.1 + /usr/share/man/ja/man1/policytool.1 + /usr/share/applications/policytool.desktop + /usr/lib/jvm/java-7-openjdk/jre/bin/policytool + /usr/lib/jvm/java-7-openjdk/jre/lib/*/libjsoundalsa.so + /usr/lib/jvm/java-7-openjdk/jre/lib/*/libpulse-java.so + /usr/lib/jvm/java-7-openjdk/jre/lib/*/libsplashscreen.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libjsoundalsa.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libpulse-java.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libsplashscreen.so + + + sun-jre + + + sun-jre + + + + jdk7-openjdk + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - SDK + + zlib + libX11 + libgcc + jre7-openjdk-headless + + + /etc/env.d/21java_jdk.csh + /etc/env.d/21java_jdk + /usr/share/man/man1/ + /usr/share/man/ja/man1/ + /usr/bin/jar + /usr/bin/xjc + /usr/bin/apt + /usr/bin/jdb + /usr/bin/jps + /usr/bin/jmap + /usr/bin/idlj + /usr/bin/jcmd + /usr/bin/jhat + /usr/bin/rmic + /usr/bin/javac + /usr/bin/javah + /usr/bin/javap + /usr/bin/jinfo + /usr/bin/wsgen + /usr/bin/jstat + /usr/bin/jstack + /usr/bin/jstatd + /usr/bin/javadoc + /usr/bin/extcheck + /usr/bin/jconsole + /usr/bin/wsimport + /usr/bin/jarsigner + /usr/bin/jsadebugd + /usr/bin/schemagen + /usr/bin/serialver + /usr/bin/jrunscript + /usr/bin/appletviewer + /usr/bin/native2ascii + /usr/share/applications/jconsole.desktop + /usr/lib/jvm/java-7-openjdk/include + /usr/lib/jvm/java-7-openjdk/bin/apt + /usr/lib/jvm/java-7-openjdk/bin/jar + /usr/lib/jvm/java-7-openjdk/bin/jdb + /usr/lib/jvm/java-7-openjdk/bin/jps + /usr/lib/jvm/java-7-openjdk/bin/xjc + /usr/lib/jvm/java-7-openjdk/bin/rmic + /usr/lib/jvm/java-7-openjdk/bin/rmid + /usr/lib/jvm/java-7-openjdk/bin/idlj + /usr/lib/jvm/java-7-openjdk/bin/orbd + /usr/lib/jvm/java-7-openjdk/bin/java + /usr/lib/jvm/java-7-openjdk/bin/jhat + /usr/lib/jvm/java-7-openjdk/bin/jmap + /usr/lib/jvm/java-7-openjdk/bin/jcmd + /usr/lib/jvm/java-7-openjdk/bin/javac + /usr/lib/jvm/java-7-openjdk/bin/javah + /usr/lib/jvm/java-7-openjdk/bin/javap + /usr/lib/jvm/java-7-openjdk/bin/jinfo + /usr/lib/jvm/java-7-openjdk/bin/jstat + /usr/lib/jvm/java-7-openjdk/bin/wsgen + /usr/lib/jvm/java-7-openjdk/bin/jstatd + /usr/lib/jvm/java-7-openjdk/bin/jstack + /usr/lib/jvm/java-7-openjdk/bin/pack200 + /usr/lib/jvm/java-7-openjdk/bin/javadoc + /usr/lib/jvm/java-7-openjdk/bin/keytool + /usr/lib/jvm/java-7-openjdk/bin/wsimport + /usr/lib/jvm/java-7-openjdk/bin/extcheck + /usr/lib/jvm/java-7-openjdk/bin/jconsole + /usr/lib/jvm/java-7-openjdk/bin/tnameserv + /usr/lib/jvm/java-7-openjdk/bin/unpack200 + /usr/lib/jvm/java-7-openjdk/bin/schemagen + /usr/lib/jvm/java-7-openjdk/bin/serialver + /usr/lib/jvm/java-7-openjdk/bin/jarsigner + /usr/lib/jvm/java-7-openjdk/bin/jsadebugd + /usr/lib/jvm/java-7-openjdk/bin/jrunscript + /usr/lib/jvm/java-7-openjdk/bin/policytool + /usr/lib/jvm/java-7-openjdk/bin/servertool + /usr/lib/jvm/java-7-openjdk/bin/rmiregistry + /usr/lib/jvm/java-7-openjdk/bin/java-rmi.cgi + /usr/lib/jvm/java-7-openjdk/bin/native2ascii + /usr/lib/jvm/java-7-openjdk/bin/appletviewer + /usr/lib/jvm/java-7-openjdk/lib/jexec + /usr/lib/jvm/java-7-openjdk/lib/ct.sym + /usr/lib/jvm/java-7-openjdk/lib/dt.jar + /usr/lib/jvm/java-7-openjdk/lib/ir.idl + /usr/lib/jvm/java-7-openjdk/lib/orb.idl + /usr/lib/jvm/java-7-openjdk/lib/tools.jar + /usr/lib/jvm/java-7-openjdk/lib/sa-jdi.jar + /usr/lib/jvm/java-7-openjdk/lib/jconsole.jar + + + sun-jdk + + + sun-jdk + + + 21java_jdk.csh + 21java_jdk + + + + openjdk7-src + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - sources + + jdk7-openjdk + + + /usr/lib/jvm/java-7-openjdk/src.zip + + + + openjdk7-doc + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - documentation + + jdk7-openjdk + + + /usr/share/doc/openjdk7-doc/ + + + + + 2015-08-22 + 7u_85.2.6.1 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-06-16 + 7u_79.2.5.5 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-02-02 + 7u_75.2.5.4 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-09-30 + 7u_65.2.5.2 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-07-18 + 7u_65.2.5.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-06-20 + 7u_60.2.5.0 + Rebuilf for new gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-06-04 + 7u_55.2.4.7 + Rebuilf for new gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-04-16 + 7u_55.2.4.7 + Version bump to 2.4.7, use system ca-certs-java instead of builtin one. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-01 + 7u_51.2.4.6 + Version bump to 2.4.6, use system ca-certs-java instead of builtin one. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-27 + 7u_51.2.4.5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + fastjar + http://savannah.nongnu.org/projects/fastjar + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:web + programming.language.java + Sun java jar compatible archiver + Sun java jar compatible archiver + Sun java jar compatible archiver + Sun java jar compatible archiver. + http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz + + zlib-devel + + programming/language/java/fastjar/pspec.xml + + + fastjar + + zlib + + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + + + + + 2014-06-05 + 0.98 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-02-27 + 0.98 + First Release + PisiLinux Community + admins@pisilinux.org + + + + + + eclipse-ecj + http://www.eclipse.org + + PisiLinux Community + admins@pisilinux.org + + EPL + app:web + programming.language.java + Eclipse java bytecode compiler + Eclipse java bytecode compiler + http://download.eclipse.org/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar + + ant + jre7-openjdk-headless + + + 01-ecj-include-props.patch + 02-buildxml-fix-manifest.patch + + programming/language/java/eclipse-ecj/pspec.xml + + + eclipse-ecj + + /usr/share/man + /usr/bin + /usr/share/java + + + ecj + + + + + 2015-05-19 + 4.4.2_201502041700 + Version Bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-04 + 4.4.1_201409250400 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-06-04 + 4.3.1_201309111000 + Rebuild for new gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-27 + 4.3.1_201309111000 + First Release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-IO-Socket-SSL + http://search.cpan.org/dist/IO-Socket-SSL/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Nearly transparent SSL encapsulation for IO::Socket::INET + IO::Socket::SSL is a class implementing an object oriented interface to SSL sockets. The class is a descendent of IO::Socket::INET. + IO::Socket::SSL, SSL soketlerine nesne yönelimli arayüz sağlayan bir sınıftır. IO::Socket::INET'in gelişmişidir. + IO::Socket::SSL es una clase que implementa una inerfaz a sockets SSL, orientado a objetos. La clase es descendiente de IO::Socket::INET. + http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-1.998.tar.gz + + perl-Net-SSLeay + perl + + programming/language/perl/perl-IO-Socket-SSL/pspec.xml + + + perl-IO-Socket-SSL + + perl-Net-SSLeay + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-IO-Socket-SSL + + + + + 2014-09-10 + 1.998 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.989 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 1.76 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-09-07 + 1.76 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-String-ShellQuote + http://search.cpan.org/~rosch/String-ShellQuote + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Quote strings for passing through the shell + This module contains some functions which are useful for quoting strings which are going to pass through the shell or a shell-like object. + Bu modül kabuk veya kabuk benzeri bir neseden geçecek dizgeleri tırnak içine almak için fonksiyonlar içerir. + El módulo contiene algunas funciones útiles para encerrar cadenas de texto entre comillas, para pasarlo a una shell o a un objeto similar. + http://search.cpan.org/CPAN/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz + + perl + + programming/language/perl/perl-String-ShellQuote/pspec.xml + + + perl-String-ShellQuote + + perl + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/perl-String-ShellQuote + + + + + 2014-09-10 + 1.04 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.04 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 1.04 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-07-10 + 1.04 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Image-ExifTool + http://www.sno.phy.queensu.ca/~phil/exiftool + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + A command-line application for reading, writing and editing meta information in image, audio and video files + Görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz bir komut satırı uygulaması + ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in image, audio and video files. + ExifTool; görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz platformdan bağımsız bir Perl kütüphanesi ve komut satırı uygulamasıdır. + http://www.cpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-10.00.tar.gz + + perl + + programming/language/perl/perl-Image-ExifTool/pspec.xml + + + perl-Image-ExifTool + + perl + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/perl-Image-ExifTool/Changes + + + + perl-Image-ExifTool-docs + Documentation of perl-Image-ExifTool + perl-Image-ExifTool için dökümantasyon dosyaları + + /usr/share/doc + + + + + 2015-08-27 + 10.00 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + perl-HTML-Form + http://search.cpan.org/~gaas/HTML-Form-6.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTML::Form - Class that represents an HTML form element + Objects of the HTML::Form class represents a single HTML <form> ... </form> instance. A form consists of a sequence of inputs that usually have names, and which can take on various values. The state of a form can be tweaked and it can then be asked to provide HTTP::Request objects that can be passed to the request() method of LWP::UserAgent. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Form-6.03.tar.gz + + perl + + programming/language/perl/perl-HTML-Form/pspec.xml + + + perl-HTML-Form + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 6.03 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-LWP-Protocol-https + http://search.cpan.org/~gaas/LWP-Protocol-https-6.04/lib/LWP/Protocol/https.pm + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + LWP::Protocol::https - Provide https support for LWP::UserAgent + The LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-Protocol-https-6.04.tar.gz + + perl + perl-Mozilla-CA + + programming/language/perl/perl-LWP-Protocol-https/pspec.xml + + + perl-LWP-Protocol-https + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2014-10-16 + 6.04 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Net-SSLeay + http://search.cpan.org/~flora/Net-SSLeay + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Net::SSLeay module for perl + OpenSSL erişimi için Perl modülü + Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. This protocol is frequently used in the telecoms and mobile operator world to pass short messages between systems that implement the short message service (SMS). + Net::SMPP, TCP üzerinden kısa mesaj gönderimi gerçeklemesidir. Bu iletişim kuralı genelde telekom alanında kısa mesaj servisini (SMS) gerçekleştirmek için kullanılır. + Net::SMPP es una implementación del protocolo TCP de mensajes cortos sobre Peer to Peer. Este protocolo está frecuentemente usado por operadoras de telecom y móviles para pasar mensajes cortos entre sistemas que implementan el servicio de mensajes cortos (SMS). + http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-1.66.tar.gz + + perl + perl-Test-Exception + openssl-devel + + programming/language/perl/perl-Net-SSLeay/pspec.xml + + + perl-Net-SSLeay + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-Net-SSLeay + + + + + 2014-09-10 + 1.66 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.63 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 1.48 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-09-12 + 1.48 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-LWP-Mediatypes + http://search.cpan.org/~gaas/LWP-MediaTypes-6.02/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + guess media type for a file or a URL + This module provides functions for handling media (also known as MIME) types and encodings. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz + + perl + + programming/language/perl/perl-LWP-Mediatypes/pspec.xml + + + perl-LWP-Mediatypes + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 12.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 12.2 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-WWW-Robotrules + http://search.cpan.org/~gaas/WWW-RobotRules-6.02/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + database of robots.txt-derived permissions + This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html> Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/WWW-RobotRules-6.02.tar.gz + + perl + + programming/language/perl/perl-WWW-Robotrules/pspec.xml + + + perl-WWW-Robotrules + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 6.02 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 6.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Body + http://search.cpan.org/~getty/HTTP-Body-1.15/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP Body Parser + HTTP::Body parses chunks of HTTP POST data and supports application/octet-stream, application/x-www-form-urlencoded, and multipart/form-data. + http://search.cpan.org/CPAN/authors/id/G/GE/GETTY/HTTP-Body-1.19.tar.gz + + perl + perl-Test-Deep + + programming/language/perl/perl-HTTP-Body/pspec.xml + + + perl-HTTP-Body + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 1.19 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.19 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.25 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 1.15 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Parser + http://search.cpan.org/dist/HTML-Parser/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + HTML Parser + HTML ayrıştırmak için kütüphane + The HTML-Parser distribution is a collection of modules that parse and extract information from HTML documents. + HTML-Parser yazılımı, HTML dökümanlarından bilgi ayrıştıran ve seçip çıkaran bir modüller kolleksiyonudur. + La distribución HTML-Parser es una colección de módulos que analizan la sintaxis y extraen información de documentos HTML. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Parser-3.71.tar.gz + + perl + perl-Test-Pod + perl-HTML-Tagset + + programming/language/perl/perl-HTML-Parser/pspec.xml + + + perl-HTML-Parser + + perl + perl-HTML-Tagset + + + /usr/lib + /usr/share/doc/perl-HTML-Parser + /usr/share/man + + + + + 2014-09-10 + 3.71 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 3.71 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 3.71 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-06-29 + 3.69 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTTP-Server-Simple + http://search.cpan.org/dist/HTTP-Server-Simple/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Lightweight HTTP Server + Basit bir HTTP Sunucusu + HTTP::Server::Simple is a very simple standalone HTTP daemon with no non-core module dependencies. It's ideal for building a standalone http-based UI to your existing tools. + HTTP::Server::Simple basit, perl çekirdek modülleri dışında bağımlılığı olmadan tek başına çalışabilen bir HTTP hizmetidir. Tek başına çalışan, HTTP temelli bir uygulama yazmak istiyorsanız idealdir. + http://search.cpan.org/CPAN/authors/id/J/JE/JESSE/HTTP-Server-Simple-0.45_02.tar.gz + + perl + perl-URI + + programming/language/perl/perl-HTTP-Server-Simple/pspec.xml + + + perl-HTTP-Server-Simple + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 0.45_02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-25 + 0.45_02 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.44 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 0.44 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-URI + http://search.cpan.org/~gaas/URI + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl module for Uniform Resource Identifiers (absolute and relative) + A Uniform Resource Identifier is a compact string of characters that identifies an abstract or physical resource. A Uniform Resource Identifier can be further classified as either a Uniform Resource Locator (URL) or a Uniform Resource Name (URN). + Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri), soyut veya fiziki bir kaynağı belirleyen bir tekparça karakter dizgesidir. Bir URI, bir URL (Uniform Resource Locator – Tektip Kaynak Bulucu) veya bir URN (Uniform Resource Name – Tektip Kaynak Adı)’den daha ötede sınıflandırılabilir. + Un identificador de recurso uniformado (URI) es una cadena de caracteres compacta que identifica un recurso físico o abstracto. Se puede clasificar los URI en Uniform Resource Locator (URL) o Uniform Resource Name (URN). + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/URI-1.60.tar.gz + + perl + + programming/language/perl/perl-URI/pspec.xml + + + perl-URI + + perl + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 1.60 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.60 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-07 + 1.60 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-11 + 1.60 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Digest-MD5 + http://www.cpan.org + + PisiLinux Community + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl interface to the MD5 Algorithm + MD5 Algoritmasına perl arayüzü + Perl interface to the MD5 Algorithm + MD5 Algoritmasına perl arayüzü + http://www.cpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.53.tar.gz + + perl + + programming/language/perl/perl-Digest-MD5/pspec.xml + + + perl-Digest-MD5 + + perl + + + /usr/bin + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 2.53 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 2.53 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-23 + 2.53 + Rebuild + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + 2013-11-04 + 2.53 + V.bump + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + 2013-03-21 + 2.52 + First release + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + + + + perl-HTML-FormatText-WithLinks-AndTables + http://search.cpan.org/dist/HTML-FormatText-WithLinks-AndTables + + Osman Erkan + osman.erkan@pisilinux.org + + PerlArtistic GPL + library + programming.language.perl + Converts HTML to Text with tables in tact. + This module was inspired by HTML::FormatText::WithLinks which has proven to be a useful `lynx -dump` work-alike. + http://search.cpan.org/CPAN/authors/id/S/SF/SFRYER/HTML-FormatText-WithLinks-AndTables-0.02.tar.gz + + perl + perl-HTML-FormatText-WithLinks + + programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml + + + perl-HTML-FormatText-WithLinks-AndTables + + perl + perl-HTML-FormatText-WithLinks + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 0.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-23 + 0.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-File-Listing + http://search.cpan.org/~gaas/File-Listing-6.04/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + File::Listing - parse directory listing + This module exports a single function called parse_dir(), which can be used to parse directory listings. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz + + perl + perl-HTTP-Date + + programming/language/perl/perl-File-Listing/pspec.xml + + + perl-File-Listing + + perl + perl-HTTP-Date + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.04 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-25 + 6.04 + Fix version number. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 6.0.4 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 6.0.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Digest-HMAC + http://search.cpan.org/dist/Digest-HMAC + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Keyed-Hashing for Message Authentication + This Perl module provides HMAC-MD5 hashing. + Bu Perl modülü HMAC-MD5 şifrelemesi sağlar. + Este módulo Perl facilita hashing HMAC-MD5 + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-1.03.tar.gz + + perl + perl-Digest-SHA1 + + programming/language/perl/perl-Digest-HMAC/pspec.xml + + + perl-Digest-HMAC + + perl + perl-Digest-SHA1 + + + /usr/lib + /usr/share/man + + + + + 2014-09-10 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 1.03 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 1.03 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Encode-Locale + http://search.cpan.org/~gaas/Encode-Locale-1.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2+ + app:console + programming.language.perl + NAME::Encode::Locale - Determine the locale encoding + In many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world are still byte based. Programs therefore need to decode byte strings that enter the program from the outside and encode them again on the way out. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Encode-Locale-1.03.tar.gz + + perl + + programming/language/perl/perl-Encode-Locale/pspec.xml + + + perl-Encode-Locale + + perl + + + /usr/lib + /usr/share + + + + + 2014-09-10 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-31 + 1.03 + rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 1.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Crypt-PasswdMD5 + http://search.cpan.org/dist/Crypt-PasswdMD5/ + + Selim Ok + admins@pisilinux.org + + Artistic + library + programming.language.perl + Crypt::PasswdMD5 module for perl + Perl için Crypt::PasswdMD5 modülü + Provides various crypt()-compatible interfaces to the MD5-based crypt() function. + MD5 tabanlı crypt() fonksiyonu için, crypt() uyumlu çeşitli arayüzler sağlar. + http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-1.40.tgz + + perl + + programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml + + + perl-Crypt-PasswdMD5 + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 1.40 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.40 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 1.40 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-GSSAPI + http://search.cpan.org/dist/GSSAPI/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl extension providing access to the GSSAPIv2 library + GSSAPI kitaplığına erişim sağlayan perl modülü + perl-GSSAPI module gives access to the routines of the GSSAPI library, as described in rfc2743 and rfc2744 and implemented by the Kerberos-1.2 distribution from MIT. + perl-GSSAPI, RFC 2744'de açıklandığı gibi GSSAPI C bağlayıcılarını kullanan bir perl eklentisidir. + http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/GSSAPI-0.28.tar.gz + + perl + mit-kerberos + e2fsprogs-devel + + + disable_failing_test.patch + + programming/language/perl/perl-GSSAPI/pspec.xml + + + perl-GSSAPI + + perl + mit-kerberos + e2fsprogs + + + /usr/lib + /usr/share/man + + + + + 2015-04-23 + 0.28 + Release bump, fix deps + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.28 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-21 + 0.28 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 0.28 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Text-ParseWords + http://search.cpan.org/~chorny/Text-ParseWords-3.29/ParseWords.pm + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Text::ParseWords - parse text into an array of tokens or array of arrays + This module has two interfaces, one through color() and colored() and the other through constants. It also offers the utility functions uncolor(), colorstrip(), and colorvalid(), which have to be explicitly imported to be used + http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Text-ParseWords-3.30.tar.gz + + perl + + programming/language/perl/perl-Text-ParseWords/pspec.xml + + + perl-Text-ParseWords + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2015-07-26 + 3.30 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-10 + 3.29 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 3.29 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-07 + 3.29 + Version bump, fix URL + Richard de Bruin + richdb@pisilinux.org + + + 2012-06-06 + 3.27 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Scrubber + http://search.cpan.org/dist/HTML-Scrubber + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl extension for scrubbing/sanitizing html + HTML dosyalarını düzenlemek için bir perl modülü + If you wanna scrub or sanitize html input in a reliable an flexible fashion, then this module is for you. I wasn't satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought I'd write something similar that works directly with HTML::Parser. + http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Scrubber-0.11.tar.gz + + perl-HTML-Parser + perl + + programming/language/perl/perl-HTML-Scrubber/pspec.xml + + + perl-HTML-Scrubber + + perl-HTML-Parser + perl + + + /usr/lib + /usr/share/man + + + + + 2014-09-10 + 0.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.09 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 0.09 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Date + http://search.cpan.org/~gaas/HTTP-Date-6.02/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + date conversion routines + This module provides functions that deal the date formats used by the HTTP protocol (and then some more). Only the first two functions, time2str() and str2time(), are exported by default. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Date-6.02.tar.gz + + perl + + programming/language/perl/perl-HTTP-Date/pspec.xml + + + perl-HTTP-Date + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.02 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Error + http://search.cpan.org/dist/Error/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Error/exception handling in an OO-ish way + Hata/istisna yakalama ve işlemeye yarayan Nesne yönelimli mantıkla yazılmış bir perl modülü + The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded. + perl-Error, Hata/istisna yakalama ve işleme işlerini gören, Nesne yönelimli mantıkla yazılmış bir perl modülüdür. + http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Error-0.17022.tar.gz + + perl + + programming/language/perl/perl-Error/pspec.xml + + + perl-Error + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 0.17022 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 0.17022 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 0.17021 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-04-25 + 0.17019 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-09-07 + 0.17018 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Test-Pod + http://search.cpan.org/dist/Test-Pod + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + A perl module to check for errors in POD files + Pod dosyalarında hata olup olmadığını kontrol eden bir Perl Modülü + Check POD files for errors or warnings in a test file, using Pod::Simple. + Test::Pod, Pod::Simple modülünü kullanarak POD dosyalarında hata ya da uyarı olup olmadığını kontrol etmeye yarayan bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz + + perl + + programming/language/perl/perl-Test-Pod/pspec.xml + + + perl-Test-Pod + + perl + + + /usr/lib + /usr/share/man + + + + + 2014-09-10 + 1.48 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.48 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-07 + 1.48 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 1.45 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-NET-HTTP + http://search.cpan.org/~gaas/Net-HTTP-6.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Low-level HTTP connection (client) + The Net::HTTP class is a low-level HTTP client. An instance of the Net::HTTP class represents a connection to an HTTP server. The HTTP protocol is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Net-HTTP-6.06.tar.gz + + perl + + programming/language/perl/perl-NET-HTTP/pspec.xml + + + perl-NET-HTTP + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.06 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 6.06 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.03 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Sub-Uplevel + http://search.cpan.org/dist/Sub-Uplevel/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Module to apparently run a function in a higher stack frame + Bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmak için perl modülü + Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. + http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.24.tar.gz + + perl + + programming/language/perl/perl-Sub-Uplevel/pspec.xml + + + perl-Sub-Uplevel + + perl + + + /usr/lib + /usr/share/doc/perl-Sub-Uplevel + /usr/share/man + + + + + 2014-09-10 + 0.24 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.24 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 0.24 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 0.24 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Format + http://search.cpan.org/dist/HTML-Format/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + A Perl module that format HTML as plaintext, RTF and PostScript + HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. + perl-HTML-Format HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-2.11.tar.gz + + perl + perl-HTML-Tree + perl-Font-AFM + + programming/language/perl/perl-HTML-Format/pspec.xml + + + perl-HTML-Format + + perl + perl-HTML-Tree + perl-Font-AFM + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 2.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 2.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 2.10 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-06 + 2.10 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Authen-SASL + http://search.cpan.org/dist/Authen-SASL + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + A Perl SASL interface + Perl için SASL modülü + SASL is a generic mechanism for authentication used by several network protocols. Authen::SASL provides an implementation framework that all protocols should be able to share. The framework allows different implementations of the connection class to be plugged in. + SASL, ağ protokolleri tarafından kullanılan genel bir kimlik doğrulama tekniğidir. Authen::SASL, bütün protokollerin paylaşabileceği bir yapı sağlar. Bu yapı, kullanılacak bağlantı sınıfının farklı şekillerde uygulamalarına izin verir. + SASL es un mecanismo genérico de autenticación usado en varios protocolos de red. Authen::SASL facilita un capa de implementación, que todos los protocolos deberían poder compartir. El framework permite adjuntar implementaciones diferentes de la clase de conexión. + http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-2.16.tar.gz + + perl + perl-GSSAPI + perl-Digest-HMAC + + programming/language/perl/perl-Authen-SASL/pspec.xml + + + perl-Authen-SASL + + perl + perl-GSSAPI + perl-Digest-HMAC + + + /usr/lib + /usr/share/doc/perl-Authen-SASL + /usr/share/man + + + + + 2014-09-10 + 2.16 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 2.16 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-04 + 2.16 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-06 + 2.15 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Digest-SHA1 + http://search.cpan.org/dist/Digest-SHA1/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + SHA1 message digest algorithm + The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input. + Bu modül NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlar. Farklı uzunluklardaki mesajları alan algoritma, çıktı olarak 160 bitlik parmakizi veya mesaj özeti üretir. + El módulo Digest::SHA1 permite usar el algoritmo NIST SHA-1 desde programas Perl. El algoritmo acepta como entrada un mensaje de longitud arbitraria y produce un "fingerprint" (huella digital) o "message digest" de 160-bit. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz + + perl + + programming/language/perl/perl-Digest-SHA1/pspec.xml + + + perl-Digest-SHA1 + + perl + + + /usr/lib + /usr/share/doc/perl-Digest-SHA1 + /usr/share/man + + + + + 2014-09-10 + 2.13 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 2.13 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 2.13 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 2.13 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTML-FormatText-WithLinks + http://search.cpan.org/dist/HTML-FormatText-WithLinks + + Osman Erkan + osman.erkan@pisilinux.org + + PerlArtistic GPL + library + programming.language.perl + HTML to text conversion with links as footnotes. + HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. + http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-0.14.tar.gz + + perl + perl-HTML-Tree + perl-HTML-Format + + programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml + + + perl-HTML-FormatText-WithLinks + + perl + perl-HTML-Tree + perl-HTML-Format + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 0.14 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.14 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-23 + 0.14 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Cookies + http://search.cpan.org/~gaas/HTTP-Cookies-6.01/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP cookie jars + This class is for objects that represent a "cookie jar" -- that is, a database of all the HTTP cookies that a given LWP::UserAgent object knows about. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Cookies-6.01.tar.gz + + perl + perl-HTTP-Message + + programming/language/perl/perl-HTTP-Cookies/pspec.xml + + + perl-HTTP-Cookies + + perl + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 6.01 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Template + http://search.cpan.org/~wonko/HTML-Template-2.91/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Perl module to use HTML-like templating language + First you make a template - this is just a normal HTML file with a few extra tags, the simplest being <TMPL_VAR> + http://search.cpan.org/CPAN/authors/id/W/WO/WONKO/HTML-Template-2.95.tar.gz + + perl + + programming/language/perl/perl-HTML-Template/pspec.xml + + + perl-HTML-Template + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 2.95 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 2.95 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 2.91 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-06 + 2.91 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Test-Exception + http://search.cpan.org/dist/Test-Exception/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Module for testing exception based codes + Perl için exception tabanlı kod denetleme modülü + This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. + http://search.cpan.org/CPAN/authors/id/A/AD/ADIE/Test-Exception-0.32.tar.gz + + perl + perl-Sub-Uplevel + + programming/language/perl/perl-Test-Exception/pspec.xml + + + perl-Test-Exception + + perl + perl-Sub-Uplevel + + + /usr/lib + /usr/share/doc/perl-Test-Exception + /usr/share/man + + + + + 2014-09-10 + 0.32 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.32 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 0.32 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 0.31 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTML-Tree + http://search.cpan.org/dist/HTML-Tree/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + programming.language.perl + A Perl module that build and scan parse-trees of HTML + HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülü + Build and scan parse-trees of HTML. It allows to represent,create and extract information from HTML syntax trees. + HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülüdür. HTML ağaçlarındaki bilgileri oluşturmaya, çıkartmaya ve sunmaya yarar. + http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/HTML-Tree-5.03.tar.gz + + perl + perl-HTML-Tagset + perl-HTML-Parser + perl-Test-Exception + perl-Test-Pod-Coverage + + programming/language/perl/perl-HTML-Tree/pspec.xml + + + perl-HTML-Tree + + perl + perl-HTML-Tagset + perl-HTML-Parser + perl-Test-Exception + perl-Test-Pod-Coverage + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 5.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 5.03 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 5.02 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 5.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Daemon + http://search.cpan.org/~gaas/HTTP-Daemon-6.01/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + a simple http server class + Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a socket for incoming requests. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Daemon-6.01.tar.gz + + perl + + programming/language/perl/perl-HTTP-Daemon/pspec.xml + + + perl-HTTP-Daemon + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.01 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-06 + 6.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-libwww + http://search.cpan.org/dist/libwww-perl + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Application programming interface to the World-Wide Web + libwww-perl collection is a set of Perl modules which provides a simple and consistent application programming interface to the World-Wide Web. + La colección libwww-perl es un conjunto de módulos Perl que facilitan una interfaz de programación de aplicación, simple y consistente para la Web. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/libwww-perl-6.05.tar.gz + + perl + perl-URI + perl-NET-HTTP + perl-HTTP-Date + perl-HTML-Parser + perl-HTML-Tagset + perl-HTTP-Daemon + perl-File-Listing + perl-HTTP-Message + perl-Encode-Locale + perl-HTTP-Negotiate + perl-LWP-Mediatypes + perl-WWW-Robotrules + + programming/language/perl/perl-libwww/pspec.xml + + + perl-libwww + + perl + perl-URI + perl-NET-HTTP + perl-HTTP-Date + perl-HTML-Parser + perl-HTML-Tagset + perl-HTTP-Daemon + perl-File-Listing + perl-HTTP-Message + perl-Encode-Locale + perl-HTTP-Negotiate + perl-LWP-Mediatypes + perl-WWW-Robotrules + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2014-09-10 + 6.05 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.05 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-21 + 6.05 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 6.04 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Archive-Zip + http://search.cpan.org/dist/Archive-Zip + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Perl interface to ZIP archive files + ZIP arşivlerine erişim için Perl modülü + The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files. This module uses the Compress::Zlib library to read and write the compressed streams inside the files. + Bu modül, Perl programlarının Zip arşiv dosyalarını oluşturmasını, düzenlemesini ve okumasını sağlar. Dosyaların içindeki akımları okumak ve yazmak için Compress:Zlib kütüphanesini kullanır. + El módulo Archive::Zip permite a programas Perl la creación, manipulación, lectura y escritura de archivos comprimidos ZIP. Este módulo utiliza la librería Compress::Zlib para leer y escribir los flujos (streams) comprimidos dentro de los archivos. + http://www.cpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.49.tar.gz + + perl + + programming/language/perl/perl-Archive-Zip/pspec.xml + + + perl-Archive-Zip + + perl + + + /usr/lib/perl5 + /usr/share/doc + /usr/share/man + /usr/bin + + + + + 2015-08-15 + 1.49 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-10 + 1.38 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.37 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-21 + 1.33 + Version Bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 1.31_04 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTML-Template-Pro + http://search.cpan.org/dist/HTML-Template-Pro + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + LGPLv2 + library + programming.language.perl + Perl/XS module to use HTML Templates from CGI scripts + CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modülü + A fast and lightweight C/Perl+XS HTML Template engine implementation. + http://search.cpan.org/CPAN/authors/id/V/VI/VIY/HTML-Template-Pro-0.9510.tar.gz + + perl + perl-JSON + + programming/language/perl/perl-HTML-Template-Pro/pspec.xml + + + perl-HTML-Template-Pro + + perl + perl-JSON + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 0.9510 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 0.9510 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.9509 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 0.9509 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Negotiate + http://search.cpan.org/~gaas/HTTP-Negotiate-6.01/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + choose a variant to serve + This module provides a complete implementation of the HTTP content negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for the selection of a preferred content representation based upon attributes of the negotiable variants and the value of the various Accept* header fields in the request. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz + + perl + perl-HTTP-Date + perl-HTTP-Message + + programming/language/perl/perl-HTTP-Negotiate/pspec.xml + + + perl-HTTP-Negotiate + + perl + perl-HTTP-Date + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.01 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-16 + 6.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Tagset + http://search.cpan.org/dist/HTML-Tagset/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Data tables useful in parsing HTML + HTML ayrıştırmak için yararlı bilgi tabloları + HTML-Tagset contains several data tables useful in various kinds of HTML parsing operations. + HTML-Tagset HTML ayrıştırmak için yararlı birçok bilgi tablosunu barındırır. + HTML-Tagset contiene varios tablas de datos útiles para varias operaciones de parsear HTML. + http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz + + perl + + programming/language/perl/perl-HTML-Tagset/pspec.xml + + + perl-HTML-Tagset + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-HTML-Tagset + + + + + 2014-09-10 + 3.20 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 3.20 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 3.20 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-09-07 + 3.20 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Net-SMTP-SSL + http://search.cpan.org/dist/Net-SMTP-SSL/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + SSL Support for Net::SMTP + Net::SMTP için SSL desteği + perl-NET-SMTP-SSL implements the same API as Net::SMTP but uses IO::Socket::SSL for its network operations. + perl-Net-SMTP-SSL, SMTP protokolüne SSL desteği katarak güvenli e-posta gönderimi sağlar. + http://search.cpan.org/CPAN/authors/id/C/CW/CWEST/Net-SMTP-SSL-1.01.tar.gz + + perl + perl-IO-Socket-SSL + + programming/language/perl/perl-Net-SMTP-SSL/pspec.xml + + + perl-Net-SMTP-SSL + + perl + perl-IO-Socket-SSL + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 1.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 1.01 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-11 + 1.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Message + http://search.cpan.org/~gaas/HTTP-Message-6.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Class encapsulating HTTP Message headers + The HTTP::Headers class encapsulates HTTP-style message headers. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Message-6.06.tar.gz + + perl + perl-LWP-Mediatypes + perl-HTTP-Date + perl-HTML-Parser + perl-URI + + programming/language/perl/perl-HTTP-Message/pspec.xml + + + perl-HTTP-Message + + perl + perl-LWP-Mediatypes + perl-HTTP-Date + perl-HTML-Parser + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.06 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 6.06 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.03 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-16 + 6.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + lua51 + http://www.lua.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.language + A light-weight programming language + Hafif bir programlama dili + lua51 is a powerful light-weight programming language designed for extending applications. + lua51, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. + Lua51 es un lenguaje de programación liviano y potente con todas las herramientas imaginables + http://www.lua.org/ftp/lua-5.1.5.tar.gz + + readline-devel + + + lua-5.1-cflags.diff + lua-arch.patch + + programming/language/lua51/pspec.xml + + + lua51 + + readline + + + /usr/lib + /usr/share/man/man1 + /usr/share/doc + /usr/bin + /sbin/lsmod + /usr/share/pixmaps + /usr/share/lua5.1 + /luac5.1.1/luac.1 + /lua5.1.1/lua.1 + + + lua.png + lua.pc + + + + lua51-devel + Development files for lua51 + lua51 için geliştirme dosyaları + + lua51 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-09 + 5.1.5 + fixed libraries and man pages + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-02-01 + 5.1.5 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + ruby + http://www.ruby-lang.org/en/ + + PisiLinux Community + admins@pisilinux.org + + Ruby + app:console + programming.language.ruby + An object-oriented scripting language + Nesneye dayalı bir dil + Ruby est un langage de programmation dynamique, open source mettant l'accent sur la simplicité et la productivité. Il a une syntaxe élégante qui est naturelle à lire et facile à écrire. + Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. + Ruby, basitlik ve üretkenliğe odaklanan açık kaynaklı, dinamik bir betik dilidir. Okuması ve yazması kolay, şık bir sözdizime sahiptir. + Ruby es un lenguaje dinámico, de código abierto, y con enfoque en simplicidad y productividad. Tiene una sintaxis elegante que permite leer naturalmente y escribirlo de manera fácil. + ftp://ftp.ruby-lang.org/pub/ruby/2.2/ruby-2.2.2.tar.bz2 + + tcltk-devel + db-devel + gmp-devel + tcl-devel + gdbm-devel + zlib-devel + libffi-devel + openssl-devel + readline-devel + libyaml-devel + + programming/language/ruby/ruby/pspec.xml + + + ruby + + db + gmp + tcl + gdbm + zlib + tcltk + libffi + openssl + readline + libyaml + + + /usr/bin + /usr/lib/ruby/2.2.0/ + /usr/lib/ruby/site_ruby/ + /usr/lib/ruby/vendor_ruby/ + /usr/lib/ruby/libruby-static.a + /usr/lib/libruby.so.2.2 + /usr/lib/libruby.so.2.2.0 + /usr/lib/libruby-static.a + /usr/lib/libruby.so + /usr/share/ri + /usr/share/doc + /usr/share/man + + + + rubygems + rubygems, The Ruby standard for packaging ruby libraries + + ruby + + + /usr/bin/gem + /usr/lib/ruby/gems + /usr/share/ri/2.2.0/system/Gem + + + + ruby-devel + ruby için geliştirme dosyaları + ruby için geliştirme dosyaları + + ruby + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-18 + 2.2.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-09 + 2.2.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-24 + 2.1.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-04 + 2.0.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-28 + 2.0.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-07 + 1.9.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ruby-gtk2 + http://ruby-gnome2.sourceforge.jp/ + + Merve Yüzbaşıoğlu + admins@pisilinux.org + + LLGPL-2.1 + library + programming.language.ruby + GNOME 2 bindings for Ruby + Ruby için GNOME 2 bağlayıcıları + Ruby-gtk2 is a set of bindings for the GNOME-2.x libraries to use from Ruby. + ruby-gtk2, GNOME 2 kütüphaneleri için bağlayıcıları içerir. + mirrors://sourceforge/ruby-gnome2/ruby-gtk2-2.2.0.tar.gz + + atk-devel + ruby-devel + gtk2-devel + pango-devel + gdk-pixbuf-devel + + programming/language/ruby/ruby-gtk2/pspec.xml + + + ruby-gtk2 + + atk + ruby + gtk2 + pango + gdk-pixbuf + + + /usr/lib + /usr/share/doc + + + + + 2014-05-24 + 2.2.0 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-11 + 2.1.0 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-05-03 + 1.1.3 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + lua + http://www.lua.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.language + A light-weight programming language + Hafif bir programlama dili + lua is a powerful light-weight programming language designed for extending applications. + lua, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. + Lua es un lenguaje de programación liviano y potente con todas las herramientas imaginables + http://www.lua.org/ftp/lua-5.2.4.tar.gz + + lua.pc + + + readline-devel + + + liblua.so.patch + + programming/language/lua/pspec.xml + + + lua + + readline + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/pixmaps + + + lua.png + + + + lua-devel + Development files for lua + lua için geliştirme dosyaları + + lua + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-06-03 + 5.2.4 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2015-02-01 + 5.2.3 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-30 + 5.1.5 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 5.1.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-decorator + http://www.phyast.pitt.edu/~micheles/python/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + Python module to simplify the usage of decorators + Dekoratör kullanımını kolaylaştıran python modulü + python-decorator simplifies the usage of decorators for the average programmer. + python-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. + http://pypi.python.org/packages/source/d/decorator/decorator-4.0.2.tar.gz + + python-nose + python-setuptools + + programming/language/python/python-decorator/pspec.xml + + + python-decorator + + /usr/lib + /usr/share/doc + + + + + 2015-08-04 + 4.0.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 3.4.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2013-11-06 + 3.4.0 + Rebuild + Erdinç Gültekin + admins@pisilinux.org + + + 2012-11-11 + 3.4.0 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-cups + http://cyberelk.net/tim/software/pycups + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Python interface to the CUPS API + CUPS programlama arayüzü için Python desteği + python-cups contains python bindings to wrap the CUPS API. + python-cups, CUPS programlama arayüzü için Python bağlayıcıları içeren bir pakettir. + http://cyberelk.net/tim/data/pycups/pycups-1.9.72.tar.bz2 + + cups-devel + python-devel + + programming/language/python/python-cups/pspec.xml + + + python-cups + + cups + + + /usr/lib + /usr/share/doc + + + + + 2015-06-21 + 1.9.72 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2013-11-06 + 1.9.63 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-11 + 1.9.62 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-Jinja2 + http://jinja.pocoo.org/2/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.python + A small but fast and easy to use stand-alone template engine written in pure python + Küçük, hızlı ve kullanımı kolay, sadece python ile yazılmış bir bağımsız şablon üreteci + Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code. + Jinja2, sadece python ile yazılmış bir şablon üreteci olan Jinja'nın yeniden yazılmış bir versiyonudur. Django benzeri XML-olmayan bir sözdizimi sağlar ve şablonları derleyip çalıştırılabilir python programları haline getirir. Temel olarak Django şablonları ve python kodunun birleşimi bir programdır. + https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.2.tar.gz + + python-setuptools + python-MarkupSafe + + + drop_next_import_from_docs-jinjaext.patch + + programming/language/python/python-Jinja2/pspec.xml + + + python-Jinja2 + + /usr/lib/python* + /usr/share/doc/python-Jinja2/LICENSE + + + + python-Jinja2-docs + python-Jinja2 için belgelendirme dosyaları + + /usr/share/doc/python-Jinja2 + + + + + 2014-02-27 + 2.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-09 + 2.7.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-29 + 2.6 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-pyaspects + http://github.com/baris/pyaspects + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Aspect-Oriented development for Python + Aspect-Oriented Development modules for Python. + https://github.com/baris/pyaspects/archive/0.4.4.tar.gz + programming/language/python/python-pyaspects/pspec.xml + + + python-pyaspects + + /usr/lib + /usr/share/doc + + + + + 2013-12-07 + 0.4.4 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2010-10-13 + 0.4.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gst-python + http://gstreamer.freedesktop.org/modules/gst-python.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + GStreamer Python bindings + GStreamer Python bağlayıcıları + gst-python is a Python frontend to GStreamer. + gst-python GStreamer için Python arabirimidir. + http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.22.tar.bz2 + + python-gtk-devel + python-pygobject-devel + glib2-devel + gstreamer-devel + gst-plugins-base-devel + + programming/language/python/gst-python/pspec.xml + + + gst-python + + glib2 + gstreamer + gst-plugins-base + + + /usr/lib + /usr/share/doc + /usr/share + + + + gst-python-devel + Development files for gst-python + gst-python için geliştirme dosyaları + + gst-python + python-pygobject-devel + gstreamer-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-10-21 + 0.10.22 + Version Bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-02-27 + 0.10.21 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-26 + 0.10.21 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-17 + 0.10.21 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-05-03 + 0.10.21 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-numpy + http://numeric.scipy.org + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python + The fundamental package needed for scientific computing with Python + 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. + mirrors://sourceforge/numpy/numpy-1.8.1.tar.gz + + python-devel + python-nose + libgfortran + lapack-devel + + programming/language/python/python-numpy/pspec.xml + + + python-numpy + + blas + lapack + python + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + + + + + 2014-05-29 + 1.8.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-27 + 1.8.0 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-01-19 + 1.8.0 + Version bump + Richard de Bruin + rr.debruin@pisilinux.org + + + 2013-11-16 + 1.7.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-13 + 1.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + python-cairo + http://cairographics.org/pycairo + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + wrapper (version enrobée) Python de la librairie de graphisme vectoriel cairo. + Python wrapper for cairo graphics library + Cairo vektörel grafik kitaplığı için Python bağlayıcıları + Pycairo is set of Python bindings for the cairo graphics library. + http://cairographics.org/releases/py2cairo-1.10.0.tar.bz2 + + cairo-devel + python-devel + libtool + + programming/language/python/python-cairo/pspec.xml + + + python-cairo + + cairo + python + + + /usr/lib + /usr/share/doc + + + + python-cairo-devel + Development files for python-cairo + python-cairo için geliştirme dosyaları + + python-cairo + cairo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-06-01 + 1.10.0 + rebuild + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-11-05 + 1.10.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2010-10-13 + 1.8.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-sphinx + http://sphinx.pocoo.org + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.python + Python documentation generator. It can generate HTML or Latex outputs + Python için döküman üreticisi. HTML, Latex gibi çıktılar üretebiliyor + It's a very common documentation generator especially using for python based documentation.It can generate HTML or PDF, Ps outputs with Latex output support. + Özellikle python için hazırlanan dökümanları yorumlamak için kullanılan yaygın bir döoküman üreticisi. Başta HTML olmak üzere Latex ile birlikte PDF, Ps gibi doküman çıktıları üretebiliyor. + http://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.2.1.tar.gz + + docutils + python-Pygments + python-Jinja2 + + + remove_docutils.patch + + programming/language/python/python-sphinx/pspec.xml + + + python-sphinx + + docutils + python-Pygments + python-Jinja2 + + + /usr/bin + /usr/lib/python* + /usr/share/doc/python-sphinx/LICENSE + + + + python-sphinx-docs + Documentation files for python-sphinx + python-sphinx için belgelendirme dosyaları + + /usr/share/doc/python-sphinx + + + + + 2015-07-27 + 1.3.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-02-27 + 1.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-29 + 1.1.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-lxml + http://codespeak.net/lxml + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + library + programming.language.python + lxml is the most feature-rich and easy-to-use library + Zengin içerikli ve kolay kullanımlı bir kütüphane. + lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. + Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. + http://lxml.de/files/lxml-3.3.5.tgz + + libxml2-devel + python-devel + cython + libxslt-devel + + programming/language/python/python-lxml/pspec.xml + + + python-lxml + + libxslt + libxml2 + python + + + /usr/lib + + + + python-lxml-docs + API documentation of python-lxml + python-lxml paketine ait API belgeleri + + python-lxml + + + /usr/share/doc + + + + + 2014-07-05 + 3.3.5 + Version bump + Vedat Demir + vedat@pisilinux.org + + + 2013-11-07 + 3.2.4 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-07-28 + 3.0.1 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-10-24 + 3.0.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + pyparted + http://people.redhat.com/dcantrel/ PisiLinux Community admins@pisilinux.org GPLv2+ library - network.library - Network-related giomodules for glib - Moduły GIO dotyczące sieci do glib - This package contains various network related extensions for the GIO library. - Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO. - mirrors://gnome/glib-networking/2.38/glib-networking-2.38.2.tar.xz + programming.language.python + Python bindings for parted + Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. + pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. + pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. + pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. + https://github.com/rhinstaller/pyparted/archive/v3.10.5.tar.gz - gnutls-devel - p11-kit-devel - ca-certificates - intltool - glib2-devel + python-decorator + python-devel + parted-devel - network/library/glib-networking/pspec.xml + programming/language/python/pyparted/pspec.xml - glib-networking + pyparted - gnutls - p11-kit - glib2 - ca-certificates + python-decorator + parted + python - /usr/lib/gio/modules - /usr/libexec - /usr/share - /usr/share/doc/glib-networking + /usr/lib + /usr/share/doc + + + + + 2015-08-04 + 3.10.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 3.10.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-09 + 3.9.5 + Revert back to 3.9 latest stable series. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-03 + 3.10 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-24 + 3.8 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + telepathy-python + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.language.python + Python libraries for Telepathy + Telepathy için Python kitaplıkları + telepathy-python is the Python libraries for use in Telepathy client and connection managers. + telepathy-pyhon Telepathy istemcileri ve bağlantı yöneticilerinde kullanılmak üzere tasarlanmış Python kitaplığıdır. + http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-0.15.19.tar.gz + + libxslt-devel + + + telepathy-python-0.15.19-mkdir_p.patch + dont-compile-py.patch + python-telepathy-no_double_errors-py.patch + + programming/language/python/telepathy-python/pspec.xml + + + telepathy-python + + /usr/lib + /usr/share/doc + + + + + 2015-11-22 + 0.15.19 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-03 + 0.15.19 + Fix build + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-16 + 0.15.19 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-15 + 0.15.19 + Version bump + Aydın Demirel + aydin@demirel.web.tr + + + 2010-10-13 + 0.15.18 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + dbus-python3 + http://dbus.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + AFL-2.1 + library + programming.language.python + D-Bus Python bindings + dbus-python provides a Python module which wraps the D-Bus programming API. + http://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.0.tar.gz + + python3-devel + dbus-devel + dbus-glib-devel + glib2-devel + libpcre-devel + + + suppress-warnings.patch + + programming/language/python/dbus-python3/pspec.xml + + + dbus-python3 + D-Bus Python3 bindings + programming.language.python + + python3 + dbus + glib2 + dbus-glib + + + /usr/lib/python3* + + + + + 2015-10-08 + 1.2.0 + Release bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-05-11 + 1.2.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-28 + 1.2.0 + rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-23 + 1.2.0 + Version bump. Remove dbus-devel from runtime dependencies. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-25 + 1.1.1 + Dep Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2012-11-10 + 1.1.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + python-beaker + http://beaker.groovie.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + A Session and Caching library with WSGI Middleware + Oturum ve önbellekleme kitaplığı + python-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. + python-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. + http://pypi.python.org/packages/source/B/Beaker/Beaker-1.6.4.tar.gz + + python-setuptools + + programming/language/python/python-beaker/pspec.xml + + + python-beaker + + /usr/lib/ + /usr/share/doc - 2014-03-30 - 2.38.2 + 2013-11-04 + 1.6.4 + Rebuild + Erdinç Gültekin + admins@pisilinux.org + + + 2012-11-11 + 1.6.4 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python3-setuptools + http://pypi.python.org/pypi/setuptools + + PisiLinux Community + admins@pisilinux.org + + PSF-2.2 + library + programming.language.python + Python setuptools + python-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. + http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz + + python3-devel + + programming/language/python/python3-setuptools/pspec.xml + + + python3-setuptools + + /usr/bin/py3easy-install + /usr/bin/easy_install-3* + /usr/lib/python3* + + + + + 2015-11-07 + 0.6.49 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-24 + 0.6.49 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-17 + 0.6.35 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-08-19 + 0.6.28 + First release + Ramazan Utku + admins@pisilinux.org + + + + + + python-udev + http://packages.python.org/pyudev + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + Python bindings for libudev library + libudev için Python bağlayıcısı + These bindings enable using of udev library in Python programs. + Bu bağlayıcı, Python programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. + https://pypi.python.org/packages/source/p/pyudev/pyudev-0.16.1.tar.gz + + python-setuptools + eudev-devel + + programming/language/python/python-udev/pspec.xml + + + python-udev + + /usr/lib + /usr/share/doc + + + + python-udev-qt + Qt bindings for libudev library + libudev için Qt bağlayıcısı + These bindings provide udev capability for Python programs where Qt is used. + Bu bağlayıcı, Qt kullanan Python programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar. + + python-udev + python-qt + + + /usr/lib/python2*/site-packages/pyudev/pyqt4.py + + + + + 2015-08-04 + 0.16.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-24 + 0.16.1 + Release bump + PisiLinux Community + admins@pisilinux.org + + + 2013-06-26 + 0.16.1 + V.bump + PisiLinux Community + admins@pisilinux.org + + + 2011-07-11 + 0.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-six + http://pypi.python.org/pypi/six/ + + Alihan Öztürk + alihan@pisilinux.org + + MIT + app:console + programming.language.python + Python 2 and 3 compatibility utilities. + Python2 ve python3 uyumluluk programı. + python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. + python-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar. + http://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz + + python3-devel + + programming/language/python/python-six/pspec.xml + + + python-six + + /usr/lib/python2* + /usr/share/doc + + + + python3-six + + /usr/lib/python3* + + + + + 2015-07-24 + 1.9.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-31 + 1.6.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-PyYAML + http://pyyaml.org/wiki/PyYAML + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + The next generation YAML parser and emitter for Python + python-pyyaml is the next generation YAML parser and emitter for Python. + http://pyyaml.org/download/pyyaml/PyYAML-3.11.tar.gz + + libyaml-devel + python-devel + + programming/language/python/python-PyYAML/pspec.xml + + + python-PyYAML + + libyaml + + + /usr/lib + /usr/share/doc + + + + + 2015-07-27 + 3.11 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2011-06-04 + 3.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-qt5 + http://www.riverbankcomputing.co.uk/software/pyqt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python + A set of Python bindings for the Qt 5.x Toolkit + Qt5.x araçları için python bağlayıcıları + Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. + Qt5, C++ kütüphaneleri dizisi ve geliştirme araçları olup grafik kullanıcı arabirimleri için, ağ bağlantısı, iş parçacığı, Unicode, düzenli ifadeler, SQL veritabanları, SVG, OpenGL, XML ve kullanıcıve uygulama ayarları gibi platform bağımsız uygulamalara ayrılır. PyQt, Python modülü seti olarak bu sınıftan 440 kadar uygulamayı çalıştırır. + mirrors://sourceforge/pyqt/PyQt5/PyQt-5.4.2/PyQt-gpl-5.5.1.tar.gz + + dbus-devel + dbus-python3 + dbus-python-common + python3-devel + python-devel + python3-sip + python-sip + qt5-base-devel + qt5-connectivity-devel + qt5-declarative-devel + qt5-enginio-devel + qt5-location-devel + qt5-multimedia-devel + qt5-sensors-devel + qt5-serialport-devel + qt5-svg-devel + qt5-webchannel-devel + qt5-webkit-devel + qt5-websockets-devel + qt5-x11extras-devel + qt5-xmlpatterns-devel + + programming/language/python/python-qt5/pspec.xml + + + python-qt5 + A set of Python 2.x bindings for the Qt 5.x Toolkit + + libgcc + dbus + python + qt5-base + qt5-sensors + qt5-location + qt5-webkit + qt5-enginio + qt5-x11extras + qt5-svg + qt5-multimedia + qt5-serialport + qt5-webchannel + qt5-websockets + qt5-declarative + qt5-xmlpatterns + qt5-connectivity + + + /usr/bin/py2uic5 + /usr/lib/python2.7/site-packages + /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so + /usr/share/qt5/qsci/api/python/Py2Qt5.api + + + + python-qt5-devel + Development files for python3-qt5 + + libgcc + qt5-base + python-qt5 + + + /usr/bin/py2lupdate5 + /usr/bin/py2rcc5 + /usr/share/sip/Py2Qt5 + + + + python3-qt5 + A set of Python 3.x bindings for the Qt 5.x Toolkit + + libgcc + dbus + python3 + qt5-base + qt5-sensors + qt5-location + qt5-webkit + qt5-enginio + qt5-x11extras + qt5-svg + qt5-multimedia + qt5-serialport + qt5-webchannel + qt5-websockets + qt5-declarative + qt5-xmlpatterns + qt5-connectivity + + + /usr/bin/pyuic5 + /usr/lib/python3.4/site-packages + /usr/lib/qt5/plugins/PyQt5/libpyqt5qmlplugin.so + /usr/lib/qt5/plugins/designer/libpyqt5.so + /usr/share/doc + /usr/share/qt5/qsci/api/python/PyQt5.api + + + + python3-qt5-devel + Development files for python3-qt5 + + libgcc + qt5-base + python3-qt5 + + + /usr/bin/pylupdate5 + /usr/bin/pyrcc5 + /usr/share/sip/PyQt5 + + + + + 2015-11-02 + 5.5.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-10-16 + 5.5 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-07 + 5.4.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python-mako + http://www.makotemplates.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + programming.language.python + A python templating language + Python şablonlama dili + python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. + python-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. + http://pypi.python.org/packages/source/M/Mako/Mako-0.9.1.tar.gz + + python-setuptools + + programming/language/python/python-mako/pspec.xml + + + python-mako + + python-beaker + python-MarkupSafe + + + /usr/bin + /usr/lib + /usr/share/doc + + + + python-mako-docs + python-mako için belgelendirme dosyaları + + python-mako + + + /usr/share/doc/*/html + /usr/share/doc/*/build + /usr/share/doc/*/examples + + + + + 2014-04-16 + 0.9.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-11 + 0.7.3 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-nose + http://somethingaboutorange.com/mrl/projects/nose/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + programming.language.python + A unittest extension offering automatic test suite discovery and easy test authoring + Python için unittest genişlemesi + python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. + python-nose alternatif test tanıtma ve keşif kitaplığı. + https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz + programming/language/python/python-nose/pspec.xml + + + python-nose + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2015-08-04 + 1.3.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-27 + 1.3.3 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-05-21 + 1.3.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-17 + 1.3.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-13 + 1.2.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + pip + https://pypi.python.org/pypi/pip + + Yusuf Aydemir + Yusuf.aydemir@istanbul.com + + MIT + programming.language.python + The PyPA recommended tool for installing Python packages + The PyPA recommended tool for installing Python packages + https://pypi.python.org/packages/source/p/pip/pip-7.1.2.tar.gz + + python-setuptools + python3-setuptools + python3-devel + + programming/language/python/pip/pspec.xml + + + pip + + python-setuptools + + + /usr/bin/pip2* + /usr/lib/python2* + /usr/share/doc + + + + pip3 + + python3-setuptools + + + /usr/bin/pip + /usr/bin/pip3* + /usr/lib/python3* + + + + + 2015-08-24 + 7.1.2 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2015-04-08 + 6.1.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-requests + http://www.python-requests.org/ + + Ergün Salman + ergunsalman@hotmail.com + + MIT + programming.language.python + Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. + Python’s standard urllib2 module provides most of the HTTP capabilities you need + https://pypi.python.org/packages/source/r/requests/requests-2.8.1.tar.gz + + python + python3-devel + + programming/language/python/python-requests/pspec.xml + + + python-requests + + /usr/lib/python2* + /usr/share/doc + + + + python3-requests + + /usr/lib/python3* + + + + + 2015-11-06 + 2.8.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-08-24 + 2.7.0 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + sip + http://www.riverbankcomputing.co.uk/sip + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:console + programming.language.python + SIP is a tool for generating bindings for C++ classes so that they can be used by Python + SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python. It takes any C or C++ libraries and converts them into Python extension modules. + mirrors://sourceforge/pyqt/sip-4.16.9.tar.gz + + qt5-base-devel + python3-devel + python-devel + + programming/language/python/sip/pspec.xml + + + python-sip + Python 2.x SIP bindings for C and C++ libraries + + libgcc + python + + + /usr/bin/py2sip + /usr/lib/python2.7/ + /usr/include/python2.7 + + + + python3-sip + Python 3.x SIP bindings for C and C++ libraries + + libgcc + python3 + + + /usr/bin/sip + /usr/lib/python3* + /usr/include/python3.4m + /usr/share/licenses/python3-sip/LICENSE + + + + + 2015-09-09 + 4.16.9 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-23 + 4.16.6 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python-gtk + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + GTK+ bindings for Python + Python için GTK+ bağlayıcıları + Bindings (liens) GTK+2 pour Python. + python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library. + python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar. + mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2 + + cairo-devel + pango-devel + gtk2-devel + glib2-devel + python-devel + libglade-devel + python-pygobject-devel + python-numpy + python-cairo + + programming/language/python/python-gtk/pspec.xml + + + python-gtk + + pango + atk + gtk2 + cairo + gdk-pixbuf + + + /usr/lib + /usr/share/doc + + + + python-gtk-demo + Demo applications for python-gtk + python-gtk için demo uygulamalar + app:gui + + python-gtk + + + /usr/bin/pygtk-demo + /usr/lib/pygtk/2.0/pygtk-demo.py + /usr/lib/pygtk/2.0/demos + + + + python-gtk-docs + Reference documents for python-gtk + python-gtk için referans belgeleri + data:doc + + python-gtk + + + /usr/share/gtk-doc + + + + python-gtk-devel + Development files for python-gtk + python-gtk için geliştirme dosyaları + + python-gtk + python-pygobject-devel + gtk2-devel + + + /usr/bin/pygtk-codegen-2.0 + /usr/include + /usr/lib/pkgconfig + /usr/share/pygtk + + + + + 2013-08-17 + 2.24.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 2.24.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-11 + 2.24.0 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-pyblock + http://git.fedoraproject.org/git/pyblock.git + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python + Python modules for dealing with block devices + Blok aygıtları ile ilgili python modülleri içerir + The pyblock contains Python modules for dealing with block devices. + Pyblock blok aygıtları ile ilgili python modülleri içerir + https://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/pyblock-0.53.tar.bz2/f6d33a8362dee358517d0a9e2ebdd044/pyblock-0.53.tar.bz2 + + device-mapper-devel + python-devel + dmraid-devel + + + fix-underlinking.patch + + programming/language/python/python-pyblock/pspec.xml + + + python-pyblock + + device-mapper + dmraid + python + + + /usr/lib + /usr/share/doc + + + + + 2015-08-04 + 0.53 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-12-07 + 0.53_20111208 + Rebuild + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-05-05 + 0.53_20111208 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-19 + 0.53_20111208 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + python-pygobject + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + Bindings (liens) glib pour Python. + Glib bindings for Python + glib için python bağlayıcıları + pygobject is GLib's GObject library bindings for Python. + pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. + http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.6.tar.xz + + python-devel + gobject-introspection-devel + + + pygobject-2.16.1-fixdetection.patch + + programming/language/python/python-pygobject/pspec.xml + + + python-pygobject + + glib2 + gobject-introspection + libffi + + + /usr/lib + /usr/share/doc + + + + python-pygobject-devel + pygobject development files + pygobject geliştirme dosyaları + + python-pygobject + gobject-introspection-devel + + + /usr/bin/pygobject-codegen-2.0 + /usr/include + /usr/lib/pkgconfig + /usr/share/pygobject + + + + python-pygobject-docs + API documents for pygobject + pygobject için API dökümanları + data:doc + + /usr/share/gtk-doc + + + + + 2012-10-14 + 2.28.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + pyqtermwidget5 + http://gitorious.org/qtermwidget + + Harun Gültekin + hrngultekin@gmail.com + + GPLv2 + library + programming.language.python + Python binding of terminal widget for Qt + PyQt5 tabanlı uygulamalar için basit bir terminal modulü + A simple terminal widget for using with PyQt based applications + https://github.com/hrngultekin/pyqtermwidget5/archive/pyqtermwidget5-v0.1.tar.gz + + python-devel + python-qt5-devel + python-sip + qt5-base-devel + qtermwidget5-devel + + + py2config.patch + + programming/language/python/pyqtermwidget5/pspec.xml + + + pyqtermwidget5 + Python binding of terminal widget for Qt + + libgcc + qt5-base + qtermwidget5 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2014-06-19 + 0.1 + first build + Harun Gültekin + hrngultekin@gmail.com + + + + + + python-Pygments + http://pygments.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + A syntax highlighting package written in Python + Python dilinde yazılmış bir sözdizimi belirtme aracı + python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. + python-Pygments, kaynak kodunu güzelleştirmek ihtiyacı duyulan forum sistemleri, wikiler ve diğer uygulamalar gibi her çeşit yazılımda kullanılmak için yazılmış olan genel bir sözdizimi belirtme aracıdır. + https://pypi.python.org/packages/source/P/Pygments/Pygments-1.6.tar.gz + programming/language/python/python-Pygments/pspec.xml + + + python-Pygments + + python-setuptools + + + /usr/bin + /usr/lib/python* + /usr/share/man + + + + python-Pygments-docs + Documentation files for python-Pygments + python-Pygments için belgelendirme dosyaları + + /usr/share/doc/python-Pygments + + + + + 2013-12-07 + 1.6 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-16 + 1.5 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-MarkupSafe + http://pypi.python.org/pypi/MarkupSafe + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + Implements a XML/HTML/XHTML Markup safe string for Python + XML/HTML/XHTML markup dilleri için güvenli python karakter dizeleri gerçekleştirimi + python-MarkupSafe, implements a unicode subclass that supports HTML strings. + python-MarkupSafe, HTML karakter dizeleri için unicode bir alt sınıf gerçekleştirimi sağlar. + http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.23.tar.gz + + python-setuptools + + programming/language/python/python-MarkupSafe/pspec.xml + + + python-MarkupSafe + + /usr/lib/python2.* + /usr/share/doc + + + + + 2014-05-29 + 0.23 Version bump. Marcin Bojara marcin@pisilinux.org - 2013-01-27 - 2.34.2 + 2011-11-11 + 0.15 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + ant + http://ant.apache.org + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:console + programming.build + Java-based build tool + Java tabanlı inşa aracı + Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. + Apache ant Java tabanlı bir inşa aracıdır. Teorik olarak make'e benzemektedir ancak make'in kırışıksız halidir + Apache Ant es una herramienta de compilación (build) basado en Java. Teróricamente se puede comparar con Make, pero sin las vueltas que tiene aquel. + http://archive.apache.org/dist/ant/source/apache-ant-1.9.6-src.tar.bz2 + + jdk7-openjdk + + + apache-ant-no-test-jar.patch + + programming/build/ant/pspec.xml + + + ant + + /etc + /usr/bin + /usr/share/ + + + 20ant + ant.conf + + + + ant-docs + Documentation package for ant build system + + /usr/share/doc + + + + + 2015-08-22 + 1.9.6 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-25 + 1.9.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-03 + 1.8.4 + Rebuild for openjdk. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-04-20 + 1.8.4 + Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-06 + 1.8.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + llvm + http://www.llvm.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + NCSA + programming.build + The Low Level Virtual Machine + Düşük Seviye Sanal Makine (LLVM) + The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines, though it does provide helpful libraries that can be used to build them. + LLVM projesi, modüler ve tekrar tekrar kullanılabilir derleyici teknolojileri koleksiyonudur. Adının aksine geleneksel sanal makinelerden çok farklıdır; ancak sanal makineleri oluşturmak için faydalı kitaplıklar içerir. + http://llvm.org/releases/3.5.0/llvm-3.5.0.src.tar.xz + http://llvm.org/releases/3.5.0/cfe-3.5.0.src.tar.xz + http://llvm.org/releases/3.5.0/clang-tools-extra-3.5.0.src.tar.xz + http://llvm.org/releases/3.5.0/compiler-rt-3.5.0.src.tar.xz + + zlib-devel + libxml2-devel + ncurses-devel + ocaml + libffi-devel + groff + libedit-devel + binutils + + + llvm-3.5.0-fix-cmake-llvm-exports.patch + llvm-3.5.0-force-link-pass.o.patch + + programming/build/llvm/pspec.xml + + + llvm + app:console + library + + llvm-libs + libxml2 + libgcc + ncurses + + + /usr/bin + /usr/bin/llvm-config + /usr/include/llvm* + /usr/lib/llvm + /usr/lib + /etc/ld.so.conf.d + /etc/llvm + /usr/share/doc + /usr/share/vim + /usr/share/llvm/cmake + /usr/share/kde4 + /usr/share/man + + + + llvm-libs + library + + zlib + libffi + libedit + libgcc + ncurses + + + /usr/lib/llvm/libLLVM-3* + /usr/share/licenses/llvm-libs/LICENSE + + + + llvm-ocaml + OCaml binding for LLVM + LLVM için OCaml bağlayıcısı + library + programming.language.ocaml + + llvm + ocaml + + + /usr/lib/ocaml + + + + llvm-clang-analyzer + A source code analysis framework + C ve Objective-C için kod analiz altyapısı + The Clang Static Analyzer consists of both a source code analysis framework and a standalone tool that finds bugs in C and Objective-C programs. + app:console + + llvm-clang + + + /usr/lib/clang-analyzer + /usr/bin/scan-* + + + + llvm-clang + A C language family front-end for LLVM + LLVM için C dili ailesi ön ucu + The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. + + llvm-libs + libgcc + ncurses + + + /usr/bin/clang* + /usr/bin/tblgen + /usr/lib/clang + /usr/lib/clang/libclang.so + /usr/share/man/man1/clang.1 + + + + llvm-clang-devel + Development headers for llvm-clang + llvm-clang için başlık dosyaları + + llvm-clang + + + /usr/include/clang + /usr/include/clang-c + + + + llvm-docs + Documentation for LLVM + LLVM belgeleri + data:doc + programming.docs + + /usr/share/doc/llvm/html + /usr/share/doc/llvm/ocamldoc + + + + llvm-32bit + 32-bit shared libraries for llvm + emul32 + emul32 + + zlib-32bit + libffi-32bit + + + llvm + libgcc + libedit + ncurses-32bit + zlib-32bit + libffi-32bit + + + /usr/lib32 + + + + + 2014-09-23 + 3.5.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-11 + 3.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-11 + 3.4.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-01 + 3.3 + Release bump, already cleaned. + marcin bojara + marcin@pisilinux.org + + + 2013-07-26 + 3.3 + Version bump. + marcin bojara + marcin@pisilinux.org + + + 2013-02-18 + 3.2 + version bump + PisiLinux Community + admins@pisilinux.org + + + 2012-06-11 + 3.1 + First release + marcin bojara + marcin@pisilinux.org + + + + + + dev86 + http://homepage.ntlworld.com/robert.debath/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.tool + Development environment for ELKS-86 and standalone 8086 code + ELKS-86 ve 8086 kodları için geliştirme ortamı + Entorno de desarrollo para ELKS-86 y código 8086 independiente + The dev86 package provides an assembler and linker for real mode 80x86 instructions. You'll need to have this package installed in order to build programs that run in real mode, including LILO and the kernel's bootstrapping code, from their sources. + http://v3.sk/~lkundrak/dev86/archive/Dev86src-0.16.19.tar.gz + + fedora/dev86-noelks.patch + fedora/dev86-nostrip.patch + fedora/dev86-long.patch + fedora/dev86-print-overflow.patch + dont-ask-anything.patch + 64bit-build-fix.patch + makefile-fix.patch + + programming/tool/dev86/pspec.xml + + + dev86 + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2014-02-17 + 0.16.19 + Release. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-05-02 + 0.16.19 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-10-13 + 0.16.17 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + ctags + http://ctags.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.tool + Exuberant Ctags generates an index (or tag) file of objects found in source and header files + Kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir + Exuberant Ctags génère un fichier d'index (ou tag) pour les objets trouvés dans les fichiers sources et d'entête permettant à ces entités d'être rapidement et facilement localisées par un éditeur de texte et d'autres utilitaires. Il gère actuellement 33 langages de programmation. + Exuberant Ctags generates an index (or tag) file of objects found in source and header files that allows these items to be quickly and easily located by a text editor or other utility. Currently supports 33 programming languages. + Exuberant Ctags, kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir. + Exuberant Ctags genera un archivo de índice (o tag) de objetos encontrados en archivos de fuente y cabeceras, para localizar fácilmente estos ítemes con un editor de texto u otra herramienta. Actualmente soporta 33 lenguajes de programación. + mirrors://sourceforge/ctags/ctags-5.8.tar.gz + + ctags-5.7-segment-fault.patch + ctags-5.8-f95-pointers.patch + ctags-5.8-python-vars-starting-with-def.patch + + programming/tool/ctags/pspec.xml + + + ctags + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2014-01-21 + 5.8 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 5.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + cppunit + http://www.freedesktop.org/wiki/Software/cppunit + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.tool + C++ port of the famous JUnit framework for unit testing + Popüler JUnit test çatısının C++ sürümü + cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers. + cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır. + http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz + + grep + libtool + + programming/tool/cppunit/pspec.xml + + + cppunit + + /usr/lib + /usr/share/doc + + + + cppunit-devel + Contains the headers and other files necessary for developing programs that use cppunit + + cppunit + libgcc + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/share/man + + + + + 2014-01-21 + 1.13.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-02-09 + 1.13.1 First release. Marcin Bojara marcin@pisilinux.org @@ -6373,324 +13615,563 @@ - libqmi - http://www.freedesktop.org/wiki/Software/libqmi/ + signon + https://code.google.com/p/accounts-sso - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPLv2 - app:gui - network.library - QMI modem protocol helper library - libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. - http://www.freedesktop.org/software/libqmi/libqmi-1.8.0.tar.xz + LGPLv2 + programming.library + A framework for centrally storing authentication credentials + Single Sign-On is a framework for centrally storing authentication credentials and handling authentication on behalf of applications as requested by applicationsIt consists of + a secure storage of login credentials (for example usernames and passwords), plugins for different authentication systems and a client library for applications to communicate with this system. + https://gitlab.com/accounts-sso/signond/repository/archive.tar.bz2 - glib2-devel - gobject-introspection-devel + qt5-base-devel + doxygen - network/library/libqmi/pspec.xml + + qt5.5.diff + use_keyring.patch + + programming/library/signon/pspec.xml - libqmi + signon - glib2 - gobject-introspection + qt5-base + libgcc + doxygen - /usr/lib - /usr/share/man /usr/bin - /usr/share/gtk-doc - /usr/share/doc/libqmi/ - - - - libqmi-devel - Development files for libqmi - - libqmi - - - /usr/include - /usr/lib/pkgconfig/qmi-glib.pc - - - - - 2014-01-19 - 1.8.0 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libmbim - http://www.freedesktop.org/wiki/Software/libmbim/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.library - MBIM modem protocol helper library. - libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. - http://www.freedesktop.org/software/libmbim/libmbim-1.12.2.tar.xz - - gtk-doc - glib2-devel - eudev-devel - - network/library/libmbim/pspec.xml - - - libmbim - - glib2 - eudev - - /usr/lib - /usr/share/man - /usr/bin/ - /usr/share/gtk-doc/ - /usr/libexec - /usr/share/doc/libmbim + /etc + /usr/share/dbus-1 - libmbim-devel - libmbim için geliştirme dosyaları - libmbim için geliştirme dosyaları + signon-devel + Development files for signon + Signon için kütüphaneler + Signon geliştirme paketi, Signon için geliştirme dosyaları sunar. - libmbim - - - /usr/lib/pkgconfig - /usr/include/libmbim-glib/ - - - - - 2015-07-15 - 1.12.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-01-20 - 1.6.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - serf - https://code.google.com/p/serf/ - - Osman Erkan - osman.erkan@pisilinux.org - - Apachev2 - library - network.library - High-performance asynchronous HTTP client library. - The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library. - http://serf.googlecode.com/svn/src_releases/serf-1.3.8.tar.bz2 - - db-devel - zlib-devel - expat-devel - openssl-devel - apr-devel - apr-util-devel - scons - - network/library/serf/pspec.xml - - - serf - - db - zlib - expat - openssl - apr - apr-util - openldap-client - - - /usr/lib - /usr/share/doc - - - - serf-devel - Development files for serf - serf için geliştirme dosyaları - - serf + signon + qt5-base-devel /usr/include /usr/lib/pkgconfig - - - 2015-09-02 - 1.3.8 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 1.3.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-12-24 - 1.3.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - nodejs - http://nodejs.org/ - - Ertuğrul Erata - ertugrulerata@gmail.com - - MIT - app:console - network.library - is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications - Olay bazlı V8 Javascript motoru - Evented I/O for V8 javascript - Kolay, hızlı, ölçeklenebilir ağ uygulamaları oluşturmak için Chrome'un JavaScript çalışma üzerine inşa edilmiş bir platform. - http://nodejs.org/dist/v4.1.2/node-v4.1.2.tar.gz - - openssl-devel - - network/library/nodejs/pspec.xml - - nodejs + signon-docs + Help files and API documents for signon + data:doc - openssl - libgcc + signon - /usr/bin - /usr/include - /usr/lib/node_modules /usr/share/doc - /usr/share/man - /usr/share/systemtap - - 2015-10-10 - 4.1.2 + + 2015-11-14 + 8.58 Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-24 + 8.56 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 8.48 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org - 2015-02-22 - 0.12.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com + 2013-07-28 + 8.48 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org - 2015-02-07 - 0.10.36 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com + 2013-07-26 + 8.48 + Move pc files to devel pack,release bump. + Erdinç Gültekin + erdincgultekin@gmail.com - 2014-10-31 - 0.10.33 + 2013-03-08 + 8.48 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Erdinç Gültekin + erdincgultekin@gmail.com - netcf - https://fedorahosted.org/netcf + libnih + https://launchpad.net/libnih + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL + app:library + programming.library + Small library for C application development + C uygulama geliştirme için küçük bir kütüphane + Small library for C application development. + C uygulama geliştirme için küçük bir kütüphane. + https://launchpad.net/libnih/1.0/1.0.3/+download/libnih-1.0.3.tar.gz + + dbus-devel + expat-devel + + programming/library/libnih/pspec.xml + + + libnih + + dbus + expat + + + /usr/bin + /usr/share/man + /usr/share/aclocal + /usr/lib/* + + + + libnih-devel + + libnih + dbus-devel + expat-devel + + + /usr/include + + + + + 2014-06-27 + 1.0.3 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + libaio + http://lse.sourceforge.net/io/aio.html PisiLinux Community admins@pisilinux.org - LGPLv2+ - app:console + LGPLv2.1 library - network.connection - A library for configuring network interfaces - Ağ arayüzlerini yapılandırmak için geliştirilmiş bir kitaplık - netcf is a cross-platform network configuration library for modifying the network configuration of a system. Network configurations are expressed in XML format. - netcf, XML biçiminde tuttuğu ağ arayüz bilgilerini kullanarak platform-bağımsız ağ yapılandırması olanağı sunan bir kitaplıktır. - https://fedorahosted.org/released/netcf/netcf-0.2.8.tar.gz - - libxml2-devel - libxslt-devel - libnl-devel - readline-devel - augeas-devel - - network/connection/netcf/pspec.xml + programming.library + Librairie d'entrée/sortie asynchrone utilisant l'interface native du noyau. + Linux-native asynchronous I/O access library + Linux asenkron girdi/çıktı kütüphanesi + libaio has a richer API and capability set than the simple POSIX async I/O facility. + libaio, basit POSIX asenkron girdi/çıktı desteğinden daha iyi bir programlama arayüzü sunan bir kütüphanedir. + http://enterprise-storage-os.googlecode.com/files/libaio-0.3.109.tar.bz2 + + libaio-0.3.106-build.patch + libaio-0.3.107-ar-ranlib.patch + 92_unused_warnings.patch + libaio-0.3.109-testcase-8.patch + libaio-0.3.109-generic-arch.patch + libaio-0.3.109-unify-bits-endian.patch + libaio-0.3.109-x32.patch + + programming/library/libaio/pspec.xml - netcf - - zlib - libnl - augeas - libxml2 - libxslt - readline - libgcrypt - libgpg-error - + libaio - /usr/bin - /usr/libexec/ - /etc/rc.d/init.d + /lib /usr/lib - /usr/share/netcf /usr/share/doc - /usr/share/man/man1/ncftool.1 - netcf-devel - Development files for netcf - netcf için geliştirme dosyaları + libaio-32bit + 32-bit shared libraries for libaio + emul32 + emul32 - augeas-devel - libxslt-devel - netcf + libaio + + + /usr/lib32 + + + + libaio-devel + Development files for libaio + libaio için geliştirme dosyaları + + libaio + + + /usr/include + /usr/share/man/man3 + + + + + 2014-05-19 + 0.3.109 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-06 + 0.3.109 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-16 + 0.3.109 + URL Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-14 + 0.3.109 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + swig + http://www.swig.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + BSD + app:console + programming.library + Connects C/C++/Objective C to some high-level programming languages + Basitleştirilmiş arayüz oluşturucu + Simplified Wrapper and Interface Generator (Générateur d'interface de scripts d'enrobage simplifié), SWIG est un outil de développement qui connecte des programmes écrits en C et C++ avec divers langages de programmation de haut niveau. SWIG est utilisé avec différents type de langages incluant les langages de script habituels tels que Perl, PHP, Python, Tcl, Ruby. + Simplified Wrapper and Interface Generator, SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. SWIG is used with different types of languages including common scripting languages such as Perl, PHP, Python, Tcl, Ruby and PHP + SWIG, C ve C++ ile yazılmış uygulamaları çeşitli üst düzey programlama dilleri ile bağlayan bir yazılım geliştirme aracıdır. SWIG, genel betik dilleri olan Perl, PHP, Python, Tcl, Ruby gibi farklı diller ile kullanılır. + mirrors://sourceforge/swig/swig-3.0.2.tar.gz + + python-devel + boost-devel + ruby-devel + libpcre-devel + zlib-devel + perl + + programming/library/swig/pspec.xml + + + swig + + zlib + libgcc + libpcre + + + /usr/bin + /usr/lib + /usr/share/swig + /usr/share/doc + /usr/share/man + + + + + 2014-12-22 + 3.0.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-11 + 3.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-29 + 3.0.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-23 + 2.0.11 + Clean swig. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-24 + 2.0.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-17 + 2.0.9 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-09-15 + 2.0.8 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libwlocate + http://sourceforge.net/projects/libwlocate/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + library + programming.library + A shared library that can be used for location-based services + libwlocate is a shared library that can be used for location-based services. + http://sourceforge.net/projects/pisilinux/files/source/libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac.tar.gz + + wireless-tools-devel + + programming/library/libwlocate/pspec.xml + + + libwlocate + A shared library that can be used for location-based services + + wireless-tools + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libwlocate-devel + Development files for libwlocate + + libwlocate + + + /usr/include + + + + + 2015-12-03 + 0.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + yaml-cpp + https://github.com/jbeder/yaml-cpp + + Ergün Salman + Poyraz76@pisilinux.org + + LGPLv2 + Libry + programming.library + yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec. + To get a feel for how it can be used, see the Tutorial or How to Emit YAML. + yalm-cpp + https://github.com/jbeder/yaml-cpp/archive/release-0.5.2.tar.gz + + cmake + python-devel + boost-devel + + programming/library/yaml-cpp/pspec.xml + + + yaml-cpp + + /usr/lib/ + /usr/include/yaml-cpp/* + /usr/lib/pkgconfig/ + /usr/share/doc/ + + + + + 2015-09-01 + 0.5.2 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + libaccounts-qt5 + https://gitlab.com/accounts-sso/libaccounts-qt + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + library + programming.library + Qt5-based client library for accessing the online accounts database + Qt5-based client library for accessing the online accounts database + https://gitlab.com/accounts-sso/libaccounts-qt/repository/archive.tar.bz2 + + doxygen + qt5-base-devel + glib2-devel + libaccounts-glib-devel + + programming/library/libaccounts-qt5/pspec.xml + + + libaccounts-qt5 + + glib2 + libgcc + qt5-base + libaccounts-glib + + + /usr/lib/libaccounts-qt5.so.* + /usr/share/doc/libaccounts-qt5 + + + + libaccounts-qt5-devel + Development files for libaccounts-qt5 + + libaccounts-qt5 + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/lib/libaccounts-qt5.so + + + + libaccounts-qt5-docs + Help files and API documents for libaccounts-qt5 + data:doc + + libaccounts-qt5 + + + /usr/share/doc + + + + libaccounts-qt5-tools + This package contains the tools for the libaccounts-qt5 library + data:doc + + libaccounts-qt5 + libgcc + qt5-base + + + /usr/bin + /usr/share/libaccounts-qt-tests + + + + + 2015-10-20 + 1.14 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libbsd + http://libbsd.freedesktop.org + + Marcin Bojara + marcin@pisilinux.org + + BSD + BSD-2 + BSD-4 + ISC + library + programming.library + Provides useful functions commonly found on BSD systems + Taşınabilirlik için BSD uyumlu fonksiyonlar sağlayan bir kitaplık. + This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making it easier to port projects with strong BSD origins, without needing to embed the same code over and over again on each project. + GNU Linux sistemlerde bulunmayan BSD sistemlere özgü fonsiyonları barındıran bir kitaplıktır ve BSD uygulamalarının GNU Linux'a taşınmasını kolaylaştırır. + http://libbsd.freedesktop.org/releases/libbsd-0.6.0.tar.xz + programming/library/libbsd/pspec.xml + + + libbsd + + /usr/lib + /usr/share/doc + + + + libbsd-devel + Development files for libbsd + + libbsd /usr/include @@ -6699,38 +14180,10 @@ - - 2015-12-31 - 0.2.8 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-02-16 - 0.2.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-04-07 - 0.2.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-30 - 0.2.3 - rebuild. - Alihan Öztürk - alihan@pisilinux.org - - 2013-01-14 - 0.2.3 - First release + 2014-03-09 + 0.6.0 + Fisrt release. Marcin Bojara marcin@pisilinux.org @@ -6738,631 +14191,359 @@ - ModemManager - http://projects.gnome.org/NetworkManager + libaccounts-glib + https://code.google.com/p/accounts-sso PisiLinux Community admins@pisilinux.org - LGPLv2.1 - app:console - service - network.connection - A manager framework for mobile broadband modems - Mobil modemler için yönetim katmanı - ModemManager provides a unified high level API for communicating with mobile broadband modems. - ModemManager, 3G ve GSM gibi mobil genişbant modemlerle D-Bus üzerinden iletişimi sağlayan bir sistem hizmetidir. - http://www.freedesktop.org/software/ModemManager/ModemManager-1.2.0.tar.xz + LGPLv2 + programming.library + Accounts and SSO (Single Sign-On) framework + Accounts and SSO (Single Sign-On) framework for Linux and POSIX based platforms. + http://heanet.dl.sourceforge.net/project/kaosx/sources/libaccounts-glib/libaccounts-glib-1.18.tar.gz - ppp-devel - libqmi-devel - libmbim-devel - intltool - - network/connection/ModemManager/pspec.xml - - - ModemManager - - ppp - glib2 - libqmi - libmbim - eudev - libmm-glib - - - /usr/share/doc - /usr/sbin - /usr/share/icons - /usr/share/locale - /usr/share/dbus-1 - /usr/share/gir-1.0/ModemManager-1.0.gir - /lib/udev/rules.d/ - /etc/dbus-1/system.d/ - /usr/lib/ModemManager - /usr/lib/girepository-1.0/ModemManager-1.0.typelib - /usr/share/man/man8/ModemManager.8 - - - - ModemManager-devel - Development files for ModemManager - ModemManager için geliştirme dosyaları - - ModemManager - - - /usr/include/ModemManager/ - /usr/lib/pkgconfig/ModemManager.pc - - - - libmm-glib - D-Bus service for managing modems - shared libraries - - glib2 - - - /usr/bin - /usr/share/vala/vapi/libmm-glib.vapi - /usr/share/vala/vapi/libmm-glib.deps - /usr/lib/libmm-glib.so* - /usr/share/man/man8/mmcli.8 - - - - libmm-glib-devel - Development files for libmm-glib - libmm-glib için geliştirme dosyaları - - libmm-glib glib2-devel - ModemManager-devel - - - /usr/include/libmm-glib/ - /usr/lib/pkgconfig/mm-glib.pc - - - - - 2014-02-17 - 1.2.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-20 - 1.0.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-08-28 - 5.3.96 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - linux-atm - http://linux-atm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - network.connection - Tools to support ATM networking under Liunx - ATM ağ bağlantısı desteği için araçlar - linux-atm contains tools for Asynchronous Transfer Mode. Supports raw ATM connections (PVCs and SVCs), IP over ATM, LAN emulation, MPOA, Arequipa, and some others. - linux-atm ATM (Asynchronous Transfer Mode) bağlantısı için gerekli çeşitli araçlar ve kitaplıklarını içerir. - mirrors://sourceforge/project/linux-atm/linux-atm/2.5.2/linux-atm-2.5.2.tar.gz - - flex + libxml2-devel + sqlite-devel + gtk-doc + docbook-xsl + python-pygobject-devel - - man-pages.patch - - network/connection/linux-atm/pspec.xml + programming/library/libaccounts-glib/pspec.xml - linux-atm + libaccounts-glib + library - flex + glib2 + sqlite + libxml2 - /lib/firmware - /usr/sbin /usr/bin - /etc /usr/lib - /usr/share/man - /usr/share/doc + /usr/share/backup-framework/applications/accounts.conf + /usr/share/xml + /usr/share/libaccounts-glib/testdata + /usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.Accounts.Manager.xml + /usr/share/man/man1 - linux-atm-devel - Development files for linux-atm - linux-atm için geliştirme dosyaları + libaccounts-glib-devel + Development files for libaccounts-glib - linux-atm + libaccounts-glib + glib2-devel /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0/Accounts-1.0.gir + /usr/share/vala + + + + libaccounts-glib-docs + Help files and API documents for libaccounts-glib + data:doc + + libaccounts-glib + + + /usr/share/gtk-doc + /usr/share/doc - - 2015-04-13 - 2.5.2 + + 2015-10-20 + 1.18 Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org - - 2010-10-13 - 2.5.1 - First release - Gökcen Eraslan - admins@pisilinux.org + + 2013-11-11 + 1.15 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org - - - - - bridge-utils - http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.connection - Linux network bridging utilities - Linux için ağ köprüleme yardımcı uygulamaları - Containts userspace driver for IEEE 802.1d ethernet bridging (plus Spanning Tree protocol) for the linux kernel. - Linux için ağ köprüleme yardımcı uygulamaları. - http://downloads.sourceforge.net/project/bridge/bridge/bridge-utils-1.5.tar.gz - - bridge-utils-1.0.4-inc.patch - bridge-utils-1.2-params.patch - bridge-utils-1.5-linux_3.8.x.patch - - network/connection/bridge-utils/pspec.xml - - - bridge-utils - - /usr/include - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2014-01-19 - 1.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org + + 2013-07-29 + 1.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org - - 2012-08-28 - 1.5 - First release + + 2013-07-28 + 1.8 + Dep Fixed Osman Erkan osman.erkan@pisilinux.org - - - - - NetworkManager - http://projects.gnome.org/NetworkManager - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2+ - app:console - network.connection - Network connection manager powered by D-Bus and UDEV - D-Bus üzerinden yapılandırmaya izin veren, gelişmiş bir ağ yönetim altyapısı - NetworkManager attempts to keep an active network connection available at all times. - NetworkManager, etkin bir bağlantı kurmak ve onu sürekli ayakta tutmak üzere tasarlanmış, D-Bus ve UDEV teknolojilerini kullanan bir ağ yönetim altyapısıdır. - https://download.gnome.org/sources/NetworkManager/1.0/NetworkManager-1.0.4.tar.xz - - tr.po - - - intltool - ppp-devel - nss-devel - newt-devel - nspr-devel - libnl-devel - libsoup-devel - bluez-libs-devel - iptables-devel - wpa_supplicant - dbus-glib-devel - gobject-introspection - libndp-devel - libmm-glib-devel - dbus-devel - glib2-devel - polkit-devel - readline-devel - eudev-devel - libutil-linux-devel - ConsoleKit-devel - - - disable_set_hostname.patch - - network/connection/NetworkManager/pspec.xml - - - NetworkManager - - dbus - nspr - glib2 - polkit - readline - dbus-glib - libutil-linux - eudev - nss - newt - ppp - libnl - libsoup - bluez-libs - iproute2 - iptables - libmm-glib - ModemManager - wpa_supplicant - libndp - ConsoleKit - mobile-broadband-provider-info - - - /etc - /usr/share - /etc/dbus-1 - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /lib/udev - /usr/sbin - /lib/udev/rules.d - /usr/libexec - /run/NetworkManager - /lib/systemd/system - /usr/share/locale - /var/lib/NetworkManager - /etc/NetworkManager/system-connections - /usr/lib/tmpfiles.d/NetworkManager.conf - /etc/polkit-1/localauthority/10-vendor.d - - - System.Service - - - NetworkManager.confd - tmpfiles.conf - NetworkManager.conf - migrate-comar-network-profiles - gentoo/01-org.freedesktop.NetworkManager.settings.modify.system.pkla - 01-org.freedesktop.ModemManager1.rules - 01-org.freedesktop.NetworkManager.settings.modify.system.rules - - - - NetworkManager-devel - Development files for NetworkManager - NetworkManager için geliştirme dosyaları - - glib2-devel - dbus-glib-devel - NetworkManager - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2015-07-22 - 1.0.4 - fixed missing dep and added rules files - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - 2015-06-14 - 1.0.2 - fixed missing dep and added rules files - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - 2015-05-14 - 1.0.2 - Version bump. - Vedat Demir - vedat@pisilinux.org - - systemRestart - - - - 2015-01-07 - 1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - 2014-05-17 - 0.9.8.10 - Version bump. - Vedat Demir - vedat@pisilinux.org - - systemRestart - - - - 2014-01-10 - 0.9.8.8 - Version bump. Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org - - systemRestart - - - - 2013-09-08 - 0.9.8.2 - /var/run => /run - Marcin Bojara - marcin@pisilinux.org - - systemRestart - - - - 2013-07-27 - 0.9.8.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - 2013-02-21 - 0.9.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-23 - 0.9.7.995 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-13 - 0.9.6.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - network-manager-applet - http://projects.gnome.org/NetworkManager - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:gui - network.connection - Network connection manager GUI interface - NetworkManager için güçlü bir grafik arayüzü - network-manager-applet is a powerful graphical frontend to NetworkManager. - network-manager-applet, NetworkManager için GTK+ arayüz kitaplığı kullanılarak yazılmış güçlü bir arayüzdür. - http://ftp.gnome.org/mirror/gnome.org/sources/network-manager-applet/1.0/network-manager-applet-1.0.4.tar.xz - - gtk2-devel - gtk3-devel - libsecret-devel - cairo-devel - pango-devel - libnotify-devel - libmm-glib-devel - gdk-pixbuf-devel - at-spi2-core-devel - NetworkManager-devel - iso-codes - dbus-devel - glib2-devel - dbus-glib-devel - atk-devel - eudev-devel - intltool - - network/connection/network-manager-applet/pspec.xml - - - network-manager-applet - - gtk3 - atk - cairo - pango - libsecret - libnotify - libmm-glib - gdk-pixbuf - NetworkManager - at-spi2-core - dbus - glib2 - dbus-glib - eudev - - - /usr/bin - /usr/share/libnm-gtk - /usr/lib/ - /usr/share/icons - /usr/share/applications - /usr/share/nm-applet - /etc/dbus-1 - /usr/share - /usr/libexec - /etc/gconf/schemas - /etc/xdg/autostart - /usr/share/man - /usr/share/doc - /usr/share/locale - - - - network-manager-applet-devel - network-manager-applet için geliştirme dosyaları - network-manager-applet için geliştirme dosyaları - - network-manager-applet - NetworkManager-devel - dbus-glib-devel - gtk3-devel - - - /usr/include/libnm-gtk - /usr/lib/pkgconfig - - - - - 2015-07-22 - 1.0.4 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-13 - 1.0.2 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-11 - 1.0.2 - Version Bump - Vedat Demir - vedat@pisilinux.org - - - 2015-01-13 - 1.0.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-21 - 0.9.8.10 - Version Bump - Vedat Demir - vedat@pisilinux.org - - - 2014-02-19 - 0.9.8.8 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-17 - 0.9.8.8 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-07-27 - 0.9.8.2 + 2013-07-28 + 1.8 Move pc files to devel pack, rebuild Osman Erkan osman.erkan@pisilinux.org - - 2013-07-04 - 0.9.8.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-21 - 0.9.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-26 - 0.9.7.995 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-01-22 - 0.9.6.4 - New version - Ertan Güven - ertan@pisilinux.org + 2013-05-06 + 1.8 + Sandbox Fixed. + Osman Erkan + osman.erkan@pisilinux.org - 2012-08-28 - 0.9.6.2 + 2013-03-08 + 1.8 + First release + Erdinç Gültekin + erdincgultekin@gmail + + + + + + libsignon-glib + https://code.google.com/p/accounts-sso + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + programming.library + Authorization and authentication management for glib + libsignon-glib provides authorization and authentication management for GLib applications. + https://gitlab.com/accounts-sso/libsignon-glib/repository/archive.tar.gz + + glib2-devel + gobject-introspection-devel + signon-devel + gtk-doc + + programming/library/libsignon-glib/pspec.xml + + + libsignon-glib + + gobject-introspection + glib2 + signon + + + /usr/lib/ + /usr/share/gir-1.0 + /usr/share/vala/vapi/signon.vapi + + + + libsignon-glib-devel + Development files for libsignon-glib + libsignon-glib için kütüphaneler + libsignon-glib geliştirme paketi, libsignon-glib için geliştirme dosyaları sunar. + + libsignon-glib + glib2-devel + signon-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libsignon-glib-doc + Document files for libsignon-glib + + libsignon-glib + + + /usr/share/doc + /usr/share/gtk-doc/html + + + + + 2015-11-14 + 1.12 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 1.9 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 1.9 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 1.9 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-07 + 1.9 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-22 + 1.9 + First release + Erdinç Gültekin + erdincgultekin@gmail.com + + + + + + dustrac + http://dustrac.sourceforge.net/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + app:gui + game.arcade + Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game + The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen. + https://github.com/juzzlin/DustRacing2D/archive/1.11.0.tar.gz + + qt5-base-devel + qt5-linguist + openal-devel + cmake + pkgconfig + libvorbis-devel + mesa-devel + mesa-glu-devel + + game/arcade/dustrac/pspec.xml + + + dustrac + + qt5-base + openal + libvorbis + libgcc + mesa + + + /usr/bin + /usr/share/games + /usr/share/locale + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps + /usr/share/doc + + + + + 2015-11-20 + 1.11.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + alienarena + http://red.planetarena.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + COR-Entertainment-LLC + app:gui + game.fps + A standalone 3D first person shooter game + 3 Boyutlu ilkgözden nişancılık oyunu + Alien Arena is a standalone 3D first person online deathmatch shooter crafted from the original source code of Quake II and Quake III. + Alien Arena, Quake 2 ve 3 oyunlarının kaynak kodlarından yola çıkılarak hazırlanmış çevrimiçi oynanabilen ilkgözden (first person) nişancılık (shooter) oyunudur. + alienarena + http://red.planetarena.org/files/alienarena-7.66-linux20130827.tar.gz + + libjpeg-turbo-devel + libXxf86dga-devel + libXxf86vm-devel + libX11-devel + mesa-devel + openal-devel + ode-devel + curl-devel + freetype-devel + libvorbis-devel + + + use_home_dir.patch + + game/fps/alienarena/pspec.xml + + + alienarena + + libjpeg-turbo + libXxf86vm + curl + zlib + libX11 + libvorbis + libgcc + freetype + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + alienarena.png + alienarena.desktop + + + + + 2015-11-11 + 7.66 + Rebuild for 2.0. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-09-27 + 7.66 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-01-12 + 7.60.1 First release Osman Erkan osman.erkan@pisilinux.org @@ -7371,32 +14552,406 @@ - mobile-broadband-provider-info - http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders + ode + http://www.ode.org/ PisiLinux Community admins@pisilinux.org - public-domain - data - network.connection - Service provider specific settings of mobile broadband providers in different countries - Çeşitli ülkelerdeki mobil genişbant servis sağlayıcıları hakkında bilgileri içeren ayar veritabanı - The mobile-broadband-provider-info package contains listings of mobile broadband (3G) providers and associated network and plan information. - mobile-broadband-provider-info paketi, dünya üzerindeki mobil genişbant sağlayıcılarının ve ilgili tarifelerinin listesini tutan bir veritabanıdır. - ftp://ftp.gnome.org/pub/gnome/sources/mobile-broadband-provider-info/20120614/mobile-broadband-provider-info-20120614.tar.xz - network/connection/mobile-broadband-provider-info/pspec.xml + LGPLv2.1 + library + game.misc + High performance library for simulating rigid body dynamics + Vücut dinamiklerini simüle etmek için yüksek başarımlı bir kitaplık + ODE jest biblioteką służącą do symulacji dynamiki bryły sztywnej + SDK (kit de développement) du moteur Open Dynamics. + ode is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. + ode açık kaynaklı, yüksek başarımlı bir vücut dinamiği simülasyon kitaplığıdır. Tam işlevsel, kararlı, olgun ve platform bağımsız bir C/C++ programlama arayüzü sunar. + Open Dynamics Engine (ODE) jest wolną biblioteką służącą do symulacji dynamiki bryły sztywnej. ODE jest użyteczne przy symulacji pojazdów, obiektów w przestrzeni wirtualnej i wirtualnych stworzeń. + mirrors://sourceforge/opende/ode-0.13.tar.bz2 + game/misc/ode/pspec.xml - mobile-broadband-provider-info + ode - /usr/share + /usr/lib + /usr/share/doc + + + + ode-devel + Development files for ode + ode için geliştirme dosyaları + Pliki nagłówkowe ode + + ode + + + /usr/bin/ode-config + /usr/include + /usr/lib/pkgconfig + + 2015-10-26 + 0.13 + Version Bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-03-09 + 0.12 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-05-18 + 0.12 + Enable double precision + Marcin Bojara + marcin@pisilinux.org + - 2012-08-28 - 20120614 + 2012-12-08 + 0.12 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libpwquality + https://fedorahosted.org/libpwquality/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + server.auth + Password quality checking + The libpwquality package contains a library used for password quality checking and generation of random passwords that pass the checks. + https://fedorahosted.org/releases/l/i/libpwquality/libpwquality-1.2.4.tar.bz2 + + cracklib-devel + pam-devel + + server/auth/libpwquality/pspec.xml + + + libpwquality + + cracklib + pam + + + /lib + /etc/security + /usr/lib + /usr/share/man/man1 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc/libpwquality + /usr/share/locale + /usr/bin + + + + libpwquality-devel + libpwquality için geliştirme dosyaları + libpwquality için geliştirme dosyaları + + libpwquality + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-01-23 + 1.2.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-01 + 1.2.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-20 + 1.2.2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-12 + 1.2.2 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 1.2.1 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-04 + 1.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-01 + 1.2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + mit-kerberos + http://web.mit.edu/kerberos/www/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + app:console + server.auth + MIT Kerberos Library + MIT Kerberos kütüphanesi + Kerberos is a network authentication protocol. It is designed to provide strong authentication for client/server applications by using secret-key cryptography. + Kerberos bir ağ doğrulama protokolüdür. Sunucu/istemci uygulamalarında, gizli anahtar kriptoloji teknolojisini kullanarak, güçlü bir doğrulama sağlar. + http://source.pisilinux.org/1.0/krb5-1.13.1.tar.gz + + keyutils + openssl-devel + e2fsprogs-devel + + + krb5-config_LDFLAGS.patch + rebuild-configure-scripts.patch + fix-python-detection.patch + + server/auth/mit-kerberos/pspec.xml + + + mit-kerberos + + keyutils + openssl + e2fsprogs + + + /etc + /usr/include + /usr/bin + /usr/sbin + /usr/lib + /usr/share + /var/lib + /usr/share/info + /usr/share/man + + + krb5.conf + kdc.conf + + + + + 2015-04-23 + 1.13.1 + Version bump,fix deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-13 + 1.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-17 + 1.12.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-22 + 1.11.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-20 + 1.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-27 + 1.10.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + cyrus-sasl + http://asg.web.cmu.edu/sasl/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + service + server.auth + The Cyrus SASL (Simple Authentication and Security Layer) + Cyrus basit kimlik tanımlama ve güvenlik katmanı + cyrus-sasl is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols. To use SASL, a protocol includes a command for identifying and authenticating a user to a server and for optionally negotiating protection of subsequent protocol interactions. + Cyrus-sasl, bağlantı tabanlı protokoller için kullanılan bir kimlik doğrulama uygulamasıdır. Çoğunlukla Smtp doğrulaması için kullanılır. + http://cyrusimap.org/releases/cyrus-sasl-2.1.26.tar.gz + + mit-kerberos + pam-devel + gdbm-devel + e2fsprogs-devel + openssl-devel + groff + + + CVE-2013-4122.patch + 0011_saslauthd_ac_prog_libtool.patch + 0025_ld_as_needed.patch + 0026_drop_krb5support_dependency.patch + 0030-dont_use_la_files_for_opening_plugins.patch + cyrus-sasl-2.1.20-saslauthd.conf-path.patch + cyrus-sasl-2.1.21-sizes.patch + cyrus-sasl-2.1.22-as-needed.patch + cyrus-sasl-2.1.22-qa.patch + cyrus-sasl-2.1.22-kerberos4.patch + cyrus-sasl-2.1.22-ldap-timeout.patch + cyrus-sasl-2.1.23-man.patch + cyrus-sasl-2.1.26-keytab.patch + cyrus-sasl-2.1.26-no_rpath.patch + cyrus-sasl-2.1.26-obsolete-macro.patch + cyrus-sasl-2.1.26-prefer-SCRAM-SHA-1-over-PLAIN.patch + cyrus-sasl-2.1.26-relro.patch + cyrus-sasl-2.1.26-size_t.patch + cyrus-sasl-2.1.26-warnings.patch + + server/auth/cyrus-sasl/pspec.xml + + + cyrus-sasl + + mit-kerberos + pam + gdbm + e2fsprogs + openssl + + + /etc + /usr/lib/tmpfiles.d/cyrus-sasl.conf + /usr/sbin + /usr/lib + /usr/share/cyrus-sasl-2 + /run + /usr/share/man + /usr/share/doc + + + System.Service + System.Package + + + saslauthd.confd + saslauthd.pam + tmpfiles.conf + + + + cyrus-sasl-devel + Development files for cyrus-sasl + cyrus-sasl için geliştirme dosyaları + + cyrus-sasl + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/cyrus-sasl/*.txt + /usr/share/man/man3 + + + + + 2014-07-05 + 2.1.26 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-09 + 2.1.26 + Version bump. Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 2.1.25 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-05-05 + 2.1.25 + Added some patches and remove unused. + Aydın Demirel + aydin@demirel.web.tr + + + 2013-04-25 + 2.1.25 + Dep Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2012-09-29 + 2.1.25 First release PisiLinux Community admins@pisilinux.org @@ -7405,53 +14960,254 @@ - openconnect - http://www.infradead.org/openconnect.html + dhcp + http://www.isc.org/products/DHCP PisiLinux Community admins@pisilinux.org - LGPLv2+ + isc-dhcp app:console - network.connection - A client for Cisco's AnyConnect VPN, which uses HTTPS and DTLS protocols - Cisco AnyConnect VPN için HTTP ve DTLS protokollerini kullanan istemci - openconnect provides the core HTTP and authentication support from the OpenConnect VPN client, to be used by GUI authentication dialogs for NetworkManager etc. - openconnect, NetworkManager gibi grafik arayüz yoluyla kimlik doğrulama yapan araçlar için OpenConnect VPN kimlik doğrulama desteği sunan bir araç ve kitaplıktır. - ftp://ftp.infradead.org/pub/openconnect/openconnect-7.06.tar.gz + library + service + server + DHCP Sunucusu + DHCP-Server + Dynamic host configuration protocol software + DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. + IP adresi atanmasını ve TCP/IP bilgilerinin yapılandırılmasını sağlayan DHCP Sunucusu + http://ftp.isc.org/isc/dhcp/4.3.0/dhcp-4.3.0.tar.gz - intltool - python-devel - openssl-devel - libxml2-devel - zlib-devel + groff + openldap-client + bind-devel - network/connection/openconnect/pspec.xml + + dhcp-4.2.0-release-by-ifup.patch + dhcp-4.2.0-dhclient-decline-backoff.patch + dhcp-4.2.0-unicast-bootp.patch + dhcp-4.2.0-default-requested-options.patch + dhcp-4.2.0-paths.patch + dhcp-4.2.0-inherit-leases.patch + dhcp-4.2.0-garbage-chars.patch + dhcp-4.2.0-IFNAMSIZ.patch + dhcp-4.2.0-add_timeout_when_NULL.patch + dhcp-4.2.0-logpid.patch + dhcp-4.2.0-sendDecline.patch + dhcp-4.2.1-retransmission.patch + dhcp-4.2.0-honor-expired.patch + dhcp-4.3.0a1-PPP.patch + dhcp-4.2.0-P2-omapi.patch + + server/dhcp/pspec.xml - openconnect + dhcp - zlib - libxml2 - openssl + openldap-client + bind-libs - /usr/bin/openconnect - /usr/share/man/man8 - /usr/share/doc - /usr/share/locale + /etc + /usr/bin /usr/sbin /usr/lib + /var/lib + /run + /usr/share/man + /usr/share/doc + + System.Service + System.Service + System.Service + System.Package + + + dhcpd + dhcpd6 + dhcrelay + dhcpd.conf + - openconnect-devel - Development files and headers for openconnect - openconnect için geliştirme dosyaları ve başlıkları + dhclient + Provides the dhclient ISC DHCP client daemon + DHCP İstemcisi + app:console - openconnect + dhcp + bind-libs + + + /etc/dhcp/dhclient.conf + /usr/sbin/dhclient + /var/lib/dhclient + /usr/share/man/man5/dhclient* + /usr/share/man/man8/dhclient* + /usr/share/man/man5/dhcp-options* + /usr/share/man/man5/dhcp-eval* + /usr/share/doc/dhcp/dhclient* + + + dhclient.conf + + + + dhcp-devel + Development files for dhcp + dhcp için geliştirme dosyaları + + dhcp + + + /usr/include + /usr/share/man/man3 + + + + + 2014-05-19 + 4.3.0 + Version Bump + Vedat Demir + vedat@pisilinux.org + + + 2014-01-22 + 4.2.5 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-14 + 4.2.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + samba + http://www.samba.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + server + A suite of SMB and CIFS client/server programs for UNIX + Linux için Windows ağ paylaşım servisi + samba is a free software implementation of Microsoft's networking protocol released under the GNU General Public License. As of version 3, Samba not only provides file and print services for various Microsoft Windows clients but can also integrate with a Windows Server domain, either as a Primary Domain Controller (PDC) or as a Domain Member. It can also be part of an Active Directory domain. + Samba, Linux ve Unix işletim sistemleri ile Windows NT ve Windows 9x işletim sistemleri arasındaki iletişimi sağlayan bir ağ sunucusu uygulamasıdır. Samba yalnızca Linux ve windows makinaların birbirlerini görmelerini sağlamaz aynı zamanda Linux çalıştıran bilgisayarların windows ağında yazıcı sunucusu gibi işlevleri edinmesi içinde kullanılır. Ayrıca Active Directory ile de uyumludur. + http://us1.samba.org/samba/ftp/stable/samba-4.2.3.tar.gz + + keyutils + acl-devel + pam-devel + attr-devel + popt-devel zlib-devel - openssl-devel + libcap-devel + python-devel + ncurses-devel + readline-devel + e2fsprogs-devel + libgcrypt-devel + libbsd-devel + avahi-libs + cups-devel + avahi-devel + gnutls-devel + libaio-devel + mit-kerberos + iniparser-devel + libtalloc-devel + libtevent-devel + openldap-client + libarchive-devel + nss-devel + docbook-xsl + libxslt + libtdb-devel + cyrus-sasl-devel + + server/samba/pspec.xml + + + samba + + acl + pam + attr + popt + zlib + libcap + python + ncurses + readline + e2fsprogs + libgcrypt + libarchive + cups + avahi + gdb + gnutls + libbsd + libaio + keyutils + iniparser + libtalloc + libtevent + avahi-libs + openldap-client + cyrus-sasl + libtdb + + + /run + /etc + /var/lib + /var/log + /usr/lib + /sbin + /usr/share/man + /usr/bin + /usr/sbin + /lib/security + /usr/share/samba + /usr/share/perl5 + /var/cache/samba + /var/run/ctdb + /usr/share/locale + /usr/lib/tmpfiles.d/samba.conf + + + System.Package + System.Service + + + lmhosts + samba.pam + smbusers + smb.conf + samba.confd + tmpfiles.conf + system-auth-winbind + + + + samba-devel + Development files for samba + samba için geliştirme dosyaları + + libtalloc-devel + libtevent-devel + samba /usr/include @@ -7459,44 +15215,1140 @@ - - 2015-08-15 - 7.06 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-03-09 - 5.01 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-29 - 5.01 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-05 - 5.01 - fix remove dep. + + 2015-07-30 + 4.2.3 + Version bump. Ertuğrul Erata ertugrulerata@gmail.com + + 2015-01-25 + 4.1.16 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-07-04 + 4.1.9 + Version Bump and security update(CVE-2014-0244, CVE-2014-3493). + Vedat Demir + vedat@pisilinux.org + + + 2014-06-04 + 4.1.8 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-20 + 4.1.7 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-25 + 4.1.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-04 + 4.1.6 + Fix build with readline6.3 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-13 + 4.1.6 + Version bump, remove swat package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-10 + 4.1.3 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-09 + 4.1.3 + Version bump. Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-16 + 4.1.1 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-07-07 + 4.0.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-18 + 3.6.12 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2011-09-09 + 3.5.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + mariadb + https://mariadb.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:console + server.database + MariaDB is a drop-in replacement for MySQL + Hızlı, çok kullanıcılı ve çok görevli SQL veritabanı sunucusu + MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable SQL server. + MySQL, çoklu iş parçacıklı (multi-threaded), çok kullanıcılı (multi-user), hızlı ve sağlam (robust) bir Veritabanı yönetim sistemidir. Özelllikle basit web uygulamaları için LAMP sistemi içinde sıkça tercih edilmektedir. + ftp://ftp.ulak.net.tr/pub/MariaDB/mariadb-10.0.20/source/mariadb-10.0.20.tar.gz + + ncurses-devel + zlib-devel + libxml2-devel + readline-devel + libevent-devel + openssl-devel + libpcre-devel + libaio-devel + unixODBC-devel + cmake + + server/database/mariadb/pspec.xml + + + mariadb-lib + MariaDB client tools + MySQL istemcileri tarafından gereken paylaşımlı kitaplıklar + app:console + library + + zlib + libgcc + libpcre + libxml2 + openssl + libaio + unixODBC + + + /usr/bin/mysql_config + /usr/include + /usr/lib + /usr/share/mysql/charsets + /usr/share/mysql/czech + /usr/share/mysql/danish + /usr/share/mysql/dutch + /usr/share/mysql/english + /usr/share/mysql/estonian + /usr/share/mysql/french + /usr/share/mysql/german + /usr/share/mysql/greek + /usr/share/mysql/hungarian + /usr/share/mysql/italian + /usr/share/mysql/japanese + /usr/share/mysql/korean + /usr/share/mysql/norwegian + /usr/share/mysql/norwegian-ny + /usr/share/mysql/polish + /usr/share/mysql/portuguese + /usr/share/mysql/romanian + /usr/share/mysql/russian + /usr/share/mysql/serbian + /usr/share/mysql/slovak + /usr/share/mysql/spanish + /usr/share/mysql/swedish + /usr/share/mysql/ukrainian + /usr/share/mysql/errmsg.txt + /usr/share/mysql + + + mysql-lib + + + + mariadb-client + MariaDB client libraries + MariaDB istemci uygulamaları + app:console + + mariadb-lib + libaio + zlib + libgcc + libpcre + ncurses + openssl + + + /usr/bin + + + mysql-client + + + + mariadb-server + MariaDB server and releated files + MariaDB sunucusu ve ilgili dosyalar + service + + mariadb-lib + mariadb-client + zlib + libgcc + openssl + + + /etc + /usr/sbin + /usr/bin/mysql_install_db + /usr/bin/mysqlmanagerc + /usr/bin/mysqlmanager-pwgen + /usr/bin/mysqlmanager + /usr/bin/mysql_secure_installation + /usr/bin/mysql_fix_privilege_tables + /usr/bin/mysqld_safe + /usr/bin/myisamchk + /usr/bin/myisamlog + /usr/bin/myisampack + /usr/bin/myisam_ftdump + /usr/bin/isamchk + /usr/bin/isamlog + /usr/bin/mysql_waitpid + /usr/bin/mysqlbinlog + /usr/bin/pack_isam + /usr/share/mysql/binary-configure + /usr/share/mysql/fill_help_tables.sql + /usr/share/mysql/mysqld_multi.server + /usr/share/mysql/mysql_fix_privilege_tables.sql + /usr/share/mysql/mysql_system_tables_data.sql + /usr/share/mysql/mysql_system_tables.sql + /usr/share/mysql/mysql_test_data_timezone.sql + /usr/share/mysql/ndb-config-2-node.ini + /usr/share/info + /var + /usr/share/doc + /usr/lib/tmpfiles.d/mariadb.conf + /run/mysqld + + + mysql-server + + + System.Service + System.Package + + + my.cnf + tmpfiles.conf + + + + mariadb-man-pages + MariaDB server and client man pages + MariaDB sunucu ve istemci uygulamarına ait kılavuz sayfaları + data + + /usr/share/man + + + mysql-man-pages + + + + + 2015-07-03 + 10.0.20 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-25 + 10.0.17 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-09-25 + 10.0.13 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-03 + 5.5.37 + Fix package.py, first create initial db then chown. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-25 + 5.5.37 + Rebuild. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-05-19 + 5.5.37 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-21 + 5.5.35 + Fix -lprobes_mysql issue + Marcin Bojara + marcin@pisilinux.org + - 2013-07-04 - 5.01 + 2014-02-18 + 5.5.35 + Fix package.py + Add tmpfiles.conf + Fix replacing mysql + Remove not needed files + Fix and clean actions.py + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-11 + 5.5.35 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + postgresql + http://www.postgresql.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + server.database + A powerful, open source relational database system + Güçlü bir açık kaynaklı ilişkisel veritabanı sistemi + PostgreSQL is a powerful, open source relational database system. + PostgreSQL, açık kaynak kodlu, güçlü bir ilişkisel veritabanıdır + https://ftp.postgresql.org/pub/source/v9.3.9/postgresql-9.3.9.tar.bz2 + + mit-kerberos + e2fsprogs-devel + pam-devel + readline-devel + zlib-devel + python-devel + openssl-devel + tcl-devel + libxslt-devel + libxml2-devel + openldap-server + + server/database/postgresql/pspec.xml + + + postgresql-lib + Essential shared libraries for any PostgreSQL client program or interface + library + + mit-kerberos + python + zlib + libxml2 + openssl + e2fsprogs + libxslt + openldap-client + + + /usr/lib + /usr/include + /usr/share/postgresql + /usr/bin/pg_config + + + + postgresql-doc + Postgresql documents + Postegresql belgeleri + Additional documentation for PostgreSQL. + PostegreSQL için ek belgelendirme + data:doc + + postgresql-lib + + + /usr/share/doc + + + + postgresql-server + service + + postgresql-lib + pam + zlib + libxml2 + openssl + readline + e2fsprogs + mit-kerberos + openldap-client + + + /etc + /usr/bin + /usr/share/locale + /usr/share/postgresql/contrib + /usr/share/man + /var/lib + + + System.Package + System.Service + + + postgresql.conf-8 + + + + postgresql-pl + + postgresql-lib + tcl + perl + + + /usr/bin/pltcl_listmod + /usr/bin/pltcl_loadmod + /usr/bin/pltcl_delmod + /usr/lib/postgresql/plperl.so + /usr/lib/postgresql/plpython.so + /usr/lib/postgresql/pltcl.so + /usr/share/postgresql/unknown.pltcl + + + + + 2015-07-03 + 9.3.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-19 + 9.3.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 9.3.3 + Rebuild for webp. + Kamil Atlı + suvarice@gmail.com + + + 2014-02-21 + 9.3.3 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2013-11-17 + 9.3.1 + Fix demp + Richard de Bruin + richdb@pisilinux.org + + + 2013-11-15 + 9.3.1 + Version bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-02-25 + 9.2.3 + Version bump + Ertan Güven + ertan@pisilinux.org + - 2012-08-28 - 4.06 + 2012-10-04 + 9.2.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + lmdb + http://symas.com/mdb/ + + PisiLinux Community + admins@pisilinux.org + + OpenLDAP + custom + library + app:console + server.database + Symas Lightning Memory-Mapped Database + An ultra-fast, ultra-compact key-value embedded data store. + https://github.com/LMDB/lmdb/archive/LMDB_0.9.16.tar.gz + server/database/lmdb/pspec.xml + + + lmdb + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + lmdb-devel + Development files for lmdb + + lmdb + + + /usr/include + + + + + 2015-08-28 + 0.9.16 + First release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + firebird + http://www.firebirdsql.org/ + + PisiLinux Community + admins@pisilinux.org + + IPL-1 + IDPL-1 + LGPLv2.1 + service + library + server.database + A relational database offering many ANSI SQL-99 features + Birçok ANSI SQL-99 özelliği sunan ilişkisel bir veritabanı + Firebird is an open source relational database management system offering many ANSI SQL-99 features. + Birçok ANSI SQL-99 özelliği sunan, küçük, hızlı ve çok kararlı bir veritabanı sunucu. + http://sourceforge.net/projects/firebird/files/firebird/2.5.4-Release/Firebird-2.5.4.26856-0.tar.bz2 + + icu4c-devel + btyacc + libedit-devel + + + editline-dumb-tr.patch + firebird-2.5.1.26351.0-deps-flags.patch + + server/database/firebird/pspec.xml + + + firebird-client + Firebird database client library + Firebird veritabanı istemci kütüphanesi + Firebird relational database client library. + Firebird sunucuya bağlantı için kullanılan istemci kütüphanesi + + libgcc + + + /usr/lib/libfbclient.* + /usr/lib/libgds.* + /usr/lib/libib_util.* + /usr/lib/libfbtrace.so + /opt/firebird/lib/libfbclient.* + /opt/firebird/lib/libgds.* + /opt/firebird/lib/libib_util.* + /opt/firebird/plugins/libfbtrace.so + + + + firebird-superserver + Firebird super server + Firebird veritabanı sunucusu + Firebird veritabanı için super sunucu. Klasik sunucu mimarisine göre, SMP performansı daha fazladır. + + firebird-client + icu4c + libedit + libgcc + + + /etc/firebird + /etc/env.d/50firebird + /opt/firebird/*.conf + /opt/firebird/*.msg + /opt/firebird/security2.fdb + /opt/firebird/README + /opt/firebird/WhatsNew + /opt/firebird/UDF + /opt/firebird/bin + /opt/firebird/doc + /opt/firebird/examples + /opt/firebird/help + /opt/firebird/intl + /opt/firebird/lib/libicu* + /opt/firebird/upgrade + /opt/firebird/firebird.log + /opt/firebird + /run/firebird + + + System.Service + System.Package + + + hosts.equiv + 50firebird + + + + firebird-devel + Development files for firebird + Firebird için geliştirme dosyaları + + firebird-client + + + /usr/include/firebird + + + + + 2015-07-03 + 2.5.4.26856 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-19 + 2.5.2.26540 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-14 + 2.5.2.26539 + Rebuild for icu4c + Ertan Güven + ertan@pisilinux.org + + + 2013-03-20 + 2.5.2.26539 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-10-15 + 2.5.1.26351 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libtdb + http://tdb.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + app:console + server.database + Trivial database library + TDB veritabanına erişim için gerekli kitaplıklar + libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other. + libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir. + http://www.samba.org/ftp/tdb/tdb-1.3.7.tar.gz + + libxslt + python-devel + docbook-xsl + libbsd-devel + + server/database/libtdb/pspec.xml + + + libtdb + + python + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libtdb-devel + Development files for libtdb + libtdb için geliştirme dosyaları + + libtdb + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-07-30 + 1.3.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-22 + 1.2.13 + rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-26 + 1.2.13 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-09 + 1.2.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-18 + 1.2.11 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.2.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + apache + http://httpd.apache.org/ + + Pisi Linux Admins + admins@pisilinux.org + + Apache-2.0 + service + server.web + Apache web sunucusu + Apache Webserver + Apache web server + Apache HTTP Server is a free software/open source web server for Unix-like systems, Microsoft Windows, Novell NetWare and other operating systems. Apache is notable for playing a key role in the initial growth of the World Wide Web, and continues to be the most popular web server in use, serving as the de facto reference platform against which other web servers are designed and judged. + Dünyanın en çok tercih edilen web sunucu olan Apache artık diğer genelağ sunucularının standartlarını belirlemek için takip ettiği hızlı, güçlü, esnek ve yüksek özelleştirilebilirliğe sahip bir genelağ sunucusudur. + http://archive.apache.org/dist/httpd/httpd-2.4.16.tar.bz2 + + apr-devel + nss-devel + lua-devel + zlib-devel + openssl-devel + libxml2-devel + db-devel + expat-devel + libpcre-devel + apr-util-devel + cyrus-sasl-devel + + server/web/apache/pspec.xml + + + apache + + nss + apr + lua + apr-util + cyrus-sasl + openldap-client + zlib + openssl + libxml2 + libpcre + db + expat + + + /etc + /usr/sbin + /usr/bin + /usr/include + /var/log/apache2 + /var/www + /run/apache2 + /var/cache + /usr/share/doc + /usr/share/man + /usr/lib + /lib/systemd/system + + + System.Package + System.Service + + + apache.service + apache2.confd + httpd.conf + 00_default_vhost.conf + 00_apache_manual.conf + 40_mod_ssl.conf + 41_mod_ssl.default-vhost.conf + 45_mod_dav.conf + 46_mod_ldap.conf + webroot/apache.css + webroot/apache_pb.gif + webroot/index.html + webroot/index-tr.html + webroot/index-ptbr.html + webroot/index-es.html + webroot/index-de.html + webroot/pisi-linux.png + + + + + 2015-09-04 + 2.4.16 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-01 + 2.4.12 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-12-20 + 2.4.10 + Rebuild for lua. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-10-02 + 2.4.10 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-05-30 + 2.4.9 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-11 + 2.4.6 + Rebuild for cyrus-sasl + Kamil Atlı + suvarice@gmail.com + + + 2013-12-30 + 2.4.6 + Rebuild + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-11-16 + 2.4.6 + Version Bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-04-23 + 2.4.3 + Dep fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-02-17 + 2.4.3 + Cosmetic corrections + Ertan Güven + ertan@pisilinux.org + + + 2012-10-07 + 2.4.3 + First release + Erdem Artan + admins@pisilinux.org + + + + + + bind + http://www.isc.org/products/BIND/bind9.html + + PisiLinux Community + admins@pisilinux.org + + as-is + service + server + The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server + Berkeley İnternet İsim Alanı (BIND) DNS (Alan Adı Sistemi) sunucusu + bind is an implementation of the DNS protocols, bind includes a DNS server (named), a resolver library and tools for verifying that the DNS server is operating properly. + bind, DNS protokollerinin gerçeklenimidir. DNS sunucu (named) ve bu sunucunun düzgün çalışması ve doğrulamasını yapılması için gerekli çözümleyici kitaplık ve araçları içerir. + ftp://ftp.isc.org/isc/bind9/9.10.2/bind-9.10.2.tar.gz + + openssl-devel + libxml2-devel + libcap-devel + zlib-devel + e2fsprogs-devel + readline-devel + geoip-devel + + + nslookup-pisilinux.patch + fedora/bind-9.5-PIE.patch + fedora/bind-9.5-parallel-build.patch + fedora/bind-96-libtool2.patch + fedora/bind-95-rh452060.patch + fedora/bind93-rh490837.patch + fedora/bind97-rh478718.patch + fedora/bind97-rh645544.patch + fedora/bind97-rh693982.patch + + server/bind/pspec.xml + + + bind-libs + bind-libs contains the libraries used by both the bind server package and the tools package + bind kitaplık dosyaları + library + server.library + + openssl + libxml2 + mit-kerberos + + + /usr/lib + + + + bind-devel + bind header and development files + bind geliştirme başlıkları ve araçları + library + server.library + + bind-libs + + + /usr/include + /usr/bin/isc-config.sh + /usr/share/man/man1/isc-config* + /usr/share/man/man3/lwres* + + + + bind-tools + Utilities for querying DNS name servers + DNS isim çözümleme araçları + app:console + network.analyzer + + bind-libs + readline + mit-kerberos + + + /usr/bin + /usr/share/man/man1 + + + + bind-chroot + A chroot runtime environment for the ISC BIND DNS server 'named' + bind sunucusunu chroot içinde çalıştırmak için gerekli dizin ve dosyalar + service + + bind + + + /etc/rsyslog.d/bind_chroot.conf + /var/named/chroot/etc + /var/named/chroot + + + System.Package + System.Service + + + chroot.rsyslog + + + + bind + service + + bind-libs + libcap + libxml2 + openssl + + + /etc + /usr/sbin + /var + /usr/share/man/man3 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc + + + System.Service + System.Package + + + named.conf + named.confd + gentoo/named.ca + gentoo/127.zone + gentoo/localhost.zone + fedora/named.logrotate + + + + + 2015-05-08 + 9.10.2 + Version bump + Vedat Demir + vedat@pisilinux.org + + + 2014-05-24 + 9.10.0 + Version bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-01-24 + 9.9.4 + Rebuild for unused link + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-16 + 9.9.4 + Version bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-04-23 + 9.9.2 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-14 + 9.9.2 First release PisiLinux Community admins@pisilinux.org @@ -7505,89 +16357,562 @@ - ppp - http://samba.org/ppp + libvncserver + http://libvncserver.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + server.misc + Library for creating VNC (Virtual Network Computing) servers + VNC sunucu oluşturmak için kütüphane + Biblioteka do łatwego implementowania serwera VNC + libvncserver provides a C library to create VNC servers. + VNC sunucu benzeri kendi VNC (Virtual Network Computing) sunucunuzu oluşturmak isterseniz gerekli kütüphane + Wieloplatformowa biblioteka C, pozwalającą na łatwą implementację trybu serwera lub klienta VNC (Virtual Network Computing) we własnym programie. + mirrors://sourceforge/libvncserver/LibVNCServer-0.9.9.tar.gz + + gnutls-devel + libjpeg-turbo-devel + libgcrypt-devel + libpng-devel + + server/misc/libvncserver/pspec.xml + + + libvncserver + + zlib + libpng + libgcrypt + gnutls + libjpeg-turbo + + + /usr/bin/*-config + /usr/lib + + + + libvncserver-devel + Development files for libvncserver + libvncserver için geliştirme dosyaları + Pliki nagłówkowe libvncserver + + libvncserver + zlib-devel + libpng-devel + libgcrypt-devel + gnutls-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-06-14 + 0.9.9 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 0.9.9 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-28 + 0.9.9 + Release bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-07-30 + 0.9.9 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-10-17 + 0.9.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + openldap + http://www.openldap.org + + PisiLinux Community + admins@pisilinux.org + + OPENLDAP + server + Open-source suite of LDAP applications and development tools + LDAP uygulamaları ve geliştirme araçları + OpenLDAP is an open-source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools + LDAP hizmeti için gereken uygulamalar ve geliştirme araçlarını içerir + ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.41.tgz + + nss-devel + db-devel + openssl-devel + tcp-wrappers-devel + cyrus-sasl-devel + libtool-ltdl + groff + + + openldap-2.4.39-blfs_paths-1.patch + openldap-2.4.39-symbol_versions-1.patch + openldap-2.4.39-ntlm-1.patch + fedora/openldap-sql-linking.patch + fedora/openldap-reentrant-gethostby.patch + fedora/openldap-ldaprc-currentdir.patch + fedora/openldap-userconfig-setgid.patch + fedora/openldap-syncrepl-unset-tls-options.patch + fedora/openldap-nss-update-list-of-ciphers.patch + fedora/openldap-tls-no-reuse-of-tls_session.patch + fedora/openldap-nss-regex-search-hashed-cacert-dir.patch + fedora/openldap-nss-ignore-certdb-type-prefix.patch + fedora/openldap-nss-certs-from-certdb-fallback-pem.patch + fedora/openldap-nss-pk11-freeslot.patch + fedora/openldap-switch-to-lt_dlopenadvise-to-get-RTLD_GLOBAL-set.patch + fedora/openldap-ldapi-sasl.patch + fedora/openldap-autoconf-pkgconfig-nss.patch + + server/openldap/pspec.xml + + + openldap-client + Command-line ldap client commands (ldapsearch, ldapadd etc..) + library + app:console + + nss + nspr + cyrus-sasl + + + /etc/openldap/ldap.conf* + /usr/include + /usr/bin + /usr/lib + /usr/share/man/man1 + /usr/share/man/man5/ldap.conf.5 + + + + openldap-server + OpenLDAP server slapd and releated tools + OpenLDAP server slapd, additional backends, configuration files, schema definitions required for operation, and database maintenance tools + service + + db + perl + tcp-wrappers + libtool-ltdl + nss + cyrus-sasl + openldap-client + + + /etc/conf.d + /etc/openldap + /usr/lib/tmpfiles.d/openldap-server.conf + /usr/sbin + /usr/libexec + /usr/share/man/man3 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc + /var/lib + /run/openldap + + + System.Package + System.Service + + + tmpfiles.conf + slapd.conf + gencert.sh + + + + openldap-32bit + 32-bit shared libraries for openldap + openldap için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + openssl-32bit + glibc-32bit + libtool-ltdl-32bit + + + glibc-32bit + openssl-32bit + openldap-client + + + /usr/lib32 + + + + + 2015-07-01 + 2.4.41 + Release bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-17 + 2.4.39 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-03 + 2.4.39 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-09 + 2.4.38 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-20 + 2.4.33 + ignore cyrus + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-09-19 + 2.4.33 + First release + PisiLinux Community + admins@pisilinux.org + + + 2012-09-19 + 2.4.32 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + openssh + http://www.openssh.com/ PisiLinux Community admins@pisilinux.org BSD - GPLv2 + app:console service - network.connection - Point-to-point protocol - patched for PPPOE - Modem ile internet erişimi için PPP (point to point protocol) noktadan noktaya erişim protokolü - The Point-to-Point Protocol (PPP) provides a standard way to transmit datagrams over a serial link. - PPP protokolü veriyi seri bir bağlantı üzerinden transfer etmek için standart bir yol sağlar. - http://samba.org/ftp/ppp/ppp-2.4.6.tar.gz - http://www.netservers.net.uk/gpl/ppp-dhcpc.tgz + server + Port of OpenBSD's free SSH release + OpenBSD'den aktarılmış SSH sürümü + OpenSSH est une version libre des outils de connexion SSH sur lesquels les utilisateurs techniquement chevronnés s'appuient. Les utilisateurs de telnet, rlogin et ftp ne se rendent peut être pas compte que les mots de passe sont transmis sur internet en clair. OpenSSH crypte tout le trafic (y compris les mots de passe) pour éliminer les écoutes passives, les détournements de connexion et autres attaques. + OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on. Users of telnet, rlogin, and ftp may not realize that their password is transmitted across the Internet unencrypted, but it is. OpenSSH encrypts all traffic (including passwords) to effectively eliminate eavesdropping, connection hijacking, and other attacks. + OpenSSH teknik internet kullanıcıların güvendikleri SSH bağlanırlık araçlarının Özgür (free) sürümüdür.telnet, rlogin ve ftp kullanıcıları parolalarının internetten şifresiz olarak aktarıldığını anlayamayabilirler ancak aktarılmaktadır.OpenSSH eavesdropping (iletişim kanalını dinleme), connection hijacking (bağlantı çalma) ve diğer atakları önlemek için tüm bağlantı trafiğini (parolalar dahil) şifrelemektedir. + http://ftp.icm.edu.pl/pub/OpenBSD/OpenSSH/portable/openssh-6.8p1.tar.gz - libpcap-devel + libedit-devel + zlib-devel openssl-devel + mit-kerberos + skey-devel pam-devel + e2fsprogs-devel - - gentoo/02_all_make-vars.patch - gentoo/04_all_mpls.patch - gentoo/06_all_killaddr-smarter.patch - gentoo/08_all_wait-children.patch - gentoo/10_all_defaultgateway.patch - gentoo/12_all_linkpidfile.patch - gentoo/16_all_auth-fail.patch - gentoo/18_all_defaultmetric.patch - gentoo/20_all_dev-ppp.patch - gentoo/24_all_passwordfd-read-early.patch - gentoo/26_all_pppd-usepeerwins.patch - gentoo/28_all_connect-errors.patch - gentoo/30_all_Makefile.patch - gentoo/32_all_pado-timeout.patch - gentoo/34_all_lcp-echo-adaptive.patch - ppp-2.3.6-sample.patch - ppp-2.4.3-fix64.patch - ppp-2.4.2-change_resolv_conf.patch - nostrip.patch - ppp-2.4.3-local.patch - ppp-2.4.3-ipv6-accept-remote.patch - ppp-2.4.5-ppp_resolv.patch - ppp-2.4.5-var_run_ppp.patch - ppp-2.4.6-eaptls-mppe-0.99.patch - - network/connection/ppp/pspec.xml + server/openssh/pspec.xml - ppp + openssh - libpcap - pam + libedit + zlib openssl + mit-kerberos + skey + pam /etc - /usr/lib/tmpfiles.d/ppp.conf + /usr/bin + /usr/sbin + /usr/libexec /usr/lib + /usr/share/openssh + /var/empty + /usr/share/man + /usr/share/doc + + + System.Service + + + sshd.pam + + + + + 2015-04-23 + 6.8_p1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-13 + 6.7_p1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-21 + 6.6_p1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-10 + 6.6_p1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-22 + 6.4_p1 + Version bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2012-10-30 + 6.1_p1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ntp + http://www.ntp.org + + PisiLinux Community + admins@pisilinux.org + + MIT + BSD + GPLv2+ + service + server + NTP daemon and client + NTP hizmeti ve istemcisi + Network Time Protocol utilities and daemons that will synchronize your computer's time to Coordinated Universal Time (UTC) via the NTP protocol and NTP servers. + ntp, NTP protokolü üzerinden uzak sunucuları kullanarak sisteminizin zamanını eşitlemek için gerekli araçları ve hizmetleri içerir. + https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p4.tar.gz + http://sourceforge.net/projects/ictom/files/ntpstat-0.2.tar.gz + + fix-man-pages.sh + + + avahi-compat-libdns_sd-devel + libedit-devel + net-snmp-devel + perl-HTML-Parser + libcap-devel + openssl-devel + libevent-devel + + server/ntp/pspec.xml + + + ntp-server + NTP server + NTP hizmeti + + avahi-compat-libdns_sd + libedit + net-snmp + libcap + openssl + libevent + ntp-client + + + /etc/ntp.conf + /etc/conf.d + /etc/ntp/crypto + /usr/bin/ntpstat + /usr/bin/update-leap + /usr/bin/calc_tickadj + /usr/share/ntp/lib/NTP/Util.pm + /usr/libexec /usr/sbin /usr/share/doc /usr/share/man - /run/ppp + /var/lib/ntp + + System.Package + System.Service + - tmpfiles.conf - options-pptp - options-pppoe - chat-default - ip-up - ip-down - confd.ppp0 - ppp.pamd - ppp.logrotate + fedora/ntp.conf + fedora/ntpd.sysconfig + fedora/ntp.cryptopw - ppp-devel - Development files for ppp - ppp için geliştirme dosyaları + ntp-client + NTP client + NTP istemcisi + app:console + util.admin + + /etc/conf.d/ntpdate + /etc/ntp/step-tickers + /etc/ntp/keys + /usr/sbin/ntpdate + /usr/share/man/man8/ntpdate.8* + + + System.Service + System.Package + + + fedora/ntpdate.sysconfig + fedora/ntp.step-tickers + fedora/ntp.keys + + + + ntp-docs + NTP documentation + NTP belgeleri + data:doc - ppp + ntp-client + + + /usr/share/doc/ntp/html + + + + + 2016-01-01 + 4.2.8_p4 + Version Bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-07-08 + 4.2.6_p5 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-30 + 4.2.6_p2 + Rebuild. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-03-09 + 4.2.6_p2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-03-06 + 4.2.6_p2 + URL Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-02-16 + 4.2.6_p2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + cdparanoia + http://www.xiph.org/paranoia/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + hardware.optical + An advanced CDDA reader with error correction + Hata düzeltme fonksiyonlu gelişmiş bir CDDA okuyucu + cdparanoia is an advanced CDDA (audio CD) reader with error correction. + http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz + + build_system.patch + cdparanoia-III-05-gcc4.3.patch + + hardware/optical/cdparanoia/pspec.xml + + + cdparanoia + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + cdparanoia-devel + Development files for cdparanoia + cdparanoia için geliştirme dosyaları + + cdparanoia /usr/include @@ -7595,2181 +16920,4616 @@ - 2014-04-03 - 2.4.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2014-05-20 + 3.10.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org - 2014-01-10 - 2.4.5 - Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org + 2014-03-10 + 3.10.2 + Rebuild for patch + Burak Fazıl Ertürk + burakerturk@pisilinux.org - 2013-09-12 - 2.4.5 - service.py no longer needed. - Marcin Bojara - marcin@pisilinux.org + 2014-01-01 + 3.10.2 + Release bump and clean + Burak Fazıl Ertürk + burakerturk@pisilinux.org - 2013-05-23 - 2.4.5 - Add service.py - Marcin Bojara - marcin@pisilinux.org + 2013-09-14 + 3.10.2 + *Release bump. + *Disable patch + Burak Fazıl Ertürk + burakerturk@pisilinux.org 2010-10-13 - 2.4.5 + 3.10.2 First release - Gökcen Eraslan + Pisi Linux Admins admins@pisilinux.org - wpa_supplicant - http://hostap.epitest.fi/wpa_supplicant/ + cdrkit + http://cdrkit.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.optical + Suite of programs for CD/DVD recording. + Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction. + http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz + + cdparanoia-devel + libcap-devel + zlib-devel + bzip2 + cmake + + hardware/optical/cdrkit/pspec.xml + + + cdrkit + + file + zlib + bzip2 + libcap + + + /usr/bin + /usr/sbin + /usr/include + /usr/lib + /usr/share/man + /usr/share/doc + + + cdrtools + + + + + 2013-09-14 + 1.1.11 + Disable patch + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-05-16 + 1.1.11 + fixing working + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-02-11 + 1.1.11 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libcdio-paranoia + http://www.gnu.org/software/libcdio/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + GPLv2+ + LGPLv2.1 + library + hardware.optical + CD paranoia libraries from libcdio + An advanced CDDA reader with error correction. + mirrors://gnu/libcdio/libcdio-paranoia-10.2+0.90+1.tar.bz2 + + libcdio-devel + + + libcdio-paranoia-0.90-mkdir_p.patch + + hardware/optical/libcdio-paranoia/pspec.xml + + + libcdio-paranoia + + libcdio + + + /usr/share/info + /usr/share/man + /usr/share/doc + /usr/lib + /usr/bin + + + + libcdio-paranoia-devel + Development files for libcdio-paranoia + + libcdio-paranoia + libcdio-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-02-25 + 0.90_p1 + Rebuild for libcdio + Kamil Atlı + suvarice@gmail.com + + + 2014-02-25 + 0.90_p1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 0.90_p1 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-07 + 0.90_p1 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + libcdio + http://www.gnu.org/software/libcdio/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.optical + Un librairie encapsulant la lecture et le controle du lecteur CD-ROM. + A library to encapsulate CD-ROM reading and control + CD-ROM okuma ve kontrol kitaplığının küçültülmüş sürümü + This library provides an interface for CD-ROM access. It can be used by applications that need OS- and device-independent access to CD-ROM devices. + GNU kompakt disk girdi ve kontrol kitaplığı (libcdio) CD-ROM ve CD kalıplarına ulaşım için gerekli bir kitaplıktır. + mirrors://gnu/libcdio/libcdio-0.92.tar.gz + + libgcc + + + libcdio-0.83-linking.patch + + hardware/optical/libcdio/pspec.xml + + + libcdio + + libgcc + + + /usr/share/info + /usr/share/man + /usr/share/doc + /usr/lib + /usr/bin + + + + libcdio-devel + Development files for libcdio + libcdio için geliştirme dosyaları + + libcdio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.92 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 0.90 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 0.90 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2011-05-27 + 0.82 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + bluez + http://bluez.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + service + library + app:console + hardware.bluetooth + Official Linux Bluetooth protocol stack + Linux resmi Bluetooth protokol yığını + bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols. + Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir. + https://www.kernel.org/pub/linux/bluetooth/bluez-5.33.tar.xz + + cups-devel + dbus-devel + libnl-devel + alsa-lib-devel + gstreamer-devel + libsndfile-devel + libical-devel + glib2-devel + eudev-devel + readline-devel + + + 0001-Allow-using-obexd-without-systemd-in-the-user-session.patch + + hardware/bluetooth/bluez/pspec.xml + + + bluez + + dbus + eudev + glib2 + readline + libical + bluez-libs + + + /lib/udev/rules.d + /lib/systemd/system + /usr/share/misc + /usr/bin + /usr/sbin + /lib/udev + /lib/bluetooth/obexd + /lib/bluetooth/bluetoothd + /usr/lib + /usr/libexec + /usr/share/man + /var/lib/bluetooth + /usr/share/alsa/bluetooth.conf + /usr/share/dbus-1 + /etc + + + System.Service + + + + bluez-libs + Libraries for use in Bluetooth applications + Uygulamalar için bluetooth erişim kitaplığı + + libical + + + /usr/lib/libbluetooth.so* + /usr/share/doc + + + + bluez-libs-devel + Development files for bluez-libs + bluez-libs için geliştirme dosyaları + + bluez-libs + + + /usr/include/bluetooth + /usr/lib/pkgconfig + + + + + 2015-08-16 + 5.33 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-29 + 5.27 + rebuild. + Vedat Demir + vedat@pisilinux.org + + + 2015-01-25 + 5.27 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-07-05 + 5.21 + Version bump and bugs fix. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-23 + 5.18 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2014-01-28 + 4.101 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-27 + 4.101 + R.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-06-28 + 4.101 + Add patches, --enable-hid2hci --enable-wiimote + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-09 + 4.101 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + sbc + http://www.bluez.org/ + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + LGPLv2.1 + library + hardware.bluetooth + Bluetooth Subband Codec (SBC) library + An audio codec to connect bluetooth high quality audio devices like headphones or loudspeakers. + http://www.kernel.org/pub/linux/bluetooth/sbc-1.3.tar.gz + hardware/bluetooth/sbc/pspec.xml + + + sbc + + /usr/bin/* + /usr/lib + /usr/share/doc/sbc/* + + + + sbc-devel + Development files for sbc + + sbc + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-12-12 + 1.3 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-27 + 1.0 + R.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-12-19 + 1.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + lm_sensors + http://www.lm-sensors.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + library + hardware.powermanagement + Hardware monitoring tools + Donanım sıcaklığı izleyicisi + lm_sensors provides essential tools for monitoring the temperatures, voltages, and fans of Linux systems with hardware monitoring devices. It also contains scripts for sensor hardware identification and fan speed control. + lm_sensors linux sistemlerdeki donanım izleyiciler ile birlikte termometreleri, voltajları ve fan devirlerini izleyen bir araçtır. Ayrıca, donanım ve fan kimliğini algılayan betikler içerir. + http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-3.4.0.tar.bz2 + + rrdtool-devel + + + lm_sensors-fancontrol.patch + + hardware/powermanagement/lm_sensors/pspec.xml + + + lm_sensors + + dmidecode + rrdtool + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc + + + + lm_sensors-devel + Development files for lm_sensors + lm_sensors için geliştirme dosyaları + + lm_sensors + rrdtool-devel + + + /usr/include + /usr/share/man/man3 + + + + + 2015-10-02 + 3.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-04-14 + 3.3.5 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-19 + 3.3.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + acpica + http://www.acpica.org + + PisiLinux Community + admins@pisilinux.org + + custom + app:console + hardware.powermanagement + ACPI debugging tools written by Intel + Intel ACPI hata ayıklama araçları + acpica contains an AML interpreter and debugger, ACPI namespace support, ACPI hardware and event support and a full ASL compiler and disassembler. + acpica, AML yorumlayıcısı, AML hata ayıklayıcısı, ACPI donanım ve olay desteği, ASL derleyicisi ve ASL disassembler gibi çeşitli ACPI araçları içeren bir pakettir. + ftp://gentoo.arcticnetwork.ca/pub/gentoo/distfiles/acpica-unix-20130117.tar.gz + hardware/powermanagement/acpica/pspec.xml + + + acpica + + /usr/share/doc + /usr/bin + /usr/sbin + /usr/share/man/man1 + + + iasl.1 + LICENSE + + + + + 2014-03-05 + 0.0_20130117 + Rebuild for buildhost + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-02 + 0.0_20130117 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-12-22 + 0.0_20130117 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + pm-utils + http://pm-utils.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.powermanagement + A toolset to suspend and hibernate computers + Askıya alma işlemleri için gerekli araçlar + pm-utils provides simple shell command line tools to suspend and hibernate computers, and it that can be used to run vendor, distribution, or user supplied scripts on suspend and resume. + pm-utils, bilgisayarı bellek veya disk kullanarak uyku kipine geçirmek ve devam ettirmek için gerekli kabuk betiklerini sunar. + http://pm-utils.freedesktop.org/releases/pm-utils-1.4.1.tar.gz + http://pm-utils.freedesktop.org/releases/pm-quirks-20100619.tar.gz + + xmlto + libxslt + util-linux + + + pisilinux/check-for-swap-partition.patch + pisilinux/disable-powersave.patch + suse/pm-utils-1.2.6.1-fix-broken-dbus-send.diff + suse/pm-utils-1.3.0-suse-smart-uswsusp.patch + suse/pm-utils-1.4.1-suse-config.patch + gentoo/1.4.1-bluetooth-sync.patch + gentoo/1.4.1-disable-sata-alpm.patch + gentoo/1.4.1-fix-intel-audio-powersave-hook.patch + gentoo/1.4.1-logging-append.patch + + hardware/powermanagement/pm-utils/pspec.xml + + + pm-utils + + hdparm + vbetool + + + /etc/pm + /usr/lib + /run/pm-utils + /usr/share/doc + /usr/share/man + /usr/bin + /usr/sbin + /usr/lib/pkgconfig + /usr/lib/pm-utils/video-quirks + /usr/lib/tmpfiles.d/pm-utils.conf + + + tmpfiles.conf + suse/hooks/config.d/rtcwake.config + suse/hooks/sleep.d/30s2disk-check + suse/hooks/sleep.d/45pcmcia + + + + + 2015-07-31 + 1.4.1 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-01-10 + 1.4.1 + Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-26 + 1.4.1 + Fix hibernation issue, add some patches. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-03 + 1.4.1 + Fix suspend/hibernation issue + Marcin Bojara + marcin@pisilinux.org + + + 2011-04-05 + 1.4.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + upower + http://upower.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:console + hardware.powermanagement + Power Management Service + Güç Yönetim Hizmeti + upower provides a daemon, API and command line tools for managing power devices attached to the system. + upower, sisteme bağlı güç cihazlarını yönetmek için gerekli kitaplıkları ve sistem hizmetini sunar. + http://upower.freedesktop.org/releases/upower-0.9.23.tar.xz + + tr.po + + + dbus-devel + glib2-devel + polkit-devel + dbus-glib-devel + eudev-devel + libusb-devel + libplist-devel + libimobiledevice-devel + gobject-introspection-devel + docbook-xsl + intltool + + + add-tr.patch + + hardware/powermanagement/upower/pspec.xml + + + upower + + dbus + glib2 + polkit + dbus-glib + eudev + libplist + libimobiledevice + pm-utils + libusb + + + /lib + /usr/lib + /etc/dbus-1 + /usr/share/man + /usr/share/doc + /etc/UPower + /usr/bin + /var/lib/upower + /usr/share/dbus-1 + /usr/libexec + /usr/share/polkit-1 + /usr/share/locale + /usr/share/dbus-1/interfaces/*.xml + /usr/lib/girepository-1.0/*.typelib + + + + upower-devel + Development files for upower + upower için geliştirme dosyaları + + upower + dbus-devel + glib2-devel + polkit-devel + dbus-glib-devel + eudev-devel + libplist-devel + libimobiledevice-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2015-01-28 + 0.9.23 + Rebuild. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 0.9.23 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 0.9.23 + Rebuild for libplist and libimobiledevice. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-05 + 0.9.23 + Rebuild and builddep docbook-xsl added. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-02 + 0.9.23 + Add patch. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-08 + 0.9.23 + Moved some files to core pack + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-12-19 + 0.9.23 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-20 + 0.9.21 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-03 + 0.9.20 + Fix suspend/hibernation issue + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-20 + 0.9.20 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-10-20 + 0.9.18 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + suspend + http://suspend.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.powermanagement + A set of tools to support sleep modes + Uyku kiplerini destekleme araçları + suspend package allows users to suspend-to-ram, suspend-to-disk, and suspend-to-both. + suspend, kullanıcıların bellek, disk veya her ikisini de kullanarak sistemlerini askıya almalarını sağlayan araçları içerir. + http://sourceforge.net/projects/suspend/files/suspend/suspend-1.0/suspend-utils-1.0.tar.bz2 + + lzo-devel + pciutils-devel + libx86-devel + plymouth-devel + + + suse/suspend-comment-configfile-options.diff + suse/suspend-default-compress.diff + suse/suspend-default-splash.diff + suse/suspend-0.80-dont-return-eintr-on-abort.diff + suse/suspend-0.80-keygen-new-defaults.diff + suse/suspend-0.80-vbetool-retry-on-errors.diff + mandriva/suspend-0.8-printf_format.patch + resume-dont-ask-questions.patch + suppress-outputs.patch + + hardware/powermanagement/suspend/pspec.xml + + + suspend + + lzo + libx86 + plymouth-core-libs + pciutils + + + /etc/suspend.conf + /etc/suspend.key + /usr/sbin + /usr/share/doc + + + suse/configure-suspend-encryption.sh + + + + + 2014-03-09 + 1.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-12-29 + 1.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + sane-backends + http://www.sane-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + hardware.scanner + Scanner access software + SANE (Scanner Access Now Easy) döküman ve resim tarayıcı sistemi araçları + Scanner Access Now Easy (SANE) is a universal scanner interface. The SANE application programming interface provides standardized access to any raster image scanner hardware. + SANE ve uygulama programlama arayüzü (API) ile herhangi bir görüntü tarayıcı donanımına standartlaştırlmış erişim sağlar. + sane + ftp://ftp.archlinux.org/other/sane/sane-backends-1.0.24.tar.gz + + libieee1284-devel + libusb-compat-devel + libnl-devel + openssl-devel + cups-devel + libgphoto2-devel + libv4l-devel + avahi-devel + libjpeg-turbo-devel + tiff-devel + net-snmp-devel + + + fix-buffer-overflow.patch + sane-backends-1.0.20-open-macro.patch + sane-backends-1.0.23-sane-config-multilib.patch + sane-backends-1.0.23-soname.patch + sane-backends-1.0.21-epson-expression800.patch + sane-backends-1.0.23-udev.patch + suse/fix-mustek_pp_ccd300.c.patch + archlinux/network.patch + archlinux/segfault-avahi-fix-kodakio.patch + + hardware/scannner/sane-backends/pspec.xml + + + sane-backends + + libnl + openssl + libusb-compat + libieee1284 + avahi-libs + libgphoto2 + libv4l + tiff + libjpeg-turbo + net-snmp + cups + libexif + + + /etc/sane.d/dll.d + /etc/env.d + /etc/sane.d + /usr/bin + /usr/share/locale + /usr/sbin + /usr/libexec + /usr/lib + /usr/share/doc/sane-backends/README + /usr/share/doc/sane-backends/COPYING + /usr/share/man + /usr/share/pixmaps + /lib/udev/rules.d + /usr/share/sane + + + sane.png + 30sane + + + + sane-backends-devel + Development files for sane-backends + sane-backends için geliştirme dosyaları + + sane-backends + + + /usr/include + /usr/lib/pkgconfig + + + + sane-backends-docs + Documentation for SANE backends + sane-backends için belgelendirme dosyaları + + /usr/share/doc + + + + + 2014-02-15 + 1.0.24 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-21 + 1.0.23 + Move devel files fix to paths + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-07-28 + 1.0.23 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-25 + 1.0.23 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + foomatic-db + http://www.linuxprinting.org/foomatic.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + data + hardware.printer + Database of printers and printer drivers + Yazıcı sürücüleri + foomatic-db contains the knowledge database for printers which are used by foomatic-db-engine to generate PPD files. + Foomatic yazıcı veritabanı ve sürücüleri + http://www.openprinting.org/download/foomatic/foomatic-db-4.0-20150819.tar.gz + + cleanup-script + + + fedora/foomatic-db-device-ids.patch + fedora/foomatic-db-invalid.patch + + hardware/printer/foomatic-db/pspec.xml + + + foomatic-db + + pnm2ppa + + + /usr/share + + + + + 2015-10-28 + 4.0.20150819 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-05 + 4.0_20130103 + Depend on cups-filters. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-24 + 4.0_20130103 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-03 + 4.0_20130103 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + cups + http://www.cups.org/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + service + hardware.printer + Common Unix Printing System + Unix Ortak Yazdırma Sistemi + cups provides a portable printing layer for *nix-based operating systems. + http://www.cups.org/software/2.0.3/cups-2.0.3-source.tar.bz2 + + acl-devel + pam-devel + dbus-devel + zlib-devel + libusb-devel + libgcc + mit-kerberos + libpaper-devel + + + archlinux/cups-no-export-ssllibs.patch + archlinux/cups-no-gzip-man.patch + archlinux/cups-1.6.2-statedir.patch + archlinux/cups-no-gcrypt.patch + fedora/cups-enum-all.patch + fedora/cups-final-content-type.patch + fedora/cups-res_init.patch + gentoo/cups-1.6.0-fix-install-perms.patch + gentoo/cups-2.0.1-rename-systemd-service-files.patch + pisilinux/lib64.patch + pisilinux/nostrip.patch + pisilinux/cups-run.patch + pld-linux/cups-avahi-address.patch + + hardware/printer/cups/pspec.xml + + + cups + + acl + pam + dbus + zlib + libusb + libgcc + libpaper + mit-kerberos + + + /etc/cups/*conf + /usr/lib/tmpfiles.d/cups.conf + /usr/lib + /usr/sbin + /usr/bin + /var/cache/cups/rss + /var/spool/cups/tmp + /run/cups/certs + /var/log/cups + /etc + /lib/udev/rules.d + /lib/systemd/system + /usr/share/cups + /usr/share/icons + /usr/share/applications + /usr/share/doc + /usr/share/man + /usr/share/locale + + + System.Service + System.Package + + + tmpfiles.conf + cups.logrotate + fedora/textonly.ppd + + + + cups-devel + Development files for cups + cups için geliştirme dosyaları + + cups + + + /usr/include + /usr/bin/cups-config + + + + cups-32bit + 32-bit shared libraries for cups + cups için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + zlib-32bit + openssl-32bit + + + glibc-32bit + zlib-32bit + openssl-32bit + libgcc + cups + + + /usr/bin/cups-config-32bit + /usr/lib32 + + + + + 2015-06-10 + 2.0.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-02-05 + 2.0.1 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-09-25 + 1.7.5 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.7.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-30 + 1.7.1 + Fix comar service. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-18 + 1.7.1 + Add tmpfiles.conf. Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-17 + 1.7.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-1 + 1.7.0 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2013-10-14 + 1.6.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-13 + 1.6.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-19 + 1.6.1 + Lib64 path correction. + Ertan Güven + ertan@pisilinux.org + + + 2013-03-13 + 1.6.1 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-10-18 + 1.5.4 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-10-18 + 1.5.4 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + enscript + http://www.gnu.org/software/enscript/enscript.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + Powerful text-to-postscript converter + Metin dosyalarından postscript belge oluşturma aracı + enscript is an application that you can use to convert your text files to postscript files with enhanced formatting capabilities like colorizing, page layout management etc. + Metin dosyalarını postscript belgelere dönüştüren, dönüşüm sırasında renklendirme, sayfa düzeni ve boyut değiştirme gibi biçimlendirmeler yapabilen bir araç + http://www.iki.fi/mtr/genscript/enscript-1.6.4.tar.gz + + enscript-1.6.3-security.patch + enscript-1.6.3-language.patch + enscript-catmur.patch + ruby.patch + enscript-1.6.4-CVE-2008-3863-CVE-2008-4306.patch + enscript-1.6.4-config.patch + + hardware/printer/enscript/pspec.xml + + + enscript + + /etc + /usr/bin + /usr/share/doc + /usr/share/enscript + /usr/share/info + /usr/share/locale + /usr/share/man + + + ruby.st + + + + + 2014-01-23 + 1.6.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 1.6.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + cups-filters + http://www.openprinting.org + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + GPLv3 + GPLv2+ + GPLv3+ + LGPLv2+ + MIT + data + library + app:console + hardware.printer + OpenPrinting CUPS filters and backends + Contains backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc. In addition it contains additional filters developed independently of Apple, especially filters for the PDF-centric printing workflow introduced by OpenPrinting. + http://www.openprinting.org/download/cups-filters/cups-filters-1.1.0.tar.xz + + cups-devel + glib2-devel + tiff-devel + lcms2-devel + dbus-devel + python-devel + libpng-devel + freetype-devel + fontconfig-devel + libjpeg-turbo-devel + dejavu-fonts + poppler-utils + poppler-cpp-devel + zlib-devel + avahi-devel + avahi-glib-devel + python-cups + qpdf-devel + ghostscript-devel + poppler-devel + + hardware/printer/cups-filters/pspec.xml + + + cups-filters + + cups + dbus + tiff + zlib + glib2 + lcms2 + libgcc + libpng + fontconfig + mit-kerberos + libjpeg-turbo + qpdf + ghostscript + poppler + e2fsprogs + avahi-glib + avahi-libs + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/ppd + /usr/bin + /usr/share/cups + /etc/cups/cups-browsed.conf + /etc/fonts/conf.d/99pdftoopvp.conf + + + cups + foomatic-filters + + + foomatic-filters + + + + cups-filters-devel + Development files for cups-filters + Cups-filters için geliştirme dosyaları + + cups-filters + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-28 + 1.1.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-15 + 1.0.65 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-25 + 1.0.58 + Verison bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-17 + 1.0.53 + Verison bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-05 + 1.0.44 + Rebuild to replace foomatic-filters. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-28 + 1.0.44 + rebuild for unused and runtime dep. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-18 + 1.0.44 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-02 + 1.0.41 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-16 + 1.0.40 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-10 + 1.0.39 + Cersion bump,rebuil for new poppler. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-28 + 1.0.35 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-01 + 1.0.35 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + libpaper + http://packages.debian.org/unstable/source/libpaper + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.printer + Library for handling paper characteristics + Kağıt özelliklerini düzenlemek için kitaplık + Libpaper is a programming library for handling paper characteristics. + libpaper, kağıt özelliklerini düzenlemek için bir programlama kitaplığıdır. + Libpaper es una librería de programación para manejar características de papel. + http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.24.tar.gz + + libpaper-1.1.23-debianbug475683.patch + libpaper-useglibcfallback.patch + + hardware/printer/libpaper/pspec.xml + + + libpaper + + /usr/bin + /usr/sbin + /usr/lib + /etc/ + /usr/share/man + /usr/share/doc + /usr/share/locale + + + papersize + + + + libpaper-devel + Development files for libpaper + libpaper için geliştirme dosyaları + + libpaper + + + /usr/include + /usr/share/man/man3 + + + + + 2014-05-21 + 1.1.24 + rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-13 + 1.1.24 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + foomatic-db-engine + http://www.linuxprinting.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + Foomatic printer database engine + Foomatic yazıcı veritabanı motoru + foomatic-db-engine is the layer that provides the database engine to Foomatic. + foomatic-db-engine, Foomatic veritabanı motorunu oluşturan katmandır. + http://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0.12.tar.gz + + libxml2-devel + cups-devel + + + foomatic-db-engine-4.0.8-fix-sandbox.patch + 4.0.7-perl-module.patch + 4.0.7-respect-ldflag.patch + + hardware/printer/foomatic-db-engine/pspec.xml + + + foomatic-db-engine + + libxml2 + + + /usr/bin + /usr/sbin + /usr/lib + /etc/foomatic + /usr/share/foomatic/templates + /usr/share/man + /usr/share/doc + + + + + 2015-10-28 + 4.0.12 + v.bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-09-13 + 4.0.11 + Rebuild for new perl. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-06-15 + 4.0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-05 + 4.0.8 + Depend on cups-filters. + PisiLinux Community + admins@pisilinux.org + + + 2013-12-01 + 4.0.8 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-11-19 + 4.0.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + pnm2ppa + http://pnm2ppa.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + Driver addons for some Hp Deskjet printers + Bazı Hp Deskjet yazıcılar için sürücü eklentileri + Tool to convert pnm data to ppa data for Hp Deskjet 710, 712, 720, 722, 820, 1000 series printer drivers. + Hp Deskjet 710, 712, 720, 722, 820, 1000 serisi yazıcı sürücüleri için pnm verisini ppa verisine dönüştüren araçlar + mirrors://sourceforge/pnm2ppa/pnm2ppa-1.13.tar.gz + + pnm2ppa-default_config.patch + + hardware/printer/pnm2ppa/pspec.xml + + + pnm2ppa + + enscript + + + /etc + /etc/pdq + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/pnm2ppa + + + + + 2014-02-04 + 1.13 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 1.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + xfsprogs + http://oss.sgi.com/projects/xfs/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.disk + XFS filesystem utilities + XFS dosya sistemi araçları + xfsprogs contains a number of administrative utilities to work with and manage XFS filesystems. + xfsprogs XFS dosya sistemini kullanmak ve yönetmek için bir dizi araç içerir. + ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsprogs-3.2.4.tar.gz + + libutil-linux-devel + readline-devel + + hardware/disk/xfsprogs/pspec.xml + + + xfsprogs + + libutil-linux + readline + + + /lib + /sbin + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/man + + + + xfsprogs-devel + Development headers for xfsprogs + + xfsprogs + + + /usr/include + /usr/share/man/man3 + + + + + 2015-08-04 + 3.2.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-01 + 3.1.11 + Version bump + Burak Fazıl Erturk + burakerturk@pisilinux.org + + + 2012-10-05 + 3.1.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libatasmart + http://git.0pointer.de/?p=libatasmart.git + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + app:console + hardware.disk + ATA S.M.A.R.T. Disk Health Monitoring Library + ATA S.M.A.R.T. disk sağlığı izleme kitaplığı + A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring. + libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır. + http://0pointer.de/public/libatasmart-0.19.tar.xz + + eudev-devel + + + libatasmart-uninitialized-var.patch + + hardware/disk/libatasmart/pspec.xml + + + libatasmart + + eudev + + + /usr/sbin/skdump + /usr/sbin/sktest + /usr/lib/libatasmart.so* + /usr/share/doc/libatasmart/README + /usr/share/doc/libatasmart/LGPL + + + + libatasmart-devel + Development files for libatasmart + libatasmart için geliştirme dosyaları + + libatasmart + eudev-devel + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + /usr/share/doc + + + + + 2014-05-25 + 0.19 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-29 + 0.19 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-02 + 0.19 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + thin-provisioning-tools + http://github.com/jthornber/thin-provisioning-tools" + + Ali Algul + alialgul@pisilinux.org + + GPLv2 + hardware.disk + A suite of tools for thin provisioning on Linux + A suite of tools for thin provisioning on Linux + https://codeload.github.com/jthornber/thin-provisioning-tools/tar.gz/v0.5.3 + + libaio-devel + boost-devel + expat-devel + libgcc + + hardware/disk/thin-provisioning-tools/pspec.xml + + + thin-provisioning-tools + + expat + libgcc + libaio + + + /usr/sbin/ + /usr/share/man/man8/ + + + + + 2015-07-20 + 0.5.3 + First Build + Ali Algul + alialgul@pisilinux.org + + + + + + sg3_utils + http://sg.danny.cz/sg/sg3_utils.html PisiLinux Community admins@pisilinux.org GPLv2 BSD - service - network.connection - IEEE 802.1X/WPA supplicant for secure wireless transfers - Güvenli kablosuz erişim için IEEE 802.1X/WPA sağlayıcı - wpa_supplicant is a WPA supplicant with support for WPA and WPA2. - WPA ve WPA2 desteği olan ve Linux, BSD ve Windows ortamları için bir WPA istemcisidir. - http://hostap.epitest.fi/releases/wpa_supplicant-2.4.tar.gz - - wpa_supplicant.config - - - libnl-devel - openssl-devel - dbus-devel - readline-devel - - - ubuntu/01_use_pkg-config_for_pcsc-lite_module.patch - wpa_supplicant-1.0-dbus-path-fix.patch - wpa_supplicant-1.0-do-not-call-dbus-functions-with-NULL-path.patch - mandriva/wpa_supplicant-0.6.3-WEP232.patch - fedora/wpa_supplicant-openssl-more-algs.patch - fedora/wpa_supplicant-flush-debug-output.patch - fedora/wpa_supplicant-assoc-timeout.patch - suse/wpa_supplicant-errormsg.patch - - network/connection/wpa_supplicant/pspec.xml + app:console + library + hardware.disk + Utilities for devices that use SCSI command sets + SCSI komut setini kullanan aygıtlar için araçlar + sg3_utils is a collection of Linux utilities for devices that use the SCSI command set. Includes utilities to copy data based on dd syntax and semantics, check INQUIRY data and VPD pages, check mode and log pages, spin up/down disks, do self tests and various other functions. + sg3_utils SCSI komut setini kullanan aygıtlar için çeşitli araçlar sunar. + http://sg.danny.cz/sg/p/sg3_utils-1.41.tar.xz + hardware/disk/sg3_utils/pspec.xml - wpa_supplicant - - libnl - dbus - openssl - readline - + sg3_utils - /etc - /etc/dbus-1 - /usr/sbin /usr/bin /usr/lib /usr/share/doc /usr/share/man - /usr/share/dbus-1/system-services + + + rescan-scsi-bus.sh + + + + sg3_utils-devel + Development files for sg3_utils + sg3_utils için geliştirme dosyaları + + sg3_utils + + + /usr/include + + + + + 2015-08-19 + 1.41 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.38 + Version bump + Kamil Atlı + suvarice@gmail.com + + + 2012-11-14 + 1.34 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mtools + http://mtools.linux.lu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Utilities to access MS-DOS disks without mounting them + MS-DOS (Windows) disketlerinize -mount ile bağlamadan- erişim araçları + Mtools are utilities to access MS-DOS disks without mounting them. + Mtools diskinizdeki MS-DOS (Windows) bölümlerine -mount komutu ile bağlamadan- erişebilmek için gereken araç setidir. + mirrors://gnu/mtools/mtools-4.0.18.tar.gz + hardware/disk/mtools/pspec.xml + + + mtools + + /usr/bin + /etc + /usr/share/doc + /usr/share/info + /usr/share/man + + + + + 2014-02-12 + 4.0.18 + Fix mtools.conf syntax. + Richard de Bruin + richdb@pisilinux.org + + + 2013-11-20 + 4.0.18 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-22 + 4.0.17 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + ntfs-3g + http://www.tuxera.com/community/ntfs-3g-download + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + LGPLv2+ + library + app:console + hardware.disk + Userspace driver for NTFS read/write support + NTFS dosya sistemlerine okuma/yazma erişimi için bir sürücü + ntfs-3g allows regular users read/write access to NTFS filesystems. + ntfs-3g kullanıcıların NTFS biçimli disk bölümlerine hem okuma hem yazma erişimi yapabilmesine imkan veren bir sürücüdür. + http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz + + fuse-devel + libutil-linux-devel + + hardware/disk/ntfs-3g/pspec.xml + + + ntfs-3g + + fuse + + + /bin + /sbin + /lib + /usr/lib + /usr/include + /usr/lib/pkgconfig + /usr/share/hal/fdi + /usr/share/doc/ntfs-3g + /usr/share/man/man8/mount* + /usr/share/man/man8/ntfs-3g* + + + + ntfsprogs + Userspace tools for NTFS filesystems + NTFS dosya sistemi için kullanıcı araçları + Userspace tools for NTFS filesystems. The goals of the Linux-NTFS project are to develop reliable and full-featured access to NTFS by the Linux kernel driver and to provide a wide collection of NTFS utilities. + NTFS dosya sistemi için kullanıcı araçları içerir. Bu araçların amacı Linux çekirdeğine NTFS dosya sistemlerine güvenilir ve tam erişim sağlayacak NTFS araçlarını sağlamaktır. + hardware.disk + + ntfs-3g + fuse + libutil-linux + + + /sbin/mkfs.ntfs + /usr/bin + /usr/sbin + /usr/share/doc/ntfsprogs + /usr/share/man/man8 + + + + + 2015-05-06 + 2015.3.14 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-13 + 2014.2.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-11 + 2013.1.13 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-30 + 2013.1.13 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-30 + 2013.1.13 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-14 + 0.0_2012.01.15 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + dmapi + http://oss.sgi.com/projects/xfs/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.disk + Librairie de l'API de gestion de données XFS. + XFS data management API library + XFS veri yönetimi kütüphanesi + The Data Management API (DMAPI/XDSM) allows implementation of hierarchical storage management software with no kernel modifications as well as high-performance dump programs without requiring "raw" access to the disk and knowledge of filesystem structures. + ftp://oss.sgi.com/projects/xfs/cmd_tars/dmapi-2.2.12.tar.gz + + xfsprogs-devel + + hardware/disk/dmapi/pspec.xml + + + dmapi + + xfsprogs + + + /lib + /usr/lib + /usr/share/doc + /usr/share/man + + + + dmapi-devel + Development files for dmapi + dmapi için geliştirme dosyaları + + dmapi + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-05-22 + 2.2.12 + rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-02 + 2.2.12 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-03-16 + 2.2.10 + URL Fixed + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 2.2.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + btrfs-progs + http://btrfs.wiki.kernel.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Userspace utilities for btrfs + btrfs dosya sistemi araçları + btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem. + btrfs-progs, btrfs dosya sistemleri yaratmak, denetlemek; bu dosya sistemlerindeki hataları düzeltmek ve çeşitli değişiklikler yapmak için gereken araçları içerir. + http://source.pisilinux.org/1.0/btrfs-progs-v4.1.2.tar.xz + + xmlto + asciidoc + lzo-devel + zlib-devel + libutil-linux-devel + util-linux + libxslt + e2fsprogs-devel + + hardware/disk/btrfs-progs/pspec.xml + + + btrfs-progs + + lzo + zlib + libutil-linux + e2fsprogs + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + btrfs-progs-devel + Development files for btrfs-progs + + btrfs-progs + + + /usr/include + + + + + 2015-07-20 + 4.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-23 + 3.19.1 + Version bump, fix deps + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-23 + 3.17.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-30 + 3.14.2 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-01-19 + 3.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-19 + 0.19.20121005 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-13 + 0.19.20121005 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gptfdisk + http://www.rodsbooks.com/gdisk/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:console + hardware.disk + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.1/gptfdisk-1.0.1.tar.gz + + util-linux + ncurses-devel + popt-devel + libutil-linux-devel + + hardware/disk/gptfdisk/pspec.xml + + + gptfdisk + + ncurses + popt + libgcc + libutil-linux + + + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2015-10-28 + 1.0.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-11 + 1.0.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-04 + 0.8.10 + First Release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + dosfstools + http://www.daniel-baumann.ch/software/dosfstools/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + hardware.disk + Tools to create and check DOS and VFAT filesystems + DOS dosya sistemi oluşturmaya ve kontrol etmeye yarayan komutlar + The dosfstools package includes the DOS and VFAT filesystem utilities like mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel. You can create and check MS-DOS FAT filesystems on hard drives or on floppies + Dosfstools paketi, mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel gibi, DOS ve VFAT dosyasistemleri yaratmaya ve kontrol etmeye yarayan araçları içerir. + http://daniel-baumann.ch/files/software/dosfstools/dosfstools-3.0.26.tar.xz + hardware/disk/dosfstools/pspec.xml + + + dosfstools + + /sbin + /usr/share/doc + /usr/share/man + + + + + 2014-04-03 + 3.0.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-18 + 3.0.25 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-21 + 3.0.23 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-06-13 + 3.0.20 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-13 + 3.0.13 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + reiserfsprogs + http://www.kernel.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Tools to work with Reiserfs filesystems + Reiserfs dosya sistemleriyle çalışabilmek için gereken araçlar + Contains tools designed to create, modify and check Reiserfs filesystems. + Reiserfs dosya sistemleri oluşturmak, bu dosya sistemlerinde hata kontrolü yapmak, bu sistemlerin boyutlarını değiştirmek ve hata ayıklamak gibi görevler taşıyan araçlar. + http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.24/reiserfsprogs-3.6.24.tar.xz + hardware/disk/reiserfsprogs/pspec.xml + + + reiserfsprogs + + /sbin + /usr/share/doc + /usr/share/man + + + + + 2014-12-13 + 3.6.24 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-10 + 3.6.21 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 3.6.21 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + dmraid + http://people.redhat.com/~heinzm/sw/dmraid + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Device-Mapper Software RAID support tool and library + ATARAID aygıtlarını (Yazılımsal RAID) denetleme aracı + Device-Mapper Software RAID support tool and library + ATARAID aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. + http://launchpad.net/dmraid/1.0/1.0.0.rc16-3/+download/dmraid-1.0.0.rc16-3.tar.bz2 + + device-mapper-event-devel + device-mapper-devel + + + dmraid-diet.patch + dmraid-1.0.0_rc16-return-all-sets.patch + dmraid-1.0.0_rc16-static-build-fixes.patch + dmraid-1.0.0_rc16-undo-p-rename.patch + + hardware/disk/dmraid/pspec.xml + + + dmraid + + device-mapper + device-mapper-event + + + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/man + + + + dmraid-devel + Development files for dmraid + dmraid için geliştirme dosyaları + + dmraid + + + /usr/include + + + + + 2014-02-17 + 1.0.0_rc16 + Release. + PisiLinux Community + admins@pisilinux.org + + + 2013-03-15 + 1.0.0_rc16 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.0.0_rc15 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + squashfs-tools + http://squashfs.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Userspace tools to create squashfs compressed filesystem + squashfs sıkıştırılmış salt-okunur dosya sistemi oluşturma aracı + Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. + squashfs, Linux için sıkıştırılmış ve salt-okunur bir dosya sistemidir. Bu paket squashfs dosya sistemiyle çalışmak için kullanılabilecek araçları içerir. + http://sourceforge.net/projects/squashfs/files/squashfs/squashfs4.2/squashfs4.2.tar.gz + + lzo-devel + xz-devel + zlib-devel + + hardware/disk/squashfs-tools/pspec.xml + + + squashfs-tools + + lzo + zlib + xz + + + /usr/sbin + /usr/share/doc + + + + + 2014-03-09 + 4.2 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-02-12 + 4.2 + Change compression type to xz, and some other enhancements. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-14 + 4.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + hdparm + http://sourceforge.net/projects/hdparm/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + hardware.disk + Utility to change hard drive performance parameters + Sabit disk parametrelerini değiştirmekte kullanılan araç + le paquet hdparm dispose d'outils utiles permettant d'obtenir/établir les paramètres de disques durs IDE sous Linux en cours d'éxécution. + hdparm has some useful utilities that allows you to get/set hard disk parameters for Linux IDE drives in runtime. + hdparm paketi çalışma anında Linux IDE sürücülerinin parametrelerini almanıza/değiştirmenize olanak sağlayan bazı kullanışlı uygulamaları içerir. + http://downloads.sourceforge.net/hdparm/hdparm-9.43.tar.gz + hardware/disk/hdparm/pspec.xml + + + hdparm + + /sbin + /usr/share/doc + /usr/share/man + /etc/conf.d + + + hdparm.confd + + + + + 2014-05-24 + 9.43 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2011-02-02 + 9.42 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + udisks2 + http://udisks.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:console + hardware.disk + Disk Management Service + Disk Yönetim Hizmeti + udisks provides a daemon, API and command line tools for managing disk devices attached to the system. + udisks, sisteme bağlı disk aygıtlarını yönetmek için programlama kitaplığı ve komut satırı araçları sunar. + http://udisks.freedesktop.org/releases/udisks-2.1.6.tar.bz2 + + tr.po + + + gtk-doc + acl-devel + glib2-devel + polkit-devel + eudev-devel + parted-devel + libatasmart-devel + device-mapper-devel + lvm2-devel + gobject-introspection-devel + sg3_utils-devel + ntfsprogs + dosfstools + docbook-xsl + libxslt + intltool + + + udisks-2.x-ntfs-3g.patch + + hardware/disk/udisks2/pspec.xml + + + udisks2 + + acl + glib2 + polkit + eudev + lvm2 + mdadm + parted + libatasmart + device-mapper + ntfsprogs + dosfstools + sg3_utils + + + /etc/udisks2 + /etc/dbus-1 + /lib/udev/rules.d + /usr/bin + /usr/sbin + /usr/lib + /usr/libexec + /usr/share/bash-completion/completions + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/gtk-doc/ + /usr/share/locale + /usr/share/polkit-1/ + /usr/share/man + /var/lib/ + /run/udisks + /usr/share/dbus-1/interfaces/*.xml + + + + udisks2-devel + Development files for udisks2 + udisks için geliştirme dosyaları + + udisks2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-12-27 + 2.1.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-19 + 2.1.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-07 + 2.1.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-25 + 2.1.3 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-05 + 2.1.3 + add builddep docbook-xsl. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-29 + 2.1.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-20 + 2.1.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-15 + 2.1.0 + V.bump + PisiLinux Community + admins@pisilinux.org + + + 2013-08-13 + 2.0.0 + fix path + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-26 + 2.0.0 + Release bump for rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2012-10-22 + 2.0.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + parted + http://www.gnu.org/software/parted + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:console + hardware.disk + Crée, supprime, modifie les dimensions, vérifie et copie partitions et systèmes de fichiers. + Create, destroy, resize, check, copy partitions and file systems + GNU Parted disk bölümlerini oluşturmaya, silmeye, boyutlandırmaya, taşımaya ve kopyalamaya yarayan bir yazılımdır. + The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks. + http://ftp.gnu.org.ua/gnu/parted/parted-3.2.tar.xz + + libutil-linux-devel + device-mapper-devel + readline-devel + + hardware/disk/parted/pspec.xml + + + parted + + libutil-linux + ncurses + device-mapper + readline + util-linux + + + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/info + /usr/share/locale + /usr/share/man + + + + parted-devel + Development files for parted + parted için geliştirme dosyaları + + parted + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-08-09 + 3.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-25 + 3.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-02-02 + 3.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2012-10-05 + 3.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libvirt + http://www.libvirt.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.virtualization + Library providing a simple API to several virtualization systems + Birçok sanallaştırma sistemine kolay erişim sağlayan bir kütüphane + libvirt is a toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes). libvirt supports Xen hypervisor, QEMU emulator, KVM hypervisor, LXC Linux container system, OpenVZ Linux container system, User Mode Linux paravirtualized kernel and VirtualBox hypervisor together with remote management possibilities. + libvirt yeni linux sürümlerinin sunduğu sanallaştırma özellikleriyle etkileşimi kolaylaştıran bir kütüphanedir. Xen, KVM ve VirtualBox hipervizorleri, QEMU emulatörü, LXC linux konteyner sistemi, User Mode Linux paravirtual sanallaştırma sistemi gibi sistemlerle birlikte çalışabilir ve tüm bu sistemlerin uzaktan yönetimi için de kullanılabilir. + http://libvirt.org/sources/libvirt-1.3.0.tar.gz + + qemu + lvm2-devel + attr-devel + audit-devel + avahi-devel + netcf-devel + numactl-devel + libpciaccess-devel + yajl-devel + polkit-devel + dbus-devel + util-linux + gnutls-devel + parted-devel + device-mapper-devel + libnl-devel + python-devel + cyrus-sasl-devel + libcap-ng-devel + readline-devel + + hardware/virtualization/libvirt/pspec.xml + + + libvirt + + dbus + yajl + audit + eudev + libnl + netcf + gnutls + parted + libcap + libxml2 + numactl + readline + libcap-ng + avahi-libs + cyrus-sasl + libpciaccess + device-mapper + libutil-linux + + + /etc + /usr/lib/tmpfiles.d/libvirt.conf + /usr/bin + /usr/libexec + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/augeas + /usr/share/polkit-1 + /usr/share/libvirt + /usr/share/systemtap + /usr/share/man + /var + /run + /usr/share/locale + + + System.Service + System.Package + + + tmpfiles.conf + libvirt.confd + + + + libvirt-devel + Development files for libvirt + libvirt için geliştirme dosyaları + + libvirt + + + /usr/include/libvirt + /usr/lib/pkgconfig + + + + + 2015-12-31 + 1.3.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-07-02 + 1.2.6 + Version bump and bug fixes. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-14 + 1.2.3 + Rebuild + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-05-08 + 1.2.3 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-01-10 + 1.2.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-26 + 1.0.5 + Version bump and fixed compiling errors + Aydın Demirel + aydin@demirel.web.tr + + + 2013-01-14 + 1.0.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + docker + http://docker.io + + Ertuğrul Erata + ertugrulerata@gmail.com + + Apache + app:console + hardware.virtualization + Pack, ship and run any application as a lightweight container + Herhangi bir uygulamayı paketleyip çalıştırmak için hafif kontenyer + An open platform for distributed applications for developers and sysadmins + Geliştirici ve Sistem Yöneticileri için açık ve dağıtık platform + https://github.com/docker/docker/archive/v1.9.1.tar.gz + + git + golang + btrfs-progs-devel + device-mapper-devel + sqlite-devel + + hardware/virtualization/docker/pspec.xml + + + docker + + git + golang + sqlite + device-mapper + btrfs-progs + bridge-utils + iproute2 + iptables + + + /etc + /usr/bin/ + /usr/lib/docker + /usr/share/ + + + System.Service + System.Package + + + cgroupfs-mount + cgroupfs-umount + docker.confd + + + + + 2015-12-18 + 1.9.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-11-04 + 1.9.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-10-28 + 1.8.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-12 + 1.8.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-06 + 1.8.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-12 + 1.8.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-24 + 1.7.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 1.7.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-17 + 1.6.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + security + 2015-05-09 + 1.6.1 + Version bump.http://seclists.org/fulldisclosure/2015/May/28 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-17 + 1.6.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + virt-wrapper + http://www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + hardware.virtualization + Wrapper for virtualization software + Sanallaştırma yazılımları için önbetik + virt-wrapper is a wrapper for virtualization applications. It warns users if they are not a member of virt group and loads the kernel modules automatically. + virt-wrapper, sanallaştırma uygulamaları için bir betik içerir. Bu betik, kullanıcıyı eğer virt grubunda değilse uyarır ve çekirdek modüllerini de otomatik olarak yükler. + http://source.pisilinux.org/1.0/virt-wrapper-0.1.1.tar.gz + + pass-options-arg.patch + kmod.patch + change_group.patch + + hardware/virtualization/virt-wrapper/pspec.xml + + + virt-wrapper + + /usr/libexec + /usr/share/locale + /usr/share/doc + + + + + 2014-11-23 + 0.1.1 + Chande group for usb connect issue + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-17 + 0.1.1 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-13 + 0.1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + virtualbox + http://www.virtualbox.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2 + app:gui + hardware.virtualization + A powerful virtualization program + Güçlü bir sanallaştırma programı + VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. This is the Open Source Edition which lacks USB support and some other things. + VirtualBox, ev kullanımı yanında kurumsal kullanım alanı da bulan güçlü bir xf86 sanallaştırma ürünleri ailesidir. Bu sürüm, USB ve birkaç özellik için desteği bulunmayan açık kodlu uyarlamasıdır. + http://download.virtualbox.org/virtualbox/5.0.12/VirtualBox-5.0.12.tar.bz2 + + LocalConfig.kmk + + + dev86 + cdrkit + acpica + mesa-devel + curl-devel + python-devel + pam-devel + device-mapper-devel + libcap-devel + glibc-32bit + gsoap-devel + libXt-devel + libXmu-devel + libIDL-devel + libsdl-devel + libvpx-devel + libXext-devel + libxslt-devel + mesa-glu-devel + alsa-lib-devel + libXfixes-devel + libXrandr-devel + libXdamage-devel + libXcursor-devel + libXinerama-devel + xorg-server-devel + libvncserver-devel + libXcomposite-devel + pulseaudio-libs-devel + jdk7-openjdk + kernel-module-headers + + + 002-dri-driver-path.patch + 003-ogl-include-path.patch + 005-gsoap-build.patch + 006-rdesktop-vrdp-keymap-path.patch + desktop-file.patch + fix-tr-keyboard.patch + virtualbox-4-makeself-check.patch + + hardware/virtualization/virtualbox/pspec.xml + + + virtualbox + + device-mapper + mesa + libXt + gsoap + libvpx + libXmu + libsdl + libXext + libXcursor + libXinerama + virt-wrapper + libvncserver + module-virtualbox + curl + zlib + libX11 + libgcc + libpng + python + libxml2 + openssl + + + /etc/vbox + /usr/bin + /usr/lib/virtualbox + /usr/lib/python* + /usr/share/virtualbox + /usr/share/applications + /usr/share/pixmaps + /usr/share/icons/hicolor + /usr/share/mime/packages + + + System.Package + + + vboxreload + 60-vboxdrv.rules + 60-vboxguest.rules + + + + virtualbox-guest-utils + VirtualBox guest utilities and drivers + VirtualBox misafir işletim sistemleri için yardımcı araçlar ve sürücüler + x11.driver + + libXt + libXmu + libXext + libXfixes + libXrandr + libXdamage + xorg-server + libXcomposite + module-virtualbox-guest + + + /etc/X11/Xsession.d + /lib/udev/rules.d + /lib/security + /sbin + /usr/bin/VBoxClient* + /usr/bin/VBoxControl + /usr/sbin + /usr/lib + /usr/kde/*/share/autostart + /usr/share/X11 + /usr/lib/xorg/modules + + + vboxclient.sh + + + + + 2015-08-09 + 5.0.12 + Version bump. + ali algul + alialgul@pisilinux.org + + + 2015-08-09 + 5.0.4 + Version bump. + ali algul + alialgul@pisilinux.org + + + 2015-07-24 + 5.0.0 + Version bump. + ali algul + alialgul@pisilinux.org + + + 2015-05-18 + 4.3.28 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-13 + 4.3.20 + Version bump, rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-21 + 4.3.18 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-10-19 + 4.3.18 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-19 + 4.3.16 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-07-26 + 4.3.14 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-04-06 + 4.3.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-23 + 4.3.8 + Some improvements. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-02 + 4.3.8 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-21 + 4.3.6 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-11 + 4.3.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-10 + 4.2.18 + Version bump. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-05 + 4.2.16 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-04 + 4.2.12 + Add system-xorg.patch + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-14 + 4.2.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-02 + 4.2.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 4.2.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + virt-manager + http://virt-manager.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + hardware.virtualization + Graphical tool for administering virtual machines for KVM, Xen, and QEmu + Grafik arayüzlü sanal makine yönetim aracı + Virtual Machine Manager provides a graphical tool for administering virtual machines for KVM, Xen, and QEmu. Start, stop, add or remove virtual devices, connect to a graphical or serial console, and see resource usage statistics for existing VMs on local or remote machines. Uses libvirt as the backend management API. + Virt-Manager ile kvm, qemu, xen gibi sanallaştırma sistemleriyle yaratılmış yerel veya uzak sanal makinelerin başlatılması, durdurulması, sanal cihazlar eklenip kaldırılması, grafik veya seri konsollarına bağlanılması gibi işlemler yapılabilir. Çalışmak için libvirt kütüphanesine ve servisine ihtiyaç duyar. + virt-manager-icon + http://virt-manager.org/download/sources/virt-manager/virt-manager-1.3.1.tar.gz + + intltool + gtk2-devel + + hardware/virtualization/virt-manager/pspec.xml + + + virt-manager + + gtk2 + + + /usr/bin + /usr/libexec + /etc/gconf/schemas + /usr/share/pixmaps + /usr/share + /usr/share/man + /usr/share/doc + /usr/share/locale + + + tr.po + + + + + 2015-12-31 + 1.3.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-10 + 1.0.1 + Rebuild + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-05-09 + 1.0.1 + Fix dep. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-05-08 + 1.0.1 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-05-07 + 0.9.5 + Rebuild + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-08-23 + 0.8.7 + Release bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-26 + 0.9.5 + Aydın Demirel + Version bump + aydin@demirel.web.tr + + + 2011-04-09 + 0.8.7 + First release + Emre Erenoglu + pakeci@erenoglu.com + + + + + + qemu + http://bellard.org/qemu + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.virtualization + Userspace virtual machine and processor emulator + Kullanıcı uzayı sanal makine ve işlemci benzetimcisi. + QEMU emulates a full system (for example a PC), including a processor and various peripherials. It can be used to launch different operating systems without rebooting the PC or to debug system code. In user-mode emulation mode, QEMU can launch Linux processes compiled for one CPU on another CPU. + QEMU, bir PC'ye işlemcisi ve kartlarıyla birlikte öykünen bir yazılımdır. Bilgisayarı yeniden başlatmadan yeni bir işletim sistemini çalıştırmak için kullanılabilir. Ayrıca Linux altında kullanıcı kipi öykünme yöntemiyle farklı bir işlemci için derlenmiş programları çalıştırabilir. + http://wiki.qemu-project.org/download/qemu-2.4.1.tar.bz2 + + aalib-devel + vte-devel + gtk3-devel + libXext-devel + nss-devel + alsa-lib-devel + bluez-libs-devel + cyrus-sasl-devel + libsdl-devel + pulseaudio-libs-devel + python-devel + glib2-devel + + hardware/virtualization/qemu/pspec.xml + + + qemu + + atk + nss + vte + gtk2 + mesa + nspr + zlib + bzip2 + cairo + glib2 + pango + libX11 + libgcc + libpng + libsdl + libusb + pixman + libXext + alsa-lib + freetype + libepoxy + bluez-libs + cyrus-sasl + fontconfig + gdk-pixbuf + pulseaudio-libs + + + /etc + /run + /lib + /usr/bin + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/qemu + /usr/share/locale/ + + + System.Service + System.Service + + + qemu-ifup + qemu-ifdown + fedora/ksmtuned + fedora/ksm.sysconfig + fedora/ksmtuned.conf + 65-kvm.rules + + + + qemu-devel + Development files for qemu + qemu için geliştirme dosyaları + + nss-devel + glib2-devel + qemu + + + /usr/include + /usr/lib/pkgconfig/libcacard.pc + + + + + 2015-12-31 + 2.4.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-02-04 + 2.2.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-05 + 2.1.0 + Version Bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-01-11 + 1.7.0 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 1.3.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-01-13 + 1.3.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + alsa-tools + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + app:gui + hardware.sound + ALSA configuration tools + Gelişmiş Linux Ses Mimarisi araçları + alsa-tools contains ALSA (Advanced Linux Sound Architecture) tools like firmware loaders and sound card control utilities for specific sound cards. + ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.0.29.tar.bz2 + + gtk2-devel + fltk-devel + alsa-lib-devel + + + usx2yloader_udev.patch + firmware_locations.patch + alsa-tools-1.0.17rc1-fix-link.patch + + hardware/sound/alsa-tools/pspec.xml + + + alsa-tools + ALSA console tools + alsa-tools is a collection of console applications for controlling sound cards like EchoAudio, Envy24, etc. + + alsa-lib + + + /usr/bin + /usr/sbin + /lib/udev + /usr/lib + /lib/udev/rules.d + /usr/share/ld10k1 + /usr/share/sounds + /usr/share/man + /usr/share/doc/alsa-tools + + + 90-alsa-tools-firmware.rules + + + + alsa-tools-gui + Graphical frontends for some ALSA tools + alsa-tools-gui is a collection of GUI based ALSA tools for controlling sound cards like EchoAudio, Envy24, Hammerfall HDSP, RMedigicontrol. + + fltk + gtk2 + alsa-lib + + + /usr/share/man/man1/envy24control.1 + /usr/share/doc/alsa-tools-gui + /usr/share/applications + /usr/share/pixmaps + /usr/bin/echomixer + /usr/bin/envy24control + /usr/bin/hwmixvolume + /usr/bin/hdspconf + /usr/bin/hdspmixer + /usr/bin/rmedigicontrol + /usr/bin/qlo10k1 + + + alsa-tools.xpm + hwmixvolume.png + echomixer.desktop + envy24control.desktop + hdspmixer.desktop + hdspconf.desktop + hwmixvolume.desktop + rmedigicontrol.desktop + + + + alsa-tools-devel + Development files for alsa-tools + alsa-tools için geliştirme dosyaları + + alsa-tools + + + /usr/include + /usr/share/aclocal + /usr/share/man/man3 + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Rebuild version 28. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-26 + 1.0.27 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-22 + 1.0.27 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-22 + 1.0.27 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.27 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-01-29 + 1.0.26.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + alsa-lib + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.sound + The Advanced Linux Sound Architecture (ALSA) library + Gelişmiş Linux Ses Mimarisi kütüphanesi + alsa-lib provides ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs. + alsa-lib, ses aygıtlarına erişim sağlayarak kolayca uygulama yazılmasını sağlayan bir kütüphanedir. + ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.29.tar.bz2 + + python-devel + + hardware/sound/alsa-lib/pspec.xml + + + alsa-lib + + python + + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/alsa + + + + alsa-lib-devel + Development files for alsa-lib + alsa-lib için geliştirme dosyaları + + alsa-lib + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include/sys + /usr/include/alsa + /usr/share/aclocal + /usr/share/man/man3 + + + + alsa-lib-32bit + 32-bit shared libraries for alsa-lib + alsa-lib için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + + + /usr/lib32 + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Rebuild version 28. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-26 + 1.0.27.2 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-05 + 1.0.27.2 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-08-22 + 1.0.27.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.27.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 1.0.26.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + alsa-utils + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.sound + Advanced Linux Sound Architecture (ALSA) utilities + ALSA araçları + alsa-utils contains command line utilities for the Advanced Linux Sound Architecture (ALSA). + Alsa-utils Linux işletim sistemlerinde ses ve MIDI fonksiyonlarının gerçekleştirilmesini sağlayan gelişmiş Linux ses mimarisidir + ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.29.tar.bz2 + + xmlto + util-linux + libxslt + ncurses-devel + libsamplerate-devel + alsa-lib-devel + + hardware/sound/alsa-utils/pspec.xml + + + alsa-utils + + ncurses + alsa-lib + libsamplerate + + + /etc + /sbin + /usr/share/doc + /usr/share/man + /var/lib/alsa + /usr/bin + /usr/share/alsa + /lib/udev/rules.d + /usr/share/sounds + /lib/systemd/system + /usr/share/locale + + + System.Service + + + alsaunmute + 01beep.conf + alsactl.conf + alsaunmute.1 + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Rebuild version 28. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-26 + 1.0.27.2 + Remove systemd part. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-05 + 1.0.27.2 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-08-22 + 1.0.27.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.27.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 1.0.26.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + irqbalance + http://www.irqbalance.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + hardware.cpu + Distribute hardware interrupts across processors + Donanım kesmelerini işlemciler arasında dağıtır + Daemon to balance IRQs across multiple CPUs on systems.This can lead to better performance and I/O balance on SMP systems. + Birden fazla işlemcili sistemlerde donanım kesmelerini (hardware interrupt) işlemciler arasında dağıtarak dengeleme sağlayan artalan süreci. Bu SMP (simetrik çoklu işlemcili) sistemlerde daha iyi performans ve G/Ç dengesi sağlar. + https://github.com/Irqbalance/irqbalance/archive/v1.0.9.tar.gz + + numactl-devel + glib2-devel + libcap-ng-devel + + hardware/cpu/irqbalance/pspec.xml + + + irqbalance + + numactl + glib2 + libcap-ng + + + /etc + /usr/sbin + /usr/share/man + /usr/share/doc + + + System.Service + + + irqbalance.confd + + + + + 2015-10-01 + 1.0.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-06 + 1.0.7 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-01-26 + 1.0.4 + Rebuild with new Download Area + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-01 + 1.0.4 + First release + Erdem Artan + admins@pisilinux.org + + + + + + intel-ucode + http://www.intel.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + hardware.cpu + Microcode update files for Intel CPUs + Intel işlemciler için microcode dosyaları + Microcode update files for Intel CPUs + Intel işlemciler için microcode dosyaları + http://downloadmirror.intel.com/23574/eng/microcode-20140122.tgz + + intel-microcode2ucode.c + + hardware/cpu/intel-ucode/pspec.xml + + + intel-ucode + + /usr/share/doc + /lib/firmware + + + LICENSE + + + + + 2014-05-06 + 20140122 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-23 + 20130906 + Version Bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2012-10-01 + 20120606 + First release + Erdem Artan + admins@pisilinux.org + + + + + + lirc + http://www.lirc.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + service + hardware.irda + LIRC est un paquet permettant de décoder et d'envoyer des signaux par infrarouges pour de nombreuses télécommandes usuelles (mais pas toutes). + Linux Infrared Remote Control system + Linux Kızılötesi Uzaktan Kumanda Sistemi + Sistema de control remoto por infrarrojo en Linux + lirc is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls. + lirc, kızılötesi sinyalleriyle yaygın uzaktan kumandaları denetlemeye olanak veren bir Linux altyapısıdır. + LIRC permite decodificar y transmitir señales infrarrojos compatible con muchos (pero no de todos) controles remotos comúnes. + http://downloads.sourceforge.net/project/lirc/LIRC/0.9.3/lirc-0.9.3.tar.bz2 + + alsa-lib-devel + libftdi-devel + libusb-compat-devel + libX11-devel + libxslt + doxygen + + hardware/irda/lirc/pspec.xml + + + lirc + + alsa-lib + libftdi + libusb-compat + libX11 + + + /etc + /lib/udev/rules.d + /usr/bin + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man + /usr/share/lirc /run System.Service - wpa_supplicant.conf - wpa_supplicant.confd - wpa_supplicant.logrotate - wpa_supplicant.py + lirc.conf.d + lirc.tmpfiles + lirc.logrotate - - - 2015-07-15 - 2.4 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-06-02 - 2.1 - Version Bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-03-02 - 2.0 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-14 - 1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - telepathy-salut - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - Link-local XMPP Telepathy connection manager - XMPP ile yerel-bağlantı iletişimini sağlayan Telepathy bağlantı yöneticisi. - telepathy-salut is Telepathy connection manager for link-local XMPP. Normally, XMPP does no support direct client-to-client interactions, since it requires authentication with a server. This package makes it is possible to establish an XMPP-like communications on a local network using zero-configuration networking. - telepathy-salut, yerel bir ağ üzerinde XMPP benzeri iletişimi mümkün kılan bir Telepathy bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-0.8.1.tar.gz - - libxslt-devel - glib2-devel - gobject-introspection-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - avahi-devel - avahi-glib-devel - libsoup-devel - openssl-devel - python-devel - sqlite-devel - cyrus-sasl-devel - - - fix_bork_in_tr_locale.patch - - network/chat/telepathy-salut/pspec.xml - - telepathy-salut + lirc-devel + Development files for lirc + lirc için geliştirme dosyaları - dbus - glib2 - sqlite - libsoup - libxml2 - openssl - dbus-glib - avahi-glib - avahi-libs - telepathy-glib - - - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - /usr/share/man - - - - - 2015-11-22 - 0.8.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-10 - 0.8.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.8.0 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.8.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-haze - http://developer.pidgin.im/wiki/Telepathy - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.chat - A multi-protocol Libpurple connection manager for Telepathy - Çok protokol destekli, libpurple üzerine kurulu bir Telepathy bağlantı yöneticisi - telepathy-haze is a connection manager built around libpurple, the core of Pidgin, as a Summer of Code project under the Pidgin umbrella. Ultimately, any protocol supported by libpurple will be supported by telepathy-haze; for now, XMPP, MSN and AIM are known to work acceptably, and other will probably work too. - Telepathy-haze Pidgin'in de kullandığı libpurple üzerine kurulu bir bağlantı yöneticisidir. Libpurple tarafından desteklenen tüm protokol teoride telepathy-haze ile de desteklenmektedir. - http://telepathy.freedesktop.org/releases/telepathy-haze/telepathy-haze-0.8.0.tar.gz - - glib2-devel - dbus-devel - dbus-glib-devel - libpurple-devel - telepathy-glib-devel - libxslt-devel - - network/chat/telepathy-haze/pspec.xml - - - telepathy-haze - - dbus - glib2 - dbus-glib - libpurple - telepathy-glib - - - /usr/libexec - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2015-11-21 - 0.8.0 - version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2013-09-19 - 0.5.0 - Fix dep, we have no kdenetwork package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 0.5.0 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.5.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-logger-qt - https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - network.chat - Qt bindings for telepathy logger - Qt Wrapper around TpLogger client library. - http://download.kde.org/stable/telepathy-logger-qt/15.04/src/telepathy-logger-qt-15.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - doxygen - telepathy-qt5-devel - glib2-devel - dbus-devel - dbus-glib-devel - libxml2-devel - telepathy-logger-devel - - network/chat/telepathy-logger-qt/pspec.xml - - - telepathy-logger-qt - Qt bindings for telepathy logger - - glib2 - libgcc - qt5-base - telepathy-qt5 - telepathy-glib - telepathy-logger - - - /usr/lib/libtelepathy-logger-qt.so.* - /usr/share/doc - - - - telepathy-logger-qt-devel - Development files for telepathy-logger-qt - - telepathy-logger-qt - telepathy-glib-devel + lirc /usr/include - /usr/lib/libtelepathy-logger-qt.so - /usr/lib/cmake/TelepathyLoggerQt - - 2015-11-22 - 15.04.0 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-qt5 - http://telepathy.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.chat - Qt based classes for Telepathy communication framework - Telepathy iletişim çatısı için Qt tabanlı sınıflar - The Telepathy project is about building a unified framework for many different kinds of real-time communications. telepathy-qt contains Qt-based base and proxy classes for use in connection managers and clients. - Telepathy projesi çeşitli gerçek zamanlı iletişim türleri için birleşik bir çatı oluşturmayı amaçlar. telepathy-qt bağlantı yöneticileri ve istemcilerde kullanılmak üzere Qt tabanlı temel ve vekil sınıfları içerir. - http://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-0.9.6.tar.gz - - cmake - qt5-base-devel - gobject-introspection-devel - dbus-glib-devel - libxml2-devel - farstream-devel - telepathy-farstream-devel - doxygen - - - glibc-2.20.patch - - network/chat/telepathy-qt5/pspec.xml - - - telepathy-qt5 - - glib2 - libgcc - qt5-base - telepathy-glib - telepathy-farstream - doxygen - - - /usr/lib - /usr/share/doc - - - - telepathy-qt5-devel - Development files for telepathy-qt5 - telepathy-qt5 için geliştirme dosyaları - - telepathy-qt5 - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-20 - 0.9.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - 2014-03-09 + 2015-10-02 0.9.3 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.9.3 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-08-19 - 0.9.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - pidgin - http://www.pidgin.im - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - network.chat - Instant messaging application previously known as gaim - Eski sürümleri gaim olarak bilinen, hızlı haberleşme aracı - Multi-protocol instant messaging tool for MSN, Yahoo, IRC, Jabber and Gadu-Gadu protocols. - Birçok protokolü (MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu gibi) destekleyen hızlı haberleşme aracıdır. - pidgin - mirrors://sourceforge/pidgin/pidgin-2.10.11.tar.bz2 - - intltool - glib2-devel - gtk2-devel - libXScrnSaver-devel - libSM-devel - gtkspell-devel - sqlite-devel - libxml2-devel - gstreamer-devel - farstream-devel - gst-plugins-base-devel - libidn-devel - avahi-glib-devel - dbus-glib-devel - NetworkManager-devel - nss-devel - tcl-devel - tcltk-devel - cyrus-sasl-devel - doxygen - libxslt-devel - gnutls-devel - atk-devel - cairo-devel - gdk-pixbuf-devel - ncurses-devel - python-devel - - - suse/ pidgin-2.10.11-send-video-enum.patch - suse/pidgin-2.10.11-add-dtmf-support.patch - suse/pidgin-2.10.11-fix-sound-play-fd-leak.patch - suse/pidgin-2.10.11-gst-references.patch - suse/pidgin-2.10.11-init-media-optional.patch - suse/pidgin-2.10.11-private-media.patch - suse/pidgin-ncurses-6.0-accessors.patch - - network/chat/pidgin/pspec.xml - - - pidgin - app:gui - - atk - dbus - gtk2 - cairo - glib2 - libSM - pango - libICE - sqlite - freetype - gtkspell - dbus-glib - gstreamer - fontconfig - gdk-pixbuf - libXScrnSaver - libpurple - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/sounds - /usr/share/dbus-1 - /usr/share/purple - /usr/share/pixmaps - /usr/lib/pidgin - /etc/gconf/schemas - /usr/share/appdata/ - /usr/share/locale - /usr/share/applications - - - - pidgin-devel - Development files of pidgin - pidgin paketine ait geliştirme dosyaları - library - - pidgin - libpurple-devel - gtk2-devel - - - /usr/include/pidgin - /usr/bin/dh_pidgin - /usr/share/man/man3/Pidgin* - /usr/lib/pkgconfig/pidgin.pc - - - - finch - Console based instant messaging application - Konsol tabanlı anında mesajlaşma istemcisi - app:console - - glib2 - libX11 - python - libxml2 - ncurses - gstreamer - libpurple - - - /usr/lib/gnt - /usr/lib/finch - /usr/lib/libgnt* - /usr/bin/finch - /usr/share/man/man1/finch* - - - - finch-devel - Development files of finch - finch paketine ait geliştirme dosyaları - library - - finch - libpurple-devel - - - /usr/include/gnt - /usr/include/finch - /usr/lib/pkgconfig/gnt* - /usr/lib/pkgconfig/finch* - - - - libpurple - The core library of pidgin, supports MSN, XMPP, ICQ, Gadu-Gadu and etc. - Pidgin projesine ait, MSN, XMPP, ICQ, Gadu-Gadu gibi protokolleri destekleyen anında mesajlaşma kitaplığı - library - - nss - tcl - dbus - nspr - perl - glib2 - tcltk - gnutls - libidn - libxml2 - dbus-glib - gstreamer - avahi-glib - avahi-libs - cyrus-sasl - gst-plugins-base - - - /usr/lib/purple-2 - /usr/bin/purple* - /usr/lib/libpurple* - - - - libpurple-devel - Development files of libpurple - libpurple paketine ait geliştirme dosyaları - library - - libpurple - - - /usr/share/aclocal - /usr/include/libpurple - /usr/share/man/man3/Purple* - /usr/lib/pkgconfig/purple.pc - - - - - 2015-11-20 - 2.10.11 - rebuild and add pisi-2.0. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-02-17 - 2.10.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-17 - 2.10.9 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-04 - 2.10.9 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-11 - 2.10.7 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-07-29 - 2.10.7 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-22 - 2.10.7 - fixing some errors - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-16 - 2.10.7 - Updated - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-07-25 - 2.10.6 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - telepathy-glib - http://telepathy.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.chat - GLib bindings for the Telepathy D-Bus protocol - Telepathy D-Bus protokolü için GLib bağlayıcıları - Telepathy-glib is the glib binding for the Telepathy unified framework for all forms of real time conversations, including instant messaging, IRC, voice calls and video calls. - Telepathy-glib, anında mesajlaşma, IRC, sesli ve görüntülü görüşmeler dahil her türlü anlık iletişim türlerini destekleyen Telepathy altyapısının GLib bağlayıcılarıdır. - http://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-0.24.1.tar.gz - - gobject-introspection-devel - dbus-devel - dbus-glib-devel - libxslt-devel - vala-devel - - network/chat/telepathy-glib/pspec.xml - - - telepathy-glib - GLib bindings for the Telepathy D-Bus protocol - library - - dbus - glib2 - dbus-glib - - - /usr/lib - /usr/share/gir-1.0 - /usr/share/doc - - - - telepathy-glib-docs - Help files and API documents of telepathy-glib library - telepathy-glib kitaplığına ait yardım dosyaları ve API belgeleri - data:doc - - telepathy-glib - - - /usr/share/gtk-doc - - - - telepathy-glib-devel - Development files for telepathy-glib - telepathy-glib için geliştirme dosyaları - - telepathy-glib - - - /usr/include - /usr/lib/pkgconfig - /usr/share/vala/vapi - - - - - 2015-11-20 - 0.24.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-25 - 0.24.0 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2013-11-26 - 0.23.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-07-09 - 0.20.2 - Enable vala bindings - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-12 - 0.20.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-22 - 0.20.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - telepathy-farstream - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - Telepathy client to handle media streaming channels - Ortam yayın kanallarıyla anlaşabilmek için gerekli Telepathy istemcisi - Telepathy-farstream is a Telepathy client that uses Farsight and Gstreamer to handle media streaming channels. It's used as a background process by other Telepathy clients, rather than presenting any user interface of its own. - Telepathy-farstream, Farsight ve Gstreamer kitaplıklarını kullanan bir Telepathy istemcisidir. - http://telepathy.freedesktop.org/releases/telepathy-farstream/telepathy-farstream-0.6.2.tar.gz - - gobject-introspection-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - farstream-devel - gstreamer-next-devel - - network/chat/telepathy-farstream/pspec.xml - - - telepathy-farstream - library - - dbus - glib2 - dbus-glib - farstream - gstreamer-next - telepathy-glib - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - - - - telepathy-farstream-docs - Help files and API documents of telepathy-farstream library - telepathy-farstream kitaplığına ait yardım dosyaları ve API belgeleri - data:doc - - telepathy-farstream - - - /usr/share/gtk-doc - - - - telepathy-farstream-devel - Development files for telepathy-farstream - telepathy-farstream için geliştirme dosyaları - - telepathy-farstream - farstream-devel - gstreamer-next-devel - telepathy-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-20 - 0.6.2 - Version bump and fix name - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-10 - 0.0.17 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.0.17 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.0.17 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-logger - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - library - network.chat - Logging utility Telepathy - Telepathy için kayıt tutma aracı. - telepathy-logger is a logging utility for Telepathy communication framework. - telepathy-logger, Telepathy iletişim altyapısı için kayıt tutma aracıdır. - http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.2.tar.bz2 - - glib2-devel - intltool - libxslt-devel - dbus-devel - dbus-glib-devel - gobject-introspection-devel - libxml2-devel - sqlite-devel - telepathy-glib-devel - - network/chat/telepathy-logger/pspec.xml - - - telepathy-logger - - dbus - glib2 - sqlite - libxml2 - dbus-glib - telepathy-glib - - - /usr/lib - /usr/share/gir-1.0/ - /usr/share/telepathy - /usr/share/glib-2.0/ - /usr/libexec - /usr/share/dbus-1 - /usr/share/gtk-doc - /usr/share/doc - - - - telepathy-logger-devel - Development files for telepathy-logger - telepathy-logger için geliştirme dosyaları - - telepathy-logger - telepathy-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-22 - 0.8.2 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.8.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-04-12 - 0.8.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.1.7 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-idle - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - IRC connection manager for Telepathy - Telepathy için IRC (Internet Relay Chat) bağlantı yöneticisi - telepathy-idle is a full-featured IRC connection manager for the Telepathy framework. - telepathy-idle Telepathy iletişim altyapısı için IRC (Internet Relay Chat) bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-idle/telepathy-idle-0.2.0.tar.gz - - telepathy-glib-devel - libxslt-devel - gobject-introspection-devel - glib2-devel - dbus-devel - dbus-glib-devel - - network/chat/telepathy-idle/pspec.xml - - - telepathy-idle - - glib2 - dbus-glib - telepathy-glib - - - /usr/lib - /usr/share/dbus-1 - /usr/share/doc - /usr/share/man - /usr/share/telepathy - - - - - 2015-11-22 - 0.2.0 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.1.12 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-01 - 0.1.12 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-mission-control - http://telepathy.freedesktop.org/wiki/Mission_Control - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - library - network.chat - Telepathy component managing connection managers - Bağlantı yöneticilerini düzenlemeya yarayan Telepathy bileşeni - telepathy-mission-control, or Mission Control, is a Telepathy component providing a way for end user applications to abstract some of the details of connection managers, to provide a simple way to manipulate a bunch of connection managers at once, and to remove the need to have in each program the account definitions and credentials. - telepathy-mission-control, diğer adıyla Mission Control, bağlantı yöneticilerini düzenlemenin zorluklarını kullanıcıdan soyutlamaya çalışan, basitçe hesap oluşturmanıza olanak tanıyan bir Telepathy bileşenidir. - http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.3.tar.gz - - libxslt-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - gtk-doc - NetworkManager-devel - docbook-xsl - - network/chat/telepathy-mission-control/pspec.xml - - - telepathy-mission-control - - dbus - glib2 - dbus-glib - NetworkManager - telepathy-glib - - - /usr/bin - /usr/lib/libmission-control-plugins.so.0* - /usr/lib/telepathy/mission-control-5 - /usr/share/man - /usr/share/doc - /usr/share/dbus-1 - /usr/share/glib-2.0 - - - - telepathy-mission-control-devel - Development files for telepathy-mission-control - telepathy-mission-control için geliştirme dosyaları - - telepathy-mission-control - telepathy-glib-devel - - - /usr/include/mission-control-5.5 - /usr/lib/libmission-control-plugins.so - /usr/lib/pkgconfig/mission-control-plugins.pc - /usr/share/gtk-doc/html/mission-control-plugins - - - - - 2015-11-22 - 5.16.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-10 - 5.16.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-12-19 - 5.16.0 - Version bump for upower. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 5.14.0 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-15 - 5.14.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-01 - 5.12.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-gabble - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - library - network.chat - A Jabber/XMPP connection manager for Telepathy - Telepathy için Jabber/XMPP bağlantı yöneticisi - telepathy-gabble is a Jabber/XMPP connection manager, that handles single and multi-user chats and voice calls. - telepathy-gabble, tek ve çoklu kullanıcılı sohbet, sesli aramalar gibi özellikler sunan Jabber/XMPP bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-gabble/telepathy-gabble-0.18.3.tar.gz - - libnice-devel - gobject-introspection-devel - glib2-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - libxslt-devel - gnutls-devel - sqlite-devel - libsoup-devel - libnice-devel - cyrus-sasl-devel - - network/chat/telepathy-gabble/pspec.xml - - - telepathy-gabble - - dbus - glib2 - gnutls - sqlite - libnice - libsoup - libxml2 - dbus-glib - telepathy-glib - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2015-11-21 - 0.18.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.15.3 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.15.3 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-03 - 0.15.3 - Dep added - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.15.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-butterfly - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.chat - MSN connection manager for Telepathy - Telepathy için MSN bağlantı yöneticisi - telepathy-butterfly is an MSN connection manager that handles presence, personal messages and conversations. - telepathy-butterfly MSN için durum bilgisi, kişisel iletiler ve sohbeti destekleyen bir Telepathy eklentisidir. - http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-0.5.15.tar.gz - - dont-compile-py.patch - - network/chat/telepathy-butterfly/pspec.xml - - - telepathy-butterfly - - /usr/libexec - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - - - - - 2015-11-22 - 0.5.15 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.5.15 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-01 - 0.5.15 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libotr - http://www.cypherpunks.ca/otr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.chat - Portable OTR (Off The Record) messaging library - Taşınabilir OTR (Off The Record/Kayıt dışı) mesajlaşma kitaplığı - OTR messaging allows you to have private conversations over instant messaging. - OTR mesajlaşma, hızlı mesajlaşma araçları ile gizli sohbetler yapmanızı sağlar. - https://otr.cypherpunks.ca/libotr-4.1.0.tar.gz - - libgcrypt-devel - - network/chat/libotr/pspec.xml - - - libotr - - libgcrypt - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libotr-devel - Development files for libotr - libotr için geliştirme dosyaları - - libotr - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/libotr/html - - - - - 2015-11-22 - 4.1.0 - Rebuild, add dep - Alihan Öztürk - alihan@pisilinux.org - - - 2015-02-17 - 4.1.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-04-07 - 4.0.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-01 - 4.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-01 - 3.2.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-sunshine - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - network.chat - Gadu-Gadu connection manager for telepathy - Telepathy için Gadu Gadu bağlantı yöneticisi - Telepathy-sunshine is a Gadu-Gadu network connection manager. It supports the Nowe Gadu Gadu features such as UTF-8 encoding and new statuses. - Telepathy-sunshine Telepathy iletişim altyapısı için Gadu Gadu bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-sunshine/telepathy-sunshine-0.2.0.tar.gz - - dont-compile-py.patch - - network/chat/telepathy-sunshine/pspec.xml - - - telepathy-sunshine - - /usr/libexec - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/man - /usr/share/doc - - - - - 2015-11-22 - 2.0 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 2.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-01 - 2.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - rsync - http://rsync.samba.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - app:console - network.share - File transfer program to keep local copies in sync with remote files - Dosya yedekleme ve eşleme uygulaması - rsync is a tool to keep local copies of remote files in sync (i.e. make sure local files are exact copies of remote files). - rsync, uzaktaki dosyaları senkronize tutan bir dosya transfer uygulamasıdır. - http://rsync.samba.org/ftp/rsync/rsync-3.1.1.tar.gz - - acl-devel - attr-devel - popt-devel - zlib-devel - - network/share/rsync/pspec.xml - - - rsync - - acl - attr - popt - zlib - - - /usr/bin - /usr/share/doc - /usr/share/man - /etc - - - System.Service - - - rsyncd.conf - rsyncd.conf.d - - - - - 2015-03-24 - 3.1.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-02-11 - 3.1.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-10 - 3.1.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-05 - 3.0.9 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - librsync - http://librsync.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - network.share - librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy - Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı - librsync implémente l'algorithme de la somme de contrôle tournante (rolling-checksum) pour la synchronisation rendue populaire par l'utilitaire rsync et utilisée par rproxy. Cet algorithme transfert les différences entre 2 fichiers sans nécessiter la présence des fichiers sur le même système. - librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system. - Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı. Bu algoritma iki dosya arasındaki farkları, iki dosyanın aynı sistemde olmasına ihtiyaç duymadan transfer eder. - librsync implementa el cómputo del rolling-checksum de la sincronización de archivos remotos, que fue popularizado por la herramienta rsync y se usa en rproxy. El algoritmo transfiere la diferencia de los 2 archivos sin la necesidad de tener ambos archivos en el mismo sistema. - mirrors://sourceforge/librsync/librsync-0.9.7.tar.gz - - popt-devel - - - librsync-0.9.7-largefiles.patch - librsync-link.patch - - network/share/librsync/pspec.xml - - - librsync - - popt - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/librsync - - - - librsync-devel - Development files for librsync - librsync için geliştirme dosyaları - - librsync - - - /usr/include - /usr/lib/librsync.so - /usr/share/man/man3 - - - - - 2014-02-01 - 0.9.7 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.9.7 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - libnfnetlink - http://www.netfilter.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.misc - Low level library for netfilter related kernel/userspace communication - Ağ filtreleme işlemleri ile ilgili çekirdek/uygulama iletişimi için alt seviye bir kitaplık - Niskopoziomowa biblioteka do netfilter - libnfnetlink provides a generic messaging infrastructure for in-kernel netfilter subsystems. - libnfnetlink, çekirdek içi ağ filtreleme alt sistemleri için jenerik bir mesajlaşma altyapısı sunar. - libnfnetlink to niskopoziomowa biblioteka do związanej z netfiltrem komunikacji między jądrem a przestrzenią użytkownika. Udostępnia ogólną infrastrukturę komunikatów dla podsystemów netfiltra w jądrze oraz ich użytkowników i/lub narzędzi zarządzających w przestrzeni użytkownika. - http://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2 - network/misc/libnfnetlink/pspec.xml - - - libnfnetlink - - /usr/lib - - - - libnfnetlink-devel - Development files for libnfnetlink - libnfnetlink için geliştirme dosyaları - Pliki nagłówkowe do bibliioteki libnfnetlink - - libnfnetlink - - - /usr/include - /usr/lib/pkgconfig/libnfnetlink.pc - - - - - 2014-03-13 - 1.0.1 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-04 - 1.0.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libssh - http://www.libssh.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - Full C library functions for manipulating a client-side SSH connection - SSH bağlantılarının kontrol edilebilmesini sağlayan C kitaplığı - libssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl). - libssh, yazılımlarında SSH kullanmak isteyen programcılar için tasarlanmış bir C kitaplığıdır. SSH istemcisi programcı tarafından tam olarak kontrol edilebilir, uzaktan yazılım çalıştırma, tünel yaratma, dosya transferi ve uzak dosya erişimi işlemleri yapılabilir. Tüm bunlar için openssl paketinde bulunan lıbcrypto'nun sistemde bulunması yeterlidir. - https://git.libssh.org/projects/libssh.git/snapshot/libssh-0.6.4.tar.gz - - zlib-devel - openssl-devel - doxygen - cmake - - network/misc/libssh/pspec.xml - - - libssh - - zlib - openssl - - - /usr/lib - /usr/share/doc - - - - libssh-devel - Development files for libssh - libssh için geliştirme dosyaları - - libssh - - - /usr/include - /usr/lib/pkgconfig - - - - libssh-docs - Development documentation for libssh - - /usr/share/doc/libssh/html - /usr/share/man - - - - - 2014-07-30 - 0.6.4 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - - 2014-05-08 - 0.6.3 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-09 - 5.4 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-27 - 5.4 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - 2013-05-04 - 5.4 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-09-01 - 0.5.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libndp - http://libndp.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - library - network.misc - Library for Neighbor Discovery Protocol - Ağ tarama protokolü için kitaplık - Library for Neighbor Discovery Protocol - Ağ tarama protokolü için kitaplık - http://libndp.org/files/libndp-1.4.tar.gz - - glibc-devel - - network/misc/libndp/pspec.xml - - - libndp - libndp için geliştirme dosyaları - - /etc - /usr/share - /etc/dbus-1 - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libndp-devel - Development files for NetworkManager - - libndp - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2015-01-07 - 1.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libasyncns - http://0pointer.de/lennart/projects/libasyncns - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - A C library for asynchronous name service queries - Asenkron isim servisi sorguları için C kitaplığı - libasyncns is a C library for Linux/Unix for executing name service queries asynchronously. It is an asynchronous wrapper around getaddrinfo(), getnameinfo(), res_query() and res_search() from libc and libresolv. - libasyncns, Linux/Unix üzerinde isim servisi sorgularını asenkron olarak gerçekleştirme imkanı veren bir C kitaplığıdır. - http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz - network/misc/libasyncns/pspec.xml - - - libasyncns - - /usr/lib - /usr/share/doc - - - - libasyncns-devel - Development files for libasyncns - libasyncns için geliştirme dosyaları - - libasyncns - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-01-29 - 0.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.8 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - neon - http://www.webdav.org/neon/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.misc - Librairie cliente HTTP et WebDAV. - HTTP and WebDAV client library - C arayüzü ile birlikte gelen, Http ve WebDAV için istemci kitaplığı - neon is an HTTP and WebDAV client library with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. - neon, C arayüzü sunan bir HTTP ve WebDAV istemci kitaplığıdır. HTTP ve WebDAV metodlarına yüksek seviyeli, HTTP istek değerlendirmesi için de düşük seviyeli bir arayüz sunar. - http://www.webdav.org/neon/neon-0.30.0.tar.gz - - openssl-devel - expat-devel - zlib-devel - mit-kerberos - - - fixdocdir.patch - multilib.patch - - network/misc/neon/pspec.xml - - - neon - - zlib - expat - openssl - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - neon-devel - Development files for neon - neon için geliştirme dosyaları - - neon - - - /usr/include - /usr/lib/pkgconfig - - - - 2014-05-25 - 0.30.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-30 - 0.30.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-03 - 0.29.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libcddb - http://libcddb.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - Une librairie pour accéder aux serveurs CDDB. - A library for accessing a CDDB server - CDDB sunucularına ulaşmak için bir kitaplık - Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http://freedb.org/). - libcddb, CDDB sunucularındaki (freedb.org) verilere erişmek için yazılmış bir C kitaplığıdır. - mirrors://sourceforge/libcddb/libcddb-1.3.2.tar.bz2 - network/misc/libcddb/pspec.xml - - - libcddb - - /usr/bin - /usr/lib - /usr/share/doc - - - - libcddb-devel - Development files for libcddb - libcddb için geliştirme dosyaları - - libcddb - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 1.3.2 - rebuild for libcdio + 0.9.0 + Rebuild for libftdi Kamil Atlı suvarice@gmail.com - - 2014-03-08 - 1.3.2 - rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 1.3.2 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - 2010-10-13 - 1.3.2 + 2012-10-01 + 0.9.0 First release - Gökcen Eraslan + Erdem Artan admins@pisilinux.org - iputils - https://github.com/iputils/iputils + dkms + http://linux.dell.com/dkms - PisiLinux Community - admins@pisilinux.org + Ertan Güven + ertan@pisilinux.org - BSD - app:console - network.misc - Network monitoring tools including ping and ping6 - ping ve ping6 uygulamalarını da içeren ağ izleme araçları - Iputils contient les outils de surveillance réseau incluant ping et ping6. - iputils contains network monitoring tools including ping and ping6. - Iputils, ping ve ping6 gibi ağ izleme araçlarını içeren bir pakettir. - https://github.com/iputils/iputils/archive/s20150815.tar.gz + GPLv2 + kernel + hardware.misc + Dynamic Kernel Module Support + Dynamic Kernel Module Support + DKMS is a dynamic kernel module support framework. + DKMS, dinamik çekirdek modülü desteği çatısıdır. + http://linux.dell.com/dkms/permalink/dkms-2.2.0.3.tar.gz - openssl-devel - libidn-devel - libcap-devel + kernel-headers - network/misc/iputils/pspec.xml + hardware/misc/dkms/pspec.xml - iputils + dkms - libcap - libidn + kernel-headers /etc - /usr/bin + /usr/lib /usr/sbin - /sbin - /lib/systemd/system - /etc/conf.d/rdisc /usr/share/doc /usr/share/man + /var/lib - - man/arping.8 - man/clockdiff.8 - man/ping.8 - man/rarpd.8 - man/rdisc.8 - man/tracepath.8 - man/traceroute6.8 - fedora/tftp.xinetd - - - 2015-10-01 - 20150815 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-11 - 20121221 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-07-26 - 20121221 - Fix dep, release bump. - PisiLinux Community - admins@pisilinux.org + 2016-01-01 + 2.2.0.3 + Rebuild for Pisi 2.0 + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-01-14 - 20121221 - New release - PisiLinux Community - admins@pisilinux.org + 2014-01-22 + 2.2.0.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-08-23 - 20101006 + 2013-01-29 + 2.2.0.3 First release - PisiLinux Community - admins@pisilinux.org + Ertan Güven + ertan@pisilinux.org - libnl - http://people.suug.ch/~tgr/libnl + libx86 + http://www.codon.org.uk/~mjg59/libx86/ PisiLinux Community admins@pisilinux.org GPLv2 library - network.misc - A library for applications dealing with netlink sockets - Netlink soketleri erişimi için bir kitaplığı - libnl is a convenience library to simplify the usage of the Linux kernel's netlink sockets interface for network manipulation. - libnl Linux çekirdeğinin netlink soket arayüzünü ağ ile ilgili çeşitli işlemleri kolaylaştırmak için kullanan bir kitaplığıdır. - http://www.infradead.org/~tgr/libnl/files/libnl-3.2.25.tar.gz - - glibc - flex - bison - pkgconfig - libtool - check - - network/misc/libnl/pspec.xml + hardware.misc + A hardware-independent library for executing real-mode x86 code + Gerçek-mod x86 kodlarını çalıştırmak için donanım-bağımsız bir kütüphane + libx86 contains the library and header files necessary for the development of programs that will use libx86 to make real-mode x86 calls. + libx86, gerçek-mod x86 çağrıları yapabilen programların geliştirilmesi için gerekli başlık dosyaları ve kütüphaneleri içerir. + A menudo puede ser útil poder realizar llamadas de BIOS x86 en modo real desde el espacio de usuarios. lrmi facilita para ello una interfaz simple para equipos x86, sin embargo no funciona en otras plataformas. libx86 facilita la interfaz lrmi, pero además funcionará en plataformas como amd64 y alpha. + http://www.codon.org.uk/~mjg59/libx86/downloads/libx86-1.1.tar.gz + + libx86-0.99-ifmask.patch + libx86-add-pkgconfig.patch + libx86-mmap-offset.patch + + hardware/misc/libx86/pspec.xml - libnl + libx86 /usr/lib /usr/share/doc - /usr/share/man - /etc/libnl - /usr/sbin - libnl-devel - Development files for libnl - libnl için geliştirme dosyaları + libx86-devel - libnl + libx86 /usr/include @@ -9777,362 +21537,16 @@ - - 2015-07-15 - 3.2.25 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-04-03 - 3.2.24 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-13 - 3.2.23 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - 2013-11-19 - 3.2.23 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-10-14 - 3.2.13 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - geoclue - http://www.freedesktop.org/wiki/Software/GeoClue - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - network.misc - The Geoinformation Service. - Geoclue is a modular geoinformation service built on top of the D-Bus messaging system. - http://people.freedesktop.org/~hadess/geoclue-0.12.99.tar.gz - - dbus-devel - glib2-devel - dbus-glib-devel - libxml2-devel - libxslt - NetworkManager-devel - - network/misc/geoclue/pspec.xml - - - geoclue - - glib2 - libxml2 - dbus-glib - NetworkManager - - - /usr/lib/ - /usr/share/ - /usr/libexec/ - - - - geoclue-devel - geoclue için geliştirme dosyaları - geoclue için geliştirme dosyaları - - geoclue - dbus-glib-devel - libxml2-devel - - - /usr/include/geoclue - /usr/lib/pkgconfig - - - - - 2015-07-22 - 0.12.99 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-07-18 - 0.12.99 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-23 - 0.12.99 - rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 0.12.99 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-26 - 0.12.99 - Release no bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-09-03 - 0.12.99 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - webkit-gtk2 - http://webkitgtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - LGPLv2.1 - BSD - library - network.misc - An opensource web browser engine for GTK+ applications - 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. - http://www.webkitgtk.org/releases/webkitgtk-2.4.9.tar.xz - - mesa-devel - gtk-doc - glib2-devel - gtk2-devel - ruby-devel - webp-devel - cairo-devel - icu4c-devel - libXt-devel - enchant-devel - sqlite-devel - geoclue-devel - libsoup-devel - fontconfig-devel - libxslt-devel - harfbuzz-devel - libsecret-devel - libXcomposite-devel - libjpeg-turbo-devel - gstreamer-next-devel - gobject-introspection-devel - gst-plugins-base-next-devel - which - icon-theme-hicolor - gperf - libSM-devel - - network/misc/webkit-gtk2/pspec.xml - - - webkit-gtk2 - - atk - zlib - glib2 - gtk2 - mesa - webp - cairo - icu4c - libXt - libX11 - libgcc - libpng - libxml2 - pango - sqlite - enchant - geoclue - libsoup - libxslt - harfbuzz - freetype - libsecret - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - gstreamer-next - gst-plugins-base-next - - - /usr/lib - /usr/share - /usr/share/doc - - - - webkit-gtk2-devel - Development files for GTK+ port of WebKit - library - data:doc - - libgcc - gtk2-devel - glib2-devel - webkit-gtk2 - libsoup-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/webkit-gtk/Web* - /usr/share/doc/webkit-gtk2/html - /usr/share/doc/webkit-gtk/JavaScriptCore - - - - - 2015-08-05 - 2.4.9 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-07 - 2.4.8 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-01-16 - 2.4.8 - Version Bump + Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - 2014-05-24 - 2.4.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-21 - 2.4.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-14 - 1.10.2 - Rebuild for icu4c + 1.1 + Rebuild for gcc. PisiLinux Community admins@pisilinux.org - - 2013-07-29 - 1.10.2 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-02-25 - 1.10.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - 2012-11-23 - 1.10.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libconfig - http://www.hyperrealm.com/libconfig/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - C/C++ Configuration File Library - C/C++ Yapılandırma Dosyası Kitaplığı - Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. - Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz. - http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz - network/misc/libconfig/pspec.xml - - - libconfig - - /usr/lib - /usr/share/doc - - - - libconfig-devel - Development files for libconfig - libconfig için geliştirme dosyaları - - libconfig - - - /usr/include - /usr/lib/pkgconfig - /usr/share/info - - - - - 2013-03-04 - 1.4.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 1.4.5 + 2010-10-13 + 1.1 First release Pisi Linux Admins admins@pisilinux.org @@ -10141,93 +21555,2079 @@ - freerdp - http://www.freerdp.com + libsmbios + http://linux.dell.com/libsmbios/main/index.html - Aydın Demirel - aydin.demirel@pisilinux.org + PisiLinux Community + admins@pisilinux.org - ASF + GPLv2 + OSL-2.0 + library app:console - network.misc - A Remote Desktop Implementation - Bir uzak masaüstü protokol uygulaması - FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under Apacle License. - FreeRDP Apache lisansı altında dağıtılan, Uzak Masaüstü Uygulamasının (RDP) özgür bir uygulamasıdır. - http://pub.freerdp.com/releases/freerdp-1.0.2.tar.gz + hardware.misc + Provide access to (SM)BIOS information + (SM)BIOS bilgilerine ulaşabilmeyi sağlar + libsmbios project aims towards providing access to as much BIOS information as possible. It does this by providing a library of functions that can be used as well as sample binaries. + http://linux.dell.com/libsmbios/download/libsmbios/libsmbios-2.2.28/libsmbios-2.2.28.tar.bz2 - cups-devel - ffmpeg-devel - alsa-lib-devel - libXinerama-devel - xmlto - libXcursor-devel - libxkbfile-devel - libXv-devel + libxml2-devel - - ffmpeg2.0.patch - patch_numblock.patch - - network/misc/freerdp/pspec.xml + hardware/misc/libsmbios/pspec.xml - freerdp + libsmbios - cups - libX11 - openssl - libXv - ffmpeg - libXext - alsa-lib - libXcursor - libxkbfile - libXinerama + libgcc + + + /etc + /usr/share + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/locale + + + + libsmbios-devel + Development files for libsmbios + libsmbios için geliştirme dosyaları + + libsmbios + + + /usr/include/smbios + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-02-01 + 2.2.28 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 2.2.28 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gpm + http://linux.schottelius.org/gpm/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + hardware.misc + Console mouse driver + Konsol tabanlı fare sürücüsü + GPM (short for General Purpose Mouse) brings mouse support to TTYs. + Genel amaçlı fare ve konsolda fare desteği içindir. + http://www.nico.schottelius.org/software/gpm/archives/gpm-1.20.7.tar.bz2 + + ncurses-devel + texinfo + + hardware/misc/gpm/pspec.xml + + + gpm + + ncurses /usr/bin - /usr/lib - /usr/share/freerdp + /usr/include + /usr/share/man + /usr/share/info + /usr/share/doc + /usr/lib + /etc + /usr/share/emacs + + + System.Service + + + gpm.conf.d + + + + + 2014-05-20 + 1.20.7 + Rebuild, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-25 + 1.20.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 1.20.7 + First release + PisiLinux Community + namso-01qhotmail.it + + + + + + libftdi + http://www.intra2net.com/en/developer/libftdi/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + A library for accessing to FTDI USB chips + FTDI USB entegrelerine erişim kitaplığı + libftdi allows access to eeprom and bitbang modes of FT232/245/2232 USB serial interface chips. + libftdi ile FT232/245/2232 USB seri arabirim entegrelerinin eeprom ve bitbang modlarını kullanabilirsiniz. + http://www.intra2net.com/en/developer/libftdi/download/libftdi1-1.1.tar.bz2 + + doxygen + + + fix-udev-group_and_usb_name.patch + + hardware/misc/libftdi/pspec.xml + + + libftdi + + libusb + + + /usr/bin + /usr/lib + /lib/udev/rules.d + /usr/share/doc + + + + python-libftdi + Python bindings for libftdi + Python için libftdi bağlayıcıları + + libusb + python3 + libftdi + + + /usr/lib/python* + + + + libftdi-devel + Development files for libftdi + libftdi için geliştirme dosyaları + + libftdi + libusb-devel + + + /usr/bin/libftdi-config + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/doc/libftdi/examples + + + + + 2014-07-05 + 1.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-10 + 0.20 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-03-09 + 0.20 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-30 + 0.20 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-11-16 + 0.20 + First release + PisiLinux Community + namso-01qhotmail.it + + + + + + libmtp + http://libmtp.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + An implementation of Microsoft's Media Transfer Protocol (MTP) + Microsoft'un medya aktarım protokolünü destekleyen araçlar için bir kütüphane + libmtp est une implémentation du Media Transfer Protocol (MTP) de Microsoft sous la forme d'une librairie principalement adéquate pour les systèmes d'exploitation conformes à POSIX. + libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP) in the form of a library suitable primarily for POSIX compliant operating systems. + libmtp, PlayForSure olarak da anılan, Microsoft'un medya aktarım protokolünü desteklemek için yazılmış bir programlama kütüphanesidir. Uygulamalar, libmtp kütüphanesini kullanarak, PlayForSure destekli MP3 çalar veya dijital kameralardaki içerik üzerinde taşıma, aktarma, isimlendirme vb.. işlemleri kolayca yapabilirler. + libmtp es una implementación del protocolo de transferencia de Microsoft's Media (MTP) en forma de una librería para uso en sistemas operativos POSIX compliant. + mirrors://sourceforge/libmtp/1.9/libmtp-1.1.9.tar.gz + + doxygen + libusb-devel + libgcrypt-devel + + hardware/misc/libmtp/pspec.xml + + + libmtp + + libusb + libgcrypt + + + /usr/bin + /usr/lib + /lib/udev + /lib/udev/rules.d + /usr/share/hal + /usr/share/doc + + + + libmtp-devel + Development files for libmtp + libmtp için geliştirme dosyaları + + libmtp + libusb-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-28 + 1.1.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.1.6 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-05 + 1.1.6 + Rebuild for libgcrypt. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 1.1.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 1.1.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libgphoto2 + http://www.gphoto.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + Library that implements support for numerous digital cameras + Sayısal kamera ve müzik çalarlara erişim sağlayan kütüphane + Libgphoto2 est une librairie centrale conçue pour permettre aux programmes extérieurs d'accéder aux appareils photos numériques. + libgphoto2 is the core library designed to allow access to digital camera by external programs. + libgphoto2, harici uygulamalar tarafından sayısal kameralara ve müzik çalarlara erişim için kullanılan bir programlama kütüphanesidir. + Libgphoto2 es la librería núcleo (core) que permite a programas externos acceder a camaras digitales. + mirrors://sourceforge/gphoto/libgphoto2-2.5.8.tar.bz2 + + doxygen + libxml2-devel + gd-devel + tiff-devel + libjpeg-turbo-devel + libexif-devel + libusb-devel + + hardware/misc/libgphoto2/pspec.xml + + + libgphoto2 + + libxml2 + libtool-ltdl + libusb + gd + libexif + libjpeg-turbo + + + /usr/bin + /lib/udev + /usr/share/doc/libgphoto2/README + /usr/share/doc/libgphoto2/COPYING + /usr/lib + /usr/share/libgphoto2 + /usr/share/hal/fdi + /lib/udev/rules.d + /usr/share/locale + /usr/share/man + + + System.Package + + + + libgphoto2-docs + Documentation for libgphoto2 + libgphoto2 için detaylı belgelendirme + + /usr/share/doc/libgphoto2 + /usr/share/doc/libgphoto2/camlibs + /usr/share/doc/libgphoto2/apidocs.html + /usr/share/doc/libgphoto2/linux-hotplug + + + + libgphoto2-devel + Development files for libgphoto2 + libgphoto2 için geliştirme dosyaları + + libexif-devel + libgphoto2 + + + /usr/bin/gphoto2-config* + /usr/bin/gphoto2-port-config + /usr/include/gphoto2 + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-08-02 + 2.5.8 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-15 + 2.5.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-30 + 2.5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 2.5.0 + First release + PisiLinux Community + namso-01qhotmail.it + + + + + + libmtdev + http://bitmath.org/code/mtdev + + PisiLinux Community + admins@pisilinux.org + + MIT + library + hardware.misc + Multitouch Protocol Translation Library + Çoklu Dokunmatik Protokol Dönüşüm Kütüphanesi + The libmtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. + Libmtdev kütüphanesi, kernel MT olaylarının tüm çeşitlerini slotlu B tipi protokole dönüştürür. + http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.gz + hardware/misc/libmtdev/pspec.xml + + + libmtdev + + /usr/bin + /usr/lib + /usr/share/doc + + + + libmtdev-devel + Development files of libmtdev + Libmtdev için geliştirme dosyaları + + libmtdev + + + /usr/include + /usr/lib/pkgconfig + + + + libmtdev-32bit + 32-bit shared libraries for libmtdev + emul32 + emul32 + + glibc-32bit + + + libmtdev + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.5 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 1.1.3 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2012-10-03 + 1.1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libieee1284 + http://cyberelk.net/tim/libieee1284/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + Library to query devices using IEEE1284 + IEEE1284 kullanarak donanımların sorgulanması için bir kütüphane + Cette librairie est à destination des applications qui ont besoins de communiquer avec (ou au moins identifier) des périphériques liés au système par le port parallèle. + Library is intended to be used by applications that need to communicate with (or at least identify) devices that are attached via a parallel port. + Paralel portlar aracılığı ile bağlanmış araçlarla iletişimi (en azından tanımlanmasını) gerçekleştiren uygulamalar için gerekli olan kütüphanedir. + La librería usado por aplicaciones que necesitan comunicarse con (,o al menos necesitan identificar) dispositivos conectados al puerto paralelo. + mirrors://sourceforge/libieee1284/libieee1284-0.2.11.tar.bz2 + + python-devel + + + libieee1284-strict-aliasing.patch + + hardware/misc/libieee1284/pspec.xml + + + libieee1284 + + /usr/bin + /usr/lib /usr/share/doc /usr/share/man - freerdp-devel + python-libieee1284 + Python bindings for libieee1284 + libieee1284 için Python bağlayıcıları + + libieee1284 + + + /usr/lib/python* + + + + libieee1284-devel + Development files for libieee1284 + libieee1284 için geliştirme dosyaları + + libieee1284 + /usr/include + /usr/share/man/man3 - 2015-01-01 - 1.0.2 - Rebuild, fix build dep. - Ertuğrul Erata - ertugrulerata@gmail.com + 2014-03-10 + 0.2.11 + Fix rpath + Varol Maksutoğlu + waroi@pisilinux.org - 2014-05-31 - 1.0.2 + 2014-03-09 + 0.2.11 Rebuild. - Alihan Öztürk - alihan@pisilinux.org + Kamil Atlı + suvarice@gmail.com - 2013-11-29 - 1.0.2 - rebuild for ffmpeg + 2013-07-28 + 0.2.11 + Dep Fixed PisiLinux Community admins@pisilinux.org - 2013-09-28 - 1.0.2 + 2010-10-13 + 0.2.11 First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libdc1394 + http://sourceforge.net/projects/libdc1394/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.firewire + Programming interface for IEEE 1394 based cameras + IEEE 1394 tabanlı kameralar için programlama kitaplığı + libdc1394 est une librairie dont l'objectif est de fournir une interface de programmation d'application de haut niveau pour les développeur désirant contrôler les caméras basées sur le IEEE 1394 se conformant aux spécifications des Caméras Digitales basées sur 1394 (que l'on trouve sur http://www.1394ta.org/). + libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification (found at http://www.1394ta.org/). + Bu kütüphane IEEE 1394 tabanlı kameraların kontrolü için yüksek seviyeli bir arayüz oluşturur. + libdc1394 es una librería con intención de facilitar una interfaz de programación de alto nivel para programadores de aplicaciones, que desean controlar camaras basados en IEEE 1394, conforme la especificación de camaras digitales basados en 1394 (véase http://www.1394ta.org/). + http://sourceforge.net/projects/libdc1394/files/libdc1394-2/2.2.3/libdc1394-2.2.3.tar.gz + + libraw1394-devel + + hardware/firewire/libdc1394/pspec.xml + + + libdc1394 + + libraw1394 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libdc1394-devel + Development files for libdc1394 + libdc1394 için geliştirme dosyaları + + libdc1394 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-09-13 + 2.2.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-20 + 2.2.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 2.2.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-20 + 2.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libiec61883 + http://www.linux1394.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + hardware.firewire + A library for capturing video (DV, MPEG2 or AMDTP) over the IEEE 1394 bus + IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane + Cette librairie fournit aux les médias de troisième génération la réception et la transmission pour DV, MPEG2-TS et AMDTP (audio et musique) en n'utilisant que raw1394 sans nécessiter une configuration et une maintenance compliquées d'autres modules du noyau et de leurs nodes dans /dev. + libiec61883 is a library providing third generation media reception and transmission for DV, MPEG2-TS, and AMDTP (audio and music) using only raw1394 and not the complicated setup and maintenance of other kernel modules and their /dev nodes. + IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane + La librería facilita recepción y transmisión de media de tercera generación para DV, MPEG2-TS, y AMDTP (audio y music), usando solamente la interfaz 1394 en crudo, sin configuración complicada y mantenimiento de otros módulos de kernel y nodos /dev correspondientes. + http://www.kernel.org/pub/linux/libs/ieee1394/libiec61883-1.2.0.tar.gz + + libraw1394-devel + + + libiec61883-1.2.0-installtests.patch + libiec61883-channel-allocation-without-local-node-rw.patch + + hardware/firewire/libiec61883/pspec.xml + + + libiec61883 + + libraw1394 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libiec61883-devel + Development files for libiec61883 + libiec61883 için geliştirme dosyaları + + libiec61883 + libraw1394-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-03-09 + 1.2.0 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 1.2.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-15 + 1.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libffado + http://www.ffado.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + hardware.firewire + Free firewire audio drivers + Ücretsiz firewire ses sürücüleri + libffado tries to provide open-source drivers for all FireWire based pro-audio devices. + libffado, firewire arabirimli profesyonel ses kartları için ücretsiz sürücü desteği sağlayan bir projedir. + http://www.ffado.org/files/libffado-2.2.1.tgz + + xdg-utils + glibmm-devel + libxmlpp-devel + alsa-lib-devel + dbus-c++-devel + libsigc++-devel + libconfig-devel + libraw1394-devel + libiec61883-devel + libgcc + + + libffado-api-doc-only.patch + libffado-libconfig145.patch + flags.patch + libffado-2.2.1-jack-detect.patch + libffado-2.2.1-mixer.patch + + hardware/firewire/libffado/pspec.xml + + + libffado + library + + glibmm + libgcc + dbus-c++ + libxmlpp + libconfig + libsigc++ + xdg-utils + libraw1394 + libiec61883 + python-setuptools + + + /usr/bin + /usr/lib + /usr/share/locale + /lib/udev/rules.d + /usr/share/libffado + /usr/share/dbus-1 + /usr/share/man + /usr/share/doc + + + + libffado-devel + Development files for libffado + libffado için geliştirme dosyaları + library + + libffado + + + /usr/include + /usr/lib/pkgconfig + + + + ffado-mixer + Graphical User Interface for FFADO + FFADO için grafik arayüzü + app:gui + hardware.sound + ffado-mixer + + libffado + python-setuptools + + + /usr/bin/ffado-mixer* + /usr/share/applications + /usr/share/pixmaps + + + pisilinux-ffadomixer.desktop + + + + + 2015-04-28 + 2.2.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-05-06 + 2.1.0 + Sandbox Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2012-11-15 + 2.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libavc1394 + http://sourceforge.net/projects/libavc1394/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.firewire + Librairie pour l'ensemble de commande de l'interface digitale AV/C (Audio/Vidéo Control) de l'association pour le commerce 1394 (1394 Trade Association). + library for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set + 1394 Trade Association AV/C (Ses/Görüntü kontrol) sayısal arayüz komut seti için bir kütüphane + The libavc1394 library allows utilities to control IEEE-1394 devices using the AV/C specification. Audio/Video Control allows applications to control devices like the tape on a VCR or camcorder. + mirrors://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz + + libraw1394-devel + + + libavc1394-0.5.3-librom.patch + + hardware/firewire/libavc1394/pspec.xml + + + libavc1394 + + libraw1394 + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libavc1394-devel + Development files for libavc1394 + libavc1394 için geliştirme dosyaları + + libavc1394 + libraw1394-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-31 + 0.5.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-08 + 0.5.4 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 0.5.4 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 0.5.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libfreebob + http://freebob.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.firewire + FreeBoB firewire audio driver library + FreeBoB firewire ses sürücü kütüphanesi + libfreebob implements a userland driver for BeBoB-based firewire audio devices. + libfreebob BeBoB tabanlı firewire ses aygıtları için sürücü kütüphanesi içerir. + mirrors://sourceforge/freebob/libfreebob-1.0.11.tar.gz + + alsa-lib-devel + libraw1394-devel + libavc1394-devel + libiec61883-devel + + + libfreebob-1.0.11-includes.patch + gcc-4.5.patch + fix_usleep.patch + + hardware/firewire/libfreebob/pspec.xml + + + libfreebob + + alsa-lib + libraw1394 + libavc1394 + libiec61883 + + + /usr/lib + /usr/share/doc + + + + libfreebob-devel + Development files for libfreebob + libfreebob için geliştirme dosyaları + + libfreebob + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-01-30 + 1.0.11 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 1.0.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libraw1394 + http://www.linux1394.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + hardware.firewire + A library that provides direct access to the IEEE 1394 bus + IEEE 1394 veriyoluna direk erişim sağlayan bir kütüphane + IEEE 1394 est un standard définissant un bus de série très rapide. Ce bus est également appelé FireWire par Apple ou i.Link par Sony. + libraw1394 library provides direct access to the IEEE-1394 bus through the Linux 1394 subsystem's raw1394 user interface. Support for both the classic ieee1394 and new firewire linux driver stacks is included. + IEEE 1394 yüksek hızlı bir seri veriyolu tanımlayan standarttır. Bu veriyolu Apple, i.Link ve Sony tarafından FireWire olarak adlandırılmıştır. Bu kütüphane IEEE 1394 veriyoluna direkt erişim sağlar. + IEEE 1394 es un estándar que define un bus serial de alta velocidad. Este bus lleva también el nombre FireWire por Apple o i.Link por Sony. + http://www.kernel.org/pub/linux/libs/ieee1394/libraw1394-2.1.0.tar.xz + hardware/firewire/libraw1394/pspec.xml + + + libraw1394 + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libraw1394-devel + Development files for libraw1394 + libraw1394 için geliştirme dosyaları + + libraw1394 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 2.1.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-15 + 2.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + dmidecode + http://www.nongnu.org/dmidecode/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware + Tool to analyse BIOS DMI data + BIOS DMI verisi inceleme araçları + Dmidecode rapporte des informations à propos du matériel composant votre système tel qu'il est décrit dans votre BIOS. Cette information comprends typiquement le fabricant du système, le nom du modèle, le numéro de série, la version du BIOS, balises de traçabilité ainsi que beaucoup d'autres détails plus ou moins intéressants et fiables en fonction du fabricant. + dmidecode reports information about x86/ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. + dmidecode, bilgisayarınızın BIOS'unda verilmiş olan bilgilerin görüntülenmesini sağlar. Üretici ismi, model ismi, seri numarası, BIOS sürümü ve sistem üreticisine bağlı olarak değişiklik gösteren birçok bilgi, dmidecode ile görüntülenebilir. + http://download.savannah.gnu.org/releases/dmidecode/dmidecode-2.12.tar.gz + hardware/info/dmidecode/pspec.xml + + + dmidecode + + /usr/bin + /usr/sbin + /usr/share/doc + /usr/share/man + + + laptop-detect + + + + + 2014-01-22 + 2.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-01-25 + 2.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + media-player-info + http://cgit.freedesktop.org/media-player-info + + PisiLinux Community + admins@pisilinux.org + + BSD + hardware + Media player capability database + Medya oynatıcısı yetenek veritabanı + media-player-info is a repository of data files describing media player capabilities. These files contain information about the directory layout to use to add music to these devices, about the supported file formats, etc. + media-player-info, ortam oynatıcılarının yeteneklerini tanımlayan bir dosya demetidir. Bu dosyalar bu aygıtların hangi dizinlerine müzik dosyaları koyulması gerektiğini, hangi dosya biçimlerinin desteklendiğini tanımlar. + http://www.freedesktop.org/software/media-player-info/media-player-info-22.tar.gz + + eudev-devel + python3-devel + + hardware/info/media-player-info/pspec.xml + + + media-player-info + + /lib/udev/rules.d + /lib/udev + /usr/share/media-player-info + /usr/share/doc + + + + + 2015-02-16 + 22 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-07-05 + 21 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-25 + 19 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-20 + 17 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2011-10-05 + 15 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gkrellm + http://www.gkrellm.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + service + hardware + A compact and clean system monitoring tool + Sade görünümlü sistem durumu izleyicisi + A program to monitor system status, and to collect system information such as memory usage, cpu temperature etc. + Bilgisayarınızın bileşenlerinin durumunu takip edebileceğiniz, hafıza kullanımı, işlemci sıcaklığı gibi bilgiler veren bir araç. + gkrellm + http://members.dslextreme.com/users/billw/gkrellm/gkrellm-2.3.5.tar.gz + + gnutls-devel + gtk2-devel + pango-devel + libX11-devel + glib2-devel + libgcrypt-devel + libICE-devel + libSM-devel + + + drop_privileges.patch + gkrellmd-conf.patch + + hardware/info/gkrellm/pspec.xml + + + gkrellm + + gnutls + gtk2 + pango + glib2 + libX11 + libgcrypt + libICE + gdk-pixbuf + libSM + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share + /usr/share/man + + + System.Service + + + gkrellm.desktop + gkrellm.png + + + + gkrellm-devel + Development files for gkrellm + gkrellm için geliştirme dosyaları + + gkrellm + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-17 + 2.3.5 + Rebuild Aydın Demirel aydin.demirel@pisilinux.org + + 2014-04-07 + 2.3.5 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-23 + 2.3.5 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 2.3.5 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-06 + 2.3.5 + Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-15 + 2.3.5 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + b43-firmware + http://www.linuxwireless.org/en/users/Drivers/b43 + + PisiLinux Community + admins@pisilinux.org + + freedist + data + hardware.firmware + Firmware for Broadcom B43 wireless network chips + Broadcom B43 kablosuz ağ çipleri için aygıt yazılımı + Firmware for Broadcom wireless network chips + Broadcom kablosuz ağ çipleri için aygıt yazılımı + http://mirror2.openwrt.org/sources/wl_apsta-3.130.20.0.o + http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz2 + + b43-fwcutter + + hardware/firmware/b43-firmware/pspec.xml + + + b43-firmware + + /lib/firmware + + + + + 2014-01-17 + 5.100.138 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-15 + 5.100.138 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + b43-fwcutter + http://bu3sch.de/b43/fwcutter + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.firmware + Firmware Tool for Broadcom 43xx + Broadcom kablosuz sürücüleri için firmware üretme aracı + Firmware Tool for Broadcom 43xx based wireless network devices using the mac80211 wireless stack + b43-fwcutter Broadcom kablosuz sürücüleri için firmware üretmek için kullanılan basit bir araç içerir. + http://bues.ch/b43/fwcutter/b43-fwcutter-018.tar.bz2 + hardware/firmware/b43-fwcutter/pspec.xml + + + b43-fwcutter + + /usr/bin + /usr/share/doc + /usr/share/man/man1 + + + + + 2014-02-04 + 018 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-11-15 + 015 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + alsa-firmware + http://www.alsa-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv2+ + LGPLv2+ + BSD + data + hardware.firmware + firmware (logiciel interne) pour l'Architecture Son Linux Avancée (ALSA). + Firmware for several ALSA-supported sound cards + Çeşitli ALSA destekli ses kartları için firmware dosyaları + alsa-firmware contains the firmware binaries for a number of sound cards supported by the ALSA project. + alsa-firmware, ALSA sürücüleri tarafından desteklenen bazı ses kartları için gerekli firmware dosyalarını içerir. + ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.0.29.tar.bz2 + hardware/firmware/alsa-firmware/pspec.xml + + + alsa-firmware + + /usr/share/alsa/firmware + /lib/firmware + /usr/share/doc + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-06 + 1.0.27 + Remove conflicted ctefx.bin file, it is in linux-firmware package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-22 + 1.0.27 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-10 + 1.0.27 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-29 + 1.0.25.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + usbmuxd + http://marcansoft.com/blog/iphonelinux/usbmuxd + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + service + library + hardware.mobile + Daemon for communicating with Apple's iPod Touch and iPhone + Apple iPod Touch ve iPhone iletişim hizmeti + usbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. + usbmuxd, Apple iPod Touch ve iPhone cihazlarıyla iletişim kurmak için gerekli bir sistem hizmetidir. Aynı anda, birden fazla cihaza bağlanma imkanı sağlar. + http://www.libimobiledevice.org/downloads/libusbmuxd-1.0.9.tar.bz2 + + libplist-devel + + hardware/mobile/usbmuxd/pspec.xml + + + usbmuxd + + libplist + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/sbin + /lib/udev/rules.d + + + + usbmuxd-devel + Development files for usbmuxd + usbmuxd için geliştirme dosyaları + + usbmuxd + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 1.0.9 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 1.0.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-20 + 1.0.8 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libplist + http://matt.colyer.name/projects/iphone-linux + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2 + library + app:console + hardware.mobile + Library for manipulating Apple Binary and XML Property Lists + Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için kütüphane + libplist is a library for manipulating Apple Binary and XML Property Lists. + libplist, Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için gerekli bir kütüphanedir. + http://www.libimobiledevice.org/downloads/libplist-1.11.tar.bz2 + + libxml2-devel + python-devel + cython + + hardware/mobile/libplist/pspec.xml + + + libplist + + libxml2 + python + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libplist-devel + Development files for libplist + libplist için geliştirme dosyaları + + libplist + libxml2-devel + python-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-31 + 1.11 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 1.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-02 + 1.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-01 + 1.8 + Cosmetics Fixed + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-10-20 + 1.8 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libimobiledevice + http://www.libimobiledevice.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2 + library + app:console + hardware.mobile + Library for connecting to mobile devices + libimobiledevice is a library for connecting to mobile devices including phones and music players + http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.7.tar.bz2 + + gnutls-devel + usbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel + + hardware/mobile/libimobiledevice/pspec.xml + + + libimobiledevice + + gnutls + usbmuxd + libplist + libtasn1 + libgcrypt + + + /usr/lib + /usr/bin + /usr/share/man/man1 + /usr/share/doc/libimobiledevice + + + + libimobiledevice-devel + Development files for libimobiledevice + + gnutls-devel + usbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel + libimobiledevice + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-01-25 + 1.1.7 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 1.1.6 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 1.1.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-04 + 1.1.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-12 + 1.1.4 + Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-03-18 + 1.1.4 + fix cython disagreement + Erdinç Gültekin + admins@pisilinux.org + + + 2012-10-20 + 1.1.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + nvidia-xconfig + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.graphics + The NVIDIA X Configuration Tool + NVIDIA X yapılandırma araçı + The NVIDIA X Configuration Tool + NVIDIA X yapılandırma araçı + ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-355.11.tar.bz2 + hardware/graphics/nvidia-xconfig/pspec.xml + + + nvidia-xconfig + + /usr/bin + /usr/share/man + /usr/share/doc + + + nvidia-bug-report.sh + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-08 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-30 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-29 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + nvidia-settings + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + hardware.graphics + The NVIDIA X Server Settings tool + NVIDIA X Sunucusu ayarlama aracı + The nvidia-settings utility is a tool for configuring the NVIDIA graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate. + nvidia-settings aracı NVIDIA grafik sürücülerini ayarlamak için kullanılan bir araçtır. NVIDIA X sürücüsü ile iletişime geçerek çalışır, durum bilgisini gerekli olduğu gibi uygular, günceller. + nvidia-settings + ftp://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-355.11.tar.bz2 + + atk-devel + gtk3-devel + cairo-devel + fontconfig-devel + gtk2-devel + libXext-devel + libXv-devel + gdk-pixbuf-devel + mesa-devel + libvdpau-devel + + hardware/graphics/nvidia-settings/pspec.xml + + + nvidia-settings + + atk + cairo + glib2 + libX11 + freetype + fontconfig + gtk2 + libXext + libXv + gdk-pixbuf + libXxf86vm + pango + + + /usr/bin + /etc/X11/Xsession.d + /usr/lib + /usr/share/applications + /usr/share/pixmaps + /usr/share/man + /usr/share/doc + + + nvidia-settings.desktop + nvidia-settings.png + 21-nvidia-settings.sh + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-29 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-06 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-30 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + vbetool + http://www.codon.org.uk/~mjg59/vbetool/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.graphics + Alter video hardware state through video BIOS + Gerçek kipte ekran BIOS değiştirme aracı (örn. ekran kartını yeniden başlatmak için) + vbetools is a real-mode video BIOS code to alter hardware state. Vbetool uses lrmi in order to run code from the video BIOS. It is able to alter DPMS states, save/restore video card state and attempt to initialize the video card from scratch. + Donanım durumunu değiştiren gerçek kipli video BIOS kodudur. Video BIOS'undan gelen kodları çalıştırmak için lrmi kullanır. Video kartının DPMS ve kaydet/tekrar inşaa et durumunun değiştirilmesini sağlar ve video kartının hatalı durumdan başlatılmasına çalışır. + http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.1.tar.gz + + libx86-devel + pciutils-devel + + + vbetool-1.0-build-as-needed.patch + unsigned_int.patch + + hardware/graphics/vbetool/pspec.xml + + + vbetool + + libx86 + pciutils + + + /usr/share/doc + /usr/share/man + /usr/sbin + + + + + 2014-05-24 + 1.1 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + @@ -10827,6 +24227,154 @@ + + + rsync + http://rsync.samba.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + app:console + network.share + File transfer program to keep local copies in sync with remote files + Dosya yedekleme ve eşleme uygulaması + rsync is a tool to keep local copies of remote files in sync (i.e. make sure local files are exact copies of remote files). + rsync, uzaktaki dosyaları senkronize tutan bir dosya transfer uygulamasıdır. + http://rsync.samba.org/ftp/rsync/rsync-3.1.1.tar.gz + + acl-devel + attr-devel + popt-devel + zlib-devel + + network/share/rsync/pspec.xml + + + rsync + + acl + attr + popt + zlib + + + /usr/bin + /usr/share/doc + /usr/share/man + /etc + + + System.Service + + + rsyncd.conf + rsyncd.conf.d + + + + + 2015-03-24 + 3.1.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-11 + 3.1.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-10 + 3.1.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-05 + 3.0.9 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + librsync + http://librsync.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + network.share + librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy + Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı + librsync implémente l'algorithme de la somme de contrôle tournante (rolling-checksum) pour la synchronisation rendue populaire par l'utilitaire rsync et utilisée par rproxy. Cet algorithme transfert les différences entre 2 fichiers sans nécessiter la présence des fichiers sur le même système. + librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system. + Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı. Bu algoritma iki dosya arasındaki farkları, iki dosyanın aynı sistemde olmasına ihtiyaç duymadan transfer eder. + librsync implementa el cómputo del rolling-checksum de la sincronización de archivos remotos, que fue popularizado por la herramienta rsync y se usa en rproxy. El algoritmo transfiere la diferencia de los 2 archivos sin la necesidad de tener ambos archivos en el mismo sistema. + mirrors://sourceforge/librsync/librsync-0.9.7.tar.gz + + popt-devel + + + librsync-0.9.7-largefiles.patch + librsync-link.patch + + network/share/librsync/pspec.xml + + + librsync + + popt + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/librsync + + + + librsync-devel + Development files for librsync + librsync için geliştirme dosyaları + + librsync + + + /usr/include + /usr/lib/librsync.so + /usr/share/man/man3 + + + + + 2014-02-01 + 0.9.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.9.7 + First release + Gökcen Eraslan + admins@pisilinux.org + + + farstream @@ -10893,6 +24441,1100 @@ + + + linux-atm + http://linux-atm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + network.connection + Tools to support ATM networking under Liunx + ATM ağ bağlantısı desteği için araçlar + linux-atm contains tools for Asynchronous Transfer Mode. Supports raw ATM connections (PVCs and SVCs), IP over ATM, LAN emulation, MPOA, Arequipa, and some others. + linux-atm ATM (Asynchronous Transfer Mode) bağlantısı için gerekli çeşitli araçlar ve kitaplıklarını içerir. + mirrors://sourceforge/project/linux-atm/linux-atm/2.5.2/linux-atm-2.5.2.tar.gz + + flex + + + man-pages.patch + + network/connection/linux-atm/pspec.xml + + + linux-atm + + flex + + + /lib/firmware + /usr/sbin + /usr/bin + /etc + /usr/lib + /usr/share/man + /usr/share/doc + + + + linux-atm-devel + Development files for linux-atm + linux-atm için geliştirme dosyaları + + linux-atm + + + /usr/include + + + + + 2015-04-13 + 2.5.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2010-10-13 + 2.5.1 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + ModemManager + http://projects.gnome.org/NetworkManager + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + service + network.connection + A manager framework for mobile broadband modems + Mobil modemler için yönetim katmanı + ModemManager provides a unified high level API for communicating with mobile broadband modems. + ModemManager, 3G ve GSM gibi mobil genişbant modemlerle D-Bus üzerinden iletişimi sağlayan bir sistem hizmetidir. + http://www.freedesktop.org/software/ModemManager/ModemManager-1.2.0.tar.xz + + ppp-devel + libqmi-devel + libmbim-devel + intltool + + network/connection/ModemManager/pspec.xml + + + ModemManager + + ppp + glib2 + libqmi + libmbim + eudev + libmm-glib + + + /usr/share/doc + /usr/sbin + /usr/share/icons + /usr/share/locale + /usr/share/dbus-1 + /usr/share/gir-1.0/ModemManager-1.0.gir + /lib/udev/rules.d/ + /etc/dbus-1/system.d/ + /usr/lib/ModemManager + /usr/lib/girepository-1.0/ModemManager-1.0.typelib + /usr/share/man/man8/ModemManager.8 + + + + ModemManager-devel + Development files for ModemManager + ModemManager için geliştirme dosyaları + + ModemManager + + + /usr/include/ModemManager/ + /usr/lib/pkgconfig/ModemManager.pc + + + + libmm-glib + D-Bus service for managing modems - shared libraries + + glib2 + + + /usr/bin + /usr/share/vala/vapi/libmm-glib.vapi + /usr/share/vala/vapi/libmm-glib.deps + /usr/lib/libmm-glib.so* + /usr/share/man/man8/mmcli.8 + + + + libmm-glib-devel + Development files for libmm-glib + libmm-glib için geliştirme dosyaları + + libmm-glib + glib2-devel + ModemManager-devel + + + /usr/include/libmm-glib/ + /usr/lib/pkgconfig/mm-glib.pc + + + + + 2014-02-17 + 1.2.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-20 + 1.0.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-08-28 + 5.3.96 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + openconnect + http://www.infradead.org/openconnect.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + network.connection + A client for Cisco's AnyConnect VPN, which uses HTTPS and DTLS protocols + Cisco AnyConnect VPN için HTTP ve DTLS protokollerini kullanan istemci + openconnect provides the core HTTP and authentication support from the OpenConnect VPN client, to be used by GUI authentication dialogs for NetworkManager etc. + openconnect, NetworkManager gibi grafik arayüz yoluyla kimlik doğrulama yapan araçlar için OpenConnect VPN kimlik doğrulama desteği sunan bir araç ve kitaplıktır. + ftp://ftp.infradead.org/pub/openconnect/openconnect-7.06.tar.gz + + intltool + python-devel + openssl-devel + libxml2-devel + zlib-devel + + network/connection/openconnect/pspec.xml + + + openconnect + + zlib + libxml2 + openssl + + + /usr/bin/openconnect + /usr/share/man/man8 + /usr/share/doc + /usr/share/locale + /usr/sbin + /usr/lib + + + + openconnect-devel + Development files and headers for openconnect + openconnect için geliştirme dosyaları ve başlıkları + + openconnect + zlib-devel + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-15 + 7.06 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-03-09 + 5.01 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-07-29 + 5.01 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-05 + 5.01 + fix remove dep. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-07-04 + 5.01 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-08-28 + 4.06 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + bridge-utils + http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.connection + Linux network bridging utilities + Linux için ağ köprüleme yardımcı uygulamaları + Containts userspace driver for IEEE 802.1d ethernet bridging (plus Spanning Tree protocol) for the linux kernel. + Linux için ağ köprüleme yardımcı uygulamaları. + http://downloads.sourceforge.net/project/bridge/bridge/bridge-utils-1.5.tar.gz + + bridge-utils-1.0.4-inc.patch + bridge-utils-1.2-params.patch + bridge-utils-1.5-linux_3.8.x.patch + + network/connection/bridge-utils/pspec.xml + + + bridge-utils + + /usr/include + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2014-01-19 + 1.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-28 + 1.5 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + wpa_supplicant + http://hostap.epitest.fi/wpa_supplicant/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + service + network.connection + IEEE 802.1X/WPA supplicant for secure wireless transfers + Güvenli kablosuz erişim için IEEE 802.1X/WPA sağlayıcı + wpa_supplicant is a WPA supplicant with support for WPA and WPA2. + WPA ve WPA2 desteği olan ve Linux, BSD ve Windows ortamları için bir WPA istemcisidir. + http://hostap.epitest.fi/releases/wpa_supplicant-2.4.tar.gz + + wpa_supplicant.config + + + libnl-devel + openssl-devel + dbus-devel + readline-devel + + + ubuntu/01_use_pkg-config_for_pcsc-lite_module.patch + wpa_supplicant-1.0-dbus-path-fix.patch + wpa_supplicant-1.0-do-not-call-dbus-functions-with-NULL-path.patch + mandriva/wpa_supplicant-0.6.3-WEP232.patch + fedora/wpa_supplicant-openssl-more-algs.patch + fedora/wpa_supplicant-flush-debug-output.patch + fedora/wpa_supplicant-assoc-timeout.patch + suse/wpa_supplicant-errormsg.patch + + network/connection/wpa_supplicant/pspec.xml + + + wpa_supplicant + + libnl + dbus + openssl + readline + + + /etc + /etc/dbus-1 + /usr/sbin + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/dbus-1/system-services + /run + + + System.Service + + + wpa_supplicant.conf + wpa_supplicant.confd + wpa_supplicant.logrotate + wpa_supplicant.py + + + + + 2015-07-15 + 2.4 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-06-02 + 2.1 + Version Bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-03-02 + 2.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-14 + 1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + NetworkManager + http://projects.gnome.org/NetworkManager + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2+ + app:console + network.connection + Network connection manager powered by D-Bus and UDEV + D-Bus üzerinden yapılandırmaya izin veren, gelişmiş bir ağ yönetim altyapısı + NetworkManager attempts to keep an active network connection available at all times. + NetworkManager, etkin bir bağlantı kurmak ve onu sürekli ayakta tutmak üzere tasarlanmış, D-Bus ve UDEV teknolojilerini kullanan bir ağ yönetim altyapısıdır. + https://download.gnome.org/sources/NetworkManager/1.0/NetworkManager-1.0.4.tar.xz + + tr.po + + + intltool + ppp-devel + nss-devel + newt-devel + nspr-devel + libnl-devel + libsoup-devel + bluez-libs-devel + iptables-devel + wpa_supplicant + dbus-glib-devel + gobject-introspection + libndp-devel + libmm-glib-devel + dbus-devel + glib2-devel + polkit-devel + readline-devel + eudev-devel + libutil-linux-devel + ConsoleKit-devel + + + disable_set_hostname.patch + + network/connection/NetworkManager/pspec.xml + + + NetworkManager + + dbus + nspr + glib2 + polkit + readline + dbus-glib + libutil-linux + eudev + nss + newt + ppp + libnl + libsoup + bluez-libs + iproute2 + iptables + libmm-glib + ModemManager + wpa_supplicant + libndp + ConsoleKit + mobile-broadband-provider-info + + + /etc + /usr/share + /etc/dbus-1 + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /lib/udev + /usr/sbin + /lib/udev/rules.d + /usr/libexec + /run/NetworkManager + /lib/systemd/system + /usr/share/locale + /var/lib/NetworkManager + /etc/NetworkManager/system-connections + /usr/lib/tmpfiles.d/NetworkManager.conf + /etc/polkit-1/localauthority/10-vendor.d + + + System.Service + + + NetworkManager.confd + tmpfiles.conf + NetworkManager.conf + migrate-comar-network-profiles + gentoo/01-org.freedesktop.NetworkManager.settings.modify.system.pkla + 01-org.freedesktop.ModemManager1.rules + 01-org.freedesktop.NetworkManager.settings.modify.system.rules + + + + NetworkManager-devel + Development files for NetworkManager + NetworkManager için geliştirme dosyaları + + glib2-devel + dbus-glib-devel + NetworkManager + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2015-07-22 + 1.0.4 + fixed missing dep and added rules files + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + + + + 2015-06-14 + 1.0.2 + fixed missing dep and added rules files + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + + + + 2015-05-14 + 1.0.2 + Version bump. + Vedat Demir + vedat@pisilinux.org + + systemRestart + + + + 2015-01-07 + 1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + + + + 2014-05-17 + 0.9.8.10 + Version bump. + Vedat Demir + vedat@pisilinux.org + + systemRestart + + + + 2014-01-10 + 0.9.8.8 + Version bump. Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + systemRestart + + + + 2013-09-08 + 0.9.8.2 + /var/run => /run + Marcin Bojara + marcin@pisilinux.org + + systemRestart + + + + 2013-07-27 + 0.9.8.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-02-21 + 0.9.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-23 + 0.9.7.995 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-13 + 0.9.6.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mobile-broadband-provider-info + http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders + + PisiLinux Community + admins@pisilinux.org + + public-domain + data + network.connection + Service provider specific settings of mobile broadband providers in different countries + Çeşitli ülkelerdeki mobil genişbant servis sağlayıcıları hakkında bilgileri içeren ayar veritabanı + The mobile-broadband-provider-info package contains listings of mobile broadband (3G) providers and associated network and plan information. + mobile-broadband-provider-info paketi, dünya üzerindeki mobil genişbant sağlayıcılarının ve ilgili tarifelerinin listesini tutan bir veritabanıdır. + ftp://ftp.gnome.org/pub/gnome/sources/mobile-broadband-provider-info/20120614/mobile-broadband-provider-info-20120614.tar.xz + network/connection/mobile-broadband-provider-info/pspec.xml + + + mobile-broadband-provider-info + + /usr/share + + + + + 2012-08-28 + 20120614 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + network-manager-applet + http://projects.gnome.org/NetworkManager + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:gui + network.connection + Network connection manager GUI interface + NetworkManager için güçlü bir grafik arayüzü + network-manager-applet is a powerful graphical frontend to NetworkManager. + network-manager-applet, NetworkManager için GTK+ arayüz kitaplığı kullanılarak yazılmış güçlü bir arayüzdür. + http://ftp.gnome.org/mirror/gnome.org/sources/network-manager-applet/1.0/network-manager-applet-1.0.4.tar.xz + + gtk2-devel + gtk3-devel + libsecret-devel + cairo-devel + pango-devel + libnotify-devel + libmm-glib-devel + gdk-pixbuf-devel + at-spi2-core-devel + NetworkManager-devel + iso-codes + dbus-devel + glib2-devel + dbus-glib-devel + atk-devel + eudev-devel + intltool + + network/connection/network-manager-applet/pspec.xml + + + network-manager-applet + + gtk3 + atk + cairo + pango + libsecret + libnotify + libmm-glib + gdk-pixbuf + NetworkManager + at-spi2-core + dbus + glib2 + dbus-glib + eudev + + + /usr/bin + /usr/share/libnm-gtk + /usr/lib/ + /usr/share/icons + /usr/share/applications + /usr/share/nm-applet + /etc/dbus-1 + /usr/share + /usr/libexec + /etc/gconf/schemas + /etc/xdg/autostart + /usr/share/man + /usr/share/doc + /usr/share/locale + + + + network-manager-applet-devel + network-manager-applet için geliştirme dosyaları + network-manager-applet için geliştirme dosyaları + + network-manager-applet + NetworkManager-devel + dbus-glib-devel + gtk3-devel + + + /usr/include/libnm-gtk + /usr/lib/pkgconfig + + + + + 2015-07-22 + 1.0.4 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-13 + 1.0.2 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-11 + 1.0.2 + Version Bump + Vedat Demir + vedat@pisilinux.org + + + 2015-01-13 + 1.0.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-21 + 0.9.8.10 + Version Bump + Vedat Demir + vedat@pisilinux.org + + + 2014-02-19 + 0.9.8.8 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-17 + 0.9.8.8 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-07-27 + 0.9.8.2 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-04 + 0.9.8.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-21 + 0.9.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-26 + 0.9.7.995 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 0.9.6.4 + New version + Ertan Güven + ertan@pisilinux.org + + + 2012-08-28 + 0.9.6.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + netcf + https://fedorahosted.org/netcf + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + library + network.connection + A library for configuring network interfaces + Ağ arayüzlerini yapılandırmak için geliştirilmiş bir kitaplık + netcf is a cross-platform network configuration library for modifying the network configuration of a system. Network configurations are expressed in XML format. + netcf, XML biçiminde tuttuğu ağ arayüz bilgilerini kullanarak platform-bağımsız ağ yapılandırması olanağı sunan bir kitaplıktır. + https://fedorahosted.org/released/netcf/netcf-0.2.8.tar.gz + + libxml2-devel + libxslt-devel + libnl-devel + readline-devel + augeas-devel + + network/connection/netcf/pspec.xml + + + netcf + + zlib + libnl + augeas + libxml2 + libxslt + readline + libgcrypt + libgpg-error + + + /usr/bin + /usr/libexec/ + /etc/rc.d/init.d + /usr/lib + /usr/share/netcf + /usr/share/doc + /usr/share/man/man1/ncftool.1 + + + + netcf-devel + Development files for netcf + netcf için geliştirme dosyaları + + augeas-devel + libxslt-devel + netcf + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-12-31 + 0.2.8 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-02-16 + 0.2.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-04-07 + 0.2.3 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-30 + 0.2.3 + rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-01-14 + 0.2.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + ppp + http://samba.org/ppp + + PisiLinux Community + admins@pisilinux.org + + BSD + GPLv2 + service + network.connection + Point-to-point protocol - patched for PPPOE + Modem ile internet erişimi için PPP (point to point protocol) noktadan noktaya erişim protokolü + The Point-to-Point Protocol (PPP) provides a standard way to transmit datagrams over a serial link. + PPP protokolü veriyi seri bir bağlantı üzerinden transfer etmek için standart bir yol sağlar. + http://samba.org/ftp/ppp/ppp-2.4.6.tar.gz + http://www.netservers.net.uk/gpl/ppp-dhcpc.tgz + + libpcap-devel + openssl-devel + pam-devel + + + gentoo/02_all_make-vars.patch + gentoo/04_all_mpls.patch + gentoo/06_all_killaddr-smarter.patch + gentoo/08_all_wait-children.patch + gentoo/10_all_defaultgateway.patch + gentoo/12_all_linkpidfile.patch + gentoo/16_all_auth-fail.patch + gentoo/18_all_defaultmetric.patch + gentoo/20_all_dev-ppp.patch + gentoo/24_all_passwordfd-read-early.patch + gentoo/26_all_pppd-usepeerwins.patch + gentoo/28_all_connect-errors.patch + gentoo/30_all_Makefile.patch + gentoo/32_all_pado-timeout.patch + gentoo/34_all_lcp-echo-adaptive.patch + ppp-2.3.6-sample.patch + ppp-2.4.3-fix64.patch + ppp-2.4.2-change_resolv_conf.patch + nostrip.patch + ppp-2.4.3-local.patch + ppp-2.4.3-ipv6-accept-remote.patch + ppp-2.4.5-ppp_resolv.patch + ppp-2.4.5-var_run_ppp.patch + ppp-2.4.6-eaptls-mppe-0.99.patch + + network/connection/ppp/pspec.xml + + + ppp + + libpcap + pam + openssl + + + /etc + /usr/lib/tmpfiles.d/ppp.conf + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man + /run/ppp + + + tmpfiles.conf + options-pptp + options-pppoe + chat-default + ip-up + ip-down + confd.ppp0 + ppp.pamd + ppp.logrotate + + + + ppp-devel + Development files for ppp + ppp için geliştirme dosyaları + + ppp + + + /usr/include + + + + + 2014-04-03 + 2.4.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-10 + 2.4.5 + Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-12 + 2.4.5 + service.py no longer needed. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-23 + 2.4.5 + Add service.py + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-13 + 2.4.5 + First release + Gökcen Eraslan + admins@pisilinux.org + + + lynx @@ -11780,6 +26422,504 @@ + + + rrdtool + http://oss.oetiker.ch/rrdtool/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + network.analyzer + A system to store and display time-series data + Zaman serisi verilerini saklamak ve göstermek için bir araç + RRD is the acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine/room temperature, server load average). + RRD, Round Robin Database için kullanılan bir kısaltmadır. RRD, zaman serisi verilerini (ör. ağ bantgenişliği, makine/oda sıcaklığı, ortalama sunucu yükü) saklamak ve göstermek için kullanılan bir sistemdir. + http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.5.3.tar.gz + + lua-devel + tcl-devel + ruby-devel + cairo-devel + pango-devel + libart_lgpl-devel + dejavu-fonts + perl + glib2-devel + python-devel + libxml2-devel + tcp-wrappers-devel + groff + + network/analyzer/rrdtool/pspec.xml + + + rrdtool + + lua + tcl + ruby + cairo + pango + libart_lgpl + dejavu-fonts + perl + glib2 + python + libxml2 + tcp-wrappers + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/rrdtool + + + + rrdtool-devel + + rrdtool + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-30 + 1.5.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-25 + 1.5.2 + Rebuild for ruby, ver. bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-20 + 1.4.7 + Rebuild for lua. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-28 + 1.4.7 + Rebuild, rm unused deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-12-01 + 1.4.7 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2013-05-29 + 1.4.7 + Build for ruby 2.0 + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-09-01 + 1.4.7 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + avahi + http://avahi.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + network.analyzer + Local network service discovery + Yerel ağ hizmeti bulma sistemi + avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. + avahi yerel ağ üzerindeki hizmetleri tespit etmeyi kolaylaştıran bir sistemdir. Bu sayede, bilgisayarınızı ağa dahil ettikten sonra anında mevcut bilgisayarları ve yazıcıları görebilir ve kullanabilirsiniz. + http://avahi.org/download/avahi-0.6.31.tar.gz + + gtk2-devel + gtk3-devel + libcap-devel + libdaemon-devel + gobject-introspection-devel + libepoxy-devel + at-spi2-core-devel + gdbm-devel + intltool + + + avahi-0.6.31-no-deprecations.patch + + network/analyzer/avahi/pspec.xml + + + avahi-glib + Libraries for easy use of avahi from glib applications + Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar + + glib2 + avahi + avahi-libs + + + /usr/lib/libavahi-glib.* + /usr/lib/libavahi-gobject.* + + + + avahi-glib-devel + Development files for avahi-glib + avahi-glib için geliştirme dosyaları + + avahi-glib + avahi-devel + + + /usr/include/avahi-glib + /usr/include/avahi-gobject + /usr/lib/pkgconfig/avahi-glib.pc + /usr/lib/pkgconfig/avahi-gobject.pc + + + + avahi-ui + Gtk user interface library for Avahi + avahi için geliştirme dosyaları + + gdbm + gtk2 + glib2 + avahi-libs + avahi-glib + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib/libavahi-ui.so* + + + + avahi-ui-devel + Development files for avahi-ui + avahi-ui için geliştirme dosyaları + + gtk2-devel + avahi-ui + avahi-devel + avahi-glib-devel + + + /usr/include/avahi-ui + /usr/lib/pkgconfig/avahi-ui.pc + + + + avahi-ui-gtk3 + Gtk3 user interface library for Avahi + avahi-gtk3, Gtk3 user interface library for Avahi + + gdbm + glib2 + gtk3 + avahi-libs + avahi-glib + atk + cairo + pango + gdk-pixbuf + + + /usr/lib/libavahi-ui-gtk3.so* + + + + avahi-ui-gtk3-devel + Development files for avahi-ui-gtk3 + avahi-ui-gtk3 için geliştirme dosyaları + + gtk2-devel + avahi-ui-gtk3 + avahi-devel + avahi-glib-devel + gtk3-devel + + + /usr/lib/pkgconfig/avahi-ui-gtk3.pc + + + + avahi-ui-tools + UI tools for mDNS browsing + Grafiksel mDNS tarama araçları + + gtk3 + glib2 + avahi + avahi-ui + avahi-glib + avahi-ui-gtk3 + avahi-libs + gtk3 + + + /usr/lib/python*/site-packages + /usr/bin/b* + /usr/bin/avahi-discover* + /usr/bin/avahi-bookmarks + /usr/share/man/man1/b* + /usr/share/man/man1/avahi-discover* + /usr/share/man/man1/avahi-bookmarks* + /usr/share/avahi/interfaces + /usr/share/applications/b* + /usr/share/applications/avahi-discover.desktop + + + + avahi-compat-howl + Libraries for howl compatibility + howl uyumluluk kitaplıkları + + avahi + avahi-libs + + + /usr/lib/libhowl.so* + + + + avahi-compat-howl-devel + Development files for avahi-compat-howl + avahi-compat-howl için geliştirme dosyaları + + avahi-compat-howl + + + /usr/include/avahi-compat-howl + /usr/lib/pkgconfig/avahi-compat-howl.pc + /usr/lib/pkgconfig/howl.pc + + + + avahi-compat-libdns_sd + Libraries for Apple Bonjour mDNSResponder compatibility + libdns_sd uyumluluk kitaplıkları + + avahi + avahi-libs + + + /usr/lib/libdns_sd.so* + + + + avahi-compat-libdns_sd-devel + Development files for avahi-compat-libdns_sd + avahi-compat-libdns_sd için geliştirme dosyaları + + avahi-compat-libdns_sd + + + /usr/include/avahi-compat-libdns_sd + /usr/include/dns_sd.h + /usr/lib/pkgconfig/avahi-compat-libdns_sd.pc + /usr/lib/pkgconfig/libdns_sd.pc + + + + avahi-libs + Libraries needed to run programs that use avahi + Avahi kullanan uygulamaları çalıştırmak için gerekli kitaplıklar + + dbus + + + /usr/lib/libavahi-common.so* + /usr/lib/libavahi-client.so* + + + + avahi + + dbus + expat + libcap + libdaemon + avahi-libs + + + /usr/sbin/avahi-daemon + /usr/lib/libavahi-core.so* + /etc/avahi/avahi-daemon.conf + /etc/avahi/hosts + /etc/avahi/services/ssh.service + /etc/dbus-1/system.d/avahi-dbus.conf + /usr/share/avahi + /usr/share/dbus-1/interfaces/*.xml + /usr/share/dbus-1/system-services + /usr/lib/avahi/service* + /lib/systemd/system + /usr/share/locale + /usr/share/doc + /usr/share/man/man5/* + /usr/share/man/man8/avahi-daemon.* + /run/avahi-daemon + /usr/lib/tmpfiles.d/avahi.conf + + + System.Service + System.Package + + + avahi.conf + + + + avahi-autoipd + Link-local IPv4 address automatic configuration daemon (IPv4LL) + Link-local IPv4 adresi otomatik yapılandırma hizmeti (IPv4LL) + + libdaemon + + + /etc/avahi/avahi-autoipd.action + /usr/sbin/avahi-autoipd + /usr/share/man/man8/avahi-autoipd.* + /var/lib/avahi-autoipd + + + + avahi-dnsconfd + Configure local unicast DNS settings based on information published in mDNS + Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti + + libdaemon + avahi + avahi-libs + + + /etc/avahi/avahi-dnsconfd.action + /usr/sbin/avahi-dnsconfd + /usr/share/man/man8/avahi-dnsconfd.* + + + System.Service + + + + avahi-tools + Command line tools for mDNS browsing and publishing + mDNS taramak ve yayınlamak için komut satırı araçları + + gdbm + avahi + avahi-libs + + + /usr/bin + /usr/share/man/man1 + + + + avahi-devel + Development files for avahi + avahi için geliştirme dosyaları + + avahi-libs + + + /usr/lib/pkgconfig/avahi-core.pc + /usr/lib/pkgconfig/avahi-client.pc + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/include/avahi-client + /usr/include/avahi-common + /usr/include/avahi-core + + + + + 2014-05-20 + 0.6.31 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-24 + 0.6.31 + rebuild for unused + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-08 + 0.6.31 + Add avahi.conf, fix build + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-17 + 0.6.31 + Fix deps + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-06-27 + 0.6.31 + Fix avahi-daemon.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-03 + 0.6.31 + Avahi-ui-gtk3 added + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 0.6.31 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-05 + 0.6.31 + First release + Erdem Artan + admins@pisilinux.org + + + iptables @@ -11943,6 +27083,2499 @@ + + + telepathy-farstream + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + Telepathy client to handle media streaming channels + Ortam yayın kanallarıyla anlaşabilmek için gerekli Telepathy istemcisi + Telepathy-farstream is a Telepathy client that uses Farsight and Gstreamer to handle media streaming channels. It's used as a background process by other Telepathy clients, rather than presenting any user interface of its own. + Telepathy-farstream, Farsight ve Gstreamer kitaplıklarını kullanan bir Telepathy istemcisidir. + http://telepathy.freedesktop.org/releases/telepathy-farstream/telepathy-farstream-0.6.2.tar.gz + + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + farstream-devel + gstreamer-next-devel + + network/chat/telepathy-farstream/pspec.xml + + + telepathy-farstream + library + + dbus + glib2 + dbus-glib + farstream + gstreamer-next + telepathy-glib + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + + + + telepathy-farstream-docs + Help files and API documents of telepathy-farstream library + telepathy-farstream kitaplığına ait yardım dosyaları ve API belgeleri + data:doc + + telepathy-farstream + + + /usr/share/gtk-doc + + + + telepathy-farstream-devel + Development files for telepathy-farstream + telepathy-farstream için geliştirme dosyaları + + telepathy-farstream + farstream-devel + gstreamer-next-devel + telepathy-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-20 + 0.6.2 + Version bump and fix name + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 0.0.17 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.0.17 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.0.17 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-qt5 + http://telepathy.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.chat + Qt based classes for Telepathy communication framework + Telepathy iletişim çatısı için Qt tabanlı sınıflar + The Telepathy project is about building a unified framework for many different kinds of real-time communications. telepathy-qt contains Qt-based base and proxy classes for use in connection managers and clients. + Telepathy projesi çeşitli gerçek zamanlı iletişim türleri için birleşik bir çatı oluşturmayı amaçlar. telepathy-qt bağlantı yöneticileri ve istemcilerde kullanılmak üzere Qt tabanlı temel ve vekil sınıfları içerir. + http://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-0.9.6.tar.gz + + cmake + qt5-base-devel + gobject-introspection-devel + dbus-glib-devel + libxml2-devel + farstream-devel + telepathy-farstream-devel + doxygen + + + glibc-2.20.patch + + network/chat/telepathy-qt5/pspec.xml + + + telepathy-qt5 + + glib2 + libgcc + qt5-base + telepathy-glib + telepathy-farstream + doxygen + + + /usr/lib + /usr/share/doc + + + + telepathy-qt5-devel + Development files for telepathy-qt5 + telepathy-qt5 için geliştirme dosyaları + + telepathy-qt5 + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-20 + 0.9.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.9.3 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.9.3 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-08-19 + 0.9.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + telepathy-mission-control + http://telepathy.freedesktop.org/wiki/Mission_Control + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + library + network.chat + Telepathy component managing connection managers + Bağlantı yöneticilerini düzenlemeya yarayan Telepathy bileşeni + telepathy-mission-control, or Mission Control, is a Telepathy component providing a way for end user applications to abstract some of the details of connection managers, to provide a simple way to manipulate a bunch of connection managers at once, and to remove the need to have in each program the account definitions and credentials. + telepathy-mission-control, diğer adıyla Mission Control, bağlantı yöneticilerini düzenlemenin zorluklarını kullanıcıdan soyutlamaya çalışan, basitçe hesap oluşturmanıza olanak tanıyan bir Telepathy bileşenidir. + http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.3.tar.gz + + libxslt-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + gtk-doc + NetworkManager-devel + docbook-xsl + + network/chat/telepathy-mission-control/pspec.xml + + + telepathy-mission-control + + dbus + glib2 + dbus-glib + NetworkManager + telepathy-glib + + + /usr/bin + /usr/lib/libmission-control-plugins.so.0* + /usr/lib/telepathy/mission-control-5 + /usr/share/man + /usr/share/doc + /usr/share/dbus-1 + /usr/share/glib-2.0 + + + + telepathy-mission-control-devel + Development files for telepathy-mission-control + telepathy-mission-control için geliştirme dosyaları + + telepathy-mission-control + telepathy-glib-devel + + + /usr/include/mission-control-5.5 + /usr/lib/libmission-control-plugins.so + /usr/lib/pkgconfig/mission-control-plugins.pc + /usr/share/gtk-doc/html/mission-control-plugins + + + + + 2015-11-22 + 5.16.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 5.16.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-19 + 5.16.0 + Version bump for upower. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 5.14.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-15 + 5.14.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-01 + 5.12.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-butterfly + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.chat + MSN connection manager for Telepathy + Telepathy için MSN bağlantı yöneticisi + telepathy-butterfly is an MSN connection manager that handles presence, personal messages and conversations. + telepathy-butterfly MSN için durum bilgisi, kişisel iletiler ve sohbeti destekleyen bir Telepathy eklentisidir. + http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-0.5.15.tar.gz + + dont-compile-py.patch + + network/chat/telepathy-butterfly/pspec.xml + + + telepathy-butterfly + + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + + + + + 2015-11-22 + 0.5.15 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.5.15 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-01 + 0.5.15 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-gabble + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + library + network.chat + A Jabber/XMPP connection manager for Telepathy + Telepathy için Jabber/XMPP bağlantı yöneticisi + telepathy-gabble is a Jabber/XMPP connection manager, that handles single and multi-user chats and voice calls. + telepathy-gabble, tek ve çoklu kullanıcılı sohbet, sesli aramalar gibi özellikler sunan Jabber/XMPP bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-gabble/telepathy-gabble-0.18.3.tar.gz + + libnice-devel + gobject-introspection-devel + glib2-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + libxslt-devel + gnutls-devel + sqlite-devel + libsoup-devel + libnice-devel + cyrus-sasl-devel + + network/chat/telepathy-gabble/pspec.xml + + + telepathy-gabble + + dbus + glib2 + gnutls + sqlite + libnice + libsoup + libxml2 + dbus-glib + telepathy-glib + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2015-11-21 + 0.18.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.15.3 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.15.3 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-03 + 0.15.3 + Dep added + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.15.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-salut + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + Link-local XMPP Telepathy connection manager + XMPP ile yerel-bağlantı iletişimini sağlayan Telepathy bağlantı yöneticisi. + telepathy-salut is Telepathy connection manager for link-local XMPP. Normally, XMPP does no support direct client-to-client interactions, since it requires authentication with a server. This package makes it is possible to establish an XMPP-like communications on a local network using zero-configuration networking. + telepathy-salut, yerel bir ağ üzerinde XMPP benzeri iletişimi mümkün kılan bir Telepathy bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-0.8.1.tar.gz + + libxslt-devel + glib2-devel + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + avahi-devel + avahi-glib-devel + libsoup-devel + openssl-devel + python-devel + sqlite-devel + cyrus-sasl-devel + + + fix_bork_in_tr_locale.patch + + network/chat/telepathy-salut/pspec.xml + + + telepathy-salut + + dbus + glib2 + sqlite + libsoup + libxml2 + openssl + dbus-glib + avahi-glib + avahi-libs + telepathy-glib + + + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + /usr/share/man + + + + + 2015-11-22 + 0.8.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 0.8.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.8.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.8.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libotr + http://www.cypherpunks.ca/otr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.chat + Portable OTR (Off The Record) messaging library + Taşınabilir OTR (Off The Record/Kayıt dışı) mesajlaşma kitaplığı + OTR messaging allows you to have private conversations over instant messaging. + OTR mesajlaşma, hızlı mesajlaşma araçları ile gizli sohbetler yapmanızı sağlar. + https://otr.cypherpunks.ca/libotr-4.1.0.tar.gz + + libgcrypt-devel + + network/chat/libotr/pspec.xml + + + libotr + + libgcrypt + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libotr-devel + Development files for libotr + libotr için geliştirme dosyaları + + libotr + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/libotr/html + + + + + 2015-11-22 + 4.1.0 + Rebuild, add dep + Alihan Öztürk + alihan@pisilinux.org + + + 2015-02-17 + 4.1.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-04-07 + 4.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 4.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-01 + 3.2.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-glib + http://telepathy.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.chat + GLib bindings for the Telepathy D-Bus protocol + Telepathy D-Bus protokolü için GLib bağlayıcıları + Telepathy-glib is the glib binding for the Telepathy unified framework for all forms of real time conversations, including instant messaging, IRC, voice calls and video calls. + Telepathy-glib, anında mesajlaşma, IRC, sesli ve görüntülü görüşmeler dahil her türlü anlık iletişim türlerini destekleyen Telepathy altyapısının GLib bağlayıcılarıdır. + http://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-0.24.1.tar.gz + + gobject-introspection-devel + dbus-devel + dbus-glib-devel + libxslt-devel + vala-devel + + network/chat/telepathy-glib/pspec.xml + + + telepathy-glib + GLib bindings for the Telepathy D-Bus protocol + library + + dbus + glib2 + dbus-glib + + + /usr/lib + /usr/share/gir-1.0 + /usr/share/doc + + + + telepathy-glib-docs + Help files and API documents of telepathy-glib library + telepathy-glib kitaplığına ait yardım dosyaları ve API belgeleri + data:doc + + telepathy-glib + + + /usr/share/gtk-doc + + + + telepathy-glib-devel + Development files for telepathy-glib + telepathy-glib için geliştirme dosyaları + + telepathy-glib + + + /usr/include + /usr/lib/pkgconfig + /usr/share/vala/vapi + + + + + 2015-11-20 + 0.24.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-25 + 0.24.0 + Version bump + Kamil Atlı + suvarice@gmail.com + + + 2013-11-26 + 0.23.0 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-07-09 + 0.20.2 + Enable vala bindings + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-12 + 0.20.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-22 + 0.20.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + telepathy-idle + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + IRC connection manager for Telepathy + Telepathy için IRC (Internet Relay Chat) bağlantı yöneticisi + telepathy-idle is a full-featured IRC connection manager for the Telepathy framework. + telepathy-idle Telepathy iletişim altyapısı için IRC (Internet Relay Chat) bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-idle/telepathy-idle-0.2.0.tar.gz + + telepathy-glib-devel + libxslt-devel + gobject-introspection-devel + glib2-devel + dbus-devel + dbus-glib-devel + + network/chat/telepathy-idle/pspec.xml + + + telepathy-idle + + glib2 + dbus-glib + telepathy-glib + + + /usr/lib + /usr/share/dbus-1 + /usr/share/doc + /usr/share/man + /usr/share/telepathy + + + + + 2015-11-22 + 0.2.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.1.12 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-01 + 0.1.12 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + pidgin + http://www.pidgin.im + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + network.chat + Instant messaging application previously known as gaim + Eski sürümleri gaim olarak bilinen, hızlı haberleşme aracı + Multi-protocol instant messaging tool for MSN, Yahoo, IRC, Jabber and Gadu-Gadu protocols. + Birçok protokolü (MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu gibi) destekleyen hızlı haberleşme aracıdır. + pidgin + mirrors://sourceforge/pidgin/pidgin-2.10.11.tar.bz2 + + intltool + glib2-devel + gtk2-devel + libXScrnSaver-devel + libSM-devel + gtkspell-devel + sqlite-devel + libxml2-devel + gstreamer-devel + farstream-devel + gst-plugins-base-devel + libidn-devel + avahi-glib-devel + dbus-glib-devel + NetworkManager-devel + nss-devel + tcl-devel + tcltk-devel + cyrus-sasl-devel + doxygen + libxslt-devel + gnutls-devel + atk-devel + cairo-devel + gdk-pixbuf-devel + ncurses-devel + python-devel + + + suse/ pidgin-2.10.11-send-video-enum.patch + suse/pidgin-2.10.11-add-dtmf-support.patch + suse/pidgin-2.10.11-fix-sound-play-fd-leak.patch + suse/pidgin-2.10.11-gst-references.patch + suse/pidgin-2.10.11-init-media-optional.patch + suse/pidgin-2.10.11-private-media.patch + suse/pidgin-ncurses-6.0-accessors.patch + + network/chat/pidgin/pspec.xml + + + pidgin + app:gui + + atk + dbus + gtk2 + cairo + glib2 + libSM + pango + libICE + sqlite + freetype + gtkspell + dbus-glib + gstreamer + fontconfig + gdk-pixbuf + libXScrnSaver + libpurple + + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/icons + /usr/share/sounds + /usr/share/dbus-1 + /usr/share/purple + /usr/share/pixmaps + /usr/lib/pidgin + /etc/gconf/schemas + /usr/share/appdata/ + /usr/share/locale + /usr/share/applications + + + + pidgin-devel + Development files of pidgin + pidgin paketine ait geliştirme dosyaları + library + + pidgin + libpurple-devel + gtk2-devel + + + /usr/include/pidgin + /usr/bin/dh_pidgin + /usr/share/man/man3/Pidgin* + /usr/lib/pkgconfig/pidgin.pc + + + + finch + Console based instant messaging application + Konsol tabanlı anında mesajlaşma istemcisi + app:console + + glib2 + libX11 + python + libxml2 + ncurses + gstreamer + libpurple + + + /usr/lib/gnt + /usr/lib/finch + /usr/lib/libgnt* + /usr/bin/finch + /usr/share/man/man1/finch* + + + + finch-devel + Development files of finch + finch paketine ait geliştirme dosyaları + library + + finch + libpurple-devel + + + /usr/include/gnt + /usr/include/finch + /usr/lib/pkgconfig/gnt* + /usr/lib/pkgconfig/finch* + + + + libpurple + The core library of pidgin, supports MSN, XMPP, ICQ, Gadu-Gadu and etc. + Pidgin projesine ait, MSN, XMPP, ICQ, Gadu-Gadu gibi protokolleri destekleyen anında mesajlaşma kitaplığı + library + + nss + tcl + dbus + nspr + perl + glib2 + tcltk + gnutls + libidn + libxml2 + dbus-glib + gstreamer + avahi-glib + avahi-libs + cyrus-sasl + gst-plugins-base + + + /usr/lib/purple-2 + /usr/bin/purple* + /usr/lib/libpurple* + + + + libpurple-devel + Development files of libpurple + libpurple paketine ait geliştirme dosyaları + library + + libpurple + + + /usr/share/aclocal + /usr/include/libpurple + /usr/share/man/man3/Purple* + /usr/lib/pkgconfig/purple.pc + + + + + 2015-11-20 + 2.10.11 + rebuild and add pisi-2.0. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-02-17 + 2.10.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-17 + 2.10.9 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-04 + 2.10.9 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-11 + 2.10.7 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-07-29 + 2.10.7 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-22 + 2.10.7 + fixing some errors + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-16 + 2.10.7 + Updated + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-07-25 + 2.10.6 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + telepathy-sunshine + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + network.chat + Gadu-Gadu connection manager for telepathy + Telepathy için Gadu Gadu bağlantı yöneticisi + Telepathy-sunshine is a Gadu-Gadu network connection manager. It supports the Nowe Gadu Gadu features such as UTF-8 encoding and new statuses. + Telepathy-sunshine Telepathy iletişim altyapısı için Gadu Gadu bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-sunshine/telepathy-sunshine-0.2.0.tar.gz + + dont-compile-py.patch + + network/chat/telepathy-sunshine/pspec.xml + + + telepathy-sunshine + + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/man + /usr/share/doc + + + + + 2015-11-22 + 2.0 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 2.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-01 + 2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-haze + http://developer.pidgin.im/wiki/Telepathy + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.chat + A multi-protocol Libpurple connection manager for Telepathy + Çok protokol destekli, libpurple üzerine kurulu bir Telepathy bağlantı yöneticisi + telepathy-haze is a connection manager built around libpurple, the core of Pidgin, as a Summer of Code project under the Pidgin umbrella. Ultimately, any protocol supported by libpurple will be supported by telepathy-haze; for now, XMPP, MSN and AIM are known to work acceptably, and other will probably work too. + Telepathy-haze Pidgin'in de kullandığı libpurple üzerine kurulu bir bağlantı yöneticisidir. Libpurple tarafından desteklenen tüm protokol teoride telepathy-haze ile de desteklenmektedir. + http://telepathy.freedesktop.org/releases/telepathy-haze/telepathy-haze-0.8.0.tar.gz + + glib2-devel + dbus-devel + dbus-glib-devel + libpurple-devel + telepathy-glib-devel + libxslt-devel + + network/chat/telepathy-haze/pspec.xml + + + telepathy-haze + + dbus + glib2 + dbus-glib + libpurple + telepathy-glib + + + /usr/libexec + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2015-11-21 + 0.8.0 + version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2013-09-19 + 0.5.0 + Fix dep, we have no kdenetwork package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 0.5.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.5.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-logger-qt + https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + network.chat + Qt bindings for telepathy logger + Qt Wrapper around TpLogger client library. + http://download.kde.org/stable/telepathy-logger-qt/15.04/src/telepathy-logger-qt-15.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + doxygen + telepathy-qt5-devel + glib2-devel + dbus-devel + dbus-glib-devel + libxml2-devel + telepathy-logger-devel + + network/chat/telepathy-logger-qt/pspec.xml + + + telepathy-logger-qt + Qt bindings for telepathy logger + + glib2 + libgcc + qt5-base + telepathy-qt5 + telepathy-glib + telepathy-logger + + + /usr/lib/libtelepathy-logger-qt.so.* + /usr/share/doc + + + + telepathy-logger-qt-devel + Development files for telepathy-logger-qt + + telepathy-logger-qt + telepathy-glib-devel + + + /usr/include + /usr/lib/libtelepathy-logger-qt.so + /usr/lib/cmake/TelepathyLoggerQt + + + + + 2015-11-22 + 15.04.0 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-logger + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + library + network.chat + Logging utility Telepathy + Telepathy için kayıt tutma aracı. + telepathy-logger is a logging utility for Telepathy communication framework. + telepathy-logger, Telepathy iletişim altyapısı için kayıt tutma aracıdır. + http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.2.tar.bz2 + + glib2-devel + intltool + libxslt-devel + dbus-devel + dbus-glib-devel + gobject-introspection-devel + libxml2-devel + sqlite-devel + telepathy-glib-devel + + network/chat/telepathy-logger/pspec.xml + + + telepathy-logger + + dbus + glib2 + sqlite + libxml2 + dbus-glib + telepathy-glib + + + /usr/lib + /usr/share/gir-1.0/ + /usr/share/telepathy + /usr/share/glib-2.0/ + /usr/libexec + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/share/doc + + + + telepathy-logger-devel + Development files for telepathy-logger + telepathy-logger için geliştirme dosyaları + + telepathy-logger + telepathy-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-22 + 0.8.2 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.8.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-04-12 + 0.8.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.1.7 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + net-snmp + http://net-snmp.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + network.monitor + A collection of SNMP protocol tools and libraries + SNMP protokol araçları ve kitaplıkları + Kolekcja narzędzi do obsługi protokołu SNMP + Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring the health and welfare of network equipment (eg. routers), computer equipment and even devices like UPSs. Net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6. + net-snmp, çeşitli ağ ekipmanlarının sağlığını ve işleyişini izlemek için SNMP protokolünü kullanan araçları içerir. + SNMP (Simple Network Management Protocol) jest protokołem używanym do zarządzania sieciami. Pakiet zawiera narzędzia: rozbudowywalnego agenta, bibliotekę SNMP, narzędzia do odpytywania oraz ustawiania informacji poprzez agentów SNMP, narzędzia do generowania i obsługi pułapek SNMP, wersję komendy netstat używającą SNMP, przeglądarkę mib w Tk/Perl, demona, dokumentację itp. + mirrors://sourceforge/net-snmp/net-snmp-5.7.3.tar.gz + + libnl-devel + python-setuptools + openssl-devel + python-devel + perl + pciutils-devel + tcp-wrappers-devel + + + locale.patch + + network/monitor/net-snmp/pspec.xml + + + net-snmp + + libnl + openssl + python + perl + pciutils + tcp-wrappers + + + /etc/snmp + /usr/bin + /usr/sbin/snmpd + /etc/conf.d/snmpd + /usr/lib + /usr/share/snmp + /var/lib + /usr/share/man + /usr/share/doc + + + System.Service + + + confd-snmpd.conf + net-snmpd.conf + + + + net-snmptrap + + net-snmp + tcp-wrappers + + + /etc/conf.d/snmptrapd + /etc/snmp/snmptrapd.conf + /usr/sbin/snmptrapd + + + System.Service + + + confd-snmptrapd.conf + net-snmptrapd.conf + + + + net-snmp-devel + Development files for net-snmp + net-snmp için geliştirme dosyaları + Pliki naglowkowe do net-snmp + + net-snmp + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-08-02 + 5.7.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-13 + 5.7.2.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-19 + 5.7.2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-01 + 5.7.2 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 5.7.2 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-09 + 5.7.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + webkit-gtk2 + http://webkitgtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + LGPLv2.1 + BSD + library + network.misc + An opensource web browser engine for GTK+ applications + 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. + http://www.webkitgtk.org/releases/webkitgtk-2.4.9.tar.xz + + mesa-devel + gtk-doc + glib2-devel + gtk2-devel + ruby-devel + webp-devel + cairo-devel + icu4c-devel + libXt-devel + enchant-devel + sqlite-devel + geoclue-devel + libsoup-devel + fontconfig-devel + libxslt-devel + harfbuzz-devel + libsecret-devel + libXcomposite-devel + libjpeg-turbo-devel + gstreamer-next-devel + gobject-introspection-devel + gst-plugins-base-next-devel + which + icon-theme-hicolor + gperf + libSM-devel + + network/misc/webkit-gtk2/pspec.xml + + + webkit-gtk2 + + atk + zlib + glib2 + gtk2 + mesa + webp + cairo + icu4c + libXt + libX11 + libgcc + libpng + libxml2 + pango + sqlite + enchant + geoclue + libsoup + libxslt + harfbuzz + freetype + libsecret + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/share + /usr/share/doc + + + + webkit-gtk2-devel + Development files for GTK+ port of WebKit + library + data:doc + + libgcc + gtk2-devel + glib2-devel + webkit-gtk2 + libsoup-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/webkit-gtk/Web* + /usr/share/doc/webkit-gtk2/html + /usr/share/doc/webkit-gtk/JavaScriptCore + + + + + 2015-08-05 + 2.4.9 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-07 + 2.4.8 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-16 + 2.4.8 + Version Bump + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-24 + 2.4.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-21 + 2.4.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-14 + 1.10.2 + Rebuild for icu4c + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 1.10.2 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-02-25 + 1.10.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-23 + 1.10.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + freerdp + http://www.freerdp.com + + Aydın Demirel + aydin.demirel@pisilinux.org + + ASF + app:console + network.misc + A Remote Desktop Implementation + Bir uzak masaüstü protokol uygulaması + FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under Apacle License. + FreeRDP Apache lisansı altında dağıtılan, Uzak Masaüstü Uygulamasının (RDP) özgür bir uygulamasıdır. + http://pub.freerdp.com/releases/freerdp-1.0.2.tar.gz + + cups-devel + ffmpeg-devel + alsa-lib-devel + libXinerama-devel + xmlto + libXcursor-devel + libxkbfile-devel + libXv-devel + + + ffmpeg2.0.patch + patch_numblock.patch + + network/misc/freerdp/pspec.xml + + + freerdp + + cups + libX11 + openssl + libXv + ffmpeg + libXext + alsa-lib + libXcursor + libxkbfile + libXinerama + + + /usr/bin + /usr/lib + /usr/share/freerdp + /usr/share/doc + /usr/share/man + + + + freerdp-devel + + /usr/include + + + + + 2015-01-01 + 1.0.2 + Rebuild, fix build dep. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-31 + 1.0.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-29 + 1.0.2 + rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2013-09-28 + 1.0.2 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + iputils + https://github.com/iputils/iputils + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + network.misc + Network monitoring tools including ping and ping6 + ping ve ping6 uygulamalarını da içeren ağ izleme araçları + Iputils contient les outils de surveillance réseau incluant ping et ping6. + iputils contains network monitoring tools including ping and ping6. + Iputils, ping ve ping6 gibi ağ izleme araçlarını içeren bir pakettir. + https://github.com/iputils/iputils/archive/s20150815.tar.gz + + openssl-devel + libidn-devel + libcap-devel + + network/misc/iputils/pspec.xml + + + iputils + + libcap + libidn + + + /etc + /usr/bin + /usr/sbin + /sbin + /lib/systemd/system + /etc/conf.d/rdisc + /usr/share/doc + /usr/share/man + + + man/arping.8 + man/clockdiff.8 + man/ping.8 + man/rarpd.8 + man/rdisc.8 + man/tracepath.8 + man/traceroute6.8 + fedora/tftp.xinetd + + + + + 2015-10-01 + 20150815 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 20121221 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-26 + 20121221 + Fix dep, release bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-01-14 + 20121221 + New release + PisiLinux Community + admins@pisilinux.org + + + 2012-08-23 + 20101006 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libssh + http://www.libssh.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + Full C library functions for manipulating a client-side SSH connection + SSH bağlantılarının kontrol edilebilmesini sağlayan C kitaplığı + libssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl). + libssh, yazılımlarında SSH kullanmak isteyen programcılar için tasarlanmış bir C kitaplığıdır. SSH istemcisi programcı tarafından tam olarak kontrol edilebilir, uzaktan yazılım çalıştırma, tünel yaratma, dosya transferi ve uzak dosya erişimi işlemleri yapılabilir. Tüm bunlar için openssl paketinde bulunan lıbcrypto'nun sistemde bulunması yeterlidir. + https://git.libssh.org/projects/libssh.git/snapshot/libssh-0.6.4.tar.gz + + zlib-devel + openssl-devel + doxygen + cmake + + network/misc/libssh/pspec.xml + + + libssh + + zlib + openssl + + + /usr/lib + /usr/share/doc + + + + libssh-devel + Development files for libssh + libssh için geliştirme dosyaları + + libssh + + + /usr/include + /usr/lib/pkgconfig + + + + libssh-docs + Development documentation for libssh + + /usr/share/doc/libssh/html + /usr/share/man + + + + + 2014-07-30 + 0.6.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-08 + 0.6.3 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-09 + 5.4 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-27 + 5.4 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-05-04 + 5.4 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-09-01 + 0.5.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libnl + http://people.suug.ch/~tgr/libnl + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + A library for applications dealing with netlink sockets + Netlink soketleri erişimi için bir kitaplığı + libnl is a convenience library to simplify the usage of the Linux kernel's netlink sockets interface for network manipulation. + libnl Linux çekirdeğinin netlink soket arayüzünü ağ ile ilgili çeşitli işlemleri kolaylaştırmak için kullanan bir kitaplığıdır. + http://www.infradead.org/~tgr/libnl/files/libnl-3.2.25.tar.gz + + glibc + flex + bison + pkgconfig + libtool + check + + network/misc/libnl/pspec.xml + + + libnl + + /usr/lib + /usr/share/doc + /usr/share/man + /etc/libnl + /usr/sbin + + + + libnl-devel + Development files for libnl + libnl için geliştirme dosyaları + + libnl + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-15 + 3.2.25 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-04-03 + 3.2.24 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-13 + 3.2.23 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-19 + 3.2.23 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-10-14 + 3.2.13 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + geoclue + http://www.freedesktop.org/wiki/Software/GeoClue + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + network.misc + The Geoinformation Service. + Geoclue is a modular geoinformation service built on top of the D-Bus messaging system. + http://people.freedesktop.org/~hadess/geoclue-0.12.99.tar.gz + + dbus-devel + glib2-devel + dbus-glib-devel + libxml2-devel + libxslt + NetworkManager-devel + + network/misc/geoclue/pspec.xml + + + geoclue + + glib2 + libxml2 + dbus-glib + NetworkManager + + + /usr/lib/ + /usr/share/ + /usr/libexec/ + + + + geoclue-devel + geoclue için geliştirme dosyaları + geoclue için geliştirme dosyaları + + geoclue + dbus-glib-devel + libxml2-devel + + + /usr/include/geoclue + /usr/lib/pkgconfig + + + + + 2015-07-22 + 0.12.99 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-07-18 + 0.12.99 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-23 + 0.12.99 + rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 0.12.99 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-26 + 0.12.99 + Release no bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-09-03 + 0.12.99 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libcddb + http://libcddb.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + Une librairie pour accéder aux serveurs CDDB. + A library for accessing a CDDB server + CDDB sunucularına ulaşmak için bir kitaplık + Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http://freedb.org/). + libcddb, CDDB sunucularındaki (freedb.org) verilere erişmek için yazılmış bir C kitaplığıdır. + mirrors://sourceforge/libcddb/libcddb-1.3.2.tar.bz2 + network/misc/libcddb/pspec.xml + + + libcddb + + /usr/bin + /usr/lib + /usr/share/doc + + + + libcddb-devel + Development files for libcddb + libcddb için geliştirme dosyaları + + libcddb + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 1.3.2 + rebuild for libcdio + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 1.3.2 + rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 1.3.2 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.3.2 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + neon + http://www.webdav.org/neon/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + Librairie cliente HTTP et WebDAV. + HTTP and WebDAV client library + C arayüzü ile birlikte gelen, Http ve WebDAV için istemci kitaplığı + neon is an HTTP and WebDAV client library with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. + neon, C arayüzü sunan bir HTTP ve WebDAV istemci kitaplığıdır. HTTP ve WebDAV metodlarına yüksek seviyeli, HTTP istek değerlendirmesi için de düşük seviyeli bir arayüz sunar. + http://www.webdav.org/neon/neon-0.30.0.tar.gz + + openssl-devel + expat-devel + zlib-devel + mit-kerberos + + + fixdocdir.patch + multilib.patch + + network/misc/neon/pspec.xml + + + neon + + zlib + expat + openssl + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + neon-devel + Development files for neon + neon için geliştirme dosyaları + + neon + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 0.30.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-30 + 0.30.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-03 + 0.29.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libasyncns + http://0pointer.de/lennart/projects/libasyncns + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + A C library for asynchronous name service queries + Asenkron isim servisi sorguları için C kitaplığı + libasyncns is a C library for Linux/Unix for executing name service queries asynchronously. It is an asynchronous wrapper around getaddrinfo(), getnameinfo(), res_query() and res_search() from libc and libresolv. + libasyncns, Linux/Unix üzerinde isim servisi sorgularını asenkron olarak gerçekleştirme imkanı veren bir C kitaplığıdır. + http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz + network/misc/libasyncns/pspec.xml + + + libasyncns + + /usr/lib + /usr/share/doc + + + + libasyncns-devel + Development files for libasyncns + libasyncns için geliştirme dosyaları + + libasyncns + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-01-29 + 0.8 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.8 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + libnfnetlink + http://www.netfilter.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + Low level library for netfilter related kernel/userspace communication + Ağ filtreleme işlemleri ile ilgili çekirdek/uygulama iletişimi için alt seviye bir kitaplık + Niskopoziomowa biblioteka do netfilter + libnfnetlink provides a generic messaging infrastructure for in-kernel netfilter subsystems. + libnfnetlink, çekirdek içi ağ filtreleme alt sistemleri için jenerik bir mesajlaşma altyapısı sunar. + libnfnetlink to niskopoziomowa biblioteka do związanej z netfiltrem komunikacji między jądrem a przestrzenią użytkownika. Udostępnia ogólną infrastrukturę komunikatów dla podsystemów netfiltra w jądrze oraz ich użytkowników i/lub narzędzi zarządzających w przestrzeni użytkownika. + http://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2 + network/misc/libnfnetlink/pspec.xml + + + libnfnetlink + + /usr/lib + + + + libnfnetlink-devel + Development files for libnfnetlink + libnfnetlink için geliştirme dosyaları + Pliki nagłówkowe do bibliioteki libnfnetlink + + libnfnetlink + + + /usr/include + /usr/lib/pkgconfig/libnfnetlink.pc + + + + + 2014-03-13 + 1.0.1 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-04 + 1.0.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libndp + http://libndp.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + library + network.misc + Library for Neighbor Discovery Protocol + Ağ tarama protokolü için kitaplık + Library for Neighbor Discovery Protocol + Ağ tarama protokolü için kitaplık + http://libndp.org/files/libndp-1.4.tar.gz + + glibc-devel + + network/misc/libndp/pspec.xml + + + libndp + libndp için geliştirme dosyaları + + /etc + /usr/share + /etc/dbus-1 + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libndp-devel + Development files for NetworkManager + + libndp + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2015-01-07 + 1.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libconfig + http://www.hyperrealm.com/libconfig/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + C/C++ Configuration File Library + C/C++ Yapılandırma Dosyası Kitaplığı + Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. + Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz. + http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz + network/misc/libconfig/pspec.xml + + + libconfig + + /usr/lib + /usr/share/doc + + + + libconfig-devel + Development files for libconfig + libconfig için geliştirme dosyaları + + libconfig + + + /usr/include + /usr/lib/pkgconfig + /usr/share/info + + + + + 2013-03-04 + 1.4.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 1.4.5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + flashplugin @@ -12212,6 +29845,54 @@ + + + pepperflash + http://www.google.com + + Osman Erkan + osman.erkan@pisilinux.org + + custom:chrome + library + network.plugin + Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi. + Google Chrome's Pepper Flash plugin for Chromium. + Google Chrome's Pepper Flash plugin for Chromium (stable version) + Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm) + http://sourceforge.net/projects/pisilinux/files/source/PepperFlash-19.0.0.226.tar.xz + network/plugin/pepperflash/pspec.xml + + + pepperflash + + libgcc + + + /etc/chromium-browser + /usr/lib/chromium-browser/PepperFlash + + + pepperflash-plugin.conf + + + + + 2015-11-02 + 19.0.0.226 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-08-15 + 18.0.0.233 + Version bump + Vedat Demir + vedat@pisilinux.org + + + freshplayerplugin @@ -12275,10199 +29956,118 @@ - pepperflash - http://www.google.com + libqmi + http://www.freedesktop.org/wiki/Software/libqmi/ - Osman Erkan - osman.erkan@pisilinux.org - - custom:chrome - library - network.plugin - Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi. - Google Chrome's Pepper Flash plugin for Chromium. - Google Chrome's Pepper Flash plugin for Chromium (stable version) - Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm) - http://sourceforge.net/projects/pisilinux/files/source/PepperFlash-19.0.0.226.tar.xz - network/plugin/pepperflash/pspec.xml - - - pepperflash - - libgcc - - - /etc/chromium-browser - /usr/lib/chromium-browser/PepperFlash - - - pepperflash-plugin.conf - - - - - 2015-11-02 - 19.0.0.226 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-08-15 - 18.0.0.233 - Version bump - Vedat Demir - vedat@pisilinux.org - - - - - - net-snmp - http://net-snmp.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - network.monitor - A collection of SNMP protocol tools and libraries - SNMP protokol araçları ve kitaplıkları - Kolekcja narzędzi do obsługi protokołu SNMP - Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring the health and welfare of network equipment (eg. routers), computer equipment and even devices like UPSs. Net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6. - net-snmp, çeşitli ağ ekipmanlarının sağlığını ve işleyişini izlemek için SNMP protokolünü kullanan araçları içerir. - SNMP (Simple Network Management Protocol) jest protokołem używanym do zarządzania sieciami. Pakiet zawiera narzędzia: rozbudowywalnego agenta, bibliotekę SNMP, narzędzia do odpytywania oraz ustawiania informacji poprzez agentów SNMP, narzędzia do generowania i obsługi pułapek SNMP, wersję komendy netstat używającą SNMP, przeglądarkę mib w Tk/Perl, demona, dokumentację itp. - mirrors://sourceforge/net-snmp/net-snmp-5.7.3.tar.gz - - libnl-devel - python-setuptools - openssl-devel - python-devel - perl - pciutils-devel - tcp-wrappers-devel - - - locale.patch - - network/monitor/net-snmp/pspec.xml - - - net-snmp - - libnl - openssl - python - perl - pciutils - tcp-wrappers - - - /etc/snmp - /usr/bin - /usr/sbin/snmpd - /etc/conf.d/snmpd - /usr/lib - /usr/share/snmp - /var/lib - /usr/share/man - /usr/share/doc - - - System.Service - - - confd-snmpd.conf - net-snmpd.conf - - - - net-snmptrap - - net-snmp - tcp-wrappers - - - /etc/conf.d/snmptrapd - /etc/snmp/snmptrapd.conf - /usr/sbin/snmptrapd - - - System.Service - - - confd-snmptrapd.conf - net-snmptrapd.conf - - - - net-snmp-devel - Development files for net-snmp - net-snmp için geliştirme dosyaları - Pliki naglowkowe do net-snmp - - net-snmp - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-02 - 5.7.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-13 - 5.7.2.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-19 - 5.7.2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-12-01 - 5.7.2 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 5.7.2 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-09 - 5.7.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - dustrac - http://dustrac.sourceforge.net/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - app:gui - game.arcade - Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game - The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen. - https://github.com/juzzlin/DustRacing2D/archive/1.11.0.tar.gz - - qt5-base-devel - qt5-linguist - openal-devel - cmake - pkgconfig - libvorbis-devel - mesa-devel - mesa-glu-devel - - game/arcade/dustrac/pspec.xml - - - dustrac - - qt5-base - openal - libvorbis - libgcc - mesa - - - /usr/bin - /usr/share/games - /usr/share/locale - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/doc - - - - - 2015-11-20 - 1.11.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - alienarena - http://red.planetarena.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - COR-Entertainment-LLC - app:gui - game.fps - A standalone 3D first person shooter game - 3 Boyutlu ilkgözden nişancılık oyunu - Alien Arena is a standalone 3D first person online deathmatch shooter crafted from the original source code of Quake II and Quake III. - Alien Arena, Quake 2 ve 3 oyunlarının kaynak kodlarından yola çıkılarak hazırlanmış çevrimiçi oynanabilen ilkgözden (first person) nişancılık (shooter) oyunudur. - alienarena - http://red.planetarena.org/files/alienarena-7.66-linux20130827.tar.gz - - libjpeg-turbo-devel - libXxf86dga-devel - libXxf86vm-devel - libX11-devel - mesa-devel - openal-devel - ode-devel - curl-devel - freetype-devel - libvorbis-devel - - - use_home_dir.patch - - game/fps/alienarena/pspec.xml - - - alienarena - - libjpeg-turbo - libXxf86vm - curl - zlib - libX11 - libvorbis - libgcc - freetype - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - alienarena.png - alienarena.desktop - - - - - 2015-11-11 - 7.66 - Rebuild for 2.0. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-09-27 - 7.66 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-01-12 - 7.60.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - ode - http://www.ode.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - game.misc - High performance library for simulating rigid body dynamics - Vücut dinamiklerini simüle etmek için yüksek başarımlı bir kitaplık - ODE jest biblioteką służącą do symulacji dynamiki bryły sztywnej - SDK (kit de développement) du moteur Open Dynamics. - ode is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. - ode açık kaynaklı, yüksek başarımlı bir vücut dinamiği simülasyon kitaplığıdır. Tam işlevsel, kararlı, olgun ve platform bağımsız bir C/C++ programlama arayüzü sunar. - Open Dynamics Engine (ODE) jest wolną biblioteką służącą do symulacji dynamiki bryły sztywnej. ODE jest użyteczne przy symulacji pojazdów, obiektów w przestrzeni wirtualnej i wirtualnych stworzeń. - mirrors://sourceforge/opende/ode-0.13.tar.bz2 - game/misc/ode/pspec.xml - - - ode - - /usr/lib - /usr/share/doc - - - - ode-devel - Development files for ode - ode için geliştirme dosyaları - Pliki nagłówkowe ode - - ode - - - /usr/bin/ode-config - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-26 - 0.13 - Version Bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-03-09 - 0.12 - Rebuild Alihan Öztürk alihan@pisilinux.org - - - 2013-05-18 - 0.12 - Enable double precision - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-08 - 0.12 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - hugin - http://hugin.sourceforge.net - - PisiLinux Community - admins@pisilinux.org GPLv2 app:gui - library - multimedia.graphics - A panoramic photo stitcher - Panoramik görüntü birleştirici - hugin can be used to stitch multiple images together. The resulting image can span 360 degrees. Another common use is the creation of very high resolution pictures by combining multiple images. - hugin bir çok görüntüyü harmanlamak için kullanılabilecek bir araçtır. Bu sayede, 360 derecelik görüntüler oluşturulabilir. Bir diğer kullanım alanı ise birden fazla görüntüyü birleştirerek çok yüksek çözünürlüklü görüntüler üretmektir. - hugin - mirrors://sourceforge/hugin/hugin/hugin-2015.0/hugin-2015.0.0.tar.bz2 + network.library + QMI modem protocol helper library + libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. + http://www.freedesktop.org/software/libqmi/libqmi-1.8.0.tar.xz - swig - cmake - glew-devel - tiff-devel - zlib-devel - vigra-devel - boost-devel - wxGTK-devel - exiv2-devel - fftw3-devel - flann-devel - libXmu-devel - libpng-devel - python-devel - lapack-devel - sqlite-devel - openexr-devel - freeglut-devel - libpano13-devel - libjpeg-turbo-devel + glib2-devel + gobject-introspection-devel - multimedia/graphics/hugin/pspec.xml + network/library/libqmi/pspec.xml - hugin + libqmi - blas - glew - mesa - tiff - boost - fftw3 - vigra - wxGTK - lapack - libgcc - python - sqlite - enblend - ilmbase - libgomp - freeglut - mesa-glu - libpano13 - exiv2-libs - openexr-libs - perl-Image-ExifTool - - - /usr/lib/ - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/hugin - /usr/share/pixmaps - /usr/share/appdata - /usr/share/applications - /usr/share/locale - - - hugin-libs - hugin-tools - - - - hugin-docs - Help documents for hugin - hugin için yardım belgeleri - - /usr/share/hugin/xrc/data/help* - - - - - 2015-11-06 - 2015.0.0 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-12-29 - 2014.0.0 - rebuild for boost 1.57.0 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-11-10 - 2014.0.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 2013.0.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-11 - 201300 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 201300_beta1 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-08 - 201300_beta1 - Error Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-08 - 201300_beta1 - vbump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-28 - 2012.0.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libmng - http://www.libmng.com/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.graphics - Multiple Image Networkgraphics lib (animated png's) - Çoklu resim Networkgraphics (Animasyonlu png) - Libmng - La librairie de référence pour lire, afficher, écrire et examiner des Multiple-Image Network Graphics (graphiques orientés réseaux composés d'images multiples). MNG est l'extension d'animation pour le format d'image populaire PNG. - Libmng -The reference library for reading, displaying, writing and examining Multiple-Image Network Graphics. MNG is the animation extension to the popular PNG image-format. - Libmng, Çoklu Görüntü Ağ Grafiklerini (MNG) okuma, görüntüleme, yazma ve denemek için başvuru kütüphanesidir. MNG popüler PNG görüntü formatı için animasyon uzantısıdır. - Libmng -librería de referencia para lectura, visualización, escritura y análisis de gráficos tipo Multiple-Image Network. MNG es la extensión de animación al formato popular de imágenes PNG. - http://sourceforge.net/projects/libmng/files/libmng-devel/2.0.2/libmng-2.0.2.tar.gz - - zlib-devel - lcms2-devel - libjpeg-turbo-devel - - multimedia/graphics/libmng/pspec.xml - - - libmng - - zlib - libjpeg-turbo - lcms2 + glib2 + gobject-introspection /usr/lib - - - - libmng-devel - - libmng - - - /usr/share/doc /usr/share/man - /usr/include/ + /usr/bin + /usr/share/gtk-doc + /usr/share/doc/libqmi/ - libmng-32bit - 32-bit shared libraries for libmng - emul32 - emul32 - - zlib-32bit - lcms2-32bit - libjpeg-turbo-32bit - glibc-32bit - + libqmi-devel + Development files for libqmi - zlib-32bit - lcms2-32bit - libjpeg-turbo-32bit - glibc-32bit - libmng + libqmi - /usr/lib32 + /usr/include + /usr/lib/pkgconfig/qmi-glib.pc - - 2014-05-19 - 2.0.2 - Release bump. + + 2014-01-19 + 1.8.0 + First Release Alihan Öztürk alihan@pisilinux.org - - 2014-01-31 - 2.0.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-12-16 - 1.0.10 - First release - Erdinç Gültekin - admins@pisilinux.org - - tiff - http://www.remotesensing.org/libtiff/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.graphics - Library for manipulation of TIFF (Tag Image File Format) images - TIFF (Tag Image File Format) türündeki resimleri işlemeye aracılık eden kütüphane - Ce logiciel fournit le support pour le format "Tag Image File Format" (TIFF), un format très employé pour stocker des informations d'image. - This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. - Bu kütüphane TIFF (Tag Image File Format) resim biçimi desteği sağlar. Bu biçim resim bilgisi saklamak için pek çok yerde kullanılır. - Este software facilita soporte para el formato de imagen etiqueteado (TIFF), un formato para almacenamiento de imágenes de uso común. - Biblioteka do manipulacji plikami w formacie TIFF. - ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.3.tar.gz - - libjpeg-turbo-devel - jbigkit-devel - - multimedia/graphics/tiff/pspec.xml - - - tiff - - libjpeg-turbo - jbigkit - - - /usr/bin - /usr/lib - - - - tiff-devel - Developement files for tiff - tiff için geliştirme dosyaları - - tiff - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - tiff-docs - Documentation for tiff - tiff için belgelendirme dosyaları - - tiff - - - /usr/share/doc - /usr/share/man - - - - tiff-32bit - 32-bit shared libraries for tiff - tiff için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libjpeg-turbo-32bit - - - tiff - libjpeg-turbo-32bit - glibc-32bit - libgcc - - - /usr/lib32 - - - - - 2014-05-19 - 4.0.3 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-08 - 4.0.3 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-26 - 4.0.3 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-29 - 4.0.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - enblend - http://enblend.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.graphics - Image blending with multiresolution splines - Resim harmanlama aracı - enblend is a tool for compositing images. Given a set of images that overlap in some irregular way, enblend overlays them in such a way that the seam between the images is invisible, or at least very difficult to see. - enblend, resimleri birleştirmek için kullanılan bir araçtır. Düzensiz bir şekilde üstüste binen bir resim grubunu, resimlerin arasındaki düğüm noktaları anlaşılmayacak şekilde harmanlar. - mirrors://sourceforge/enblend/enblend-enfuse/enblend-enfuse-4.1/enblend-enfuse-4.1.3.tar.gz - - cmake - gsl-devel - zlib-devel - tiff-devel - vigra-devel - boost-devel - lcms2-devel - libpng-devel - openexr-devel - imagemagick-devel - - - gentoo_prepare.patch - - multimedia/graphics/enblend/pspec.xml - - - enblend - - gsl - tiff - boost - lcms2 - vigra - libgcc - - - /usr/bin - /usr/share/man - /usr/share/doc - /usr/share/info - - - - - 2014-12-27 - 4.1.3 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-27 - 4.1.3 - Rebuild for boost. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-01 - 4.1.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-23 - 4.1.2 - rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-11 - 4.1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 4.1.1 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-08 - 4.1.1 - add missing builddep gsl-devel - Ertuğrul Erata - ertugrullerata@gmail.com - - - 2013-04-26 - 4.1.1 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-21 - 4.1.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-02-08 - 4.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - webp - http://code.google.com/p/webp/downloads/list - - PisiLinux Community - admins@pisilinux.org - - Copyright (c) 2010, Google Inc. All rights reserved. - application - multimedia.graphics - webp image format and format conversion png,jpeg,tiff - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - webp image format and format conversion png,jpeg,tiff - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - http://downloads.webmproject.org/releases/webp/libwebp-0.4.3.tar.gz - - mesa-devel - mesa-glu-devel - libpng-devel - tiff-devel - giflib-devel - freeglut-devel - libjpeg-turbo-devel - - multimedia/graphics/webp/pspec.xml - - - webp - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - - tiff - mesa - giflib - libpng - freeglut - libjpeg-turbo - - - /usr/lib/libwebp* - /usr/bin - /usr/share/man - /usr/share/doc/webp - - - - webp-devel - webp için geliştirme dosyaları - - webp - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-06 - 0.4.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-21 - 0.4.0 - rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-21 - 0.4.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-25 - 0.3.1 - rebuild for unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-19 - 0.3.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-11 - 0.2.1 - First release - can - qazsew@mynet.com - - - - - - gimp-layer-effects - http://registry.gimp.org/node/186 - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - multimedia.graphics.gimp.addon - Layer effects for GIMP - GIMP için katman efektleri - Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects. - Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir. - gimp - http://ozbekanil.googlepages.com/layer-effects.tar.gz - multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml - - - gimp-layer-effects - - gimp - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - - - COPYING - - - - - 2014-06-19 - 2.6.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.6.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-30 - 2.6.0 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-refocus-it-plugin - http://sourceforge.net/projects/refocus-it - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. - Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. - mirrors://sourceforge/refocus-it/refocus-it-2.0.0.tar.gz - - intltool - gimp-devel - gtk2-devel - - multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml - - - gimp-refocus-it-plugin - - gimp - glib2 - gtk2 - - - /usr/bin - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc/gimp-refocus-it-plugin - /usr/share/help - /usr/share/locale - - - - - 2014-06-19 - 2.0.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.0.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-03-28 - 2.0.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-gmic-plugin - http://gmic.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - CeCILL-2 - app:console - library - multimedia.graphics.gimp.addon - Image procession framework. - G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. - http://gmic.eu/files/source/gmic_1.6.5.1.tar.gz - - ffmpeg-devel - fftw3-devel - gimp-devel - libjpeg-turbo-devel - lapack-devel - opencv-devel - openexr-devel - tiff-devel - curl-devel - - multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml - - - gmic - - curl - tiff - zlib - fftw3 - libX11 - libgcc - libpng - libgomp - libjpeg-turbo - - - /etc/bash_completion.d - /usr/bin - /usr/lib - /usr/share/doc/gmic - /usr/share/man - - - - gmic-devel - Development files for gmic - - gmic - - - /usr/include - - - - gimp-gmic-plugin - Gimp plugin for the GMIC image procession framework. - - atk - curl - gtk2 - zlib - gimp - cairo - pango - libX11 - libgcc - libpng - libgomp - freetype - fftw3 - glib2 - fontconfig - gdk-pixbuf - - - /usr/lib/gimp - /usr/share/doc/gimp-gmic-plugin - - - - - 2015-08-10 - 1.6.5.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-25 - 1.6.0.3 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-06-19 - 1.5.5.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-12-01 - 1.5.5.0 - Rebuild for ffmpeg. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-27 - 1.5.5.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-13 - 1.5.1.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gimp-save-for-web - http://registry.gimp.org/node/33 - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - GIMP Save for Web - GIMP Save for Web - GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc. - GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır. - http://registry.gimp.org/files/gimp-save-for-web-0.29.3.tar.bz2 - - intltool - gimp-devel - gtk2-devel - gdk-pixbuf-devel - - multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml - - - gimp-save-for-web - - gimp - glib2 - gtk2 - gdk-pixbuf - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/gimp-save-for-web - /usr/share/locale - /usr/share/doc - - - - - 2014-06-19 - 0.29.3 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-30 - 0.29.3 - V.bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2011-01-30 - 0.29.0 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-focusblur-plugin - http://registry.gimp.org/node/1444 + libmbim + http://www.freedesktop.org/wiki/Software/libmbim/ PisiLinux Community admins@pisilinux.org GPLv2 library - multimedia.graphics.gimp.addon - Makes out of focus with luminosity and depth. - Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur. - http://registry.gimp.org/files/focusblur-3.2.6.tar.bz2 - - fftw3-devel - gimp-devel - intltool - - multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml - - - gimp-focusblur-plugin - - fftw3 - gdk-pixbuf - gimp - gtk2 - glib2 - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - /usr/share/locale - - - - - 2014-06-19 - 3.2.6 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 3.2.6 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-10 - 3.2.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - colorize-gimp - http://zenthought.org/content/project/colorize - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics.gimp.addon - Colorization plugin for GIMP - GIMP için renklendirme eklentisi - colorize-gimp is an implementation of colorization using optimization for GIMP. - colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir. - gimp - http://zenthought.org/system/files/asset/2/colorize-gimp-20070930.tar.gz - - gimp-devel - gtk2-devel - SuiteSparse-devel - - multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml - - - colorize-gimp - - gimp - gtk2 - SuiteSparse - atk - cairo - glib2 - pango - freetype - gdk-pixbuf - fontconfig - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - - - COPYING - - - - - 2014-06-19 - 2.6.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 2.6.0 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2011-01-30 - 2.6.0 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-dds-plugin - http://code.google.com/p/gimp-dds/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics.gimp.addon - DirectDraw Surface (DDS) format plugin for Gimp - This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format. - http://gimp-dds.googlecode.com/files/gimp-dds-3.0.1.tar.bz2 - - gimp-devel - gtk2-devel - - multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml - - - gimp-dds-plugin - - atk - cairo - glib2 - fontconfig - gdk-pixbuf - gimp - gtk2 - pango - libgomp - freetype - - - /usr/lib/gimp/2.0/plug-ins/dds - /usr/share/doc/gimp-dds-plugin - - - - - 2014-06-19 - 3.0.1 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 3.0.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-07-07 - 2.2.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gimpfx-foundry - http://gimpfx-foundry.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - public-domain - data - multimedia.graphics.gimp.addon - A scripts collection for GIMP - GIMP için zengin bir betik paketi - FX-Foundry project is constantly updating custom scripts for each major GIMP release. - FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir. - mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz - multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml - - - gimpfx-foundry - - gimp - - - /usr/share/gimp/2.0/scripts - /usr/share/doc - - - - - 2014-06-19 - 2.6.1 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.6.1 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2009-07-24 - 2.6.1 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-data-extras - http//www.gimp.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - multimedia.graphics.gimp.addon - Gimp extras - Gimp ekleri - Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment. - Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir. - gimp - http://download.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.2.tar.bz2 - - gimp-devel - - multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml - - - gimp-data-extras - - gimp - - - /usr/share/gimp - /usr/share/doc - - - - - 2014-06-19 - 2.0.2 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.0.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2009-09-07 - 2.0.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gimp-lqr-plugin - http://liquidrescale.wikidot.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Plugin for The GIMP providing Liquid Rescale. - Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way. - http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2 - - intltool - gimp-devel - liblqr-devel - - multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml - - - gimp-lqr-plugin - - gdk-pixbuf - gimp - gtk2 - glib2 - liblqr - - - /usr/lib/gimp/2.0/plug-ins/* - /usr/share/doc/gimp-lqr-plugin/* - /usr/share/gimp-lqr-plugin/* - /usr/share/gimp/2.0/scripts/* - /usr/share/locale/* - - - - - 2014-06-19 - 0.7.2 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 0.7.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-14 - 0.7.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gimp-resynthesizer - http://www.logarithmic.net/pfh/resynthesizer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - addon - multimedia.graphics.gimp.addon - Resynthesizer is a Gimp plug-in for texture synthesis - Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture. - http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz - - gimp-devel - - multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml - - - gimp-resynthesizer - - gimp - atk - gtk2 - cairo - glib2 - pango - libgcc - freetype - fontconfig - gdk-pixbuf - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/gimp/2.0/scripts - /usr/share/doc - - - - - 2014-06-19 - 0.16 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 0.16 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2011-02-20 - 0.16 - First release - Erdem Artan - erdem.artan@linux.org.tr - - - - - - gimp - http://www.gimp.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - multimedia.graphics.gimp - GNU Image Manipulation Program - Bir resim işleme programı - Programme de Manipulation d'Image GNU. - GIMP is a mature image editor with many advanced features and plugin support. - Piksel düzeyinde işlem yapılabilen gelişmiş bir grafik düzenleme programı - http://download.gimp.org/pub/gimp/v2.8/gimp-2.8.14.tar.bz2 + network.library + MBIM modem protocol helper library. + libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. + http://www.freedesktop.org/software/libmbim/libmbim-1.12.2.tar.xz gtk-doc - atk-devel - xdg-utils - tiff-devel - zlib-devel - lcms-devel - gegl-devel - babl-devel - dbus-devel - gtk2-devel - aalib-devel - bzip2 - pango-devel - cairo-devel glib2-devel - libwmf-devel - jasper-devel - libX11-devel - libmng-devel - libpng-devel - libXpm-devel - libXmu-devel - libXext-devel - librsvg-devel - libexif-devel - alsa-lib-devel - freetype-devel - dbus-glib-devel - libXfixes-devel eudev-devel - libXcursor-devel - fontconfig-devel - python-gtk-devel - gdk-pixbuf-devel - ghostscript-devel - webkit-gtk2-devel - poppler-glib-devel - libjpeg-turbo-devel - intltool - python-devel - - single_window.patch - - multimedia/graphics/gimp/gimp/pspec.xml + network/library/libmbim/pspec.xml - gimp-devel - Documents et entêtes de développement pour GIMP. - Development header and documents for GIMP - GIMP için geliştirme belgeleri ve başlık dosyaları - data - data:doc + libmbim - gtk2-devel - cairo-devel - gdk-pixbuf-devel - gimp - - - /usr/include - /usr/share/gtk-doc - /usr/lib/pkgconfig - /usr/share/aclocal - - - - gimp - app:gui - - gegl - babl - dbus - gtk2 - tiff - zlib - aalib - bzip2 - pango - cairo - glib2 - libwmf - libXpm - libmng - libpng - libXmu - jasper - libX11 - libXext - librsvg - libexif - alsa-lib - freetype - dbus-glib - libXfixes - eudev - libXcursor - fontconfig - gdk-pixbuf - ghostscript - webkit-gtk2 - poppler-glib - libjpeg-turbo - - - /etc - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/gimp - /usr/share/icons - /usr/share/appdata - /usr/share/mime-info - /usr/share/applications - /usr/share/application-registry - - - gimp-splash-pencils.png - - - - gimp-i18n-tr - Gimp translation files for Turkish - Türkçe için GIMP yerelleştirme dosyaları - locale:tr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/tr - - - - gimp-i18n-ast - Gimp translation files for Asturian - Asturya dili için GIMP yerelleştirme dosyaları - locale:ast - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ast - - - - gimp-i18n-my - Gimp translation files for Burmese - Burmese dili için GIMP yerelleştirme dosyaları - locale:my - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/my - - - - gimp-i18n-nds - Gimp translation files for Low Saxon - Aşağı Saxon dili için GIMP yerelleştirme dosyaları - locale:nds - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nds - - - - gimp-i18n-el - Gimp translation files for Greek - Yunanca için GIMP yerelleştirme dosyaları - locale:el - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/el - - - - gimp-i18n-gu - Gimp translation files for Gujarati - Gujarati dili için GIMP yerelleştirme dosyaları - locale:gu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gu - - - - gimp-i18n-be - Gimp translation files for Belarusian - Belarusça için GIMP yerelleştirme dosyaları - locale:be - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/be - - - - gimp-i18n-vi - Gimp translation files for Vietnamese - Viyetnamca için GIMP yerelleştirme dosyaları - locale:vi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/vi - - - - gimp-i18n-ca - Gimp translation files for Catalan - Katalanca için GIMP yerelleştirme dosyaları - locale:ca - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ca - - - - gimp-i18n-eo - Gimp translation files for Esperanto - Esperanto için GIMP yerelleştirme dosyaları - locale:eo - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/eo - - - - gimp-i18n-cs - Gimp translation files for Czech - Çekçe için GIMP yerelleştirme dosyaları - locale:cs - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/cs - - - - gimp-i18n-ca_valencia - Gimp translation files for Catalan (Valencia) - Valensiya Katalancası için GIMP yerelleştirme dosyaları - locale:ca@valencia - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ca@valencia - - - - gimp-i18n-ar - Gimp translation files for Arabic - Arapça için GIMP yerelleştirme dosyaları - locale:ar - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ar - - - - gimp-i18n-km - Gimp translation files for Khmer - Khmer dili için GIMP yerelleştirme dosyaları - locale:km - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/km - - - - gimp-i18n-ga - Gimp translation files for Irish Gaelic - Gaelik İrlandacası için GIMP yerelleştirme dosyaları - locale:ga - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ga - - - - gimp-i18n-fi - Gimp translation files for Finnish - Fince için GIMP yerelleştirme dosyaları - locale:fi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fi - - - - gimp-i18n-eu - Gimp translation files for Basque - Baskça için GIMP yerelleştirme dosyaları - locale:eu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/eu - - - - gimp-i18n-et - Gimp translation files for Estonian - Estonyaca için GIMP yerelleştirme dosyaları - locale:et - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/et - - - - gimp-i18n-xh - Gimp translation files for Xhosa - Xhosa dili için GIMP yerelleştirme dosyaları - locale:xh - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/xh - - - - gimp-i18n-gl - Gimp translation files for Galician - Galiçya dili için GIMP yerelleştirme dosyaları - locale:gl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gl - - - - gimp-i18n-id - Gimp translation files for Indonesian - Endonezyaca için GIMP yerelleştirme dosyaları - locale:id - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/id - - - - gimp-i18n-es - Gimp translation files for Spanish - İspanyolca için GIMP yerelleştirme dosyaları - locale:es - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/es - - - - gimp-i18n-ru - Gimp translation files for Russian - Rusça için GIMP yerelleştirme dosyaları - locale:ru - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ru - - - - gimp-i18n-rw - Gimp translation files for Kinyarwanda - Kinyarwanda dili için GIMP yerelleştirme dosyaları - locale:rw - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/rw - - - - gimp-i18n-nl - Gimp translation files for Dutch - Hollandaca için GIMP yerelleştirme dosyaları - locale:nl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nl - - - - gimp-i18n-nn - Gimp translation files for Norwegian Nynorsk - Norveç Nynorsk dili için GIMP yerelleştirme dosyaları - locale:nn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nn - - - - gimp-i18n-nb - Gimp translation files for Norwegian Bookmal - Norveç Bookmal dili için GIMP yerelleştirme dosyaları - locale:nb - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nb - - - - gimp-i18n-ne - Gimp translation files for Nepali - Nepali dili için GIMP yerelleştirme dosyaları - locale:ne - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ne - - - - gimp-i18n-lt - Gimp translation files for Lithuanian - Litvanyaca için GIMP yerelleştirme dosyaları - locale:lt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/lt - - - - gimp-i18n-pa - Gimp translation files for Punjabi - Punjabi dili için GIMP yerelleştirme dosyaları - locale:pa - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pa - - - - gimp-i18n-ro - Gimp translation files for Romanian - Rumence için GIMP yerelleştirme dosyaları - locale:ro - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ro - - - - gimp-i18n-en_GB - Gimp translation files for British English - İngiliz İngilizcesi için GIMP yerelleştirme dosyaları - locale:en_GB - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/en_GB - - - - gimp-i18n-yi - Gimp translation files for Yi - Yi dili için GIMP yerelleştirme dosyaları - locale:yi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/yi - - - - gimp-i18n-en_CA - Gimp translation files for Catalan (en) - Katalanca için GIMP yerelleştirme dosyaları - locale:en_CA - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/en_CA - - - - gimp-i18n-fr - Gimp translation files for French - Fransızca için GIMP yerelleştirme dosyaları - locale:fr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fr - - - - gimp-i18n-bg - Gimp translation files for Bulgarian - Bulgarca için GIMP yerelleştirme dosyaları - locale:bg - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/bg - - - - gimp-i18n-ms - Gimp translation files for Malay - Malay dili için GIMP yerelleştirme dosyaları - locale:ms - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ms - - - - gimp-i18n-pt_BR - Gimp translation files for Brazilian Portuguese - Brezilya Portekizcesi için GIMP yerelleştirme dosyaları - locale:pt_BR - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pt_BR - - - - gimp-i18n-hr - Gimp translation files for Croatian (Hrvatski) - Hırvatça için GIMP yerelleştirme dosyaları - locale:hr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hr - - - - gimp-i18n-zh_TW - Gimp translation files for Chinese Traditional - Geleneksel Çince için GIMP yerelleştirme dosyaları - locale:zh_TW - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_TW - - - - gimp-i18n-ko - Gimp translation files for Korean - Korece için GIMP yerelleştirme dosyaları - locale:ko - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ko - - - - gimp-i18n-it - Gimp translation files for Italian - İtalyanca için GIMP yerelleştirme dosyaları - locale:it - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/it - - - - gimp-i18n-fa - Gimp translation files for Farsi (Persian) - Farsça için GIMP yerelleştirme dosyaları - locale:fa - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fa - - - - gimp-i18n-dz - Gimp translation files for Dzongkha - Dzongkha dili için GIMP yerelleştirme dosyaları - locale:dz - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/dz - - - - gimp-i18n-sr_Latn - Gimp translation files for Serbian Latin - Latin sırpça için GIMP yerelleştirme dosyaları - locale:sr@Latn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sr@latin - - - - gimp-i18n-da - Gimp translation files for Danish - Danimarkaca için GIMP yerelleştirme dosyaları - locale:da - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/da - - - - gimp-i18n-ja - Gimp translation files for Japanese - Japonca için GIMP yerelleştirme dosyaları - locale:ja - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ja - - - - gimp-i18n-he - Gimp translation files for Hebrew - İbranice için GIMP yerelleştirme dosyaları - locale:he - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/he - - - - gimp-i18n-pt - Gimp translation files for Portuguese - Portekizce için GIMP yerelleştirme dosyaları - locale:pt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pt - - - - gimp-i18n-zh_CN - Gimp translation files for Chinese Simplified - Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları - locale:zh_CN - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_CN - - - - gimp-i18n-sr - Gimp translation files for Serbian - Sırpça için GIMP yerelleştirme dosyaları - locale:sr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sr - - - - gimp-i18n-oc - Gimp translation files for Occitan - Occitan dili için GIMP yerelleştirme dosyaları - locale:oc - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/oc - - - - gimp-i18n-sv - Gimp translation files for Swedish - İsveççe için GIMP yerelleştirme dosyaları - locale:sv - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sv - - - - gimp-i18n-mk - Gimp translation files for Macedonian - Makedonyaca için GIMP yerelleştirme dosyaları - locale:mk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/mk - - - - gimp-i18n-sk - Gimp translation files for Slovak - Slovakça için GIMP yerelleştirme dosyaları - locale:sk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sk - - - - gimp-i18n-de - Gimp translation files for German - Almanca için GIMP yerelleştirme dosyaları - locale:de - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/de - - - - gimp-i18n-pl - Gimp translation files for Polish - Lehçe için GIMP yerelleştirme dosyaları - locale:pl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pl - - - - gimp-i18n-uk - Gimp translation files for Ukrainian - Ukraynaca için GIMP yerelleştirme dosyaları - locale:uk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/uk - - - - gimp-i18n-sl - Gimp translation files for Slovenian - Slovence için GIMP yerelleştirme dosyaları - locale:sl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sl - - - - gimp-i18n-hu - Gimp translation files for Hungarian - Macarca için GIMP yerelleştirme dosyaları - locale:hu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hu - - - - gimp-i18n-tt - Gimp translation files for Tatarish - Tatarca için GIMP yerelleştirme dosyaları - locale:tt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/tt - - - - gimp-i18n-az - Gimp translation files for Azerbaijani - Azerice için GIMP yerelleştirme dosyaları - locale:az - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/az - - - - gimp-i18n-am - Gimp translation files for Amharic - Amharic dili için GIMP yerelleştirme dosyaları - locale:am - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/am - - - - gimp-i18n-is - Gimp translation files for Icelandic - İzlanda dili için GIMP yerelleştirme dosyaları - locale:is - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/is - - - - gimp-i18n-lv - Gimp translation files for Latvia - Latvia dili için GIMP yerelleştirme dosyaları - locale:lv - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/lv - - - - gimp-i18n-th - Gimp translation files for Thai - Thai dili için GIMP yerelleştirme dosyaları - locale:th - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/th - - - - gimp-i18n-ka - Gimp translation files for Georgian - Gürcüce için GIMP yerelleştirme dosyaları - locale:ka - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ka - - - - gimp-i18n-hi - Gimp translation files for Hindi - Hindi dili için GIMP yerelleştirme dosyaları - locale:hi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hi - - - - gimp-i18n-zh_HK - Gimp translation files for Chinese Hong Kong - Hong Kong Çincesi için GIMP yerelleştirme dosyaları - locale:zh_HK - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_HK - - - - gimp-i18n-ml - Gimp translation files for Malayalam - Malayalam dili için GIMP yerelleştirme dosyaları - locale:ml - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ml - - - - gimp-i18n-ta - Gimp translation files for Tamil - Tamil dili için GIMP yerelleştirme dosyaları - locale:ta - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ta - - - - gimp-i18n-kn - Gimp translation files for Kannada - Kannada dili için GIMP yerelleştirme dosyaları - locale:kn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/kn - - - - gimp-i18n-si - Gimp translation files for Sinhala - Sinhala dili için GIMP yerelleştirme dosyaları - locale:si - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/si - - - - gimp-i18n-kk - Gimp translation files for Kazakh - Kazakça için GIMP yerelleştirme dosyaları - locale:kk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/kk - - - - gimp-i18n-br - Gimp translation files for Breton - Breton dili için GIMP yerelleştirme dosyaları - locale:br - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/br - - - - gimp-i18n-te - Gimp translation files for Telugu - locale:te - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/te - - - - gimp-i18n-csb - Gimp translation files for Kashubian - locale:csb - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/csb - - - - gimp-i18n-gd - Gimp translation files for Scottish Gaelic - locale:gd - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gd - - - - - 2015-02-21 - 2.8.14 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-19 - 2.8.10 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-27 - 2.8.10 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-12-13 - 2.8.10 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-17 - 2.8.6 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-23 - 2.8.6 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-16 - 2.8.4 - Updated - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-08-25 - 2.8.2 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - libdmtx - http://www.libdmtx.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.graphics - A Library for working with Data Matrix 2D bar-codes - Data Matrix 2D barkodlarıyla çalışmak için kitaplık - libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. - libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. - http://sourceforge.net/projects/libdmtx/files/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz - - imagemagick-devel - - multimedia/graphics/libdmtx/pspec.xml - - - libdmtx - - imagemagick - - - /usr/lib - /usr/share/doc - - - - libdmtx-devel - Development files for libdmtx - libdmtx için geliştirme dosyaları - - libdmtx - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-06-05 - 0.7.4 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-08-09 - 0.7.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - inkscape - http://www.inkscape.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:gui - multimedia.graphics - SVG vector graphics application - Vektörel çizim programı - Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files. - SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır. - https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2 - - gtk2-devel - gtkmm-devel - atkmm-devel - cairo-devel - lcms2-devel - boost-devel - atk-devel - gc-devel - perl-XML-Parser - pango-devel - popt-devel - poppler-glib-devel - poppler-devel - aspell-devel - glibc-devel - gsl-devel - libwpg-devel - libwpd-devel - imagemagick-devel - glibmm-devel - libXft-devel - aalib-devel - libart_lgpl-devel - fontconfig-devel - libsigc++-devel - liblqr-devel - cairomm-devel - gdk-pixbuf-devel - libxslt-devel - pangomm-devel - libcdr-devel - libvisio-devel - librevenge-devel - libjpeg-turbo-devel - gtkspell-devel - dbus-glib-devel - zlib-devel - glib2-devel - libX11-devel - libgcc - libpng-devel - libxml2-devel - freetype - libgomp - libxslt-devel - intltool - gettext-devel - pkgconfig - libX11-devel - - multimedia/graphics/inkscape/pspec.xml - - - inkscape - - freetype - libxml2 - libpng - libgcc - libX11 - glib2 - zlib - dbus-glib - popt - gtk2 - pango - lcms2 - cairo - poppler-glib - gsl - aspell - libwpg - imagemagick - glibmm - gtkmm - fontconfig - libsigc++ - gtkspell - cairomm - gdk-pixbuf - libxslt - pangomm - libwpd - atkmm - poppler - libcdr - libvisio - librevenge - libjpeg-turbo - gc - libgomp - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/icons - /usr/share/dbus-1 - /usr/share/inkscape - /usr/share/applications - - - - inkscape-devel - Development files for Inkscape - Inkscape için geliştirme dosyaları - - inkscape - glib2-devel - dbus-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-29 - 0.91 - Rebuild for 2.0. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-04-09 - 0.91 - fixed problems. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-03-07 - 0.91 - rebuild for poppler. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-09 - 0.91 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-25 - 0.48.5 - Rebuild. - Vedat Demir - vedat@pisilinux.org - - - 2014-09-14 - 0.48.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-30 - 0.48.4 - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 0.48.4 - New patch and some fixes - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-10 - 0.48.4 - Rebuil for new poppler. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-01 - 0.48.4 - Rebuild for poppler-0.22.5 - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-26 - 0.48.4 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-11-14 - 0.48.3.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - lcms - http://www.littlecms.com/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.graphics - Moteur de gestion de couleurs léger et optimisé pour la vitesse. - A lightweight, speed optimized color management engine - Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru - LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. - mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz - - swig - tiff-devel - libjpeg-turbo-devel - - - CVE-2009-0793.patch - - multimedia/graphics/lcms/pspec.xml - - - lcms - - tiff - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/lcms - /usr/share/doc - /usr/share/man - - - - lcms-devel - lcms için geliştirme dosyaları - - lcms - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - lcms-32bit - 32-bit shared libraries for lcms - lcms için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - - - lcms - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-19 - 1.19 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2011-05-04 - 1.19 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - jasper - http://www.ece.uvic.ca/~mdadams/jasper - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - multimedia.graphics - Software implementation of JPEG-2000 Part 1 - JasPer JPEG-2000 Part-1 codec standardı üzerinde konumlandırılmış bir yazılım - JasPer is a software-based implementation of the codec specified in the JPEG-2000 Part-1 standard (ISO/IEC 15444-1:2000). - http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-1.900.1.zip - - libjpeg-turbo-devel - - - jasper-1.900.1-fixes-20081208.patch.bz2 - - multimedia/graphics/jasper/pspec.xml - - - jasper - - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/man - - - - jasper-docs - - jasper - - - /usr/share/doc - - - - jasper-devel - Development files for jasper - jasper için geliştirme dosyaları - - jasper - - - /usr/include - - - - jasper-32bit - 32-bit shared libraries for jasper - jasper için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libjpeg-turbo-32bit - - - jasper - libjpeg-turbo-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-06-26 - 1.900.1 - Rebuild, fixed - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-21 - 1.900.1 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-20 - 1.900.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-08-17 - 1.900.1 - Release bump. - PisiLinux Community - admins@pisilinux.org - - - 2011-07-07 - 1.900.1 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - libwmf - http://wvware.sourceforge.net/libwmf.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics - Library for reading and converting WMF files - WMF (Windows metafile) okuma ve dönüştürme kitaplığı - Librairie pour convertir les fichiers WMF. - A library for reading and converting Windows MetaFile vector graphics (WMF). - Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir. - mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz - - libjpeg-turbo-devel - harfbuzz-devel - freetype-devel - libX11-devel - libxml2-devel - gettext-devel - gdk-pixbuf-devel - - multimedia/graphics/libwmf/pspec.xml - - - libwmf - - zlib - libX11 - libpng - libxml2 - freetype - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/libwmf - - - - libwmf-devel - Development files for libwmf - libwmf için geliştirme dosyaları - - libwmf - - - /usr/bin/libwmf-config - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 0.2.8.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 0.2.8.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.2.8.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - jbigkit - http://www.cl.cam.ac.uk/~mgk25/jbigkit/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.graphics - A portable library of compression and decompression functions - Taşınabilir bir sıkıştırma kitaplığı - JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents. - jbigkit, faks sayfaları ve taranmış belgeler gibi yüksek çözünürlüklü görüntüler için, yüksek performanslı bir sıkıştırma kitaplığıdır. - http://www.cl.cam.ac.uk/~mgk25/download/jbigkit-2.0.tar.gz - - jbigkit-2.0-shared.diff - - multimedia/graphics/jbigkit/pspec.xml - - - jbigkit - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/lib - - - - jbigkit-devel - Development files for jbigkit - jbigkit için geliştirme dosyaları - - jbigkit - - - /usr/include - - - - - 2014-05-19 - 2.0 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-27 - 2.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - babl - http://gegl.org/babl - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - LGPLv3 - library - multimedia.graphics - A dynamic, any to any, pixel format translation library - Dinamik piksel biçimi dönüştürme kütüphanesi - babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations. - babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir. - http://download.gimp.org/pub/babl/0.1/babl-0.1.12.tar.bz2 - - gobject-introspection-devel - - multimedia/graphics/babl/pspec.xml - - - babl - - /usr/lib - /usr/share/doc - - - - babl-devel - Development files for babl - babl için geliştirme dosyaları - - babl - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2015-02-07 - 0.1.12 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-19 - 0.1.10 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-18 - 0.1.10 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-28 - 0.1.10 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - lcms2 - http://www.littlecms.com - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - multimedia.graphics - A color management library. - Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms. - http://sourceforge.net/projects/lcms/files/lcms/2.6/lcms2-2.6.tar.gz - - libjpeg-turbo-devel - tiff-devel - - multimedia/graphics/lcms2/pspec.xml - - - lcms2 - - libjpeg-turbo - tiff - - - /usr/bin - /usr/lib - /usr/share/lcms/ - /usr/share/man - /usr/share/doc - - - - lcms2-devel - Development files for lcms2 - - lcms2 - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - lcms2-32bit - 32-bit shared libraries for lcms2 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - - - lcms2 - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-15 - 2.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-29 - 2.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-07-02 - 2.5 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-31 - 2.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - openimageio - https://sites.google.com/site/openimageio/home - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics - Library for reading and writing images - Görüntüleri okuma ve yazma için bir kütüphane - OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. - https://github.com/OpenImageIO/oiio/archive/Release-1.5.20.tar.gz - - cmake - boost-devel - openexr-devel - ilmbase-devel - glew-devel - python-devel - txt2man - libpng-devel - tiff-devel - webp-devel - ffmpeg-devel - opencv-devel - freetype-devel - giflib-devel - zlib-devel - jasper-devel - libraw-devel - openjpeg-devel - libjpeg-turbo-devel - - multimedia/graphics/openimageio/pspec.xml - - - openimageio - - tiff - webp - boost - opencv - giflib - ilmbase - openjpeg - openexr-libs - libjpeg-turbo - libraw - zlib - ffmpeg - libpng - python - freetype - libgcc - - - /usr/lib - /usr/bin - /usr/share - - - - openimageio-devel - Development files for openimageio - openimageio için geliştirme başlıkları - - openimageio - tiff-devel - webp-devel - boost-devel - opencv-devel - giflib-devel - ilmbase-devel - openjpeg-devel - openexr-devel - libjpeg-turbo-devel - libraw-devel - zlib-devel - ffmpeg-devel - libpng-devel - python-devel - freetype-devel - - - /usr/include - - - - - 2015-11-06 - 1.5.20 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-14 - 1.5.19 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-30 - 1.4.15 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.4.8 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-23 - 1.3.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-20 - 1.3.11 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-11 - 1.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 1.1.20130123 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-25 - 1.1.20130123 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - aalib - http://aa-project.sourceforge.net/aalib/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics - An ASCII-graphics Library - Bir ASCII-grafik Kitaplığı - Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII. - Aalib is an ASCII-graphics library generating ASCII character outputs. - AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir. - Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII. - mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz - - gpm - ncurses-devel - - - m4.patch - - multimedia/graphics/aalib/pspec.xml - - - aalib - - gpm - ncurses - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - aalib-devel - Development files for aalib - aalib için geliştirme dosyaları - - aalib - - - /usr/share/aclocal - /usr/include - /usr/share/man/man3 - - - - - 2014-05-20 - 1.4_rc5 - Rebuild, cleanup, fix gpm linking. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-16 - 1.4_rc5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-12-20 - 1.4_rc5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcaca - http://caca.zoy.org/ - - PisiLinux Community - admins@pisilinux.org - - WTFPL-2 - LGPLv2.1 - GPLv2 - library - multimedia.graphics - A library that creates colored ASCII-art graphics - Renkli ASCII-sanat grafikleri oluşturan bir kütüphane - libcaca est une librairie graphique qui génère du texte au lieu de pixels afin de pouvoir fonctionner sur de vieilles cartes graphique ou sur des terminaux texte. - libcaca is a graphics library that outputs text instead of pixels, so that it can work on older video cards or text terminals - libcaca piksel yerine metin üreten bir grafik kütüphanesidir, böylece eski video kart yada metin uçbirimleriyle çalışabilir. - libcaca es una librería gráfica que produce una salida de texto en vez de pixels, por lo tanto puede funcionar con tarjetas de video más antiguas y terminales de texto - http://caca.zoy.org/raw-attachment/wiki/libcaca/libcaca-0.99.beta19.tar.gz - - imlib2-devel - - multimedia/graphics/libcaca/pspec.xml - - - libcaca - - imlib2 - zlib - slang - ncurses - libX11 - - - /usr/bin - /usr/lib - /usr/share/libcaca - /usr/share/man - /usr/share/doc - - - - libcaca-devel - Development files for libcaca - libcaca için geliştirme dosyaları - - libcaca - - - /usr/bin/caca-config - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-21 - 0.99_beta19 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 0.99_beta18 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 0.99_beta18 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 0.99_beta17 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - GraphicsMagick - http://www.graphicsmagick.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - multimedia.graphics - GraphicsMagick Image Processing System - GraphicsMagick Resim İşleme Sistemi - GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software. - GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır. - mirrors://sourceforge/graphicsmagick/GraphicsMagick-1.3.20.tar.xz - - tiff-devel - webp-devel - lcms2-devel - libSM-devel - libwmf-devel - libICE-devel - jasper-devel - jbigkit-devel - libXext-devel - libjpeg-turbo-devel - ghostscript-devel - - - GraphicsMagick-1.3.14-perl_linkage.patch - GraphicsMagick-1.3.16-multilib.patch - - multimedia/graphics/GraphicsMagick/pspec.xml - - - GraphicsMagick - app:console - - tiff - webp - lcms2 - libwmf - jasper - libXext - jbigkit - libgomp - ghostscript - libjpeg-turbo - - - /etc - /usr/bin/gm - /usr/lib/GraphicsMagick-* - /usr/lib/lib* - /usr/share/GraphicsMagick-* - /usr/share/doc - /usr/share/man - - - - GraphicsMagick-devel - Development files for GraphicsMagick - - GraphicsMagick - - - /usr/bin/*-config - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/GraphicsMagick/www - /usr/share/man/man1/*-config.* - - - - PerlMagick - GraphicsMagick perl bindings - - GraphicsMagick - - - /usr/lib/perl5 - /usr/share/doc/PerlMagick - - - - - 2014-09-13 - 1.3.20 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-19 - 1.3.19 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-23 - 1.3.19 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-07 - 1.3.19 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-04 - 1.3.19 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 1.3.17 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2012-11-22 - 1.3.17 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - imlib2 - http://enlightenment.org/Libraries/Imlib2 - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.graphics - Second version of the general image loading and rendering library - Genel resim yükleme ve tarama kütüphanesi'nin ikinci versiyonu - Imlib 2 est le successeur de Imlib. Il ne s'agit pas là juste d'une version plus récente d'imlib 1, mais vraiment d'une librairie complètement différente. S'agissant effectivement d'une différente librairie - même si elles ont des fonctionnalités similaires, Imlib2 peut être installée aux côtés de Imlib1.x sans aucun problème. - Imlib 2 is the successor to Imlib. It is not just a newer version - it is a completely new library. Imlib2 can be installed alongside Imlib 1.x without any problems since they are effectively different libraries - but they Have very similar functionality. - Imlib 2, Imlib'in gelişmişidir. Sadece ileri bir sürümü değildir, tamamen yeni bir kütüphanedir. Imlib2 ve Imlib 1.x tamamen farklı oldukları için bir arada kurulu bulunabilirler. İkisi de aynı amaçla yapılmıştır. - Imlib 2 es el sucesor de Imlib. no es simplemente una versión actualizada - es una librería completamente nueva. Imlib2 puede instalarse junto con Imlib 1.x sin problemas, ya que efectivamente son librerías diferentes - sin embargo tienen una funcionalidad similar. - http://sourceforge.net/projects/enlightenment/files/imlib2-src/1.4.6/imlib2-1.4.6.tar.gz - - giflib-devel - libid3tag-devel - libXext-devel - libjpeg-turbo-devel - tiff-devel - freetype-devel - - - imlib2-1.4.5-no-my-libs.patch - imlib2-giflib5.patch - - multimedia/graphics/imlib2/pspec.xml - - - imlib2 - - giflib - libid3tag - libXext - libjpeg-turbo - tiff - zlib - bzip2 - libX11 - libpng - freetype - - - /usr/bin - /usr/lib - /usr/share/imlib2 - /usr/share/doc - - - - imlib2-devel - Development files for imlib2 - imlib2 için geliştirme dosyaları - - imlib2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.4.6 - Fix build. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-21 - 1.4.6 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-26 - 1.4.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 1.4.5 - First release - PisiLinux Community - namsp-01@hotmail.it - - - - - - netpbm - http://netpbm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.graphics - A set of utilities to convert to/from the netpbm (and related) formats - Netpbm vb. gibi formatlar arasında dönüşüm yapan araçlar serisi - Netpbm is a toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats. - http://source.pisilinux.org/1.0/netpbm-10.61.02.tar.gz - - config.mk - - - jasper-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - zlib-devel - libX11-devel - libxml2-devel - - - netpbm-CAN-2005-2471.patch - netpbm-security-code.patch - netpbm-security-scripts.patch - library-link.patch - - multimedia/graphics/netpbm/pspec.xml - - - netpbm - - jasper - tiff - libpng - libjpeg-turbo - zlib - libX11 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/netpbm - /usr/share/man - /usr/share/doc - - - - netpbm-devel - Development files for netpbm - netpbm için geliştirme dosyaları - - netpbm - - - /usr/include - /usr/share/man/man3 - - - - - 2015-02-21 - 10.61.02 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-05-17 - 10.61.02 - Library link fixed - Ertan Güven - ertan@pisilinux.org - - - 2013-05-15 - 10.61.02 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-08-29 - 10.57.06 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - giflib - http://sourceforge.net/projects/giflib - - PisiLinux Community - admins@pisilinux.org - - MIT - library - multimedia.graphics - Library to handle, display and manipulate GIF images - GIF türündeki resimleri görüntüleyip işlemeye aracılık eden kitaplık - libungif est une librairies de lecture et d'écriture d'images gif. La fonctionnalité de sauvegarde utilise un algorithme gif non compressé pour éviter le brevet Unisys LZW. giflib est un remplaçant de cette dernière compatible aussi bien au niveau de l'interface de programmation (API) qu'au niveau binaire (ABI) pour les pays où LZW n'est pas breveté. - The giflib package contains a shared library of functions for loading and saving GIF format image files. It is API and ABI compatible with libungif, the library which supported uncompressed GIFs while the Unisys LZW patent was in effect. - libungif, gif dosyalarını okumaya ve yazmaya yarayan bir kütüphanedir. Kaydetme algoritması Unisys LZW patentine takılmamak için sıkıştırma yapmamaktadır. Böylece LZW'nin patentli olmadığı ülkelerde kullanılmak için API ve ABI uyumlu bir alternatif sunar. - mirrors://sourceforge/giflib/giflib-5.0.6.tar.bz2 - multimedia/graphics/giflib/pspec.xml - - - giflib - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - giflib-devel - - giflib - - - /usr/include - /usr/share/doc/giflib/html - - - - giflib-32bit - 32-bit shared libraries for giflib - emul32 - emul32 - - glibc-32bit - - - giflib - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-20 - 5.0.6 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 5.0.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-31 - 4.1.6 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2011-05-03 - 4.1.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - mjpegtools - http://mjpeg.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:gui - multimedia.graphics - Tools for MJPEG video - MJPEG video dosyaları için kullanılabilecek araçlar - mjpegtools is a complete suite of tools for you to capture, edit, process, filter and play your media as you wish. You can digitize your VHS collection, create DVDs, and do advanced video filtering on already-digitized videos. - Mjpegtools size görüntü yakalama, düzenleme, işleme ve filtreleme olanakları sunan ayrıca dosyalarınızı istediğiniz gibi oynatabileceğiniz tam bir araçlar paketidir. VHS kolleksiyonunuzu dijital ortama taşıyabilir, DVDler yaratabilirsiniz. Zaten dijital ortamda olan videolara ileri düzeyde video filtrelemesi yapabilirsiniz. - http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/mjpegtools-2.1.0.tar.gz/download - - gtk2-devel - libdv-devel - libsdl-devel - libXxf86dga-devel - libjpeg-turbo-devel - libpng-devel - - multimedia/graphics/mjpegtools/pspec.xml - - - mjpegtools - - gtk2 - glib2 - libdv - libgcc - libsdl - libjpeg-turbo - libpng - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - mjpegtools-devel - Development files for mjpegtools - mjpegtools için geliştirme dosyaları - - mjpegtools - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-06-10 - 2.1.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-26 - 2.1.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-13 - 2.1.0 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2012-10-07 - 2.0.1_rc1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gegl - http://gegl.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - LGPLv3+ - library - app:console - multimedia.graphics - A graph based image processing framework - Graf tabanlı resim işleme altyapısı - gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. - gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. - http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2 - - libspiro-devel - openexr-devel - ffmpeg-devel - libsdl-devel - libv4l-devel - jasper-devel - cairo-devel - pango-devel - exiv2-devel - babl-devel - libjpeg-turbo-devel - gtk2-devel - lua-devel - asciidoc - intltool - ruby - ilmbase-devel - - - gegl-0.2.0-cve-2012-4433-1e92e523.patch - gegl-0.2.0-cve-2012-4433-4757cdf7.patch - gegl-0.2.0-ffmpeg-0.11.patch - - multimedia/graphics/gegl/pspec.xml - - - gegl - - glib2 - gdk-pixbuf - libspiro - jasper - libpng - libsdl - cairo - pango - babl - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/locale/ - - - - gegl-devel - Development files for gegl - gegl için geliştirme dosyaları - - gegl - glib2-devel - babl-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc/html - - - - - 2014-12-20 - 0.2.0 - Rebuild for lua - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-19 - 0.2.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-31 - 0.2.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-29 - 0.2.0 - rebuild for ffmpeg - Kamil Atlı - suvarice@gmail.com - - - 2013-08-23 - 0.2.0 - Release bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-20 - 0.2.0 - Configure parameter fixed - Ertan Güven - ertan@pisilinux.org - - - 2012-12-08 - 0.2.0 - First release - marcin bojara - marcin@pisilinux.org - - - - - - libraw - http://www.libraw.org/ - - Yücel KILIÇ - yucel.kilic@linux.org.tr - - LGPLv2.1 - CDDL - library - multimedia.graphics - Raw image decoder - LibRaw is a library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others). - http://www.libraw.org/data/LibRaw-0.16.2.tar.gz - - libgomp - lcms2-devel - jasper-devel - libjpeg-turbo-devel - - multimedia/graphics/libraw/pspec.xml - - - libraw - - libgomp - libgcc - lcms2 - jasper - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libraw-devel - Development files for libraw - libraw için geliştirme dosyaları - - libraw - lcms2-devel - jasper-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-13 - 0.16.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-16 - 0.16.1 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-24 - 0.16.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-08 - 0.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 0.15.2 - Release bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 0.15.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 0.14.7 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-12-31 - 0.14.7 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libjpeg-turbo - http://www.libjpeg-turbo.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:gui - multimedia.graphics - MMX, SSE, and SSE2 SIMD accelerated JPEG library - libjpeg-turbo is a derivative of libjpeg for x86 and x86-64 processors which -uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression and decompression. libjpeg-turbo is generally 2-4x as fast as the unmodified version of libjpeg v6b, all else being equal. - mirrors://sourceforge/libjpeg-turbo/1.3.1/libjpeg-turbo-1.3.1.tar.gz - - fix_doc.patch - - multimedia/graphics/libjpeg-turbo/pspec.xml - - - libjpeg-turbo - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - jpeg - - - - libjpeg-turbo-devel - Development files for libjpeg-turbo - libjpeg-turbo için geliştirme dosyaları - - libjpeg-turbo - - - /usr/include/ - - - jpeg-devel - - - - libjpeg-turbo-32bit - 32-bit shared libraries for jpeg - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libjpeg-turbo - - - /usr/lib32 - - - jpeg-32bit - - - - - 2014-05-15 - 1.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-05-15 - 1.2.1 - Switching from jpeg to libjpeg-turbo - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-12 - 1.2.1 - Source url write mirrors - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-21 - 1.2.1 - Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-07-31 - 1.2.1 - First Release - PisiLinux Community - admins@pisilinux.org - - - - - - libart_lgpl - http://www.levien.com/libart - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.graphics - A LGPL version of libart - libart'ın bir LGPL sürümü - Libart est une librairie pour graphiques 2D à hautes performances. Elle est actuellement utilisé comme moteur de rendu anti-aliassé pour le Canvas Gnome. Libart fournit le support pour un modèle image très puissant, simplement le même que SVG et l'API (Interface de Programmation d'Application) Java 2D. - Libart is a library for high-performance 2D graphics. It is currently being used as the antialiased rendering engine for the Gnome Canvas. Libart supports a very powerful imaging model, basically the same as SVG and the Java 2D API. - Libart, yüksek performanslı iki boyutlu grafikler için bir kütüphanedir. Halihazırda Gnome Canvas için kenarların yumuşatıldığı dönüştürme aracı olarak kullanılmaktadır. Libart, temelde Java 2D API ve SVG benzeri, çok güçlü bir görüntüleme modelini destekler. -  Libart es una librería para gráficos 2D de alta performance. Actualmente está usado como antialiased rendering engine para Gnome Canvas. Libart soporta un modelo de imagen muy potente, básicamente el mismo como SVG y el API 2D de Java. - http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.bz2 - - noartconfig.patch - libart_lgpl-2.3.21-crosscompile.patch - libart_lgpl-2.3.21-no-test-build.patch - - multimedia/graphics/libart_lgpl/pspec.xml - - - libart_lgpl - - /usr/lib - /usr/share/doc - - - - libart_lgpl-devel - Development files for libart_lgpl - libart_lgpl için geliştirme dosyaları - - libart_lgpl - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 2.3.21 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-29 - 2.3.21 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.3.21 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - imagemagick - http://www.imagemagick.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:gui - multimedia.graphics - A collection of tools and libraries for many image file formats - Resimleri işlemek ve göstermek için bir X uygulaması - Narzędzie do wyświetlania, konwersji i manipulacji grafikami - ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. - ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.9.2-0.tar.xz - - ghostscript-devel - fontconfig-devel - librsvg-devel - openexr-devel - libXext-devel - libwmf-devel - liblqr-devel - jasper-devel - cairo-devel - fftw3-devel - lcms2-devel - tiff-devel - webp-devel - libjpeg-turbo-devel - libpng-devel - - - perlmagick.rpath.patch - - multimedia/graphics/imagemagick/pspec.xml - - - imagemagick - - perl - tiff - webp - zlib - bzip2 - fftw3 - lcms2 - libX11 - libgcc - liblqr - libpng - libwmf - libXext - libgomp - freetype - fontconfig - ghostscript - libtool-ltdl - openexr-libs - libjpeg-turbo - - - /usr/bin - /etc/ImageMagick-6/ - /usr/lib - /usr/share/ImageMagick-* - /usr/share/man - /usr/share/doc - - - - imagemagick-docs - HTML documentation for imagemagick - Imagemagick için API belgeleri - - /usr/share/doc/imagemagick/html - - - - imagemagick-devel - Development files for imagemagick - imagemagick için geliştirme dosyaları - Pliki nagłówkowe imagemagick - - imagemagick - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/man/man1/*-config* - /usr/bin/*-config - - - - - 2014-09-14 - 6.9.2.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - openjpeg - http://www.openjpeg.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - multimedia.graphics - JPEG2000 decoding library - JPEG2000 çözme kütüphanesi - Biblioteka implementująca kodek formatu JPEG 2000 - openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). - http://downloads.sourceforge.net/project/openjpeg.mirror/1.5.2/openjpeg-1.5.2.tar.gz - - tiff-devel - doxygen - libpng-devel - - - openjpeg-20070717svn-mqc-optimize.patch - - multimedia/graphics/openjpeg/pspec.xml - - - openjpeg - - libpng - tiff - - - /usr/bin - /usr/share/pkgconfig/ - /usr/share/openjpeg-1.5 - /usr/share/man/man1 - /usr/lib - /usr/share/doc - - - - openjpeg-devel - Development files for openjpeg - openjpeg için geliştirme dosyaları - Pliki nagłówkowe do openjpeg - - openjpeg - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/man/man3 - - - - openjpeg-32bit - 32-bit shared libraries for openjpeg - emul32 - - glibc-32bit - libpng-32bit - - - openjpeg - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-22 - 1.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-09 - 1.5.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-28 - 1.5.1 - Fix pc file for emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-18 - 1.5.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - x264 - http://developers.videolan.org/x264.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.video - Open source H264/AVC encoder - Açık kaynak kodlu H264/AVC çözücü - x264 is a free library for encoding H264/AVC video streams. - x264 H264/AVC görüntü dosyalarını açmak için kullanılan bir kütüphane - ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20141201-2245.tar.bz2 - - yasm-devel - - multimedia/video/x264/pspec.xml - - - x264 - - /usr/bin - /usr/lib - - - - x264-devel - Development files for x264 - x264 için geliştirme dosyaları - - x264 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-02 - 2245 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-18 - 2245 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-05 - 0.0_20140404 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-17 - 0.0_20130705 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-06 - 0.0_20130705 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-30 - 0.0_20120929 - First release - Erdem Artan - admins@pisilinux.org - - - - - - gstreamermm - http://gstreamer.freedesktop.org/bindings/cplusplus.html - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.video - GStreamer C++ bindings - Gstreamer C++ arayüzü - The GStreamer API C++ bindings are based on gtkmm, using the same lifecycle mechanism. - Gstreamer'ın C++ arayüzü gtkmm temel alınarak hazırlanmıştır, aynı yaşam ömrü mekanizmasını kullanır. - http://ftp.gnome.org/pub/gnome/sources/gstreamermm/0.10/gstreamermm-0.10.11.tar.xz - - glib2-devel - gstreamer-devel - libxml2-devel - gst-plugins-base-devel - glibmm-devel - libxmlpp-devel - libsigc++ - libgcc - - multimedia/video/gstreamermm/pspec.xml - - - gstreamermm - - glib2 - libgcc - libxml2 - gstreamer - gst-plugins-base - glibmm - libxmlpp - libsigc++ - - - /usr/lib - /usr/share/devhelp/books/gstreamermm-0.10 - /usr/share/doc - - - - gstreamermm-devel - gstreamermm için geliştirme dosyaları - gstreamermm için geliştirme dosyaları - - glibmm-devel - libxmlpp-devel - gstreamer-devel - gst-plugins-base-devel - gstreamermm - - - /usr/include/gstreamermm-0.10 - /usr/lib/pkgconfig - - - - - 2014-05-28 - 0.10.11 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-27 - 0.10.11 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-26 - 0.10.11 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-08-08 - 0.10.11 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - x265 - http://x265.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.video - Open source H265/EVC encoder - Açık kaynak kodlu H265/EVC çözücü - x265 is a commercially funded open source implementation of the H.265/High Efficiency Video Coding (HEVC) compression standard. - x265 H265/EVC görüntü dosyalarını açmak için kullanılan bir kütüphane - https://bitbucket.org/multicoreware/x265/get/1.7.tar.bz2 - - yasm-devel - cmake - - multimedia/video/x265/pspec.xml - - - x265 - - libgcc - - - /usr/bin - /usr/lib - - - - x265-devel - Development files for x265 - x265 için geliştirme dosyaları - - x265 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-23 - 1.7 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-02 - 1.4 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-18 - 1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-05 - 0.9 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - opencore-amr - http://opencore-amr.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - multimedia.video - AMR speech codec implementation - AMR ses kodek sistemi - Opencore AMR is an implementation of Adaptive Multi Rate Narrowband and Wideband speech codec. - Opencore AMR, Adaptive Multi Rate Narrowband ve Wideband ses kodek sistemi altyapısıdır. - http://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-0.1.3.tar.gz - multimedia/video/opencore-amr/pspec.xml - - - opencore-amr - - /usr/lib - /usr/share/doc/opencore-amr - - - - opencore-amr-devel - Development files for opencore-amr - opencore-amr için geliştirme dosyaları - - opencore-amr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-01 - 0.1.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-08-29 - 0.1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libtheora - http://www.theora.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.video - Le codec (compresseur / décompresseur) de compression vidéo Theora. - The Theora Video Compression Codec - Theora video sıkıştırma kodlaması - Der Theora Video Kompressions-Codec - libtheora is Xiph.Org's first publicly released video codec, intended for use within the Ogg's project's Ogg multimedia streaming system. - libtheora, Ogg projesi kapsamında Ogg çokluortam akış sistemi ile beraber kullanılmak üzere tasarlanmış bir video kodlamasıdır. - http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2 - - libogg-devel - libvorbis-devel - - - flags.patch - libtheora-1.1.1-libpng16.patch - - multimedia/video/libtheora/pspec.xml - - - libtheora - - libogg - libvorbis - - - /usr/lib - /usr/share/doc - - - - libtheora-32bit - 32-bit shared libraries for libtheora - emul32 - emul32 - - libogg-32bit - glibc-32bit - - - libtheora - libogg-32bit - glibc-32bit - - - /usr/lib32 - - - - libtheora-devel - Development files for libtheora - libtheora için geliştirme dosyaları - - libtheora - libogg-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2014-05-20 - 1.1.1 - Rebuild, add libpng16 patch. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-02-14 - 1.1.1 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 1.1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gst-libav-next - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Gstreamer plugin for the libav codec - Gstreamer plugin for the libav codec. - http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.4.5.tar.xz - - gst-plugins-base-next-devel - gstreamer-next-devel - liboil-devel - orc-devel - ffmpeg-devel - - multimedia/video/gst-libav-next/pspec.xml - - - gst-libav-next - - gst-plugins-base-next - gstreamer-next - bzip2 - glib2 - ffmpeg - liboil - - - /usr/lib - /usr/share/doc - /usr/share/gtk-doc - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-23 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-26 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-29 - 1.2.1 - Version bump + rebuild for ffmpeg - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-10-14 - 1.2.0 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libmatroska - http://www.matroska.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Format de conteneur multimédia extensible basé sur EBML. - Extensible multimedia container format based on EBML - EBML üzerine konumlandırılmış genişletilebilir çokluortam taşıyıcısı - Matroska is an extensible open standard Audio/Video container. It aims to become THE standard of multimedia container formats. Matroska is usually found as .mkv files (matroska video) and .mka files (matroska audio). - http://dl.matroska.org/downloads/libmatroska/libmatroska-1.4.2.tar.bz2 - - libebml-devel - - multimedia/video/libmatroska/pspec.xml - - - libmatroska - - libebml - libgcc - - - /usr/lib - /usr/share/doc - - - - libmatroska-devel - Development files for libmatroska - libmatroska için geliştirme dosyaları - - libmatroska - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-20 - 1.4.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.4.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-11-16 - 1.4.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-08-29 - 1.3.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gst-plugins-bad-next - http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.video - A set of GStreamer plug-ins that aren't up to par compared to the rest - GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. - http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.4.5.tar.xz - - gstreamermm-devel - gst-plugins-base-devel - libdvdread-devel - libdvdnav-devel - soundtouch-devel - faac-devel - valgrind - jasper-devel - libdca-devel - gsm-devel - mjpegtools-devel - libdvdnav-devel - libsndfile-devel - DirectFB-devel - libSM-devel - libICE-devel - celt-devel - libdc1394-devel - alsa-lib-devel - libsdl-devel - soundtouch-devel - libtheora-devel - libmodplug-devel - xvid-devel - libdvdread-devel - libvdpau-devel - rtmpdump-devel - schroedinger-devel - gdk-pixbuf-devel - libvo-aacenc-devel - libvo-amrwbenc-devel - - - 02_no-Werror.patch - remove_external_symbols.patch - gst-plugins-bad-0.10.7-wildmidi-timidity.cfg.patch - - multimedia/video/gst-plugins-bad-next/pspec.xml - - - gst-plugins-bad-next - - DirectFB - libdca - libgcc - libxml2 - faac - bzip2 - glib2 - libX11 - gsm - libmodplug - mjpegtools - soundtouch - libdvdnav - libsndfile - libdvdread - libvdpau - schroedinger - gstreamer-next - orc - libvo-aacenc - libvo-amrwbenc - wayland-client - gst-plugins-base-next - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/gstreamer-1.0 - /usr/share/gst-plugins-bad/1.0/ - /usr/share/gtk-doc - /usr/share/gir-1.0/ - /usr/share/doc - - - - gst-plugins-bad-next-devel - Development files for gst-plugins-bad - - gst-plugins-bad-next - gstreamer-next-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-23 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 1.2.3 - Rebuild for webp. - Kamil Atlı - suvarice@gmail.com - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-20 - 1.2.1 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2.0 - bump - Osman Erkan - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libdvbpsi - http://www.videolan.org/libdvbpsi/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Librairie pour la génération et le décodage des tables PSI TS/DVB MPEG. - Library for MPEG TS/DVB PSI tables decoding and generation - MPEG TS/DVB PSI taslaklarını üretmek ve çözümlemek için kullanılan bir kitaplık - libdvbpsi is a simple library designed for decoding and generation of MPEG TS and DVB PSI tables. - libdvbpsi, MPEG TS ve DVB PSI tablolarının ürteimi ve çözümlenmesi için tasarlanmış basit bir kitaplıktır. - http://download.videolan.org/pub/libdvbpsi/1.1.2/libdvbpsi-1.1.2.tar.bz2 - multimedia/video/libdvbpsi/pspec.xml - - - libdvbpsi - - /usr/lib - /usr/share/doc - - - - libdvbpsi-devel - Development files for libdvbpsi - libdvbpsi için geliştirme dosyaları - - libdvbpsi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-31 - 1.1.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-20 - 1.1.2 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-08-29 - 0.2.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vo-amrwbenc - http://sourceforge.net/projects/opencore-amr/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:cli - multimedia.video - VisualOn AMR-WB encoder library - VisualOn AMR-WB encoder library - http://sourceforge.net/projects/opencore-amr/files/vo-amrwbenc/vo-amrwbenc-0.1.3.tar.gz - multimedia/video/vo-amrwbenc/pspec.xml - - - vo-amrwbenc - - libvo-amrwbenc - - - /usr/bin/amrwb-enc - - - - libvo-amrwbenc - - /usr/lib - /usr/share/doc - - - - libvo-amrwbenc-devel - - libvo-amrwbenc - - - /usr/include - /usr/lib/pkgconfig/vo-amrwbenc.pc - - - - - 2014-05-27 - 1.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-28 - 1.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-30 - 1.1.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - smpeg - http://www.lokigames.com/development/smpeg.php3 - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:gui - multimedia.video - SDL MPEG kitaplığı - SDL MPEG - SDL MPEG library - SMPEG is a SDL MPEG decoding library. - SMPEG, MPEG formatını kullanabilen SDL kitaplığıdır. - http://source.pisilinux.org/1.0/smpeg-0.4.5.tar.xz - - libsdl-devel - freeglut-devel - mesa-devel - mesa-glu-devel - - - smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff - smpeg-0.4.5-fix-header.patch - smpeg-0.4.5-libsupc++.patch - smpeg-0.4.5-link.patch - - multimedia/video/smpeg/pspec.xml - - - smpeg - - libsdl - mesa - mesa-glu - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - smpeg-devel - Development files for smpeg - smpeg için geliştirme dosyaları - - smpeg - - - /usr/bin/smpeg-config - /usr/include - /usr/share/aclocal - - - - smpeg-32bit - 32-bit shared libraries for smpeg - smpeg için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - freeglut-32bit - mesa-32bit - libsdl-32bit - mesa-glu-32bit - - - smpeg - libsdl-32bit - - - /usr/lib32 - - - - - 2014-06-01 - 0.4.5 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.4.5 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-31 - 0.4.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 0.4.4 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-12-30 - 0.4.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xvid - http://www.xvid.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - High performance MPEG-4 video de-/encoding solution - Yüksek performanslı bir MPEG-4 video kodlayıcı/çözücü - Xvid is a codec which makes it possible to compress movies too much while still maintaining the original image quality. - Xvid videoları kalite kaybına neden olmadan yüksek oranlarda sıkıştırabilmeye olanak tanıyan bir kodlayıcıdır. - Xvid es un codec que posibilita una alta compresión de peliculas, manteniendo la calidad original de la imagen. - http://downloads.xvid.org/downloads/xvidcore-1.3.3.tar.gz - multimedia/video/xvid/pspec.xml - - - xvid - - /usr/lib - /usr/share/doc/xvid - - - - xvid-devel - - xvid - - - /usr/share/doc/xvid/examples - /usr/include - - - - - 2014-12-14 - 1.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-22 - 1.3.2 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-17 - 1.3.2 - Rebuild for 1.0 - Richard de Bruin - richdb@pisilinux.org - - - 2012-08-29 - 1.3.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gstreamer-vaapi - http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ - - Osman Erkan - osman.erkan@pisilinux.org - - LGPLv2.1 - library - multimedia.video - GStreamer Multimedia Framework VA Plugins - gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. - http://freedesktop.org/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-0.6.0.tar.bz2 - - mesa-devel - libva-devel - libdrm-devel - wayland-devel - gstreamer-devel - libXrandr-devel - libXrender-devel - gstreamer-next-devel - gst-plugins-bad-devel - gst-plugins-base-devel - gst-plugins-bad-next-devel - gst-plugins-base-next-devel - - multimedia/video/gstreamer-vaapi/pspec.xml - - - gstreamer-vaapi - - mesa - libva - libdrm - gstreamer - libXrandr - libXrender - wayland-client - gst-plugins-bad - gst-plugins-base - - - /usr/share/doc - /usr/lib/gstreamer-0.10/ - /usr/lib/libgstvaapi*0.10* - - - - gstreamer-vaapi-next - GStreamer-next Multimedia Framework VA Plugins. - - mesa - libva - libdrm - libXrandr - libXrender - gstreamer-next - wayland-client - gst-plugins-bad-next - gst-plugins-base-next - - - /usr/lib/gstreamer-1.0/ - /usr/lib/libgstcodecparsers_vpx* - /usr/lib/libgstvaapi*1.4* - - - - gstreamer-vaapi-devel - Development files for gstreamer-vaapi - gstreamer için geliştirme dosyaları - - libva-devel - gstreamer-devel - gstreamer-vaapi - - - /usr/include/gstreamer-1.0/gst/vaapi/ - /usr/lib/pkgconfig/gstreamer-*0.10* - - - - gstreamer-vaapi-next-devel - Development files for gstreamer-vaapi-next - - libva-devel - gstreamer-next-devel - gstreamer-vaapi-next - - - /usr/include/gstreamer-1.4/ - /usr/lib/pkgconfig/gstreamer-vaapi-wayland-1.0.pc - /usr/lib/pkgconfig/gstreamer-vaapi-x11-1.0.pc - /usr/lib/pkgconfig/gstreamer-vaapi-1.0.pc - /usr/lib/pkgconfig/gstreamer-vaapi-glx-1.0.pc - - - - - 2015-07-23 - 0.6.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-28 - 0.5.8 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-24 - 0.5.8 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gst-plugins-ugly-next - http://gstreamer.net/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.video - Other plugins for gstreamer - GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. - http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.4.5.tar.xz - - gst-plugins-base-next-devel - gstreamer-next-devel - x264-devel - lame-devel - opencore-amr-devel - a52dec-devel - libmad-devel - libcdio-devel - libmpeg2-devel - libdvdcss-devel - libid3tag-devel - libdvdread-devel - orc-devel - - multimedia/video/gst-plugins-ugly-next/pspec.xml - - - gst-plugins-ugly-next - - gst-plugins-base-next - gstreamer-next - x264 - glib2 - lame - opencore-amr - a52dec - libmad - libcdio - libmpeg2 - libdvdread - orc - - - /usr/lib/gstreamer-1.0 - /usr/share/doc/ - /usr/share/gtk-doc/html/gst-plugins-ugly-plugins-1.0 - /usr/share/gstreamer-1.0 - /usr/share/locale - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-07 - 1.2.3 - Rebuild for x264. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-23 - 1.2.1 - version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2.0 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - vokoscreen - http://www.kohaupt-online.de/hp/ - - Pisilinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.video - New desktop recording program - Yeni masaüstü kayıt programı - Vokoscreen is a new application you to record your desktop. It’s very simple and it uses a minimalistic GUI - Vokoscreen masaüstü kaydetmek için yeni bir uygulamadır.Çok basit kullanışlı bir arayüz sunar. - vokoscreen - https://github.com/vkohaupt/vokoscreen/archive/2.4.3-beta.tar.gz - - qt5-base-devel - qt5-x11extras-devel - qt5-linguist - qt5-qdbusviewer - libv4l-devel - ffmpeg-devel - opencv-devel - alsa-lib-devel - libX11-devel - opencv-devel - pkgconfig - - - qtlocalpeer.patch - datastream.patch - - multimedia/video/vokoscreen/pspec.xml - - - vokoscreen - - libX11 - libgcc - libv4l - qt5-base - qt5-x11extras - alsa-lib - - - /usr/bin - /usr/share/applications - /usr/share/doc - /usr/share/man - /usr/share/pixmaps - - - - - 2015-11-15 - 2.4.6 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-08-13 - 2.4.3 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libmpeg2 - http://libmpeg2.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams - mpeg-2 ve mpeg-1 video görüntülerini çözmek için ücretsiz bir kütüphane - libmpeg2 est une librairie libre pour décoder les flux vidéos mpeg-2 et mpeg-1. libmpeg2 est capable de décoder tous les flux vidéos se conformant à certaines restrictions : "paramètres contraints (constrained parameters)" pour mpeg-1 et "profil principal (main profile)" pour mpeg-2. - libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. libmpeg2 is able to decode all mpeg streams that conform to certain restrictions: "constrained parameters" for mpeg-1, and "main profile" for mpeg-2. - libmpeg2, mpeg-1 ve mpeg-2 video akışlarının çözülerek okunması için ücretsiz bir kütüphanedir. Libmpeg-2, bir takım kısıtlayıcı kurallara (mpeg-1 için "kısıtlanmış parametreler" ve mpeg-2 için "ana profil") uyan bütün mpeg yayınlarını çözebilir. - libmpeg2 es una librería libre para decodificar flujos de video mpeg-2 y mpeg-1. libmpeg2 puede decodificar todo tipo de flujos mpeg que cumplen ciertos restricciones: "constrained parameters" para mpeg-1, y "main profile" para mpeg-2. - http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz - - libmpeg2-0.4.1-use-readelf-for-test.patch - - multimedia/video/libmpeg2/pspec.xml - - - libmpeg2 - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libmpeg2-devel - Development files for libmpeg2 - libmpeg2 için geliştirme dosyaları - - libmpeg2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 0.5.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-31 - 0.5.1 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.5.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libv4l - http://freecode.com/projects/libv4l - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - multimedia.video - V4L wrapper for V4L2 - V4L kitaplığı - Warstwa abstrakcji dla urządzeń video4linux2 - A library to access V4L2 API with V4L1 alike calls. - V4L2 arabirimini V4L1 tarzı çağrılarla erişim sağlayan kitaplık. - libv4l to zestaw bibliotek dodający niewielką warstwę abstrakcji dla urządzeń video4linux2. Celem tej warstwy jest ułatwienie autorom aplikacji obsługi szerokiej gamy urządzeń bez pisania osobnego kodu dla różnych urządzeń tej samej klasy. - http://linuxtv.org/downloads/v4l-utils/v4l-utils-1.0.1.tar.bz2 - - qt5-base-devel - libjpeg-turbo-devel - glibc-devel - libgcc - - multimedia/video/libv4l/pspec.xml - - - libv4l - - libjpeg-turbo - - - /lib/udev/rules.d - /lib/udev/rc_keymaps - /usr/lib - /usr/share/doc - - - - v4l-utils - Utilities for libv4l - Zbiór narzędzi do urządzeń Video4Linux - - libgcc - libv4l - - - /etc - /usr/bin - /usr/sbin - /usr/share/man - /usr/share/applications - /usr/share/icons - - - - libv4l-devel - Development files for libv4l - libv4l için geliştirme dosyaları - Pliki nagłówkowe bibliotek libv4l - - libv4l - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/libv4l/contrib - - - - libv4l-32bit - 32-bit shared libraries for libv4l - libv4l için 32-bit paylaşımlı kitaplıklar - 32-bitowe biblioteki libv4l - emul32 - emul32 - - libjpeg-turbo-32bit - - - libjpeg-turbo-32bit - glibc-32bit - libv4l - - - /usr/lib32 - - - - - 2014-05-20 - 1.0.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-20 - 23042013 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-17 - 23042013 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-17 - 23042013 - Release Bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 23042013 - missing dep - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-04-23 - 23042013 - bump frome gitsnapshot - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-02-17 - 0.9.3 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-12-03 - 0.8.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libquicktime - http://libquicktime.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.video - A library based on quicktime4linux with extensions - quicktime4linux ve eklentileri tabanlı bir kütüphane - Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement. - Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development. - Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir. - Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo. - mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz - - mesa-devel - lame-devel - zlib-devel - glib2-devel - libX11-devel - libpng-devel - faac-devel - gtk2-devel - libdv - faad2-devel - libXt-devel - libXv-devel - ffmpeg-devel - libXaw-devel - libXext-devel - alsa-lib-devel - libvorbis-devel - libavc1394-devel - libraw1394-devel - schroedinger-devel - libjpeg-turbo-devel - x264-devel - - - libquicktime-1.2.4+libav-9.patch - libquicktime-1.2.4-ffmpeg2.patch - - multimedia/video/libquicktime/pspec.xml - - - libquicktime - - mesa - lame - zlib - glib2 - libX11 - libpng - faac - gtk2 - libdv - faad2 - libXt - libXv - ffmpeg - libXaw - libXext - alsa-lib - libvorbis - libavc1394 - libraw1394 - schroedinger - libjpeg-turbo - x264 - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/locale - - - - libquicktime-devel - Development files for libquicktime - libquicktime için geliştirme dosyaları - - libquicktime - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2015-11-13 - 1.2.4 - Rebuild version for Pisi 2.0 - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-18 - 1.2.4 - Rebuild version - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-12-16 - 1.2.4 - Rebuild for ffmpeg - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 1.2.4 - Rebuild for x264 - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-29 - 1.2.4 - Rebuild for ffmpeg - PisiLinux Community - admins@pisilinux.org - - - 2013-11-26 - 1.2.4 - Rebuild for ffmpeg - PisiLinux Community - admins@pisilinux.org - - - 2013-07-08 - 1.2.4 - rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 1.2.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gst-plugins-base - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Basepack of plugins for gstreamer - Gstreamer için temel eklentiler paketi - Les plug-ins (greffons) de base GStreamer est une collection bien peaufinée et bien maintenues de plug-ins et d'éléments GStreamer, couvrant l'éventail des types d'éléments que quelqu'un pourrait vouloir écrire pour GStreamer. Il contient également des librairies d'aide ainsi que les classes de bases utiles pour l'écriture d'éléments. Un grand nombre de décodeurs, d'encodeurs et de filtres audio et vidéos sont également inclus. - GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. - Bu paket, Gstreamer'ın rahatlıkla genişleyebilmesini sağlayan ve bakımları sürekli yapılan temel eklentileri içerir. Program parçacığı yazmak için yardımcı kütüphaneler ve temel sınıflar da bulunur. - http://ftp.gnome.org/pub/gnome/sources/gst-plugins-base/0.10/gst-plugins-base-0.10.36.tar.xz - - gstreamer-devel - gstreamer-next-devel - pango-devel - libXv-devel - libogg-devel - alsa-lib-devel - libvorbis-devel - libtheora-devel - libvisual-devel - gobject-introspection-devel - orc-devel - libxml2-devel - - multimedia/video/gst-plugins-base/pspec.xml - - - gst-plugins-base - - zlib - glib2 - libX11 - libxml2 - gstreamer - pango - cairo - libXv - libogg - libXext - alsa-lib - libvorbis - libvisual - libtheora - orc - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/gstreamer-0.10 - /usr/lib/libgst* - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/gst-plugins-base - /usr/share/man - /usr/share/locale - - - - gst-plugins-base-32bit - 32-bit shared libraries for gst-plugins-base - emul32 - emul32 - - orc-32bit - zlib-32bit - glib2-32bit - libXv-32bit - cairo-32bit - pango-32bit - libSM-32bit - libogg-32bit - libICE-32bit - libX11-32bit - libxml2-32bit - libXext-32bit - alsa-lib-32bit - gstreamer-32bit - libvorbis-32bit - - - gst-plugins-base - orc-32bit - zlib-32bit - glibc-32bit - glib2-32bit - libXv-32bit - cairo-32bit - pango-32bit - libogg-32bit - libX11-32bit - libxml2-32bit - libXext-32bit - alsa-lib-32bit - gstreamer-32bit - libvorbis-32bit - - - /usr/lib32/gstreamer-0.10 - /usr/lib32/libgst* - - - - gst-plugins-base-devel - Development files for gst-plugins-base - gst-plugins-base için geliştirme dosyaları - - gst-plugins-base - glib2-devel - gstreamer-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig/gstreamer*.pc - /usr/share/man/man3 - - - - - 2014-05-20 - 0.10.36 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-27 - 0.10.36 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-01 - 0.10.36 - Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 0.10.36 - Move pc files to devel pack, rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 0.10.36 - Rebuild for libcdio-0.90 - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-25 - 0.10.36 - configure fix. - PisiLinux Community - admins@pisilinux.org - - - 2013-02-14 - 0.10.36 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-09 - 0.10.36 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - ffmpeg - http://ffmpeg.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - LGPLv2 - LGPLv3 - app:console - multimedia.video - A command-line tool to record, convert and stream audio and video - FFmpeg ses ve görüntü dosyalarını kaydedebilen, dönüştürebilen ve açabilen yazılımdır - FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu - FFmpeg is a complete solution to record, convert and stream audio and video. - FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. - FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. - http://ffmpeg.org/releases/ffmpeg-2.7.2.tar.bz2 - - freetype-devel - faac-devel - lame-devel - x264-devel - x265-devel - libva-devel - libsdl-devel - libvpx-devel - libass-devel - libopus-devel - alsa-lib-devel - libvdpau-devel - libtheora-devel - libvorbis-devel - gnutls-devel - celt-devel - gsm-devel - libbluray-devel - opencore-amr-devel - libmodplug-devel - pulseaudio-libs-devel - openjpeg-devel - frei0r-plugins-devel - rtmpdump-devel - schroedinger-devel - speex-devel - libv4l-devel - libvo-amrwbenc-devel - libvo-aacenc-devel - xvid-devel - libdc1394-devel - libnut-devel - libcdio-paranoia-devel - libXv-devel - - multimedia/video/ffmpeg/pspec.xml - - - ffmpeg - - gsm - celt - faac - lame - x264 - x265 - xvid - zlib - bzip2 - speex - libva - libXv - gnutls - libX11 - libnut - libsdl - libv4l - libvpx - libxcb - libass - libopus - libXext - alsa-lib - freetype - libvdpau - openjpeg - rtmpdump - libbluray - libdc1394 - libtheora - libvorbis - fontconfig - libmodplug - libvo-aacenc - opencore-amr - schroedinger - libvo-amrwbenc - pulseaudio-libs - libcdio-paranoia - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/ffmpeg - - - - ffmpeg-devel - Development files for ffmpeg - ffmpeg için geliştirme dosyaları - Pliki nagłówkowe ffmpeg - - ffmpeg - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-29 - 2.7.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-13 - 2.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-05 - 2.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-24 - 2.2.4 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-04 - 2.2.3 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-21 - 2.2.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-04-05 - 2.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-27 - 2.1.1 - fix dep - Kamil Atlı - suvarice@gmail.com - - - 2013-11-24 - 2.1.1 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-07-28 - 1.2.1 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-06 - 1.2.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-25 - 1.1.1 - Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2013-01-26 - 1.1.1 - Version bump to 1.1.1 - Idris Kalp - admins@pisilinux.org - - - 2012-09-29 - 1.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xine-lib - http://xine.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Librairies centrales pour le lecteur vidéo Xine. - Core libraries for Xine movie player - Xine çokluortam oynatıcısının çekirdek kitaplıkları - 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. - 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. - http://sourceforge.net/projects/xine/files/xine-lib/1.2.6/xine-lib-1.2.6.tar.xz - - accel_vaapi.h - - - libXext-devel - fontconfig-devel - freetype-devel - zlib-devel - libXinerama-devel - libXv-devel - libXvMC-devel - libogg-devel - libvorbis-devel - mesa-devel - libdvdcss-devel - DirectFB-devel - flac-devel - libsdl-devel - alsa-lib-devel - aalib-devel - libtheora-devel - libvpx-devel - samba-devel - libmad-devel - speex-devel - libmodplug-devel - ffmpeg-devel - a52dec-devel - libv4l-devel - pulseaudio-libs-devel - libdca-devel - libbluray-devel - libmng-devel - libSM-devel - libICE-devel - libcdio-devel - mesa-glu-devel - libvdpau-devel - - - list.patch - multilib.patch - no_autopoint.patch - dmo.patch - tr_segfault_fix.patch - deepbind.patch - lpthread.patch - - multimedia/video/xine-lib/pspec.xml - - - xine-lib - - mesa - zlib - flac - speex - aalib - libXv - libmad - a52dec - libdca - libsdl - libogg - libv4l - ffmpeg - libX11 - libXvMC - libXext - libvpx - libxcb - alsa-lib - freetype - DirectFB - libvdpau - mesa-glu - libtheora - libbluray - libvorbis - fontconfig - libmodplug - pulseaudio-libs - - - /usr/bin - /usr/lib - /usr/share/xine - /usr/share/xine-lib/fonts - /usr/share/man - /usr/share/doc/xine-lib - - - - xine-lib-devel - Development files for xine-lib - xine-lib için geliştirme dosyaları - xine-lib için geliştirme dosyaları - - xine-lib - - - /usr/bin/xine-config - /usr/lib/pkgconfig - /usr/include - /usr/share/aclocal - - - - - 2014-07-07 - 1.2.6 - Rebuild for ffmpeg - Kamil Atlı - suvari@pisilinux.org - - - 2014-07-07 - 1.2.6 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-20 - 1.2.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-20 - 1.2.3 - Fix unneeded dependencies, remove DirectBD-devel from runtime deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-30 - 1.2.3 - Rebuild for ffmpeg. - PisiLinux Community - admins@pisilinux.org - - - 2013-10-14 - 1.2.3 - rebuild for DirectFB. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-07 - 1.2.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-30 - 1.2.2 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gst-plugins-base-next - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Basepack of plugins for gstreamer - GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. - http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.4.5.tar.xz - - gstreamer-next-devel - cdparanoia - pango-devel - cairo-devel - libXv-devel - libogg-devel - libXext-devel - alsa-lib-devel - libvorbis-devel - libtheora-devel - libvisual-devel - gobject-introspection-devel - orc-devel - - multimedia/video/gst-plugins-base-next/pspec.xml - - - gst-plugins-base-next - - zlib - glib2 - libX11 - gstreamer-next - cdparanoia - pango - cairo - libXv - libogg - libXext - alsa-lib - libvorbis - libvisual - libtheora - orc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/gtk-doc - /usr/share/gir-1.0 - /usr/share/man - /usr/share/locale - /usr/share/gst-plugins-base/1.0 - - - - gst-plugins-base-next-devel - Development files for gst-plugins-base - - gst-plugins-base-next - gstreamer-next-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-20 - 1.2.1 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libvpx - http://www.webmproject.org - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - library - multimedia.video - WebM VP8 Codec SDK - WebM VP8 geliştirme altyapısı - libvpx is the VP8 development library usually used in WebM and similiar formats. - libvpx WebM ve benzeri çokluortam taşıyıcılarda kullanılan VP8 kodeği geliştirme kitaplığıdır. - http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-1.4.0.tar.bz2 - - libgcc - - multimedia/video/libvpx/pspec.xml - - - libvpx - - /usr/bin - /usr/lib - /usr/share/doc/libvpx - - - - libvpx-devel - libvpx header files - libvpx için başlık dosyaları - - libvpx - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-07-15 - 1.4.0 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-22 - 1.3.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-29 - 1.3.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-02-09 - 1.2.0 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-06 - 1.2.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-29 - 1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gstreamer - http://gstreamer.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.video - GStreamer streaming media framework runtime - GStreamer ses yayın altyapısı - GStreamer est la librairies principale. Elle contient les entêtes, les fichiers et les éléments centraux. - GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. - gstreamer bir ses yayın altyapısı kütüphanesidir. Bu kütüphaneyi kullanan uygulamalar, gerçek zamanlı ses işleme, görüntü oynatma gibi çokluortam ile ilgili birçok işlem gerçekleştirebilirler. - http://ftp.gnome.org/pub/gnome/sources/gstreamer/0.10/gstreamer-0.10.36.tar.xz - - glib2-devel - gobject-introspection-devel - libxml2-devel - - - wrapper-plugins.patch - bison3.patch - - multimedia/video/gstreamer/pspec.xml - - - gstreamer - - glib2 - libxml2 - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/gir-1.0 - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - gstreamer-devel - Development files for gstreamer - gstreamer için geliştirme dosyaları - - gstreamer - glib2-devel - gobject-introspection-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - gstreamer-32bit - 32-bit shared libraries for gstreamer - gstreamer için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glib2-32bit - glibc-32bit - libxml2-32bit - - - gstreamer - glib2-32bit - glibc-32bit - libxml2-32bit - - - /usr/lib32 - - - - - 2015-06-26 - 0.10.36 - Rebuild, fixed. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-19 - 0.10.36 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 0.10.36 - Rebuild for webp - Kamil Atlı - suvarice@gmail.com - - - 2014-02-27 - 0.10.36 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-26 - 0.10.36 - Release Bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-08-20 - 0.10.36 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - crystalhd - http://www.broadcom.com/support/crystal_hd/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - multimedia.video - Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD - Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri - Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD - Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri - http://source.pisilinux.org/1.0/crystalhd.tar.xz - multimedia/video/crystalhd/pspec.xml - - - libcrystalhd - Broadcom Crystal HD için kütüphane - - /usr/lib/libcrystalhd.so - /usr/lib/libcrystalhd.so.3 - /usr/lib/libcrystalhd.so.3.6 - /usr/share/doc - - - - libcrystalhd-devel - Broadcom Crystal HD için geliştirici dosyaları - - libcrystalhd - - - /usr/include/libcrystalhd/bc_dts_defs.h - /usr/include/libcrystalhd/bc_dts_types.h - /usr/include/libcrystalhd/libcrystalhd_if.h - /usr/include/libcrystalhd/libcrystalhd_version.h - - - - crystalhd-firmware - Broadcom Crystal HD firmware dosyaları - - /lib/firmware - - - - - 2014-05-20 - 20100703 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-21 - 20100703 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-10-24 - 20100703 - First release - Erdem Artan - erdem.artan@linux.org.tr - - - - - - libdv - http://libdv.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.video - Software codec for dv-format video (camcorders etc) - Dijital video (kaydedici cihazlar vs) için çözümleme yazılımı - Le codec Quasar DV (libdv) est un codec logiciel pour la vidéo DV, le format d'encodage utilisé par la plupart des caméras numériques, typiquement celles gérant l'interface IEEE 1394 (a.k.a. FireWire ou i.Link). Libdv a été développé selon les standards officiels pour la vidéo DV : IEC 61834 et SMPTE 314M. - The Quasar DV codec (libdv) is a software codec for DV video, the encoding format used by most digital camcorders, typically those that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed according to the official standards for DV video: IEC 61834 and SMPTE 314M. - Quasar DV codec (libdv), DV video için çözümleyicidir. Bu dosya biçimi çoğu dijital kameralarda (özellikle de IEEE 1394) kullanılır. Libdv, DV videonun resmi standartları olan IEC 61834 ve SMPTE 314M'ye göre geliştirilmiştir. - El codec Quasar DV (libdv) es un codec de software para video DV, el formato de codificación usado en la mayoría de los camcorders digitales, que típicamente soportan la interfaz IEEE 1394 (alias FireWire o i.Link). Libdv fue desarrollado de conforme los estándares oficiales para video DV: IEC 61834 y SMPTE 314M. - mirrors://sourceforge/libdv/libdv-1.0.0.tar.gz - - libsdl-devel - popt-devel - - - libdv-0.99-2.6.patch - libdv-1.0.0-pic.patch - libdv-1.0.0-dso-linking.patch - libdv-mmxdetect-athlon.patch - - multimedia/video/libdv/pspec.xml - - - libdv - - popt - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libdv-devel - Development files for libdv - libdv için geliştirme dosyaları - - libdv - - - /usr/include/libdv - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.0.0 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-29 - 1.0.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.0.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gst-plugins-good - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Ensemble de plug-ins (greffons) de bonne qualité sous la licence préférée de gstreamer. - A set of good-quality plugins for GStreamer - Gstreamer için temel eklentiler paketi - gst-plugins-good contains a set of mature plugins and elements for GStreamer. - http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.31.tar.bz2 - - gst-plugins-base-devel - gstreamer-devel - cairo-devel - flac-devel - gdk-pixbuf-devel - libjpeg-turbo-devel - libpng-devel - libsoup-devel - libvpx-devel - aalib-devel - libraw1394-devel - pulseaudio-libs-devel - libv4l-devel - libsoup-gnome - speex-devel - gtk2-devel - orc-devel - libXext-devel - valgrind - libXdamage-devel - libXfixes-devel - libXv-devel - libvorbis-devel - libtheora-devel - libogg-devel - libICE-devel - libSM-devel - - - 0001-fix-v4l2_munmap.patch - 0002-clear_DISCONT_flag.patch - 0003-v4l2src-fix.patch - 0004-v4l2object-Don-t-probe-UVC-devices-for-being-interla.patch - 0001-sys-v4l2-Some-blind-compilation-fixes.patch - - multimedia/video/gst-plugins-good/pspec.xml - - - gst-plugins-good - - orc - flac - zlib - speex - libX11 - libpng - libXv - cairo - glib2 - aalib - bzip2 - libv4l - libsoup - libxml2 - libXext - gstreamer - libXfixes - gdk-pixbuf - libXdamage - libjpeg-turbo - libsoup-gnome - pulseaudio-libs - gst-plugins-base - - - /etc/gconf - /usr/bin - /usr/lib - /usr/share/gstreamer-0.10/presets - /usr/share/doc - /usr/share/man - /usr/share/locale - - - - - 2014-05-28 - 0.10.31 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-27 - 0.10.31 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-0-26 - 0.10.31 - Rebuild - Erdinç Gültekin - admins@pisilinux.org - - - 2013-07-28 - 0.10.31 - missing dep. - Erdinç Gültekin - admins@pisilinux.org - - - 2013-05-09 - 0.10.31 - rebuild for libv4l - Erdinç Gültekin - admins@pisilinux.org - - - 2012-11-09 - 0.10.31 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gst-plugins-bad - http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - A set of GStreamer plug-ins that aren't up to par compared to the rest - Diğer eklentilerle karşılaştırıldığında çok iyi durumda olmayan gstreamer eklentileri - GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. - gst-plugins-bad, iyiye yakın kalitede olan ancak gerçek bir geliştirici, belgelendirme, test seti gibi eksikleri bulunan eklentilerdir. - http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-0.10.23.tar.bz2 - - gstreamermm-devel - gst-plugins-base-devel - libdvdread-devel - libdvdnav-devel - soundtouch-devel - faac-devel - valgrind - jasper-devel - libdca-devel - gsm-devel - mjpegtools-devel - libdvdnav-devel - libsndfile-devel - DirectFB-devel - libSM-devel - libICE-devel - celt-devel - libdc1394-devel - alsa-lib-devel - libsdl-devel - soundtouch-devel - libtheora-devel - libmodplug-devel - xvid-devel - libdvdread-devel - libvdpau-devel - rtmpdump-devel - schroedinger-devel - gdk-pixbuf-devel - libvo-aacenc-devel - libvo-amrwbenc-devel - - - directfb.patch - - multimedia/video/gst-plugins-bad/pspec.xml - - - gst-plugins-bad - - gst-plugins-base - gstreamer - DirectFB - celt - libdc1394 - libdca - libgcc - libpng - faac - bzip2 - glib2 - jasper - libX11 - gsm - libmodplug - mjpegtools - libsdl - soundtouch - libdvdnav - libsndfile - xvid - libdvdread - libvdpau - schroedinger - orc - libvo-aacenc - libvo-amrwbenc - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/gstreamer-0.10 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/glib-2.0/schemas - - - - gst-plugins-bad-devel - Development files for gst-plugins-bad - gst-plugins-bad için geliştirme dosyaları - - gst-plugins-bad - gstreamer-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2014-05-26 - 0.10.23 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-13 - 0.10.23 - Rebuild for mjpegtools - Kamil Atlı - suvarice@gmail.com - - - 2013-10-19 - 0.10.23 - Fix build dependency's. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-10-14 - 0.10.23 - clean build. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-10-14 - 0.10.23 - rebuild for DirectFB. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-28 - 0.10.23 - Dep Fixed. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-05-25 - 0.10.23 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-09 - 0.10.23 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - vo-aacenc - http://sourceforge.net/projects/opencore-amr/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:cli - multimedia.video - VisualOn AAC encoder library - VisualOn AAC encoder library - http://sourceforge.net/projects/opencore-amr/files/vo-aacenc/vo-aacenc-0.1.3.tar.gz/download - multimedia/video/vo-aacenc/pspec.xml - - - libvo-aacenc - - /usr/lib - /usr/share/doc - - - - libvo-aacenc-devel - - libvo-aacenc - - - /usr/include - /usr/lib/pkgconfig/vo-aacenc.pc - - - - - 2014-06-18 - 1.3 - Rebuild, remove vo-aacenc binary package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 1.3 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-30 - 1.1.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - gstreamer-next - http://gstreamer.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.video - GStreamer streaming media framework runtime - GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. - http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.4.5.tar.xz - - check - valgrind - gobject-introspection-devel - libxml2-devel - ghostscript-devel - - multimedia/video/gstreamer-next/pspec.xml - - - gstreamer-next - - glib2 - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/gir-1.0 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/locale - /usr/share/man - - - - gstreamer-next-32bit - 32-bit shared libraries for gstreamer - emul32 - emul32 - - glib2-32bit - - - glib2-32bit - glibc-32bit - gstreamer-next - - - /usr/lib32 - - - - gstreamer-next-devel - Development files for gstreamer - - gstreamer-next - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-26 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-13 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-20 - 1.2.1 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-11 - 1.2.0 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vlc - http://www.videolan.org/vlc - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:gui - multimedia.video - VLC media player - VLC çoklu ortam oynatıcısı - Odtwarzacz plików multimedialnych i serwer strumieni - VLC reproductor multimedia - VLC is a famous video player and streamer. - Media oynatıcısı ve yayın dinleyici - VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci. - VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia - vlc - http://download.videolan.org/pub/videolan/vlc/2.2.1/vlc-2.2.1.tar.xz - - libcdio - eudev-devel - lua-devel - libgcrypt - xcb-proto - zlib-devel - gtk2-devel - zvbi-devel - faac-devel - flac-devel - lirc-devel - mesa-devel - x265-devel - dbus-devel - avahi-devel - samba-devel - aalib-devel - faad2-devel - speex-devel - libva-devel - libXt-devel - libXv-devel - cairo-devel - util-macros - libxcb-devel - libXau-devel - libtar-devel - libvpx-devel - ffmpeg-devel - libass-devel - libXpm-devel - gnutls-devel - libv4l-devel - libdca-devel - libmtp-devel - libmad-devel - libogg-devel - libsdl-devel - taglib-devel - a52dec-devel - libebml-devel - libxml2-devel - libcddb-devel - libcaca-devel - libXext-devel - librsvg-devel - libcdio-devel - fribidi-devel - libupnp-devel - libkate-devel - freerdp-devel - twolame-devel - minizip-devel - live555-devel - libopus-devel - freetype-devel - libXdmcp-devel - kernel-headers - xcb-util-devel - libmpeg2-devel - alsa-lib-devel - libshout-devel - libdvbpsi-devel - libtheora-devel - libbluray-devel - libgcrypt-devel - libnotify-devel - libssh2-devel - openssl-devel - libvorbis-devel - libdc1394-devel - libid3tag-devel - sdl-image-devel - libmpcdec-devel - libdvdcss-devel - libdvdnav-devel - vcdimager-devel - libraw1394-devel - fluidsynth-devel - libdvdread-devel - fontconfig-devel - libavc1394-devel - libmodplug-devel - libXxf86vm-devel - gdk-pixbuf-devel - libmatroska-devel - libXinerama-devel - schroedinger-devel - crystalhd-firmware - libgpg-error-devel - libvncserver-devel - libsamplerate-devel - libjpeg-turbo-devel - qt5-base-devel - qt5-x11extras-devel - libchromaprint-devel - gstreamer-next-devel - pulseaudio-libs-devel - xcb-util-keysyms-devel - gst-plugins-base-next-devel - - - qt4-select.patch - lc-2.2.0-fix-xcb.patch - vlc-2.2.0-rdp-1.2.0.patch - vlc-2.1.1-desktop.patch - vlc-2.0.4-fix-definition.patch - vlc-2.1.0-TomWij-bisected-PA-broken-underflow.patch - - multimedia/video/vlc/pspec.xml - - - vlc - - qt5-base - qt5-x11extras - libtar - libXpm - fribidi - libXext - minizip - zlib - libX11 - libgcc - freetype - vlc-libs - libXinerama - dejavu-fonts - - - /usr/bin - /usr/lib/vlc/plugins/gui - /usr/share/vlc - /usr/share/applications - /usr/share/icons - /usr/share/kde4/apps/solid/actions - /usr/share/doc - /usr/share/man - /usr/share/locale - - - System.Package - - - - vlc-lua - Lua scripting for VLC - - lua - vlc-libs - - - /usr/lib/vlc/lua - /usr/lib/vlc/plugins/lua/liblua_plugin.so - - - - vlc-libs - Codec and plugin library files for VLC - vlc için codec ve eklenti kitaplık dosyaları - - libX11 - libgcc - freetype - dbus - zlib - gtk2 - lirc - flac - zvbi - x265 - mesa - libva - faad2 - samba - speex - aalib - cairo glib2 eudev - libpng - libxcb - libidn - libmad - libass - gnutls - libdca - libsdl - ffmpeg - a52dec - libmtp - taglib - libogg - libvpx - libxml2 - libssh2 - libcddb - freerdp - libopus - libcaca - twolame - libebml - libcdio - librsvg - live555 - minizip - fribidi - libkate - libupnp - libshout - alsa-lib - libvdpau - libmpeg2 - libdvbpsi - libdc1394 - sdl-image - vcdimager - libbluray - libnotify - libdvdnav - libmpcdec - libtheora - libvorbis - libgcrypt - fontconfig - libraw1394 - fluidsynth - libmodplug - libdvdread - gdk-pixbuf - libavc1394 - libmatroska - schroedinger - libvncserver - libgpg-error - libsamplerate - libjpeg-turbo - gstreamer-next - libchromaprint - pulseaudio-libs - xcb-util-keysyms - crystalhd-firmware - gst-plugins-base-next - - - /usr/lib/libvlc* - /usr/lib/vlc - - - - vlc-devel - Development files for vlc - vlc için geliştirme dosyaları - Pliki nagłówkowe vlc - - vlc-libs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-01 - 2.2.1 - Version Bump. - Vedat Demir - vedati@pisilinux.org - - - 2014-12-15 - 2.1.5 - Release Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-08-18 - 2.1.5 - Release Bump. - Vedat Demir - vedati@pisilinux.org - - - 2014-07-07 - 2.1.5 - Version Bump. - Vedat Demir - vedati@pisilinux.org - - - 2014-06-19 - 2.1.4 - Rebuild for libtar. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-31 - 2.1.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-07 - 2.1.4 - Rebuild for x264 - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-23 - 2.1.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-05 - 2.1.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-26 - 2.1.1 - Rebuild for ffmpeg. - PisiLinux Community - admins@pisilinux.org - - - 2013-11-16 - 2.1.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-11-10 - 2.1.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-05 - 2.0.8a - V.bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-01 - 2.0.8 - V.bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 2.0.7 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-06-21 - 2.0.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-01 - 2.0.6 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-06-01 - 2.0.6 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-11 - 2.0.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-12-15 - 2.0.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gst-plugins-ugly - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Other plugins for gstreamer - Gstreamer için diğer eklentiler - les Plug-ins (greffons) Ugly (horribles) de GStreamer est un ensemble de plug-ins de bonne qualité et fonctionnant correctement, mais dont la distribution pose problème. La licence du plug-in ou de librairies nécessaires au plug-in n'est pas forcément tel que l'on aimerait qu'elle soit. Le code peut également être notoirement connu pour présenter un problème patent. - GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. - GStreamer Ugly Plug-in'leri kaliteli ve güzel çalışan eklentiler içerir. Fakat bu eklentilerin lisanslarla ilgili sorunları bulunabilir. - http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-0.10.19.tar.bz2 - - glib2-devel - gstreamer-devel - gstreamermm-devel - gst-plugins-base-devel - libdvdread-devel - x264-devel - orc-devel - lame-devel - opencore-amr-devel - a52dec-devel - libmad-devel - libcdio-devel - libmpeg2-devel - - - cdio-cd-text-api.patch - opencore-amr.patch - - multimedia/video/gst-plugins-ugly/pspec.xml - - - gst-plugins-ugly - - orc - glib2 - gst-plugins-base - gstreamer - x264 - lame - opencore-amr - a52dec - libmad - libcdio - libmpeg2 - libdvdread - - - /usr/lib/gstreamer-0.10 - /usr/share/doc/gst-plugins-ugly - /usr/share/gstreamer-0.10 - /usr/share/locale - - - - - 2014-05-28 - 0.10.19 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-05 - 0.10.19 - Rebuild for x264 - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-27 - 0.10.19 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-26 - 0.10.19 - Rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-28 - 0.10.19 - missing dep - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-07 - 0.10.19 - Rebuild for libcdio and x264 - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-10 - 0.10.19 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - schroedinger - http://www.diracvideo.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Dirac codec library - Dirac kodek kitaplığı - C-based libraries and GStreamer plugins for the Dirac video codec. - C ile kodlanmış Dirac video kodeği kitaplıkları ve GStreamer eklentileri - http://www.diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz - - orc-devel - - - ltmain_as-needed.patch - - multimedia/video/schroedinger/pspec.xml - - - schroedinger - - orc /usr/lib - /usr/share/doc - - - - schroedinger-devel - Development files for schroedinger - schroedinger için geliştirme dosyaları - - schroedinger - orc-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 1.0.11 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-10 - 1.0.11 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 1.0.11 - Rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-07 - 1.0.11 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-29 - 1.0.11 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libmp4v2 - http://code.google.com/p/mp4v2 - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - library - app:console - multimedia.video - MPEG4 library - MPEG4 kütüphanesi - Librairie MPEG4 extraite de MPEG4IP, habituellement utilisée dans les sytèmes de son 3D. - MPEG4 library extracted from MPEG4IP, usually used in 3D sound systems. - Genellikle 3B ses işleme uygulamalarında kullanılan, MPEG4IP yazılımının parçası olan MPEG4 kütüphanesi. - Librería MPEG4 parte de MPEG4IP, comúnmente utilizado en sistemas de sonido 3D. - http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2 - - libgcc - - multimedia/video/libmp4v2/pspec.xml - - - libmp4v2 - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc/libmp4v2 /usr/share/man - - - - libmp4v2-devel - Development files for libmp4v2 - libmp4v2 için geliştirme dosyaları - - libmp4v2 - - - /usr/include - - - - - 2014-05-20 - 2.0.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 2.0.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-14 - 2.0.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gst-plugins-good-next - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - A set of good-quality plugins for GStreamer - gst-plugins-good contains a set of mature plugins and elements for GStreamer. - http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.4.5.tar.xz - - gst-plugins-base-next-devel - pulseaudio-libs-devel - gstreamer-next-devel - libjpeg-turbo-devel - gdk-pixbuf-devel - libraw1394-devel - libXdamage-devel - libXfixes-devel - libsoup-devel - libXext-devel - libv4l-devel - libXv-devel - cairo-devel - aalib-devel - speex-devel - gtk2-devel - flac-devel - orc-devel - - multimedia/video/gst-plugins-good-next/pspec.xml - - - gst-plugins-good-next - - orc - flac - zlib - speex - libX11 - libpng - cairo - glib2 - aalib - bzip2 - libv4l - libXext - libsoup - libXfixes - gdk-pixbuf - libXdamage - libjpeg-turbo - gstreamer-next - pulseaudio-libs - gst-plugins-base-next - - - /etc/gconf - /usr/bin - /usr/lib - /usr/share/gstreamer-1.0/presets - /usr/share/doc - /usr/share/gtk-doc - /usr/share/man - /usr/share/locale - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-23 - 1.2.1 - version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2.0 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - mlt - http://www.mltframework.org/twiki/bin/view/MLT/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.tv - A multimedia framework, designed and developed for television broadcasting - Televizyon yayını için tasarlanmış bir çoklu ortam altyapısı - MLT is an open source multimedia framework, designed and developed for television broadcasting. - MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır. - http://sourceforge.net/projects/mlt/files/mlt/mlt-0.9.8.tar.gz - - alsa-lib-devel - swig - python-devel - glib2-devel - frei0r-plugins-devel - fftw3-devel - jack-audio-connection-kit-devel - qt5-base-devel - qt5-svg-devel - perl - libxml2-devel - libsamplerate-devel - ladspa-sdk-devel - libexif-devel - ffmpeg-devel - sox-devel - - multimedia/tv/mlt/pspec.xml - - - perl-mlt - Perl bindings for MLT - MLT için Perl bağlayıcıları - programming.language.perl - - libgcc - perl - mlt - - - /usr/lib/perl* - - - - python-mlt - Python bindings for MLT - MLT için Python bağlayıcıları - programming.language.python - - libgcc - python - mlt - - - /usr/lib/python* - - - - mlt - - sox - fftw3 - glib2 - ffmpeg - libX11 - libgcc - libexif - libxml2 - qt5-svg - alsa-lib - qt5-base - libsamplerate - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/mlt - /usr/share/mlt/modules - /usr/share/mlt/modules/lumas/PAL - - - - mlt-devel - Development files for mlt - mlt için geliştirme dosyaları - - mlt - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-11-16 - 0.9.8 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-12-30 - 0.9.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-28 - 0.9.0 - fix build and ver. bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 0.8.8 - missing dep.. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-01-29 - 0.8.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-18 - 0.8.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xawtv - http://linuxtv.org/downloads/xawtv/ - - Erdinc Gultekin - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.tv - TV application - TV uygulaması - xawtv is a TV application that supports many interfaces (analog video streams), such as Xvideo, v4l2 and bktr etc. It can display TV streams and record them. - xawtv Xvideo, v4l2, bktr gibi birçok arayüzü destekleyen bir TV uygulamasıdır. xawtv ayrıca video kayıt yeteneği ve birkaç yararlı konsol aracına sahiptir. - xawtv - http://linuxtv.org/downloads/xawtv/xawtv-3.103.tar.bz2 - - alsa-lib-devel - aalib-devel - libquicktime-devel - openmotif-devel - zvbi-devel - lirc-devel - libv4l-devel - xorg-font - libXxf86dga-devel - libdv - libXpm-devel - libXrender-devel - libXv-devel - mesa-devel - libXext-devel - libXrandr-devel - libXxf86vm-devel - libXmu-devel - libFS-devel - fontconfig-devel - libXt-devel - libXft-devel - libXaw-devel - zvbi-devel - libXinerama-devel - libSM-devel - libICE-devel - libexplain-devel - libjpeg-turbo-devel - gpm - zlib-devel - libX11-devel - libpng-devel - ncurses-devel - freetype-devel - - - v4l-conf_non-position-independent-executable_fix.patch - xawtv-3.95.patch - - multimedia/tv/xawtv/pspec.xml - - - xawtv - - zvbi - lirc - mesa - aalib - libSM - libdv - libXt - libXv - libXmu - libXaw - libICE - libv4l - libXpm - libXft - libXext - alsa-lib - libXrandr - libXrender - libXxf86vm - fontconfig - libexplain - libXxf86dga - libXinerama - libquicktime - libjpeg-turbo - gpm - zlib - libX11 - libpng - ncurses - freetype - - - /etc - /usr/bin - /usr/lib/xawtv - /usr/share/doc - /usr/share/man - /usr/share/xawtv - /usr/share/applications - /usr/share/pixmaps - - - xawtv.desktop - - - - - 2014-02-17 - 3.103 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 3.103 - version bump - Erdinc Gultekin - admins@pisilinux.org - - - 2013-07-28 - 3.102_201207 - First release - Erdinc Gultekin - admins@pisilinux.org - - - 2012-11-12 - 3.102_201207 - First release - Erdinc Gultekin - admins@pisilinux.org - - - - - - zvbi - http://zapping.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.tv - VBI Decoding Library for Zapping - Zapping uygulaması için VBI çözücü kütüphanesi - Zapping est un lecteur TV pour le bureau Gnome. Avec Zapping et une carte TV vous pouvez, voir la télévision, faire des copies d'écran et effectuer des enregistrements audio et vidéo. Zapping gère les sous-titres et le télétexte. - Zapping is a TV viewer for the Gnome desktop. With Zapping and a TV card you can watch TV, take screenshots, and record video and audio. Zapping supports Closed Caption and Teletext subtitles. - Zapping Gnome masaüstü için bir televizyon göstericisidir. Zapping ve bir TV kartı ile TV seyredebilir, ekran resmi çekebilir ve video ve audio kaydedebilirsiniz. Zapping Kapalı Çekim (Closed Capture) ve Teletex altyazılarını desteklemektedir. - Zapping es un visualizador de TV para el escritorio Gnome. Con Zapping y una tarjeta de TV puede mirar la tele, capturar pantallas, grabar video y audio. Zapping soporta subtitulos teletext y Closed Caption. - mirrors://sourceforge/zapping/zvbi-0.2.35.tar.bz2 - - libpng-devel - libX11-devel - - - zvbi-0.2.31-linkage_fix.diff - zvbi-0.2.7-fix-build.patch - - multimedia/tv/zvbi/pspec.xml - - - zvbi - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/doc/zvbi - /usr/share/man - /usr/share/locale - - - - zvbi-devel - Development files for zvbi - zvbi için geliştirme dosyaları - - zvbi - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/zvbi/html - - - - - 2014-05-27 - 0.2.35 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-16 - 0.2.35 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-11-12 - 0.2.33 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libnut - http://www.nut-container.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - multimedia.converter - NUT container tools and library - NUT dosya biçemi kitaplığı ve araçları - Library and tools to work with NUT multimedia files. - libnut NUT çokluortam sistemini kullanmak ve düzenlemek için gerekli olan kitaplıkları ve araçları içerir. - http://source.pisilinux.org/1.0/libnut-661.tar.bz2 - - shared.patch - - multimedia/converter/libnut/pspec.xml - - - libnut - - /usr/bin - /usr/lib - /usr/share/doc - - - - libnut-devel - Development files for libnut - libnut için geliştirme dosyaları - - libnut - - - /usr/include - - - - - 2014-05-22 - 0.0_661 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-01 - 0.0_661 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.0_661 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - vcdimager - http://www.vcdimager.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.converter - VCD and SVCD image file maker and converter - VCD ve SVDC görüntü dosyası oluşturucu ve çevirici - VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CD's and Super Video CD's. The core functionality consists of directly making Video CD BIN/CUE-style CD images from mpeg files. - VCDImager Video CD ve Super Video CD'leri yaratmaya, parçalarına ayırmaya ve analiz etmeye yarayan kapsamlı bir CD görüntüsü yazma uygulamasıdır. En temel özelliği .mpeg dosyalarından direk BIN/CUE uzantılı CD görüntüleri yaratabilmesidir. - http://ftp.gnu.org/gnu/vcdimager/vcdimager-0.7.24.tar.gz - - libcdio-devel - popt - - multimedia/converter/vcdimager/pspec.xml - - - vcdimager - - libcdio - popt - libxml2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - vcdimager-devel - Development files for vcdimager - vcdimager için geliştirme dosyaları - - vcdimager - libcdio-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.7.24 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-17 - 0.7.24 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 0.7.24 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2013-07-08 - 0.7.24 - rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-27 - 0.7.24 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - mkvtoolnix - http://www.bunkus.org/videotools/mkvtoolnix/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - multimedia.converter - A set of tools to create, alter and inspect Matroska files - Matroska dosyalarını yaratmak, değiştirmek ve incelemek için araçlar - MKVToolnix is a set of tools (mkvmerge, mkvinfo and mkvextract) With these tools one can get information about (mkvinfo) Matroska files, extract tracks/data from (mkvextract) Matroska files and create (mkvmerge) Matroska files from other media files. - mkvtoolnix Matroska (MKV) dosyaları ile kullanılmak için bilgi edinme aracı (mkvinfo), veri/iz çıkarmak aracı (mkvextract) ve MKV oluşturma aracı (mkvmerge) içeren araç setidir. - mmg - https://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-8.5.2.tar.xz - - qt5-base-devel - zlib-devel - ruby-devel - flac-devel - boost-devel - libogg-devel - libebml-devel - libvorbis-devel - libmatroska-devel - file - imagemagick-devel - - multimedia/converter/mkvtoolnix/pspec.xml - - - mkvtoolnix - - flac - boost - libogg - file - libvorbis - zlib - qt5-base - libgcc - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/pixmaps - /usr/share/mkvtoolnix - /usr/share/applications - /usr/share/locale - - - - - 2015-11-08 - 8.5.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-21 - 7.5.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-19 - 7.4.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-29 - 7.3.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-05 - 7.2.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-28 - 6.9.1 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-18 - 6.7.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-11-14 - 6.5.0 - v. bump rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 6.2.0 - add missing dep. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-09 - 6.2.0 - V.bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-08-27 - 5.7.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - liblqr - http://liblqr.wikidot.com - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - LGPLv3 - library - multimedia.misc - An easy to use C/C++ seam carving library - Görüntü boyutlandırma kütüphanesi - liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features. - liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir. - http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2 - - glib2-devel - - multimedia/misc/liblqr/pspec.xml - - - liblqr - - glib2 - - - /usr/lib - /usr/share/doc - - - - liblqr-devel - Development files for liblqr - liblqr için geliştirme dosyaları - - liblqr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 0.4.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-31 - 0.4.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.4.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libpano13 - http://sourceforge.net/projects/panotools - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.misc - Library for manipulating panoramic images - Panoramik görüntü kitaplığı - libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs. - libpano13 panoramik görüntüleri yüksek kalitede düzeltip birleştirebilen bir kitaplıktır. - mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz - - zlib-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - - multimedia/misc/libpano13/pspec.xml - - - libpano13 - - tiff - libpng - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - libpano13-devel - Development files for libpano13 - libpano13 için geliştirme dosyaları - - libpano13 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-11-10 - 2.9.19 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-24 - 2.9.18 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-22 - 2.9.18 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 2.9.18 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2011-06-13 - 2.9.18 - First release - Ertuğrul Erata - admins@pisilinux.org - - - - - - orc - http://code.entropywave.com/projects/orc/ - - PisiLinux Community - admins@pisilinux.org - - BSD - BSD-2 - app:console - multimedia.misc - The Oil Runtime Compiler - Optimized Inner Loop Runtime Compiler - http://gstreamer.freedesktop.org/src/orc/orc-0.4.19.tar.gz - multimedia/misc/orc/pspec.xml - - - orc - /usr/bin/ - /usr/lib/ - /usr/share/ + /usr/share/gtk-doc/ + /usr/libexec + /usr/share/doc/libmbim - orc-32bit - 32-bit shared libraries for orc - emul32 - emul32 - - glibc-32bit - + libmbim-devel + libmbim için geliştirme dosyaları + libmbim için geliştirme dosyaları - glibc-32bit - orc + libmbim - /usr/lib32 - - - - orc-devel - orc için geliştirme dosyaları - orc için geliştirme dosyaları - - orc - - - /usr/include/ - /usr/lib/pkgconfig - /usr/lib32/pkgconfig + /usr/lib/pkgconfig + /usr/include/libmbim-glib/ - - 2014-05-20 - 0.4.19 - Version bump, fix version. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-24 - 4.18 + + 2015-07-15 + 1.12.2 Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-02-14 - 4.16 - Add emul32 - Marcin Bojara - marcin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2012-08-29 - 4.16 + 2014-01-20 + 1.6.0 First release PisiLinux Community admins@pisilinux.org @@ -22476,2146 +30076,51 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - frei0r-plugins - http://www.piksel.org/frei0r - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - A plugin API for video sources and filters - Video kaynakları ve süzgeçleri için bir eklenti programlama arayüzü - frei0r-plugins is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. - frei0r-plugins video kaynakları ve süzgeçleri için basit bir eklenti programlama arayüzüdür. Efektlerin davranışları basit parametrelerle denetlenebilmektedir. - http://distfiles.macports.org/frei0r-plugins/frei0r-plugins-1.4.tar.gz - - libgcc - - - explicitly-link-with-lm.patch - - multimedia/misc/frei0r-plugins/pspec.xml - - - frei0r-plugins - - libgcc - - - /usr/lib - /usr/share/doc - - - - frei0r-plugins-devel - Development files for frei0r-plugins - frei0r-plugins için geliştirme dosyaları - - frei0r-plugins - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 1.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-01 - 1.4 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-30 - 1.4 - Rebuild for ffmpeg. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-31 - 1.4 - missing dep. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-28 - 1.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2011-09-13 - 1.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - DirectFB - http://www.directfb.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Thin library on top of the Linux framebuffer devices - Linux framebuffer aygıtlarının üstünde çalışan hafif bir kütüphane - DirectFB is a thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system with support for translucent windows and multiple display layers. - DirectFB donanımsal grafik hızlandırması, giriş aygıtları işleme ve soyutlama sağlayan yarısaydam pencereler ve çoklu görüntü katmanlarını destekleyen pencere sistemi ile bütünleşik bir kütüphanedir. - http://www.directfb.org/downloads/Core/DirectFB-1.7/DirectFB-1.7.1.tar.gz - - libgcc - giflib-devel - libX11-devel - zlib-devel - tiff-devel - jasper-devel - freetype-devel - libpng-devel - libXext-devel - mesa-devel - webp-devel - mesa-glu-devel - libdrm-devel - libjpeg-turbo-devel - libmng-devel - lcms2-devel - libvdpau-devel - libmad-devel - libvorbis-devel - - multimedia/misc/DirectFB/pspec.xml - - - DirectFB-docs - - DirectFB - - - /usr/share/doc - - - - DirectFB - - zlib - libgcc - libpng - freetype - libX11 - libXext - mesa - libdrm - libjpeg-turbo - libvdpau - webp - tiff - jasper - libkms - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share - - - - DirectFB-devel - Development files for DirectFB - DirectFB için geliştirme dosyaları - - DirectFB - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-21 - 1.7.1 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-23 - 1.7.1 - Rebuild for webp - Kamil Atlı - suvarice@gmail.com - - - 2014-01-28 - 1.7.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-14 - 1.7.1 - version bump - Erdinç >Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 1.5.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libid3tag - http://mad.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - La librairie id3tag MAD. - The MAD id3tag library - MAD id3tag kütüphanesi - Die MAD id3tag Bibliothek - libid3tag is a library for reading and (eventually) writing ID3 tags, both ID3v1 and the various versions of ID3v2. - mirrors://sourceforge/mad/libid3tag-0.15.1b.tar.gz - - zlib-devel - - - libid3tag-0.15.1b-fix_overflow.patch - libid3tag-0.15.1b-unknown-encoding.patch - libid3tag-0.15.1b-utf16.patchlibid3tag-0.15.1b-utf16.patch - - multimedia/misc/libid3tag/pspec.xml - - - libid3tag - - zlib - - - /usr/lib - /usr/share/doc - - - - libid3tag-devel - - libid3tag - - - /usr/include - /usr/lib/pkgconfig - - - id3tag.pc - - - - - 2014-05-20 - 0.15.1b - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 0.15.1b - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-12 - 0.15.1b - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - fribidi - http://fribidi.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.misc - A free implementation of the unicode bidirectional algorithm - Çift yönlü unikod algoritmanın özgür bir uyarlaması - GNU FriBidi est l'implémentation libre de l'algorithme bidirectionnel Unicode. - GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm. - GNU FriBidi, Çift Yönlü Unicode Algoritması'nın özgür uygulamasıdır. - GNU FriBidi es la implementación libre del algoritmo Unicode Bidirectional. - http://fribidi.org/download/fribidi-0.19.6.tar.bz2 - multimedia/misc/fribidi/pspec.xml - - - fribidi - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - fribidi-devel - Development files for fribidi - fribidi için geliştirme dosyaları - - fribidi - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - - 2014-02-23 - 0.19.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-06 - 0.19.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-29 - 0.19.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libshout - http://www.icecast.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.misc - A library for communicating with and sending data to an icecast server - Icecast sunucusuyla veri alış verişini sağlayan bir kütüphane - Libshout is a library for communicating with and sending data to an icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server. - Libshout, Icecast sunucusuyla iletişimi ve veri alış verişini sağlar. Verilerin zamanlamasını ve gerekli soket bağlantılarını kontrol ederek, sunucu üzerinde hatalı veri transferini önler. - http://downloads.us.xiph.org/releases/libshout/libshout-2.3.1.tar.gz - - libvorbis-devel - libogg-devel - libtheora-devel - speex-devel - - - pthread_flag.patch - - multimedia/misc/libshout/pspec.xml - - - libshout - - libvorbis - libogg - libtheora - speex - - - /usr/lib - /usr/share/doc - - - - libshout-devel - Development files for libshout - libshout için geliştirme dosyaları - - libshout - libtheora-devel - libvorbis-devel - libogg-devel - speex-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/*.c - - - - - 2014-05-25 - 2.3.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-20 - 2.3.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-31 - 2.3.1 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 2.3.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libass - http://code.google.com/p/libass/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - Subtitle rendering library - Altyazı çizim kitaplığı - libass is a portable subtitle rendering library for the ASS/SSA. - libass ASS/SSA altyazı çizim kitaplığıdır. - https://github.com/libass/libass/releases/download/0.11.2/libass-0.11.2.tar.xz - - fontconfig-devel - freetype-devel - fribidi-devel - - multimedia/misc/libass/pspec.xml - - - libass - - fontconfig - freetype - fribidi - - - /usr/lib - /usr/share/doc/libass - - - - libass-devel - Development files for libass - libass için geliştirme dosyaları - - libass - harfbuzz-devel - fontconfig-devel - freetype-devel - fribidi-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-22 - 0.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 0.10.1 - rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-07-07 - 0.10.1 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-25 - 0.10.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libcdr - http://www.freedesktop.org/wiki/Software/libcdr - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - MPLv1.1 - library - multimedia.misc - Library parsing the Corel cdr documents - Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications. - http://dev-www.libreoffice.org/src/libcdr-0.1.0.tar.bz2 - - doxygen - zlib-devel - lcms2-devel - icu4c-devel - libwpd-devel - boost-devel - librevenge-devel - - multimedia/misc/libcdr/pspec.xml - - - libcdr - - lcms2 - icu4c - zlib - libgcc - librevenge - - - /usr/lib - /usr/bin - /usr/share/doc/libcdr - - - - libcdr-devel - Development files for libcdr - libcdr için geliştirme dosyaları - - icu4c-devel - zlib-devel - lcms2-devel - librevenge-devel - libcdr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-02 - 0.1.1 - Dep Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2014-09-26 - 0.1.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-24 - 0.0.16 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-25 - 0.0.11 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-14 - 0.0.11 - Rebuild for icu4c - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-31 - 0.0.11 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-03-14 - 0.0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-17 - 0.0.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-20 - 0.0.9 - First Release. - PisiLinux Community - admins@pisilinux.org - - - - - - libdvdread - http://www.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - Provides a simple foundation for reading DVD-Video images - DVD videolarını okumak için basit bir kütüphane - Un lecteur DVD pour les environnements Solaris, Linux et BSD publié sous la licence publique GNU (GPL). Il gère les signets, les sauts dans le temps, les sorties audio sur plusieurs canaux, sortie SPDIF, le zoom et le crop (vision exclusive d'une zone) vidéo. Il gère également les menus DVD et la navigation, permet de lire depuis les DVD montés ou non montés, depuis un disque dur. Il peut lire les DVDs cryptés et non cryptés grâce à libdvdread/libdvdcss. - A DVD player for the Solaris, Linux and BSD environments released under the GNU Public License (GPL). It is includes bookmarks, time skipping, multichannel audio, SPDIF output, crop and zoom video. It supports DVD menus and navigation, reads from mounted, unmounted DVDs and hard drive and reads encrypted and unencrypted DVDs using libdvdread/libdvdcss. - GNU Public License (GPL) altındaki Solaris, Linux ve BSD ortamları için bir DVD oynatıcısıdır. Yerimi, zaman atlatma, çoklukanal ses çıktı, SPDIF çıktı, video kırpma ve büyütme özellikleri içerir. DVD menüleri ve dolaşma özelliğini destekler, bağlanmış (mount) ve bağlanmamış sabit diskleri okur ve libdvdread / libdvdcss kullanan şifreli ve şifresiz DVDleri oynatabilir. - DVD player para Solaris, Linux y BSD liberado bajo la licencia GNU Public License (GPL). incluye marcadores (bookmarks), time skipping, multichannel audio, salida SPDIF, video crop y zoom. soporta menús DVD y navegación, lee de DVDs y discos rígidos montados y no-montados y lee DVDs encriptados y no-encriptados usando libdvdread/libdvdcss. - http://download.videolan.org/pub/videolan/libdvdread/5.0.2/libdvdread-5.0.2.tar.bz2 - - libdvdcss-devel - git - - multimedia/misc/libdvdread/pspec.xml - - - libdvdread - - libdvdcss - glibc - - - /usr/lib - /usr/share/doc/libdvdread - - - - libdvdread-devel - Development files for libdvdread - libdvdread için geliştirme dosyaları - - libdvdread - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - - - - - 2015-01-31 - 5.0.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-28 - 5.0.1 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-29 - 5.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-24 - 4.9.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-03-08 - 4.2.0 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2010-10-12 - 0.0_20100819 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gd - http://www.libgd.org - - PisiLinux Community - admins@pisilinux.org - - as-is - BSD - library - multimedia.misc - Une librairie rapide pour créer des graphiques en images. - A fast library for creating graphic images - Hızlı bir şekilde resim oluşturmak için bir kütüphane - The gd graphics library allows your code to quickly draw images complete with lines, arcs, text, multiple colors, cut and paste from other images, and flood fills, and to write out the result as a PNG or JPEG file. This is particularly useful in Web applications, where PNG and JPEG are two of the formats accepted for inline images by most browsers. Note that gd is not a paint program. - https://github.com/libgd/libgd/archive/gd-2.1.1.tar.gz - - fontconfig-devel - zlib-devel - freetype-devel - libpng-devel - libjpeg-turbo-devel - tiff-devel - libvpx-devel - - - gd-2.1.1-libvpx-1.4.0.patch - - multimedia/misc/gd/pspec.xml - - - gd - - fontconfig - tiff - libvpx - libjpeg-turbo - zlib - freetype - libpng - - - /usr/bin - /usr/lib - /usr/share/doc/gd - - - - gd-devel - Development files for gd - gd için geliştirme dosyaları - - gd - - - /usr/include - /usr/lib/pkgconfig - /usr/bin/gdlib-config - - - - gd-docs - Documents for gd - gd için geliştirme belgeleri - - /usr/share/doc/gd/html - - - - - 2014-08-02 - 2.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-24 - 2.1.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-25 - 2.0.35 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.0.35 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libsdl - http://www.libsdl.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Simple Direct Media Layer (Couche Média Simple et Directe). - Simple Direct Media Layer - Basit bir direk ortam erişim katmanı - Einfachee direkte Medien-Schicht - libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. - libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. - http://www.libsdl.org/release/SDL-1.2.15.tar.gz - - DirectFB-devel - alsa-lib-devel - aalib-devel - libX11-devel - libusb-compat-devel - libXtst-devel - libICE-devel - libXrandr-devel - - - sdl-1.2.14-disable-mmx.patch - sdl_x11sym.patch - SDL-1.2.14-dont-propagate-lpthread.patch - SDL-1.2.14-noproc.patch - SDL-1.2.13-rh484362.patch - libsdl-1.2.15-sdl-config.patch - libsdl-1.2.15-resizing.patch - libsdl-1.2.15-joystick.patch - - multimedia/misc/libsdl/pspec.xml - - - libsdl-docs - libsdl reference documents - libsdl başvuru belgeleri - - libsdl - - - /usr/share/man - /usr/share/doc - - - - libsdl - - DirectFB - aalib - - - /usr/lib - - - - libsdl-devel - Development files for libsdl - libsdl için geliştirme dosyaları - - libsdl - DirectFB-devel - alsa-lib-devel - aalib-devel - libX11-devel - libusb-compat-devel - libXtst-devel - libICE-devel - libXrandr-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/lib/libSDLmain.a - /usr/share/aclocal - - - - libsdl-32bit - 32-bit shared libraries for libsdl - libsdl için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - libsdl - glibc-32bit - - - /usr/lib32 - - - - - 2015-12-30 - 1.2.15 - Rebuild, fix builddep. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-14 - 1.2.15 - rebuild for DirectFB. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 1.2.15 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libdvdnav - http://www.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - libdvdnav is a library for developers of multimedia applications - libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane - libdvdnav est une librairie pour les développeur d'applications multimédia. Elle permet l'utilisation de fonctionnalités sophistiquées de navigation DVD tels que les menus DVD, la lecture multi-angle et même des jeux interactifs DVD. - libdvdnav is a library for developers of multimedia applications. It allows easy use of sophisticated DVD navigation features such as DVD menus, multiangle playback and even interactive DVD games. - libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane. libdvdnav ile karmaşık DVD dolaşmalarını Örn: DVD menüleri, değişik açılı gösterimleri ve hatta etkileşimli DVD oyunlarını kullanabilirsiniz - libdvdnav es una librería para desarrollo de aplicaciones multimedia. Permite uso fácil de navegación avanzada en DVDs como en menús de DVDs, reproducción multi-ángulo, e incluso DVDs con juegos interactivos. - http://download.videolan.org/pub/videolan/libdvdnav/5.0.3/libdvdnav-5.0.3.tar.bz2 - - libdvdread-devel - - multimedia/misc/libdvdnav/pspec.xml - - - libdvdnav - - libdvdread - - - /usr/lib - /usr/share/doc/libdvdnav - - - - libdvdnav-devel - Development files for libdvdnav - libdvdnav için geliştirme dosyaları - - libdvdnav - libdvdread-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2015-01-31 - 5.0.3 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-28 - 5.0.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-29 - 5.0.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-24 - 4.2.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-08 - 4.2.0 - Rebuild. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-31 - 4.2.0 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-03-08 - 4.2.0 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2010-10-12 - 0.0_20100819 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libopus - http://www.opus-codec.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.misc - Opus is a totally open, royalty-free, highly versatile audio codec - Açık kaynak, telif ücretsiz, çok yönlü ses codec bileşenidir - Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec. - Opus Internet üzerinde etkileşimli ses ve müzik iletimi için eşsiz olan, ama aynı zamanda saklama ve akış uygulamaları için tasarlanmıştır. -Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 olarak Internet Engineering Task Force (IETF) tarafından standartlaştırılmıştır. - http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz - multimedia/misc/libopus/pspec.xml - - - libopus - - /usr/bin - /usr/lib - /usr/share - - - - libopus-devel - Development files for libopus - Libopus için geliştirme dosyaları - - libopus - - - /usr/include - /usr/lib/pkgconfig - - - - libopus-docs - document files for libopus - - libopus - - - /usr/share/doc/ - - - - - 2014-05-22 - 1.1 - enable-custom-modes. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 1.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-09 - 1.0.4 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-28 - 1.0.2 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-12-12 - 1.0.2 - First release - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - - - - libdvdcss - http://www.videolan.org/libdvdcss/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - A portable abstraction library for DVD decryption - DVD çözmek için soyutlanmış taşınabilir bir kütüphane - libdvdcss est une librairie simple et portable d'abstraction conçue pour accéder auxDVDs comme des périphériques par blocs sans avoir à se soucier du décodage. On peut construire un lecteur DVD à partir de l'API de libdvdcss en 4 ou 5 appels. - libdvdcss is a simple and library portable abstraction library designed for accessing DVDs like a block device without having to bother about the decryption. A DVD player can be built around the libdvdcss API using no more than 4 or 5 library calls. - Libdvdcss, şifre çözme konusunda zahmete girmeden bir blok aygıt gibi DVD'lere erişim için düzenlenmiş basit ve soyutlanmış taşınabilir bir kütüphanedir. Bir DVD çalıcısı libdvdcss API etrafında 4 veya 5'ten fazla olmaksızın kütüphane çağrısı kullanarak kurulabilir. - libdvdcss es una liraría simple y portable de abstracción para acceder a DVDs como a dispositivos de bloques, sin preocuparse de decriptación. Se puede construir un reproductor DVD alrededor el API libdvdcss con no más de 4 o 5 llamadas de librería. - http://download.videolan.org/pub/libdvdcss/1.3.0/libdvdcss-1.3.0.tar.bz2 - multimedia/misc/libdvdcss/pspec.xml - - - libdvdcss - - /usr/lib - /usr/share/doc - - - - libdvdcss-devel - Development files for libdvdcss - libdvdcss için geliştirme dosyaları - - libdvdcss - - - /usr/include/dvdcss - /usr/lib/pkgconfig - - - - - 2014-09-29 - 1.3.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-21 - 1.2.13 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-29 - 1.2.13 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 1.2.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libspnav - http://spacenav.sourceforge.net + serf + https://code.google.com/p/serf/ Osman Erkan osman.erkan@pisilinux.org - BSD + Apachev2 library - multimedia.misc - Open source alternative to 3DConnextion drivers - The spacenav project provides a free compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 6dof space navigation input devices. It provides both a replacement free user-space driver, and a replacement SDK library. - http://downloads.sourceforge.net/spacenav/libspnav-0.2.3.tar.gz - - libX11-devel - - - Makefile.patch - - multimedia/misc/libspnav/pspec.xml - - - libspnav - - libX11 - - - /usr/lib/ - /usr/share/doc - - - - libspnav-devel - Development files for libspnav - libspnav için geliştirme dosyaları - - libspnav - - - /usr/include - /usr/lib/libspnav.so - - - - - 2015-09-16 - 0.2.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 0.2.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.2.2 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-04-28 - 0.2.2 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-01 - 0.2.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libbluray - http://www.videolan.org/developers/libbluray.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.misc - Library to access Blu-Ray disks for video playback - Blu-Ray disklere ulaşmak için kitaplık - Libbluray package is aiming to provide a full portable free open source bluray library, which can be plugged into popular media players to allow full bluray navigation and playback on Linux. It will eventually be compatible with all current titles, and will be easily portable and embeddable in standard players such as mplayer and vlc. - Libbluray kitaplığı, Linux üzerinde bluray oynatmak için tam destek sağlayan, popüler çokluortam oynatıcılarına taşınabilir bir bağımsız açık kaynak bluray kitaplığı olma amacıyla ortaya çıkmıştır. Zaman içerisinde bütün güncel başlıklar ile uyumlu olması, kolay taşınabilmesi ve mplayer, vlc gibi standart oynatıcılara gömülebilir olması amaçlanmaktadır. - ftp://ftp.videolan.org/pub/videolan/libbluray/0.5.0/libbluray-0.5.0.tar.bz2 - - libxml2-devel - freetype-devel - - multimedia/misc/libbluray/pspec.xml - - - libbluray - - libxml2 - freetype - - - /usr/bin - /usr/lib - - - - libbluray-devel - Development files for libbluray - Libbluray için geliştirme dosyaları - - libbluray - - - /usr/include - /usr/lib/pkgconfig - - - - libbluray-docs - document files for libbluray - - libbluray - - - /usr/share/doc/ - - - - - 2014-05-20 - 0.5.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-03 - 0.5.0 - Rebuild for openjdk - PisiLinux Community - admins@pisilinux.org - - - 2014-02-23 - 0.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-06 - 0.3.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-11 - 0.2.3 - First release - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - - - - libebml - http://www.matroska.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie de format binaire extensible (un peu comme XML). - Extensible binary format library (kinda like XML) - Genişletilebilir ikilik biçimlendirme kütüphanesi - Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML. - http://dl.matroska.org/downloads/libebml/libebml-1.3.1.tar.bz2 - multimedia/misc/libebml/pspec.xml - - - libebml - - libgcc - - - /usr/lib - /usr/share/doc - - - - libebml-devel - Development files for libebml - libebml için geliştirme dosyaları - - libebml - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-20 - 1.3.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-24 - 1.3.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-16 - 1.3.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-07 - 1.2.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - taglib-extras - http://amarok.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.misc - Taglib extras library from Amarok team - Amarok takımından taglib ekstraları kütüphanesi - Taglib-extras delivers support for reading and editing the meta-data of audio formats not supported by taglib, including: asf, mp4v2, rmff, wav. - Taglib-extras taglib tarafından desteklenmeyen ses formatlarının (asf, mp4v2, rmff, wav vs.) meta verilerini okumak ve düzenlemek için gerekli desteği verir. - http://download.kde.org/stable/taglib-extras/1.0.1/src/taglib-extras-1.0.1.tar.gz - - pkgconfig - cmake - taglib-devel - - multimedia/misc/taglib-extras/pspec.xml - - - taglib-extras - - taglib - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - taglib-extras-devel - Development files for taglib-extras - taglib-extras için geliştirme dosyaları - - taglib-extras - - - /usr/include/taglib-extras - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.0.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 1.0.1 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2010-10-12 - 1.0.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sdl-image - http://www.libsdl.org/projects/SDL_image/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie SDL de chargement de fichier d'image. - SDL image file loading library - SDL resim yükleme kitaplığı - SDL_image is an image file loader for SDL. - SDL_image, SDL için resim yükleme kitaplığıdır. - http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz - - libsdl-devel - tiff-devel - libjpeg-turbo-devel - - - gif-overflow.patch - - multimedia/misc/sdl-image/pspec.xml - - - sdl-image - - libsdl - tiff - zlib - libpng - libjpeg-turbo - - - /usr/bin - /usr/lib/ - /usr/share/doc - - - - sdl-image-devel - Development files for sdl-image - sdl-image için geliştirme dosyaları - - sdl-image - libsdl-devel - tiff-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl-image-32bit - 32-bit shared libraries for sdl-image - sdl-image için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl-32bit - libpng-32bit - libjpeg-turbo-32bit - tiff-32bit - - - sdl-image - libsdl-32bit - libpng-32bit - libjpeg-turbo-32bit - tiff-32bit - zlib-32bit - glibc-32bit - - - /usr/lib32/ - - - - - 2014-05-31 - 1.2.12 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 1.2.12 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2012-08-29 - 1.2.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - openexr - http://www.openexr.com - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - library - multimedia.misc - A high dynamic-range (HDR) image file format library - OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible. - OpenEXR is a high dynamic-range (HDR) image file format for use in computer imaging applications. OpenEXR's features include: Higher dynamic range and color precision than existing 8- and 10-bit image file formats; support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels; multiple lossless image compression algorithms; extensibility. - OpenEXR, bilgisayar görüntüleme uygulamalarında kullanılan yüksek dinamik görüntü erimidir. OpenEXR özellikleri şunları içerir: Mevcut 8 ve 10 bitlik görüntü dosya formatlarından daha yüksek dinamik görüntü erişimi, 16 ya da 32 bit piksel desteği ve kayıpsız görüntü sıkıştırma algoritması - OpenEXR es un formato de archivo de imagen de alto fango dinámico (HDR) para uso en aplicaciones de computación de imágenes. OpenEXR contiene facilidades: rango dinámico y precisión de colores más alto que formatos existentes de 8- y 10-bit; soporta para punto flotante 16-bit, punto flotante 32-bit, y entero 32-bit pixels; algoritmos de compresión múltiple sin pérdida; extensible. - http://download.savannah.nongnu.org/releases/openexr/openexr-2.2.0.tar.gz - - ilmbase-devel - zlib-devel - mesa-glu-devel - - multimedia/misc/openexr/pspec.xml - - - openexr - - ilmbase - libgcc - openexr-libs - - - /usr/bin - - - - openexr-libs - OpenEXR runtime libraries - OpenEXR çalışma zamanı kitaplıkları - - ilmbase - zlib - libgcc - - - /usr/lib/lib* - /usr/share/doc - - - - openexr-docs - OpenEXR example files - OpenEXR örnek dosyalar - - /usr/share/doc/openexr/examples - - - - openexr-devel - Development files for openexr - OpenEXR için geliştirme dosyaları - - openexr - mesa-glu-devel - ilmbase-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2015-08-28 - 2.2.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 2.1.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-16 - 2.1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-12 - 1.7.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - musicbrainz5 - http://www.musicbrainz.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Client library to access metadata of mp3/vorbis/CD media - Mp3/Ogg Vorbis/Audio-Cd gibi ses dosyalarınızın etiketlerine erişiminizi sağlayan istemci kütüphanesidir. - MusicBrainz est un projet tentant de créer une encyclopédie de musique au contenu ouvert. C'est une base de données en ligne contenant des informations concernant les musiques enregistrées. La librairie client MusicBrainz capture les informations concernant les artistes, le nom de l'album, les titres des chansons, leur longueur et beaucoup d'autres données encore. - MusicBrainz is a project that aims to create an open content music encyclopedia. It is an online database of information about recorded music. MusicBrainz client library captures information about artists, the album title, track titles,the length of each track and many more. - MusicBrainz açık içerikli müzik ansiklopedisi oluşturmayı amaçlayan bir projedir. Kayıtlı albüm ve müzik parçaları hakkında çevrim içi veri tabanı sağlar. MusicBrainz kütüphanesi sanatçı, albüm, çalınan parça ve daha birçok konuda veri toplar. - MusicBrainz es un proyecto con la finalidad de crear una enciclopedia de contenido abierto sobre música. Es una base de datos de información en línea sobre grabaciones de música. La libreía de cliente MusicBrainz captura información de artista, título de album, título de las músicas, longitudes de cada música, y mucho más. - ftp://ftp.parrot.org/.1/blfs/svn/l/libmusicbrainz-5.1.0.tar.gz - - neon-devel - libxml2-devel - cmake - - multimedia/misc/musicbrainz5/pspec.xml - - - musicbrainz5 - - libgcc - libxml2 - neon - - - /usr/lib - /usr/share/doc - - - - musicbrainz5-devel - Development files for musicbrainz5 - musicbrainz5 için geliştirme dosyaları - - musicbrainz5 - neon-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-20 - 5.1.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-29 - 5.0.1 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2014-03-10 - 5.0.1 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-31 - 5.0.1 - missing dep - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-01-06 - 5.0.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkate - http://code.google.com/p/libkate - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - multimedia.misc - A text codec for embedding in Ogg - Ogg için karaoke ve metin kitaplığı - Kate is a codec for karaoke and text encapsulation for Ogg. - Kate, karaoke ve metinleri ogg dosyalara gömmek için kullanılan kitaplık ve konsol uygulamaları içerir. - http://libkate.googlecode.com/files/libkate-0.4.1.tar.gz - - libogg-devel - libpng-devel - doxygen - - multimedia/misc/libkate/pspec.xml - - - libkate - - libogg - libpng - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libkate-devel - Development files for libkate - libkate için geliştirme dosyaları - - libkate - libogg-devel - libpng-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libkate-docs - API documentation for libkate - libkate paketine ait API belgeleri - - libkate - - - /usr/share/doc/libkate/html - /usr/share/doc/libkate/examples - - - - - 2014-05-24 - 0.4.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.4.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-31 - 0.4.1 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 0.4.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - liboil - http://www.schleef.org/liboil/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Liboil is a library of simple functions that are optimized for various CPUs - Liboil, farklı işlemciler için optimize edilmiş temel fonksiyonlardan oluşan bir kütüphanedir - Liboil est une librairie de fonctions simples optimisées pour différents processeurs. Ces fonction sont en général des boucles implémentant des algorithmes simples, tel que convertir un tableau de N entiers en nombres à virgule flottante ou multiplier et additionner un tableau de N nombres. - Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-point numbers or multiplying and summing an array of N numbers. - liboil çeşitli CPU 'lar için en iyilenmiş basit fonksiyon kütüphanesidir. Bu fonksiyonlar genellikle döngüler için gerçekleştirilen yalın algoritmalardır, örneğin ; N integer elemanı olan bir diziyi float elemanlı diziye dönüştürmek yada N elemanlı bir dizi ile toplama yada çarpma yapmak gibi. - Liboil es una librería con funciones simples, optimizados para múltiples CPUs. Estas funciones son generalmente bucles realizando simples algoritmos, como conversión de arrays de N enteros a números de punto flotante o multiplicación y suma de un array de N números. - http://liboil.freedesktop.org/download/liboil-0.3.17.tar.gz - - 02_amd64-cpuid.patch - 03_stride-segfaults.patch - - multimedia/misc/liboil/pspec.xml - - - liboil - - /usr/lib - /usr/share/doc - - - - liboil-devel - Development files for liboil - liboil için geliştirme dosyaları - - liboil - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 0.3.17 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 0.3.17 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-05 - 0.3.17 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - taglib - http://developer.kde.org/~wheeler/taglib.html - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv2 - library - multimedia.misc - A library for reading and editing audio meta data - Ses dosyalarının etiket bilgilerini okuma ve düzenleme kütüphanesi - TagLib est une librairie pour lire et éditer les méta-données de nombreux formats audio populaires. - TagLib is a library for reading and editing the meta data of several popular audio formats. - TagLib ses dosyalarının etiket bilgilerini okumak ve işlemek için kullanılan bir kütüphanedir. - http://taglib.github.io/releases/taglib-1.9.1.tar.gz - - cmake - zlib-devel - - multimedia/misc/taglib/pspec.xml - - - taglib - - zlib - libgcc - - - /usr/lib - /usr/bin - /usr/share/doc - - - - taglib-devel - Development files for taglib - taglib için geliştirme dosyaları - - taglib - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.9.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-24 - 1.9.1 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-22 - 1.8 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - exiv2 - http://www.exiv2.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.misc - Another library for parsing, editing, and saving EXIF data - EXIF verilerini ayrıştırmak, düzenlemek ve kaydetmek için bir diğer kitaplık - Exiv2 est une librairie C++ ainsi qu'un utilitaire en ligne de commande pour accéder aux méta-données d'images. Exiv2 est disponible en tant que logiciel libre ou avec une licence commerciale et est utilisée par un nombre croissant de projets. - exiv2 is a C++ library and a command line utility to access image metadata. Exiv2 is available as free software and with a commercial license, and is used in a growing number of projects. - Exiv2 resimlerin başlık bilgilerine ulaşmak için kullanılan bir C++ kütüphanesi ve komut satırı uygulamasıdır. Exiv2, hem özgür yazılım hem de ticari yazılım lisansıyla kullanılabilir. - Exiv2 es una librería C++ y una herramienta de línea de comandopara acceder metadatos de imágenes. Exiv2 está disponible como software libre y con licencia comercial, y se utiliza cada vez en más proyectos. - http://www.exiv2.org/exiv2-0.25.tar.gz + network.library + High-performance asynchronous HTTP client library. + The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library. + http://serf.googlecode.com/svn/src_releases/serf-1.3.8.tar.bz2 + db-devel zlib-devel expat-devel + openssl-devel + apr-devel + apr-util-devel + scons - - exiv2-0.18-deps.patch - - multimedia/misc/exiv2/pspec.xml + network/library/serf/pspec.xml - exiv2 - - exiv2-libs - - - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - exiv2-libs + serf + db zlib expat - libgcc + openssl + apr + apr-util + openldap-client /usr/lib + /usr/share/doc - exiv2-devel - Development files for exiv2 - exiv2 için geliştirme dosyaları + serf-devel + Development files for serf + serf için geliştirme dosyaları - exiv2-libs + serf /usr/include @@ -24624,4647 +30129,149 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2015-11-02 - 0.25 + 2015-09-02 + 1.3.8 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-23 - 0.24 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 0.23 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libexif - http://libexif.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie pour analyser, éditer et sauvegarder des données EXIF. - Library for parsing, editing, and saving EXIF data - EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane - Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags. - mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2 - - doxygen - - - libexif-0.6.13-pkgconfig.patch - - multimedia/misc/libexif/pspec.xml - - - libexif - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libexif-devel - Development files for libexif - libexif için geliştirme dosyaları - - libexif - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/libexif/libexif-api.html - - - - - 2014-05-24 - 0.6.21 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-30 - 0.6.21 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 0.6.21 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - faac - http://www.audiocoding.com/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - MPEG-4 audio codecs - Özgür MPEG-4 ses codecleri - Free MPEG-4 audio codecs by AudioCoding.com. - mirrors://sourceforge/faac/faac-1.28.tar.gz - - libmp4v2-devel - - - mp4v2-1.9.patch - mp4v2-2.0.0.patch - altivec.patch - - multimedia/sound/faac/pspec.xml - - - faac - - libmp4v2 - - - /usr/bin - /usr/lib - /usr/share/doc/faac - /usr/share/man - - - - faac-devel - Development files for faac - faac için geliştirme dosyaları - - faac - - - /usr/include - - - - - 2014-12-14 - 1.28 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-20 - 1.28 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-23 - 1.28 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.28 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libogg - http://www.vorbis.com - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.sound - La librairie pour fichiers au format média Ogg. - The Ogg media file format library - Ogg dosya biçimi kütüphanesi - libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams. - libogg Ogg biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Ogg biçimli dosya oluşturmak için hem de Ogg dosyalarından paket ayıklamak için kullanılabilir. - http://downloads.xiph.org/releases/ogg/libogg-1.3.1.tar.xz - multimedia/sound/libogg/pspec.xml - - - libogg - - /usr/lib - /usr/share/doc - - - - libogg-devel - - libogg - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/aclocal - /usr/share/doc/libogg/*html - /usr/share/doc/libogg/*png - /usr/share/doc/libogg/ogg - - - - libogg-32bit - 32-bit shared libraries for libogg - libogg için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libogg - - - /usr/lib32 - - - - - 2014-05-20 - 1.3.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-16 - 1.3.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-08-31 - 1.3.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - lash - http://savannah.nongnu.org/projects/lash - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:gui - multimedia.sound - LASH Audio Session Handler - LASH Ses Oturum Yöneticisi - LASH is a session management system for JACK and ALSA audio applications on GNU/Linux. It allows you to save and restore audio sessions consisting of multiple interconneced applications, restoring program state (i.e. loaded patches) and the connections between them. - LASH GNU/Linux'taki JACK ve ALSA ses uygulamaları için bir ses oturumu yönetim sistemidir. Bir çok birbirine bağlı uygulamanın ses oturumunu kaydedip, geri yüklemenize, program durumunu (örneğin yüklenmiş yamalar) ve aralarındaki bağlantıları geri yüklemenize olanak tanır. - lash - http://download.savannah.gnu.org/releases/lash/lash-0.6.0~rc2.tar.bz2 - - alsa-lib-devel - gtk2-devel - jack-audio-connection-kit-devel - dmapi-devel - texi2html - - - makefile.patch - docs-Makefile.patch - - multimedia/sound/lash/pspec.xml - - - lash - - alsa-lib - gtk2 - jack-audio-connection-kit - dmapi - libxml2 - libutil-linux - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share - - - lash-panel.desktop - - - - lash-devel - Development files for lash - lash için geliştirme dosyaları - - dbus-devel - lash - alsa-lib-devel - libxml2-devel - libutil-linux-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-26 - 0.6.0_rc2 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-02-25 - 0.6.0_rc2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-29 - 0.6.0_rc2 - missing dep,update - Erdinç gültekin - erdincgultekin@pisilinux.org - - - 2012-12-29 - 0.6.0_rc2 - First release - PisiLinux Community - osman.erkan@yandex.xom - - - - - - soundtouch - http://www.surina.net/soundtouch - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - Audio Processing Library - Ses işleme kitaplığı - Librairie de traitement audio open-source (libre) pour changer le Tempo, le Pitch et la vitesse de lecture de flux audio ou de fichiers. - soundtouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or file. - soundtouch ses dosyalarının temposunu, oynatma hızını ve frekansını değiştirmek için kullanılabilen açık kaynaklı bir ses işleme kütüphanesidir. - Librería código libre para procesamiento de sonido para manipular Tempo, Pitch y Tasas de reproducción de flujos o archivos de audio - http://www.surina.net/soundtouch/soundtouch-1.8.0.tar.gz - multimedia/sound/soundtouch/pspec.xml - - - soundtouch - - /usr/bin - /usr/lib - /usr/share/doc - - - - soundtouch-devel - Development files for soundtouch - soundtouch için geliştirme dosyaları - - soundtouch - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2014-07-05 - 1.8.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 1.5.0 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2010-10-12 - 1.5.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - audiofile - http://www.68k.org/~michael/audiofile/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.sound - An elegant API for accessing audio files - Ses dosyalarına erişim için zarif bir UPA - audiofile provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. - audiofile; AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX ve NIST SPHERE gibi çeşitli ses dosyası biçimlerine erişim için düzenli ve gelişmiş bir uygulama programlama arayüzü sağlar. - http://audiofile.68k.org/audiofile-0.3.6.tar.gz - - alsa-lib-devel - flac-devel - - multimedia/sound/audiofile/pspec.xml - - - audiofile - - alsa-lib - flac - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - audiofile-devel - Development files for audiofile - audiofile için geliştirme dosyaları - - audiofile - - - /usr/bin/audiofile-config - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - audiofile-32bit - 32-bit shared libraries for audiofile - audiofile için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - alsa-lib-32bit - flac-32bit - glibc-32bit - - - alsa-lib-32bit - flac-32bit - audiofile - - - /usr/lib32 - - - - - 2014-05-20 - 0.3.4 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-18 - 0.3.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-01-14 - 0.3.4 - First release - Idris Kalp - admins@pisilinux.org - - - - - - deadbeef - http://deadbeef.sourceforge.net - - PisiLİnux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.sound - Audio player for GNU/Linux systems with X11 - X1 ile GNU / Linux sistemleri için ses çalar - Lkki i przejrzysty odtwarzacz plików muzycznych - DeaDBeeF (as in 0xDEADBEEF) is an audio player for GNU/Linux systems with X11 (though now it also runs in plain console without X, in FreeBSD, and in OpenSolaris). - DeaDBeeF (0xDEADBEEF gibi) X11 ile GNU / Linux sistemleri (şimdi olsa da FreeBSD, X olmaksızın düz konsolda çalışır ve OpenSolaris) için bir ses oynatıcısıdır. - DeaDBeeF Program pozwala odtwarzać najpopularniejsze formaty muzyki, a także płyty Audio-CD i strumienie audio emitowane za pośrednictwem Internetu. Jego ogromną zaletą jest prostota, dopracowanie oraz minimalne zapotrzebowanie na zasoby systemowe. - deadbeef - https://github.com/Alexey-Yakovenko/deadbeef/archive/0.6.2.tar.gz - - atk-devel - gtk2-devel - gtk3-devel - flac-devel - faad2-devel - cairo-devel - pango-devel - ffmpeg-devel - libmad-devel - libzip-devel - imlib2-devel - wavpack-devel - libcddb-devel - alsa-lib-devel - libvorbis-devel - libsndfile-devel - cdparanoia-devel - gdk-pixbuf-devel - libsamplerate-devel - pulseaudio-libs-devel - libcdio-devel - curl-devel - dbus-devel - zlib-devel - glib2-devel - libX11-devel - intltool - - - plugins_vfs_zip_vfs_zip_c.patch - - multimedia/sound/deadbeef/pspec.xml - - - deadbeef - - atk - gtk2 - gtk3 - flac - faad2 - cairo - pango - ffmpeg - libmad - libzip - imlib2 - wavpack - libcddb - alsa-lib - libvorbis - cdparanoia - libogg - libsndfile - gdk-pixbuf - libsamplerate - pulseaudio-libs - libcdio - curl - dbus - zlib - glib2 - libgcc - libX11 - - - /usr/bin - /usr/include - /usr/lib/deadbeef - /usr/share/applications - /usr/share/deadbeef - /usr/share/doc/deadbeef - /usr/share/icons/hicolor/*/apps - /usr/share/locale - - - - - 2015-12-25 - 0.6.2 - Rebuild - Stefan Gronewold - groni@pisilinux.org - - - 2014-12-14 - 0.6.2_2014.12.14 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-11-12 - 0.6.2_2014.11.12 - Version bump from git source - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-28 - 0.6.2 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2014-06-04 - 0.6.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-04 - 0.6.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-29 - 0.5.6 - missing dep. - Erdinç gültekin - erdincgultekin@pisilinux.org - - - 2013-07-08 - 0.5.6 - Rebuild for new libcdio - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-09 - 0.5.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pulseaudio - http://pulseaudio.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - GPLv2 - BSD - app:console - library - multimedia.sound - A networked sound server with an advanced plugin system - Gelişmiş eklenti desteğine sahip ağ temelli bir ses sunucusu - pulseaudio is a sound server for POSIX and Win32 systems. It allows you to do advanced operations on your sound data as it passes between your application and your hardware. - pulseaudio, POSIX ve Win32 sistemler için tasarlanmış, donanım ve uygulamalar arasında gezinen ses verilerinin üzerinde gelişmiş işlemler yapılmasına olanak sağlayan bir ses sunucusudur. - http://freedesktop.org/software/pulseaudio/releases/pulseaudio-6.0.tar.xz - - orc-devel - sbc-devel - fftw3-devel - doxygen - xcb-proto - gtk2-devel - avahi-devel - speex-devel - libSM-devel - libtdb-devel - libICE-devel - libXtst-devel - xcb-util-devel - alsa-lib-devel - libsndfile-devel - libasyncns-devel - libatomic_ops-devel - eudev-devel - dbus-devel - intltool - libcap-devel - json-c-devel - - multimedia/sound/pulseaudio/pspec.xml - - - pulseaudio-libs - Libraries for PulseAudio clients - PulseAudio istemci kitaplığı - - dbus - glib2 - json-c - libX11 - libtdb - libxcb - eudev - libtool-ltdl - orc - sbc - fftw3 - libSM - speex - libICE - libXtst - alsa-lib - avahi-libs - libasyncns - libsndfile - bluez - - - /usr/bin/pa* - /etc/pulse/client.conf - /usr/lib/libpulse.so - /usr/lib/libpulse.so* - /usr/lib/libpulse-simple.so - /usr/lib/libpulse-simple.so* - /usr/lib/pulseaudio/libpulsecommon-* - /usr/lib/libpulse-mainloop-glib.so - /usr/lib/libpulse-mainloop-glib.so* - /usr/lib/pulseaudio/libpulsedsp.* - /usr/lib/pulse/modules - /usr/lib/udev/rules.d - /usr/lib/libpulsecore-*.so - - - - pulseaudio-libs-devel - Development files for pulseaudio-libs - pulseaudio-libs için geliştirme dosyaları - - pulseaudio-libs - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/vala/vapi - /usr/lib/cmake/PulseAudio - - - - pulseaudio-docs - doxygen generated API documentation for PulseAudio - Doxygen tarafından üretilmiş PulseAudio API belgeleri - - /usr/share/doc/pulseaudio/html - - - - pulseaudio - - dbus - libcap - libtool-ltdl - pulseaudio-libs - - - /usr/bin/pulseaudio - /usr/bin/qpaeq - /usr/bin/start-pulseaudio-kde - /usr/bin/esdcompat - /usr/bin/start-pulseaudio-x11 - /usr/lib/pm-utils/sleep.d - /usr/libexec - /usr/lib/pulse-5.0/modules - /etc - /usr/lib/tmpfiles.d/pulseaudio.conf - /lib/udev/rules.d - /usr/share/pulseaudio/alsa-mixer - /usr/share - /usr/share/icons - /var/lib/pulse - /run/pulse - - - System.Package - - - pulseaudio.conf - pisilinux/pulseaudio.sysconfig - mandriva/pulseaudio.svg - mandriva/pulseaudio.svg - mandriva/pulseaudio16.png - mandriva/pulseaudio22.png - mandriva/pulseaudio32.png - mandriva/pulseaudio48.png - mandriva/pulseaudio64.png - mandriva/pulseaudio128.png - mandriva/pulseaudio16.png - mandriva/pulseaudio22.png - mandriva/pulseaudio32.png - mandriva/pulseaudio48.png - mandriva/pulseaudio64.png - mandriva/pulseaudio128.png - - - - pulseaudio-libs-32bit - 32-bit shared libraries for pulseaudio-libs - pulseaudio-libs için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - json-c-32bit - dbus-32bit - glib2-32bit - speex-32bit - libcap-32bit - libsndfile-32bit - libtool-ltdl-32bit - glibc-32bit - - - pulseaudio-libs - dbus-32bit - glib2-32bit - libsndfile-32bit - json-c-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-02-20 - 6.0 - Version bump. Dep fixed - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-07-25 - 5.0 - Rebuild for smplayer - Vedat Demir - vedat@pisilinux.org - - - 2014-05-12 - 5.0 - version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-14 - 4.0 - add git version - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-11 - 4.0 - Add tmpfiles.con; add updates from git. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 4.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-16 - 3.99 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-12-18 - 3.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - portaudio - http://www.portaudio.com - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.sound - Portable audio library - Ses kütüphanesi - Une API audio multi-plateforme libre. - PortAudio is a free, cross platform, open-source, audio I/O library. - Birden çok platformda kullanılabilinen açıkkodlu ses kütüphanesi - http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz - - alsa-lib-devel - jack-audio-connection-kit-devel - - multimedia/sound/portaudio/pspec.xml - - - portaudio - - alsa-lib - jack-audio-connection-kit - - - /usr/lib - /usr/share/doc - - - - portaudio-devel - Development files for portaudio - portaudio için geliştirme dosyaları - - portaudio - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/portaudio/html - - - - - 2015-11-21 - 19.20140130 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-06-01 - 19.20140130 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-05 - 19.20140130 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-08-29 - 19 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - sayonara - http://sayonara.luciocarreras.de/index.html - - Pisi Linux Community - admins@pisilinux.org - - GPLv3 - app:gui - multimedia.sound - Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. - Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. - Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. - Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. - sayonara - http://sayonara-player.com/sw/sayonara-player-r195.tar.gz - - qt5-base-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qt5-linguist - gstreamer-next-devel - taglib-devel - libnotify-devel - gst-plugins-bad-devel - gst-plugins-base-devel - gst-plugins-ugly-next - glib2-devel - cmake - gstreamer-next-devel - gst-plugins-base-next-devel - - multimedia/sound/sayonara/pspec.xml - - - sayonara - - qt5-base - gst-plugins-bad - gst-plugins-base-next - gst-plugins-good-next - gst-plugins-ugly-next - gstreamer - taglib - libnotify - glib2 - libgcc - gstreamer-next - gst-plugins-base-next - - - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/pixmaps - /usr/share/applications - /usr/share/doc - - - sayonara.desktop - sayonara.png - - - - - 2015-10-11 - 0.7.1 - Version Bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-09-26 - 0.7.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knowthelist - http://qt-apps.org/content/show.php/Knowthelist?content=165335 - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPLv3 - app:gui - multimedia.sound - Knowthelist the awesome party music player - Knowthelist the awesome party music player - Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) - Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) - knowthelist - https://github.com/knowthelist/knowthelist/archive/v2.3.0.tar.gz - - qt5-base-devel - qt5-xmlpatterns-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-linguist - glib2-devel - alsa-lib-devel - taglib-devel - gstreamer-next-devel - gst-plugins-bad-next-devel - gst-plugins-base-next-devel - - multimedia/sound/knowthelist/pspec.xml - - - knowthelist - - qt5-base - gstreamer-next - taglib - alsa-lib - glib2 - libgcc - - - /usr/bin - /usr/share - /usr/share/applications - /usr/share/icons - /usr/share/doc - - - - - 2015-11-11 - 2.3.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - flac - http://flac.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - multimedia.sound - An encoder/decoder for the Free Lossless Audio Codec - Özgür Kayıpsız Ses Kodlaması için kodlayıcı/çözücü araçları - flac is the Free Lossless Audio Codec. The FLAC format supports streaming, seeking, and archival, and gives 25-75% compression on typical CD audio. This package contains tools and libraries to work with and support for files in FLAC format. - flac bir Özgür Kayıpsız Ses Kodlaması'dır. (Free Lossless Audio Codec) FLAC biçemi akan görüntü, arama ve arşivleme ve tipik bir Ses CD'sinde %25-75 sıkıştırmayı destekler. - http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz - - libogg-devel - - multimedia/sound/flac/pspec.xml - - - flac - - libogg - libgcc - - - /usr/bin - /usr/lib - /usr/share/man - - - - flac-docs - Documentation for flac - flac ile ilgili belgeler - - flac - - - /usr/share/doc - - - - flac-devel - Development files for flac - flac için geliştirme dosyaları - - libogg-devel - flac - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - flac-32bit - 32-bit shared libraries for flac - flac için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libogg-32bit - glibc-32bit - - - libogg-32bit - libgcc - glibc-32bit - flac - - - /usr/lib32 - - - - - 2014-12-03 - 1.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-21 - 1.3.0 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-11-16 - 1.3.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2011-03-01 - 1.2.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - faad2 - http://www.audiocoding.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.sound - MPEG2 and MPEG4 AAC decoder - AAC yorumlayıcı - FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. - FAAD2 bir HE, LC, MAIN ve LTP profil, MPEG2 ve MPEG4 AAC çözücüdür. - mirrors://sourceforge/faac/faad2-2.7.tar.bz2 - - faad2-2.7-libmp4ff-shared-lib.patch - faad2-2.7-man1_MANS.patch - faad2-2.7-libmp4ff-install-mp4ff_int_types_h.patch - - multimedia/sound/faad2/pspec.xml - - - faad2 - - /usr/bin - /usr/lib - /usr/share/doc/faad2 - /usr/share/man - - - - faad2-devel - Development files for faad2 - faad2 için geliştirme dosyaları - - faad2 - - - /usr/include - - - - - 2014-05-20 - 2.7 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-23 - 2.7 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.7 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - speex - http://www.speex.org/ - - PisiLinux Community - admins@pisilinux.org - - xiph - app:console - multimedia.sound - Audio compression format designed for speech and its converter application - Konuşma için tasarlanmış bir ses sıkıştırma biçimi kütüphanesi ve araçları - speex is an Open Source/Free Software patent-free audio compression format designed for speech. The Speex Project aims to lower the barrier of entry for voice applications by providing a free alternative to expensive proprietary speech codecs. The package also contains a command-line tool to convert to/from Speex codec. - speex, konuşma için tasarlanmış özgür ve açık kaynaklı bir ses sıkıştırma biçimidir. Paket kütüphanenin yanında speex biçimine/biçiminden dönüştürme yapmak için gerekli araçları içerir. - http://downloads.us.xiph.org/releases/speex/speex-1.2rc1.tar.gz - - libogg-devel - - - constant.patch - configure.patch - - multimedia/sound/speex/pspec.xml - - - speex - - libogg - - - /usr/bin - /usr/share/man - /usr/lib - /usr/share/doc - - - - speex-devel - Development files for speex - speex için geliştirme dosyaları - - speex - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - speex-32bit - 32-bit shared libraries for speex - speex için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - speex - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-20 - 1.2_rc1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2011-03-01 - 1.2_rc1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libao - http://www.xiph.org/ao/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - La librairie de rendu (sortie) audio. - The audio output library - Ses çıktısı kütüphanesi - Libao is a cross platform audio output library. It currently supports ESD, OSS, Solaris, and IRIX. - http://downloads.xiph.org/releases/ao/libao-1.2.0.tar.gz - - alsa-lib-devel - pulseaudio-libs-devel - - multimedia/sound/libao/pspec.xml - - - libao - - alsa-lib - pulseaudio-libs - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - libao-devel - Development files for libao - libao için geliştirme dosyaları - - libao - - - /usr/include/ao - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/libao/html - - - - - 2014-05-26 - 1.2.0 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-02-25 - 1.1.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-14 - 1.1.0 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-08-31 - 1.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - lame - http://lame.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - A free MP3 encoder/decoder - MP3 ses çözümleme kütüphanesi - LAME is an MPEG Audio Layer III (MP3) encoder licensed under the LGPL. - Lame, Kısıtlı Genel Kamu lisansı altında lisanslanmış MPEG III(MP3) kod çözücüsüdür. - mirrors://sourceforge/lame/lame-3.99.5.tar.gz - - ncurses-devel - - multimedia/sound/lame/pspec.xml - - - lame - - ncurses - - - /usr/bin - /usr/lib - /usr/share/man - - - - lame-docs - - /usr/share/doc - - - - lame-devel - Development files for lame - lame için geliştirme dosyaları - - lame - - - /usr/include - /usr/share/man/man3 - - - - - 2014-12-14 - 3.99.5 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-21 - 3.99.5 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-29 - 3.99.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-31 - 3.99.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - celt - http://www.celt-codec.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - multimedia.sound - An audio codec for use in low-delay speech and audio communication - Düşük gecikmeli konuşma ve ses iletişimde kullanılmak üzere tasarlanan ses kodeği - CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). - CELT (Constrained Energy Lapped Transform) yüksek kalitede konuşma ve ses görüşmesinin gerçek zamanlı iletiminde kullanılmak üzere tasarlanmış bir ses kodeğidir. - http://downloads.us.xiph.org/releases/celt/celt-0.11.3.tar.gz - - libogg-devel - - multimedia/sound/celt/pspec.xml - - - celt - app:console - library - - libogg - - - /usr/bin - /usr/lib - /usr/share/doc - - - - celt-devel - Development files for celt - celt için geliştirme dosyaları - library - - celt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-15 - 0.11.3 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-21 - 0.11.3 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-20 - 0.11.3 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-17 - 0.11.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libmad - http://mad.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Librairie de "D"écompression "A"udio "M"peg ("M"peg "A"udio "D"ecoder") - "M"peg "A"udio "D"ecoder library - Yüksek kaliteli MPEG ses çözücü kütüphanesi - libmad is an audio decoder library for MPEG based content. - libmad MPEG tabanlı ses çözüm kitaplığıdır. - mirrors://sourceforge/mad/libmad-0.15.1b.tar.gz - - amd64-64bit.diff - libmad-0.15.1b-cflags-O2.patch - libmad-0.15.1b-cflags.patch - - multimedia/sound/libmad/pspec.xml - - - libmad - - /usr/lib - /usr/share/doc - - - - libmad-devel - Development files for libmad - libmad için geliştirme dosyaları - - libmad - - - /usr/include - /usr/lib/pkgconfig - - - mad.pc - - - - - 2014-05-20 - 0.15.1b - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 0.15.1b - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-12 - 0.15.1b - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - qmmp - http://qmmp.ylsoftware.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - multimedia.sound - An audio-player, written with Qt5 library - Qt tabanlı müzik oynatıcı - Qmmp is an audio-player, written with Qt5 library. It's similar to Winamp or Xmms. Also supports Xmms and Winamp skins. qmmp-skins package in Contrib repository is recommended, too. - Qmmp Qt tabanlı bir müzik oynatıcısıdır. Xmms ve Winamp temalarını destekler. Ayrıca Contrib deposunda bulunan ve Pisi Linux'a özel temalar da içeren qmmp-skins paketini de kurmanız önerilir. - qmmp - http://qmmp.ylsoftware.com/files/qmmp-1.0.1.tar.bz2 - - qt5-base-devel - libX11-devel - qt5-x11extras-devel - qt5-linguist - libsamplerate-devel - wavpack-devel - flac-devel - faad2-devel - libmodplug-devel - libmms-devel - libcdio-devel - libvorbis-devel - libsndfile-devel - pulseaudio-libs-devel - alsa-lib-devel - mesa-devel - libmad-devel - taglib-devel - ffmpeg-devel - libmpcdec-devel - libcddb-devel - cmake - - multimedia/sound/qmmp/pspec.xml - - - qmmp - - qt5-base - curl - libX11 - libgcc - qt5-x11extras - libsamplerate - wavpack - flac - faad2 - libmodplug - libmms - libvorbis - libsndfile - pulseaudio-libs - alsa-lib - libmad - taglib - ffmpeg - jack-audio-connection-kit - libmpcdec - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - qmmp-devel - qmmp development files - qmmp için geliştirme dosyaları - - qmmp - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/ - - - - - 2015-11-19 - 1.0.1 - Version bump ported to qt5. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-11 - 0.8.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-25 - 0.8.2 - Rebuild for ffmpeg - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-17 - 0.8.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2014-07-06 - 0.8.0 - Version bump - Nikolay Semenov - tribunal@pisilinux.org - - - 2014-06-04 - 0.7.7 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-30 - 0.7.3 - Rebuild for ffmpeg. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-10-19 - 0.7.3 - Version Bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-08-30 - 0.7.2 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-29 - 0.7.1 - missing dep. - Erdinç gültekin - erdincgultekin@pisilinux.org - - - 2013-07-27 - 0.7.1 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-08 - 0.7.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-01 - 0.6.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - openal - http://kcat.strangesoft.net/openal.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.sound - Open Audio Library is a vendor-neutral API for interactive spatialized audio - Açık ses kütüphanesi - OpenAL est une API audio 3D multi-plateforme utilisable pour les jeux et beaucoup d'autre types d'application audio. Les objets de base d'OpenAL sont le Listener (auditeur), a Source (source), et le Buffer (tampon). - OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. The basic OpenAL objects are a Listener, a Source, and a Buffer. - OpenAL, oyun uygulamaları ve diğer birçok audio uygulama tipleriyle kullanılmaya tahsisli bir üç boyutlu audio API(Uygulama Programlama Arayüzü) çapraz platformudur. - http://kcat.strangesoft.net/openal-releases/openal-soft-1.15.1.tar.bz2 - - alsa-lib-devel - pulseaudio-libs-devel - cmake - - - pthread.patch - no-fpuextended.patch - - multimedia/sound/openal/pspec.xml - - - openal - - alsa-lib - - - /usr/bin - /usr/lib - /usr/share/doc/openal - /usr/share/openal - - - - openal-devel - Development files for openal - openal için geliştirme dosyaları - - openal - pulseaudio - - - /usr/include - /usr/lib/pkgconfig/openal.pc - /usr/lib32/pkgconfig/openal.pc - - - - openal-32bit - 32-bit shared libraries for openal - openal için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - openal - - - /usr/lib32 - - - - - 2014-05-25 - 1.15.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 1.15.1 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-08-31 - 1.14 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - libsamplerate - http://www.mega-nerd.com/SRC/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.sound - Secret Rabbit Code (alias libsamplerate) est un convertisseur audio de taux de Sample (Sample Rate Converter). - Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio - libsamplerate ses dosyaları için basit bir örnekleme oranı dönüştürücü - Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects. - libsamplerate (Seceret Rabbit Code) ses dosyaları için basit bir örnekleme oranı dönüştürücüsüdür. Zaman ya da tercih edilen başka bir yapıya bağlı olarak 12 kata kadar dönüşüm yapabilir. Örnekleme oranı değiştirebildiği gibi hızlandırma ve yavaşlatma filtreleri de uygulayabilir. - http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz - - libsndfile-devel - - - dontbuild-tests-examples.patch - - multimedia/sound/libsamplerate/pspec.xml - - - libsamplerate - - libsndfile - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libsamplerate-devel - Development files for libsamplerate - libsamplerate için geliştirme dosyaları - libsamplerate için geliştirme dosyaları - - libsamplerate - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 0.1.8 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 0.1.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-10-17 - 0.1.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcanberra - http://0pointer.de/lennart/projects/libcanberra/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - A library for generating event sounds on free desktops - Masaüstü üzerinde bildirim sesleri üretmek için kütüphane - libcanberra is an implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops, such as GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer, null) and is designed to be portable. - libcanberra, çeşitli arka uç (ALSA, PulseAudio, GStreamer, null) destekleri olan, XDG Ses Teması ve İsimlendirme standartlarına uygun, bildirim sesi çalma kütüphanesidir. - http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.30.tar.xz - - libogg-devel - pulseaudio-libs-devel - gstreamer-devel - libvorbis-devel - alsa-lib-devel - glib2-devel - gtk2-devel - gtk3-devel - at-spi2-core-devel - eudev-devel - atk-devel - cairo-devel - pango-devel - libogg-devel - libtdb-devel - libvorbis-devel - fontconfig-devel - gstreamer-next-devel - - - fix-pthread.patch - fix-underlinking.patch - - multimedia/sound/libcanberra/pspec.xml - - - libcanberra - - libtdb - libtool-ltdl - glib2 - alsa-lib - libvorbis - pulseaudio-libs - gstreamer-next - - - /usr/lib - /usr/share/doc - /usr/share/gdm - /usr/share/gnome/ - - - - libcanberra-devel - Development files for libcanberra - libcanberra için geliştirme dosyaları - - libcanberra - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - - - - libcanberra-gtk - GTK+ convenience API and utilities for libcanberra - GTK+ için libcanberra araçları ve programlama kitaplığı - - libcanberra - gtk2 - glib2 - libX11 - - - /usr/lib/gtk-2* - /usr/lib/libcanberra-gtk.so* - - - - libcanberra-gtk-devel - Development files for libcanberra-gtk - - libcanberra - libcanberra-devel - gtk2-devel - - - /usr/include/canberra-gtk.h - /usr/lib/pkgconfig/libcanberra-gtk.pc - /usr/share/vala/vapi/libcanberra-gtk.vapi - - - - libcanberra-gtk3-devel - Development files for libcanberra-gtk - - libcanberra-gtk-devel - gtk3-devel - - - /usr/lib/pkgconfig/libcanberra-gtk3.pc - - - - libcanberra-gtk3 - GTK+ convenience API and utilities for libcanberra - - gtk3 - glib2 - eudev - libX11 - libcanberra - - - /usr/lib/gtk-3* - /usr/lib/libcanberra-gtk3* - /usr/share/doc/libcanberra-gtk3 - /usr/bin/canberra-boot - /usr/bin/canberra-gtk-play - - - - - 2015-08-03 - 0.30 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-15 - 0.30 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-07 - 0.29 - Split Package + Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-17 - 0.29 - Release Bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 0.29 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-31 - 0.29 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libsndfile - http://www.mega-nerd.com/libsndfile/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - A C library for reading and writing files containing sampled sound - Örneklenmiş ses verileri içeren dosyalar yazmak ve okumak için C dili kütüphanesi. - Libsndfile est une librairie C pour lire et écrire des fichiers contenant des échantillons sonores (tels que les fichiers aux formats MS Windows WAV et Apple/SGI AIFF) à travers une seule interface de librairie standard. - Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. - Libsndfile, standart bir kütüphane arayüzü vasıtası ile (MS Windows WAV ve Apple/SGI AIFF biçimi gibi)örneklenmiş ses içeren dosyalar yazmak ve okumak için bir C dili kütüphanesidir. - Libsndfile es una librería C de lectura y escritura para archivos de sonido (como MS Windows WAV y el formato Apple/SGI AIFF) con una interfaz estándar de libería. - http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.25.tar.gz - - flac-devel - libogg-devel - alsa-lib-devel - libvorbis-devel - - - libsndfile-1.0.18-less_strict_tests.patch - libsndfile-1.0.17-regtests-need-sqlite.patch - m4dir.patch - - multimedia/sound/libsndfile/pspec.xml - - - libsndfile - - flac - libogg - alsa-lib - libvorbis - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/octave - - - - libsndfile-devel - Development files for libsndfile - libsndfile için geliştirme dosyaları - - libsndfile - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libsndfile-32bit - 32-bit shared libraries for libsndfile - libsndfile için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - flac-32bit - alsa-lib-32bit - libogg-32bit - libvorbis-32bit - - - glibc-32bit - flac-32bit - alsa-lib-32bit - libogg-32bit - libvorbis-32bit - libsndfile - - - /usr/lib32 - - - - - 2014-05-25 - 1.0.25 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 1.0.25 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-07-17 - 1.0.25 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libdca - http://developers.videolan.org/libdca.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Library for decoding DTS Coherent Acoustics streams - libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane - libdts est une librairie libre pour décoder les flux DTS Coherent Acoustics. - libdts is a free library for decoding DTS Coherent Acoustics streams. - libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane - libdts es una librería libre para decodificar flujos acústicos coherentes DTS. - http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2 - - libdca-0.0.5-cflags.patch - libdca-0.0.5-constant.patch - - multimedia/sound/libdca/pspec.xml - - - libdca - - /usr/lib - /usr/bin - /usr/share/man - /usr/share/doc - - - - libdca-devel - Development files for libdca - libdca için geliştirme dosyaları - - libdca - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.0.5 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 0.0.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.0.5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmikmod - http://mikmod.raphnet.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.sound - A library to play a wide range of module formats - Bir çok modül formatını çalabilen bir kitaplık - libmikmod est une librairie son portable, qui était habituellement emballée avec le lecteur de module MikMod, mais qui est maintenant livrée de manière indépendante. Elle est capable de jouer des échantillons ainsi que des fichiers modules, utilisant aussi bien le pilote OSS, Alsa ou EsounD pour la sortie. Les formats de module gérés comprennent entre autres mod, s3m, xm, it, med, mtm et 669. - libmikmod is a portable sound library, which used to be packaged with the MikMod module player, but is now released independentely. It is capable of playing samples as well as module files, using the OSS driver for output, as well as Alsa and EsounD. Supported module format include mod, s3m, xm, it, med, mtm and 669, to name a few. - libmikmod, MikMod modül çalıcısı ile kullanmılması amacıyla paketlenmiş bir taşınabilir ses kitaplığıdır, fakat artık bağımsız olarak dağıtılmaktadır. Ses örneklerini ses çıkışı için OSS sürücünü kullanarak çalabildiği gibi, Alsa ve EsounD için de kullanmaktadır. Desteklenen modül kipleri mod, s3m, xm, it, med, mtm ve 669 gibi kiplerdir. - libmikmod es ina librería portable de sonido, que solía estar incluido con el MikMod module player, pero ahora fue lanzado independientemente. Es capaz de reproducir archivos de sonidos y de módulos, usando para la salida tanto un controlador OSS, como también Alsa y EsounD. Formatos de módulos soportados abarcan mod, s3m, xm, it, med, mtm and 669, para nombrar algunos. - http://sourceforge.net/projects/mikmod/files/libmikmod/3.3.7/libmikmod-3.3.7.tar.gz - - audiofile-devel - alsa-lib-devel - - multimedia/sound/libmikmod/pspec.xml - - - libmikmod - - pulseaudio-libs - - - /usr/lib - /usr/share/doc/libmikmod - /usr/share/info - /usr/share/man - - - - libmikmod-devel - Development files for libmikmod - libmikmod için geliştirme dosyaları - - libmikmod - - - /usr/bin/libmikmod-config - /usr/include - /usr/share/aclocal - - - - libmikmod-32bit - 32-bit shared libraries for libmikmod - libmikmod için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - audiofile-32bit - glibc-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - libmikmod - audiofile-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - /usr/lib32 - - - - - 2015-10-19 - 3.3.7 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2014-05-31 - 3.3.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-31 - 3.3.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-08-01 - 3.2.0_beta2 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - libmpcdec - http://www.musepack.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - Portable Musepack decoder library - Musepack SV7 kodlama kitaplığı - Librairie de décodage portable Musepack. - Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be able to hear differences between the original wave file and the much smaller MPC file. It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed and vastly improved and is now at an advanced stage in which it contains heavily optimized and patentless code. - libmpcdec, taşınabilir bir Musepack kodlama kitaplığıdır. - http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2 - multimedia/sound/libmpcdec/pspec.xml - - - libmpcdec - - /usr/lib - - - - libmpcdec-devel - Development files for libmpcdec - libmpcdec için geliştirme dosyaları - - libmpcdec - - - /usr/include - - - - - 2014-05-20 - 1.2.6 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 1.2.6 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.2.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - mpg123 - http://www.mpg123.de/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - app:console - multimedia.sound - Console MP3 player - Gerçek zamanlı bir mp3 oynatıcı - mpg123 is a fast and free console MP3 player. It does not require high system resources, it can even run in a 100MHz computer. - mpg123 düşük konfigürasyonlu sistemlerde de rahatlıkla çalışabilen hızlı bir mp3 oynatıcısıdır. - mirrors://sourceforge/mpg123/mpg123-1.22.4.tar.bz2 - - alsa-lib-devel - - multimedia/sound/mpg123/pspec.xml - - - mpg123 - - alsa-lib - libtool-ltdl - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - mpg123-devel - Development files for mpg123 - mpg123 için geliştirme dosyaları - - mpg123 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mpg123-32bit - 32-bit shared libraries for mpg123 - mpg123 için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - alsa-lib-32bit - - - mpg123 - glibc-32bit - - - /usr/lib32 - - - - - 2015-11-13 - 1.22.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-03 - 1.21.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-25 - 1.19.0 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-01-08 - 1.17.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-07-06 - 1.15.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-31 - 1.14.4 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - twolame - http://www.twolame.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.sound - An optimised MPEG Audio Layer 2 - Optimize edilmiş bir MPEG Ses katman 2 çözücüsü - TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME. - TwoLame Mike Cheng'in tooLAME'ni taban olarak alan LAME'in ISO dist10 kodları ve parçaları üzerinde optimize edilmiş bir MPEG Ses Katman 2 çözücüsüdür. - mirrors://sourceforge/twolame/twolame-0.3.13.tar.gz - - libsndfile-devel - - multimedia/sound/twolame/pspec.xml - - - twolame - - libsndfile - - - /usr/bin - /usr/lib - /usr/share/doc/twolame - /usr/share/man - - - - twolame-devel - Development files for twolame - twolame için geliştirme dosyaları - - twolame - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/twolame/html - - - - - 2014-05-25 - 0.3.13 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-02-17 - 0.3.13 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-26 - 0.3.13 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-28 - 0.3.13 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - a52dec - http://liba52.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - DVD ATSC A/52 streams decoder library - DVD'de kullanılan ATSC A/52 akımını çözen kütüphane - liba52 is a free library for decoding ATSC A/52 streams. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3. - liba52 ATSC A/52 yayınlarının kodlarını çözen ücretsiz bir kütüphanedir. A/52 standart dijital televizyon ve DVD programlarını da içeren çeşitli uygulamalar tarafından kullanılmaktadır. - http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz - - glibc-devel - djbfft-devel - - - a52dec-0.7.4-build.patch - use-djbfft.patch - constant.patch - - multimedia/sound/a52dec/pspec.xml - - - a52dec - - djbfft - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - a52dec-devel - Development files for a52dec - a52dec için geliştirme dosyaları - - a52dec - - - /usr/include - - - - - 2014-05-20 - 0.7.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 0.7.4 - some fixes and rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-12 - 0.7.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcdaudio - http://libcdaudio.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.sound - A library for controlling CD-ROM devices - CD-ROM aygıtlarını kontrol etmeye yarayan bir kitaplık - libcdaudio is a portable library for controlling audio CDs. It is also able to manage transfers of information with the CDDB (http://www.freedb.org/) and CDIndex systems. - libcdaudio ses CDlerini kontrol etmekte kullanılan taşınabilir bir kitaplıktır. - mirrors://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz - - libcdaudio-0.99.10.config.patch - security-bug-8587.patch - - multimedia/sound/libcdaudio/pspec.xml - - - libcdaudio - - /usr/bin - /usr/lib - /usr/share/doc - - - - libcdaudio-devel - Development files for libcdaudio - libcdaudio için geliştirme dosyaları - - libcdaudio - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - - - - - 2014-05-26 - 0.99.12 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-08 - 0.99.12 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-12 - 0.99.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sox - http://sox.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - The swiss army knife of sound processing programs - Bir çok ses formatını birbirine dönüştürebilen, çalabilen ve kaydedebilen bir yazılım - SoX is a command line utility that can convert various audio formats to other formats. It can also apply various effects to these sound files during the conversion. SoX can also play and record audio files. - SoX çeşitli ses dosyası formatlarını birbirine çevirebilen bir konsol aracıdır. Sox ayrıca bu çevirme esnasında ses dosyalarına çeşitli efektler uygulayabilir. Bunların yanı sıra ses kaydı yapabilir ve ses dosyalarını oynatabilir. - mirrors://sourceforge/sox/sox-14.4.2.tar.bz2 - - pulseaudio-libs-devel - opencore-amr-devel - libsndfile-devel - ladspa-sdk-devel - libid3tag-devel - libvorbis-devel - alsa-lib-devel - wavpack-devel - libmad-devel - ffmpeg-devel - libogg-devel - libao-devel - lame-devel - gsm-devel - twolame-devel - libgomp - - - sox-dynamic.patch - - multimedia/sound/sox/pspec.xml - - - sox - - gsm - file - lame - libao - libmad - libogg - libgomp - twolame - wavpack - alsa-lib - libvorbis - libsndfile - libtool-ltdl - opencore-amr - pulseaudio-libs - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - - - - sox-devel - Development files for sox - sox için geliştirme dosyaları - - sox - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-11-17 - 14.4.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-02-21 - 14.4.1 - Rebuild. Ertuğrul Erata ertugrulerata@gmail.com - - 2014-02-11 - 14.4.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-26 - 14.4.1 - rebuild for ffmpeg - Kamil Atlı - suvarice@gmail.com - - 2013-08-29 - 14.4.1 - missing dep. version bump - Erdinç gültekin - erdincgultekin@pisilinux.org - - - 2012-08-28 - 14.4.0 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - gsm - http://kbs.cs.tu-berlin.de/~jutta/toast.html - - PisiLinux Community - admins@pisilinux.org - - OSI-Approved - library - multimedia.sound - Lossy speech compression library and tool - Kayıplı ses sıkıştırması kitaplığı ve araçları - Gsm est une implémentation du brouillon final du standard GSM 06.10 pour un transcodage audio à plein régime. - Gsm is an implementation of the final draft GSM 06.10 standard for full-rate speech transcoding - GSM, tam oranlı konuşma kod çevrimi için GSM 06.10 standardı son taslak uyarlamasıdır - Gsm es una implementación del estándar GSM 06.10 final draft de codificación de voz full-rate - http://osxwinebuilder.googlecode.com/files/gsm-1.0.13.tar.gz - - gsm-1.0.10-dyn.patch - gsm-1.0-pl10-includes.patch - gsm-1.0-pl10-shared.diff - gsm-1.0-pl10-add-includefile.patch - pardusflags.patch - gsm-1.0.12-64bit.patch - - multimedia/sound/gsm/pspec.xml - - - gsm - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - gsm-devel - Development files for gsm - gsm için geliştirme dosyaları - - gsm - - - /usr/include - /usr/share/man/man3 - - - - gsm-32bit - 32-bit shared libraries for gsm - gsm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - gsm - glibc-32bit - - - /usr/lib32 - - - - - 2014-12-14 - 1.0.13 + 2014-05-30 + 1.3.3 Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-21 - 1.0.13 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-23 - 1.0.13 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org - 2011-05-04 - 1.0.13 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmodplug - http://modplug-xmms.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Librairie pour jouer les fichiers son de type MOD. - Library for playing MOD-like music files - MOD-like müzik dosyalarını çalmak için bir kütüphane - libmodplug is a library based on the mod rendering code from ModPlug, a popular windows mod player written by Olivier Lapicque. - http://sourceforge.net/projects/modplug-xmms/files/libmodplug/0.8.8.5/libmodplug-0.8.8.5.tar.gz - - libgcc - - - libmodplug-0.8.4-timidity-patches.patch - - multimedia/sound/libmodplug/pspec.xml - - - libmodplug - - libgcc - - - /usr/lib - /usr/share/doc - - - - libmodplug-devel - - libmodplug - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.8.8.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 0.8.8.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-31 - 0.8.8.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - fluidsynth - http://fluidsynth.resonance.org/trac - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.sound - A realtime software synthesizer - Gerçek zamanlı bir yazılım birleştirici - FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications. - FluidSynth, SoundFort 2 özelliklerine sahip gerçek zamanlı bir yazılım bireştiricidir. - mirrors://sourceforge/fluidsynth/fluidsynth-1.1.6/fluidsynth-1.1.6.tar.bz2 - - lash-devel - alsa-lib-devel - ladspa-sdk-devel - libsndfile-devel - pulseaudio-libs-devel - jack-audio-connection-kit-devel - - multimedia/sound/fluidsynth/pspec.xml - - - fluidsynth - - lash - dbus - glib2 - readline - alsa-lib - ladspa-sdk - libsndfile - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - fluidsynth-devel - Development files for fluidsynth - fluidsynth için geliştirme dosyaları - - fluidsynth - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-26 - 1.1.6 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-24 - 1.1.6 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 1.1.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libvorbis - http://www.vorbis.com - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - Librairie de formatage de fichier son Ogg Vorbis libre. - The Vorbis general audio compression codec - Vorbis genel ses sıkıştırma kodlaması - libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel. - libvorbis tamamen açık, sahipsiz, genel amaçlı sıkıştırılmış ses biçimidir. - http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.xz - - libogg-devel - - multimedia/sound/libvorbis/pspec.xml - - - libvorbis - - libogg - - - /usr/lib - /usr/share/doc/libvorbis/AUTHORS - /usr/share/doc/libvorbis/README - - - - libvorbis-devel - - libvorbis - libogg-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/doc/libvorbis - - - - libvorbis-32bit - 32-bit shared libraries for libvorbis - libvorbis için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libogg-32bit - - - libvorbis - glibc-32bit - libogg-32bit - - - /usr/lib32 - - - - - 2014-05-20 - 1.3.4 - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-01 - 1.3.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-31 + 2013-12-24 1.3.3 First release - PisiLinux Community - admins@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - libvisual - http://libvisual.sourceforge.net + nodejs + http://nodejs.org/ - PisiLinux Community - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - LGPLv2.1 - library - multimedia.sound - Abstraction library for audio visualisation plugins - Ses canlandırma eklentileri için kütüphane - Libvisual est une librairie d'abstraction venant entre les applications et les plugins (greffons) de visualisation audio. - libvisual is an abstraction library that comes between applications and audio visualisation plugins. - libvisual, uygulamalar ve ses canlandırma eklentileri arasında yer alan bir soyutlama kütüphanesidir. - Libvisual es una librería de abstracción que actúa entre aplicaciones y plugins con funciones audiovisuales. - mirrors://sourceforge/libvisual/libvisual-0.4.0.tar.bz2 - - disable_altivec.patch - libvisual-0.4.0-inlinedefineconflict.patch - - multimedia/sound/libvisual/pspec.xml + MIT + app:console + network.library + is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications + Olay bazlı V8 Javascript motoru + Evented I/O for V8 javascript + Kolay, hızlı, ölçeklenebilir ağ uygulamaları oluşturmak için Chrome'un JavaScript çalışma üzerine inşa edilmiş bir platform. + http://nodejs.org/dist/v4.1.2/node-v4.1.2.tar.gz + + openssl-devel + + network/library/nodejs/pspec.xml - libvisual - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libvisual-32bit - 32-bit shared libraries for libvisual - emul32 - emul32 - - glibc-32bit - + nodejs - libvisual - glibc-32bit - - - /usr/lib32 - - - - libvisual-devel - Development files for libvisual - libvisual için geliştirme dosyaları - - libvisual + openssl + libgcc + /usr/bin /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man/man3 + /usr/lib/node_modules + /usr/share/doc + /usr/share/man + /usr/share/systemtap + + 2015-10-10 + 4.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2014-05-20 - 0.4.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org + 2015-02-22 + 0.12.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com - 2013-02-14 - 0.4.0 - Add emul32 - Marcin Bojara - marcin@pisilinux.org + 2015-02-07 + 0.10.36 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com - 2010-10-12 - 0.4.0 + 2014-10-31 + 0.10.33 First release - Pisi Linux Admins - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - speech-dispatcher - http://www.freebsoft.org/speechd + glib-networking + http://git.gnome.org/browse/glib-networking/ PisiLinux Community admins@pisilinux.org GPLv2+ - GPLv2 - service - app:console library - multimedia.sound - speech dispatcher: common interface to speech synthesis - Konuşma sentezi ortak arayüzü - Speech Dispatcher is a device independent layer for speech synthesis that provides a common easy to use interface for both client applications (programs that want to speak) and for software synthesizers (programs actually able to convert text to speech). - Speech Dispatcher, seslendirme yapılmak istenen veya konuşma sentezi yapan uygulamalar için ortak ve kolay kullanımlı bir arayüz sunan, cihaz-bağımsız bir katmandır. - http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.8.3.tar.gz + network.library + Network-related giomodules for glib + Moduły GIO dotyczące sieci do glib + This package contains various network related extensions for the GIO library. + Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO. + mirrors://gnome/glib-networking/2.38/glib-networking-2.38.2.tar.xz - glib2-devel - libsndfile-devel - dotconf-devel + gnutls-devel + p11-kit-devel + ca-certificates intltool - gettext-devel - pkgconfig - alsa-lib-devel - pulseaudio-libs-devel + glib2-devel - multimedia/sound/speech-dispatcher/pspec.xml + network/library/glib-networking/pspec.xml - speech-dispatcher + glib-networking + gnutls + p11-kit glib2 - libtool-ltdl - dotconf - libsndfile - alsa-lib - pulseaudio-libs + ca-certificates + /usr/lib/gio/modules + /usr/libexec /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /etc/speech-dispatcher - /var/log/speech-dispatcher - /usr/share/speech-dispatcher - - - - speech-dispatcher-devel - Development headers for speech-dispatcher - speech-dispatcher için geliştirme başlıkları - - speech-dispatcher - glib2-devel - - - /usr/include - /usr/lib/pkgconfig/ + /usr/share/doc/glib-networking - - 2015-11-22 - 0.8.3 + + 2014-03-30 + 2.38.2 Version bump. - Vedat Demir - vedat@pisilinux.org - - - - - - vorbis-tools - http://www.vorbis.com/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - multimedia.sound - Tools for using the Ogg Vorbis sound file format - Ogg Vorbis ses dosyaları için araçlar paketi. - This set of tools allow you to play and encode Ogg Vorbis files. - vorbis-tools Ogg Vorbis dosyaları oluşturabilmenize ve oynatabilmenize olanak tanır. - http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz - - libvorbis-devel - libao-devel - flac-devel - speex-devel - libogg-devel - libkate-devel - curl-devel - - multimedia/sound/vorbis-tools/pspec.xml - - - vorbis-tools - - libvorbis - libao - flac - speex - libogg - libkate - - - /usr/bin - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - - 2014-01-28 - 1.4.0 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-12 - 1.4.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - jack-audio-connection-kit - http://jackaudio.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - service - multimedia.sound - A low-latency audio server - Düşük gecikmeli bir ses sunucu - JACK is a low-latency audio server written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. - GNU/Linux gibi POSIX uyumlu işletim sistemleri için yazılmış, düşük gecikmeli bir ses sunucudur. Bir çok sayıdaki uygulamayı bir ses aygıtına bağlayıp aralarında ses alışverişi yapmaya olanak sağlamaktadır. - https://dl.dropboxusercontent.com/u/28869550/jack-1.9.10.tar.bz2 - - libsamplerate-devel - alsa-lib-devel - libffado-devel - celt-devel - pkgconfig - eigen3 - libopus-devel - doxygen - libfreebob-devel - libsndfile-devel - readline-devel - - multimedia/sound/jack-audio-connection-kit/pspec.xml - - - jack-audio-connection-kit - - alsa-lib - libsamplerate - libsndfile - libffado - readline - libgcc - celt - libopus - - - /etc/security - /usr/bin - /usr/lib - /usr/share/jack-audio-connection-kit - /usr/share/dbus-1 - /usr/share/doc - - - 99-jack.conf - 40-hpet-permissions.rules - 99-audio.conf - - - - jack-audio-connection-kit-devel - Development files for jack-audio-connection-kit - jack-audio-connection-kit için geliştirme dosyaları - - jack-audio-connection-kit - - - /usr/include - /usr/lib/pkgconfig - - - - jack-audio-connection-kit-docs - Help files and API documents for jack-audio-connection-kit - jack-audio-connection-kit için yardım dosyaları ve API belgeleri - - jack-audio-connection-kit - - - /usr/share/jack-audio-connection-kit/reference - /usr/share/man - - - - - 2015-08-24 - 1.9.10 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - - - - wavpack - http://www.wavpack.com - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - WavPack audio compression tools - WavPack ses sıkıştırma araçları. - WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. - WavPack, kayıpsız veya yüksek kaliteli kayıplı ve eşşsiz karışık sıkıştırma kipi sunan açık ses sıkıştırma biçimidir. - WavPack es un formato de compresión open audio con modos de compresión sin pérdida, de alta calidad con pérdida, y un modo híbrido. - http://www.wavpack.com/wavpack-4.75.0.tar.bz2 - multimedia/sound/wavpack/pspec.xml - - - wavpack - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - wavpack-devel - - wavpack - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-20 - 4.75.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-20 - 4.70.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-20 - 4.70.0 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2010-10-12 - 4.60.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - rtmpdump - http://rtmpdump.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - app:console - library - multimedia.stream - Toolkit for RTMP streams - RTMP yayınları araç takımı - rtmpdump is a tool for dumping media content streamed over RTMP. All forms of RTMP are supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps:// . - rtmpdump, RTMP üzerinden yayın yapan ortam içeriklerinin dökümünü yapmak için yazılmış bir araçtır. RTMP yayımının bütün biçimleri desteklenmektedir: rtmp://, rtmpt://, rtmpe://, rtmpte://, ve rtmps:// . - http://source.pisilinux.org/1.0/rtmpdump-15012015.tar.gz - - openssl-devel - zlib-devel - - multimedia/stream/rtmpdump/pspec.xml - - - rtmpdump - - openssl - zlib - - - /usr/bin - /usr/lib - /usr/share/doc/rtmpdump - /usr/share/man - - - - rtmpdump-devel - Development files for rtmpdump - rtmpdump için geliştirme dosyaları - - rtmpdump - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-07-29 - 15012015 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-20 - 20130918 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-11 - 2.3 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2011-01-19 - 2.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmms - http://sourceforge.net/projects/libmms - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.stream - A common library for accessing MMS media streaming protocol - MMS protokolüne erişim sağlayan bir kütüphane - libmms is a library for accessing Microsoft Media Server (MMS) media streaming protocol. - libmms, Microsoft Media Server(MMS) akış protokolünü kullanan ses kaynaklarına erişmek için kullanılan bir kütüphanedir. - mirrors://sourceforge/libmms/libmms-0.6.4.tar.gz - multimedia/stream/libmms/pspec.xml - - - libmms - - /usr/lib - /usr/share/doc - - - - libmms-devel - Development files for libmms - libmms için geliştirme dosyaları - - libmms - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-23 - 0.6.4 - Version Bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-05-26 - 0.6.2 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-31 - 0.6.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-24 - 0.6.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - live555 - http://www.live555.com - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.stream - Multimedia streaming library - Çokluortam yayın kitaplığı - Live555 est un ensemble de librairies C++ pour le streaming (diffusion numérique) multimédia utilisant les protocoles de standards ouverts (RTP/RTCP, RTSP, SIP). - Live555 is a set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP) - Live555, açık standart protokolleri kullanan (RTP/RTCP, RTSP, SIP) çoklu ortam duraksız işlemleri (streaming) için C++ kütüphaneleridir. - http://distfiles.alpinelinux.org/distfiles/live.2014.05.08.tar.gz - - shared-config.patch - - multimedia/stream/live555/pspec.xml - - - live555 - - /usr/lib - /usr/share/doc - - - - live555-devel - Development files for live555 - live555 için geliştirme dosyaları - - live555 - - - /usr/include - - - - - 2014-05-25 - 2014.05.08 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2013-10-09 - 0.0_20131009 - First release - Erdinç Gültekin - admins@pisilinux.org - - - 2012-08-27 - 0.0_20121004 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - ladspa-sdk - http://www.ladspa.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.plugin - The Linux Audio Developer's Simple Plugin API - Ses geliştiricisinin temel eklenti kütüphanesi - La Linux Audio Developer's Simple Plugin API (LADSPA - L'API de plugin (greffon) simple pour développeurs linux audio) tente de donner aux programmeurs la possibilité d'écrire en C/C++ des processeurs audio simples sous forme de plugin' et les lier dynamiquement à différentes applications hôte. - The Linux Audio Developer's Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin' audio processors in C/C++ and link them dynamically against a range of host applications - ladspa, Linux üzerinde ses uygulamaları geliştiren programcıların temel ses işleme eklentileri geliştirmelerini ve bu eklentileri bir seri ses uygulaması ile birlikte kullanabilmelerini sağlar. - El Linux Audio Developer's Simple Plugin API (LADSPA) intenta facilitar a programadores la tarea de escribir procesadores simples de audio en C/C++ y enlazarlos dinámicamente con una gama de aplicaciones host. - http://pkgs.fedoraproject.org/repo/pkgs/ladspa/ladspa_sdk_1.13.tgz/671be3e1021d0722cadc7fb27054628e/ladspa_sdk_1.13.tgz - - ladspa-sdk-1.12-gcc4.patch - properbuild.patch - asneeded.patch - notests.patch - - multimedia/plugin/ladspa-sdk/pspec.xml - - - ladspa-sdk - - /usr/bin - /usr/lib - /etc - /usr/share/doc/ladspa-sdk - - - 60ladspa - - - - ladspa-sdk-devel - Development files for ladspa-sdk - ladspa-sdk için geliştirme dosyaları - - ladspa-sdk - - - /usr/include - /usr/share/doc/ladspa-sdk/html - - - - - 2014-05-25 - 1.13 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-29 - 1.13 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.13 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libchromaprint - http://acoustid.org/chromaprint - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.plugin - Chromaprint is the core component of the Acoustid project. - Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. - https://bitbucket.org/acoustid/chromaprint/downloads/chromaprint-1.2.tar.gz - - ffmpeg-devel - - multimedia/plugin/libchromaprint/pspec.xml - - - libchromaprint - - ffmpeg - - - /usr/share - /usr/lib - - - - libchromaprint-devel - libchromaprint için geliştirme dosyaları - - libchromaprint - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-18 - 1.2 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-25 - 1.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-25 - 1.1 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 0.7 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-12-17 - 0.7 - First release Marcin Bojara marcin@pisilinux.org - - - - - handbrake - http://handbrake.fr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv1 - app - multimedia.editor - Multithreaded video transcoder - Çoklu görev destekli video kodlama/düzenleme aracı - The program is also used to convert DVDs so they can be viewed on iPods, iPhones and most media players. - Handbrake,Video dosyalarını portatif medya oynatıcıları için düzenleyebilmenin yanısıra çözünürlülük değişimi desteğide sunan özgür video kodlama ve düzenleme aracıdır. - HandBrake - https://handbrake.fr/rotation.php?file=HandBrake-0.10.2.tar.bz2 - - bzip2 - python - intltool - gtk3-devel - lame-devel - gtk3-devel - x264-devel - libogg-devel - libass-devel - fribidi-devel - libxml2-devel - libbluray-devel - libnotify-devel - libvorbis-devel - libtheora-devel - dbus-glib-devel - fontconfig-devel - libsamplerate-devel - gst-plugins-base-next-devel - - multimedia/editor/handbrake/pspec.xml - - - handbrake - - gtk3 - lame - x264 - cairo - pango - libass - libogg - fribidi - libbluray - libnotify - gst-libav-next - libvorbis - libtheora - gdk-pixbuf - libsamplerate - gstreamer-next - gst-plugins-base-next - zlib - bzip2 - eudev - glib2 - libgcc - libxml2 - freetype - dbus-glib - - - /usr/share - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - /usr/lib/python2.7 - /usr/share/locale - - - - - 2015-09-26 - 0.10.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-04-30 - 0.10.1 - Version bump. - Idris KALP - idriskalp@gmail.com - - - 2015-02-20 - 0.10.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-18 - 0.9.9 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-07 - 0.9.9 - rebuild - Kamil Atlı - suvari@pisilinux.org - - 2013-12-05 - 0.9.9 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - blender - http://www.blender.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.editor - 3D modeling, animation, rendering and post-production application - 3D animasyon sistemi - blender is the essential software solution you need for 3D, from modeling, animation, rendering and post-production to interactive creation and playback. - Blender 3B modelleme ve animasyon yapmaya yarayan açık kaynak bir yazılımdır. - blender - http://download.blender.org/source/blender-2.75a.tar.gz - - boost-devel - cmake - ffmpeg-devel - fftw3-devel - freetype-devel - glew-devel - icu4c-devel - ilmbase-devel - jack-audio-connection-kit-devel - libdc1394-devel - libgomp - libjpeg-turbo-devel - libpng-devel - libsdl-devel - libsndfile-devel - libspnav-devel - libX11-devel - libXi-devel - libXxf86vm-devel - mesa-devel - mesa-glu-devel - openal-devel - openexr-devel - openjpeg-devel - python3-devel - tiff-devel - openimageio-devel - webp-devel - zlib-devel - - - 06-blender-2.68-fix-install-rules.patch - - multimedia/editor/blender/pspec.xml - - - blender - - boost - ffmpeg - fftw3 - freetype - glew - ilmbase - jack-audio-connection-kit - libgcc - libdc1394 - libgomp - libjpeg-turbo - libpng - libsdl - libsndfile - libspnav - libX11 - libXi - libXxf86vm - mesa - mesa-glu - openal - openexr-libs - openjpeg - python3 - tiff - openimageio - zlib - - - /usr/bin - /usr/lib/python3.3/ - /usr/share/blender/ - /usr/share/doc - /usr/share/pixmaps/ - /usr/share/man/man1 - /usr/share/icons - /usr/share/applications - /usr/share/mime - /usr/share/locale - - - blender.xml - blender-wrapper - blender.desktop - - - - - 2015-07-24 - 2.75a - Version bump. - Ali Algul - alialgul@pisilinux.org - - - 2015-01-24 - 2.75 - Version bump. - Ali Algul - alialgul@pisilinux.org - - - 2015-01-24 - 2.73a - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-08 - 2.73 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-30 - 2.72b - Rebuild, remove opencolorio dependency - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-11-10 - 2.72b - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-08 - 2.72 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-27 - 2.71 - Version bump. - Nikolay Semenov - tribunal@pisilinux.org - - - 2014-05-28 - 2.70a - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-04-23 - 2.7.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-25 - 2.7.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-26 - 2.69 - Rebuild for ffmpeg. - Kamil Atlı - suvarice@gmail.com - - - 2013-11-09 - 2.69 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-31 - 2.69 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-10-14 - 2.68a - rebuild for icu4c. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-08-17 - 2.68a - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-07-25 - 2.68 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-04-20 - 2.66 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-01 - 2.65 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - docbook-sgml4_5 - http://www.docbook.org/sgml/ - - PisiLinux Community - admins@pisilinux.org - - X11 - data - office.docbook - Docbook SGML DTD 4.5 - Docbook SGML DTD 4.5 - Contains Docbook SGML DTD version 4.5. - Docbook SGML DTD sürüm 4.5 belgelerini içerir. - http://www.docbook.org/sgml/4.5/docbook-4.5.zip - - catalog.patch - - office/docbook/docbook-sgml4_5/pspec.xml - - - docbook-sgml4_5 - - sgml-common - - - /usr/share/doc/docbook-sgml4_5 - /usr/share - - - System.Package - - - - - 2014-05-18 - 4.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-22 - 4.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2007-02-23 - 4.5 - First release - Eren Türkay - admins@pisilinux.org - - - - - - asciidoc - http://www.methods.co.nz/asciidoc/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - office.docbook - Text document format for writing documents - Belge hazırlamak için metin biçimlendirme sistemi - AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages. AsciiDoc files can be translated to HTML and DocBook markups using the asciidoc command. - AsciiDoc, kısa belgeler, makaleler, kitaplar ve kılavuz sayfaları yazmak ve bunları HTML/Docbook'a dönüştürmek için kullanılır. - mirrors://sourceforge/asciidoc/asciidoc-8.6.9.tar.gz - office/docbook/asciidoc/pspec.xml - - - asciidoc - - docbook-xml - docbook-xsl - - - /etc - /usr/bin - /usr/lib/python* - /usr/share/asciidoc - /usr/share/vim - /usr/share/doc/asciidoc - /usr/share/man - - - - - 2014-05-18 - 8.6.9 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-31 - 8.6.9 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-17 - 8.6.8 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - itstool - http://itstool.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - office.docbook - XML to PO and back again - XML to PO and back again - http://files.itstool.org/itstool/itstool-2.0.2.tar.bz2 - office/docbook/itstool/pspec.xml - - - itstool - - /usr - - - - - 2014-05-18 - 2.0.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-26 - 2.0.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-12 - 1.2.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-01-27 + 2.34.2 + First release. + Marcin Bojara + marcin@pisilinux.org @@ -29343,6 +30350,167 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + asciidoc + http://www.methods.co.nz/asciidoc/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.docbook + Text document format for writing documents + Belge hazırlamak için metin biçimlendirme sistemi + AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages. AsciiDoc files can be translated to HTML and DocBook markups using the asciidoc command. + AsciiDoc, kısa belgeler, makaleler, kitaplar ve kılavuz sayfaları yazmak ve bunları HTML/Docbook'a dönüştürmek için kullanılır. + mirrors://sourceforge/asciidoc/asciidoc-8.6.9.tar.gz + office/docbook/asciidoc/pspec.xml + + + asciidoc + + docbook-xml + docbook-xsl + + + /etc + /usr/bin + /usr/lib/python* + /usr/share/asciidoc + /usr/share/vim + /usr/share/doc/asciidoc + /usr/share/man + + + + + 2014-05-18 + 8.6.9 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 8.6.9 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-17 + 8.6.8 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + docbook-sgml4_5 + http://www.docbook.org/sgml/ + + PisiLinux Community + admins@pisilinux.org + + X11 + data + office.docbook + Docbook SGML DTD 4.5 + Docbook SGML DTD 4.5 + Contains Docbook SGML DTD version 4.5. + Docbook SGML DTD sürüm 4.5 belgelerini içerir. + http://www.docbook.org/sgml/4.5/docbook-4.5.zip + + catalog.patch + + office/docbook/docbook-sgml4_5/pspec.xml + + + docbook-sgml4_5 + + sgml-common + + + /usr/share/doc/docbook-sgml4_5 + /usr/share + + + System.Package + + + + + 2014-05-18 + 4.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-22 + 4.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2007-02-23 + 4.5 + First release + Eren Türkay + admins@pisilinux.org + + + + + + itstool + http://itstool.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + office.docbook + XML to PO and back again + XML to PO and back again + http://files.itstool.org/itstool/itstool-2.0.2.tar.bz2 + office/docbook/itstool/pspec.xml + + + itstool + + /usr + + + + + 2014-05-18 + 2.0.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-26 + 2.0.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-12 + 1.2.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + openjade @@ -29418,94 +30586,2491 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - homebank - http://homebank.free.fr + poppler + http://poppler.freedesktop.org/ - Stefan Gronewold (groni) - groni@pisilinux.org + PisiLinux Community + admins@pisilinux.org GPLv2 - app:gui - office - Free, easy, personal accounting for everyone - Protein dizi analizi için profil SMM (Saklı Markov Modeli) yazılımı - «HomeBank» is free software that will assist you to manage your personal accounting. - HomeBank ("serbest konuşma" olarak ve "bedava bira" gibi) kişisel muhasebe yönetmek için yardımcı olacak ücretsiz bir yazılımdır.. - homebank - http://homebank.free.fr/public/homebank-5.0.5.tar.gz + library + office.postscript + PDF rendering library + Xpdf koduna dayanan bir PDF kitaplığı + Biblioteka renderująca PDF + Poppler est une librairie de rendu PDF basée sur le code source de xpdf-3.0. + poppler is a PDF rendering library based on xpdf. + Poppler, xpdf koduna dayanan bir PDF hazırlama kitaplığıdır. + Wspólna biblioteka renderująca PDF do integrowania oglądania PDF w aplikacjach desktopowych (oparta na kodzie xpdf-3.0). + http://poppler.freedesktop.org/poppler-0.34.0.tar.xz + lcms2-devel + curl-devel cairo-devel - libofx-devel - pango-devel - gdk-pixbuf-devel - pixman-devel - gtk3-devel - glib2-devel - gettext-devel - pkgconfig - libofx-devel - intltool - at-spi2-core-devel + gobject-introspection-devel + libjpeg-turbo-devel + freetype-devel + libpng-devel + tiff-devel + fontconfig-devel + openjpeg-devel + qt5-base-devel - office/homebank/pspec.xml + office/postscript/poppler/pspec.xml - homebank + poppler - cairo - libofx - pango - gdk-pixbuf - gtk3 - glib2 + lcms2 + curl + freetype + libgcc + libjpeg-turbo + libpng + tiff + openjpeg + fontconfig + poppler-data - /usr/bin - /usr/share/applications - /usr/share/application-registry /usr/lib - /usr/share /usr/share/doc - /usr/share/locale - /usr/share/icons/hicolor - homebank-data - Data Files for Homebank + poppler-utils + Command line utilities for converting PDF files + PDF dönüşüm araçları + + poppler + cairo + lcms2 + freetype + libgcc + - /usr/share/homebank/datas - /usr/share/mime-info + /usr/bin + /usr/share/man/man1 + + + + poppler-qt5 + Qt wrapper for poppler + + qt5-base + libgcc + poppler + + + /usr/lib/libpoppler-qt5.so* + + + + poppler-qt5-devel + Development files for poppler-qt + + poppler-qt5 + poppler-devel + + + /usr/lib/pkgconfig/poppler-qt5.pc + + + + poppler-cpp + Pure C++ wrapper for poppler + Poppler için C++ bağlayıcısı + + libgcc + poppler + + + /usr/lib/libpoppler-cpp.so* + + + + poppler-cpp-devel + Development files for poppler-cpp + poppler-cpp için geliştirme dosyaları + + poppler-cpp + poppler-devel + + + /usr/lib/pkgconfig/poppler-cpp.pc + + + + poppler-glib + Glib wrapper for poppler + Poppler için Glib bağlayıcısı + + libgcc + cairo + glib2 + freetype + poppler + + + /usr/lib/libpoppler-glib.so* + /usr/lib/girepository-1.0/Poppler-0.18.typelib + + + + poppler-glib-devel + Development files for poppler-glib + poppler-glib için geliştirme dosyaları + + gtk2-devel + cairo-devel + poppler-glib + poppler-devel + + + /usr/lib/pkgconfig/poppler-glib.pc + /usr/lib/pkgconfig/poppler-cairo.pc + /usr/share/gir-1.0/Poppler-0.18.gir + /usr/lib32/pkgconfig/poppler-glib.pc + + + + poppler-devel + Development files for poppler + poppler için geliştirme dosyaları + + poppler + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig/poppler.pc + + + + poppler-32bit + 32-bit shared libraries for poppler + emul32 + emul32 + + lcms2-32bit + libjpeg-turbo-32bit + libpng-32bit + tiff-32bit + freetype-32bit + fontconfig-32bit + glibc-32bit + + + poppler + libgcc + glibc-32bit + lcms2-32bit + libjpeg-turbo-32bit + libpng-32bit + openjpeg-32bit + tiff-32bit + freetype-32bit + fontconfig-32bit + + + /usr/lib32/libpoppler.so* + + + + poppler-glib-32bit + 32-bit shared libraries for poppler-glib + emul32 + emul32 + + glib2-32bit + cairo-32bit + freetype-32bit + glibc-32bit + + + poppler-32bit + libgcc + glibc-32bit + glib2-32bit + cairo-32bit + freetype-32bit + + + /usr/lib32/libpoppler-glib.so* + + + + + 2015-07-28 + 0.34.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-04 + 0.31.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-25 + 0.26.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-27 + 0.24.5 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-10-10 + 0.24.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-28 + 0.22.5 + Move pc files to devel pack, fix pc files for emul32. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-01 + 0.22.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-04-17 + 0.22.3 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-18 + 0.20.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + ghostscript + http://www.ghostscript.com + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + office.postscript + A PostScript interpreter and renderer + Bir PostScript yorumlayıcısı ve üreticisi + ghostscript is a set of software that provides a PostScript interpreter, a set of C procedures and an interpreter for PDF files. ghostscript is normally used to display PostScript files and to print PostScript files to non-PostScript printers. + ghostscript, PostScript yorumlayıcısı, C kitaplığı ve PDF yorumlayıcısı içeren bir yazılım paketidir. ghostscript, PostScript dosyalarının görüntülenmesi ve PostScript olmayan yazıcılardan PostScript dosyalarının çıktılarının alınması için kullanılmaktadır. + http://downloads.ghostscript.com/public/ghostscript-9.15.tar.bz2 + + tiff-devel + zlib-devel + libX11-devel + libXext-devel + libSM-devel + freetype-devel + libjpeg-turbo-devel + lcms2-devel + libXt-devel + libpng-devel + libpaper-devel + fontconfig-devel + + + ubuntu/02_gs-man-fix-for-debian.patch + fedora/ghostscript-Fontmap.local.patch + fedora/ghostscript-gdevcups-debug-uninit.patch + fedora/ghostscript-iccprofiles-initdir.patch + fedora/ghostscript-multilib.patch + fedora/ghostscript-noopt.patch + fedora/ghostscript-runlibfileifexists.patch + fedora/ghostscript-scripts.patch + fedora/ghostscript-sys-zlib.patch + fedora/ghostscript-icc-missing-check.patch + fedora/ghostscript-wrf-snprintf.patch + fedora/ghostscript-gs694154.patch + + office/postscript/ghostscript/pspec.xml + + + ghostscript + + zlib + libX11 + libpng + freetype + libjpeg-turbo + tiff + lcms2 + libXt + libpaper + fontconfig + poppler-data + gnu-gs-fonts-std + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/cups + /usr/share/ghostscript + + + + ghostscript-docs + Documentation for ghostscript + ghostscript için çeşitli belgeler + + /usr/share/doc/ghostscript/html + /usr/share/doc/ghostscript/examples + + + + ghostscript-devel + Development files for ghostscript + ghostscript için geliştirme dosyaları + + ghostscript + + + /usr/bin/ijs-config + /usr/include/ghostscript + /usr/include/ijs + /usr/lib/pkgconfig + + + + ghostscript-32bit + 32-bit shared libraries for ghostscript + emul32 + emul32 + + libjpeg-turbo-32bit + zlib-32bit + tiff-32bit + lcms2-32bit + libXt-32bit + libXext-32bit + libX11-32bit + libpng-32bit + libidn-32bit + freetype-32bit + fontconfig-32bit + + + ghostscript + libjpeg-turbo-32bit + glibc-32bit + zlib-32bit + tiff-32bit + lcms2-32bit + libXt-32bit + libX11-32bit + libpng-32bit + freetype-32bit + fontconfig-32bit + + + /usr/lib32 + + + + + 2015-03-04 + 9.15 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-20 + 9.14 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-21 + 9.10 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-06-27 + 9.07 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 9.06 + Add emul32, fix dependencies + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-12 + 9.06 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + poppler-data + http://poppler.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + data + office.postscript + Poppler encoding files + Poppler kodlama dosyaları + poppler-data consists of encoding files for poppler. When installed, the encoding files enables poppler to correctly render CJK and Cyrillic properly. + poppler-data, poppler için CJK ve Kiril harflerini düzgünce gösterebilmek için gerekli kodlama dosyalarını içerir. + http://poppler.freedesktop.org/poppler-data-0.4.7.tar.gz + office/postscript/poppler-data/pspec.xml + + + poppler-data + + /usr/share/doc + /usr/share/poppler + /usr/share/pkgconfig + + + + + 2015-03-05 + 0.4.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-25 + 0.4.6 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-10 + 0.4.6 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-04-17 + 0.4.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-12 + 0.4.5 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + hunspell-dict-nl + http://www.opentaal.org/english.php + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + locale:nl + data + office.dictionary + Dutch hunspell dictionaries + Flemenkçe hunspell sözlükleri + hunspell-dict-nl includes Dutch hunspell dictionaries. + hunspell-dict-nl Flemenkçe hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-nl/OpenTaal-210G-LO.oxt/3c96686c2555e3ae23b5de06ba08631b/OpenTaal-210G-LO.oxt + office/dictionary/hunspell-dict-nl/pspec.xml + + + hunspell-dict-nl + + /usr/share + /usr/share/doc - 2015-10-12 - 5.0.5 + 2015-10-05 + 2.10g + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-02-17 + 1.00g + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-05 + 1.00g + Adress Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-13 + 1.00g + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-pt + http://www.broffice.org/verortografico/baixar + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + GPLv2+ + locale:pt + data + office.dictionary + Portuguese hunspell dictionaries + Portekizce hunspell sözlükleri + hunspell-dict-pt includes Portuguese hunspell dictionaries. + hunspell-dict-pt Portekizce hunspell sözlükleri içerir. + http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20150704.tar.gz + office/dictionary/hunspell-dict-pt/pspec.xml + + + hunspell-dict-pt + + /usr/share/hunspell + /usr/share/doc + + + + + 2015-10-05 + 20150704 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-01-27 + 0.0_20090319 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-fr + http://dico.savant.free.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + MPL-1.1 + locale:fr + data + office.dictionary + French hunspell dictionaries + Fransızca hunspell sözlükleri + hunspell-dict-fr includes French (France, Belgium, etc.) hunspell dictionaries. + hunspell-dict-fr Fransızca (Fransa, Belçika vs.) hunspell sözlüklerini içerir. + http://dico.savant.free.fr/_download/fr_FR_2-3-2.zip + office/dictionary/hunspell-dict-fr/pspec.xml + + + hunspell-dict-fr + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-27 + 2.3.2 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 2.3.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-ca + http://www.softcatala.org/wiki/Projectes/Corrector_ortogràfic + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + locale:ca + data + office.dictionary + Catalan hunspell dictionaries + Katalanca hunspell sözlüğü + hunspell-dict-ca includes Catalan hunspell dictionaries. + hunspell-dict-ca Katalanca hunspell sözlüğünü içermektedir. + http://source.pisilinux.org/1.0/hunspell-dict-ca-20090319.tar.bz2 + office/dictionary/hunspell-dict-ca/pspec.xml + + + hunspell-dict-ca + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-26 + 0.0_20090319 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-sv + http://dsso.se/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + locale:sv + data + office.dictionary + Swedish hunspell dictionaries + İsveççe hunspell sözlükleri + hunspell-dict-sv includes Swedish hunspell dictionaries. + hunspell-dict-sv İsveççe hunspell sözlüklerini içerir. + http://extensions.libreoffice.org/extension-center/swedish-spelling-dictionary-den-stora-svenska-ordlistan/releases/2.36/ooo_swedish_dict_2-36.oxt + office/dictionary/hunspell-dict-sv/pspec.xml + + + hunspell-dict-sv + + /usr/share + /usr/share/doc + + + + + 2014-02-17 + 1.29 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-05 + 1.29 + v.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-13 + 1.29 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-tr + http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + locale:en + data + office.dictionary + Turkish hunspell dictionaries + Turkish hunspell dictionaries + http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/releases/1.1-2014.12.11/tr-tr.oxt + + hunspell + + office/dictionary/hunspell-dict-tr/pspec.xml + + + hunspell-dict-tr + + /usr/lib/libreoffice/share/extensions/hunspell_tr/ + /usr/share/hunspell + + + + + 2015-10-03 + 1.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + hunspell-dict-ru + ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell + + PisiLinux Community + admins@pisilinux.org + + BSD + locale:ru + data + office.dictionary + Russian hunspell dictionaries + Rusça hunspell sözlükleri + hunspell-dict-ru includes Russian hunspell dictionaries. + hunspell-dict-ru Rusça hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-ru/rus-myspell-0.99f7.tar.gz/05a7c3a7bea2432410a35d93161b4c0a/rus-myspell-0.99f7.tar.gz + office/dictionary/hunspell-dict-ru/pspec.xml + + + hunspell-dict-ru + + /usr/share + /usr/share/doc + + + + + 2014-02-17 + 0.99f_7 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-05-05 + 0.99f_7 + Url fixed + Ertan Güven + ertan@pisilinux.org + + + 2010-12-28 + 0.99f_7 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-de + http://www.j3e.de/ispell/igerman98 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + locale:de + data + office.dictionary + German hunspell dictionaries + Almanca hunspell sözlüğü + hunspell-dict-de includes German, Switzerland, etc. hunspell dictionaries. + hunspell-dict-de Almanca ve İsviçre Almancası için hunspell sözlüklerini içermektedir. + https://www.j3e.de/ispell/igerman98/dict/igerman98-20131206.tar.bz2 + office/dictionary/hunspell-dict-de/pspec.xml + + + hunspell-dict-de + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-26 + 0.0_20131216 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090107 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-it + http://linguistico.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + locale:it + data + office.dictionary + Italian hunspell dictionaries + İtalyanca hunspell sözlükleri + hunspell-dict-it includes Italian hunspell dictionaries. + hunspell-dict-it İtalyanca hunspell sözlüklerini içerir. + http://downloads.sourceforge.net/sourceforge/linguistico/italiano_2_4_2007_09_01.zip + office/dictionary/hunspell-dict-it/pspec.xml + + + hunspell-dict-it + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-26 + 2.4 + rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 2.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-pl + http://www.kurnik.pl/dictionary/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2+ + MPL-1.1 + locale:pl + data + office.dictionary + Polish hunspell dictionaries + Polonya dili için hunspell sözlükleri + hunspell-dict-pl includes Polish hunspell dictionaries. + hunspell-dict-pl Polonya dili için hunspell sözlükleri içerir. + https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-20150428.zip + office/dictionary/hunspell-dict-pl/pspec.xml + + + hunspell-dict-pl + + /usr/share/hunspell + /usr/share/doc + + + + + 2015-10-05 + 20100428 + Rebuild + Alihanh Öztürk + alihan@pisilinux.org + + + 2014-01-26 + 0.0_20090319 + Rebuild + Alihanh Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-en + http://wordlist.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + locale:en + data + office.dictionary + English hunspell dictionaries + İngilizce hunspell sözlükleri + hunspell-dict-en includes English (US, UK, etc.) hunspell dictionaries. + hunspell-dict-en İngilizce (US, UK vs.) hunspell sözlüklerini içerir. + http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_US-2015.05.18.zip + http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_CA-2015.05.18.zip + http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_GB-large-2015.05.18.zip + office/dictionary/hunspell-dict-en/pspec.xml + + + hunspell-dict-en + + /usr/share + /usr/share/doc + + + + + 2015-10-05 + 2015.05.18 + version bump + Ayhan Yalcinsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-02-17 + 0.0_20090319 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-es + http://es.openoffice.org/programa/diccionario.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + GPLv3+ + MPL-1.1 + locale:es + data + office.dictionary + Spanish hunspell dictionaries + İspanyolca hunspell sözlükleri + hunspell-dict-es includes Spanish (Spain, Mexico, etc.) hunspell dictionaries. + hunspell-dict-es İspanyolca (İspanya, Meksika vs.) hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-es/es_ANY.zip/a88e2244de48c0ff42f1b77c4a80c8a0/es_ANY.zip + office/dictionary/hunspell-dict-es/pspec.xml + + + hunspell-dict-es + + /usr/share + /usr/share/doc + + + + + 2014-02-17 + 0.0_20081215 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-05-05 + 0.0_20081215 + Fixed + Ertan Güven + ertan@pisilinux.org + + + 2010-10-13 + 0.0_20081215 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + texi2html + http://savannah.nongnu.org/projects/texi2html/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.misc + Texinfo to HTML converter + Texinfo'dan HTML'ye dönüştürücü + texi2html is a Perl script which can generate HTML from Texinfo source files. + text2html Texinfo kaynak dosyalarından HTML çıktı üretebilen bir Perl betiğidir. + http://download.savannah.gnu.org/releases/texi2html/texi2html-5.0.tar.bz2 + office/misc/texi2html/pspec.xml + + + texi2html + + /usr/bin + /usr/share/info + /usr/share/doc/texi2html + /usr/share/man/man1 + /usr/share/texi2html + /usr/share/texinfo + /usr/share/locale + + + + + 2014-05-20 + 5.0 Version bump. - Stefan Gronewold (groni) + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-05-02 + 1.82 + Mass rebuild for Pisi Linux 1.0 + Ertan Güven + ertan@pisilinux.org + + + 2012-11-06 + 5.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + enca + http://cihar.com/software/enca + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + office.misc + Charset analyzer + Karakter seti yorumlayıcı + enca is a character set analyzer that can detect and convert character set of text files. + enca, metin dosyalarının karakter setini tanımlama ve dönüştürme aracıdır. + http://dl.cihar.com/enca/enca-1.16.tar.xz + + recode-devel + libtool + intltool + gtk-doc + + office/misc/enca/pspec.xml + + + enca + + recode + + + /usr/bin + /usr/lib + /usr/libexec/enca + /usr/share/doc/enca + /usr/share/man + + + + enca-devel + Development files for enca + enca için geliştirme dosyaları + + enca + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc + + + + + 2016-01-01 + 1.16 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-05-22 + 1.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-09 + 1.14 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-06 + 1.14 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-13 + 1.13 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + librevenge + http://dev-www.libreoffice.org/src/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.0 + library + office.misc + A base library for writing document import filters + librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations. + http://dev-www.libreoffice.org/src/librevenge-0.0.1.tar.bz2 + + boost-devel + cppunit-devel + zlib-devel + doxygen + libtool + + office/misc/librevenge/pspec.xml + + + librevenge + + zlib + libgcc + + + /usr/share + /usr/lib + + + + librevenge-devel + Development files for librevenge + librevenge için geliştirme dosyaları + + librevenge + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-01-06 + 0.0.1 + First Release + PisiLinux Community + admins@pisilinux.org + + + + + + iso-codes + http://pkg-isocodes.alioth.debian.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + office.misc + International country codes + Uluslararası ülke kodları + iso-codes provides IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standards. + iso-codes IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standartlarını sağlar. + http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.53.tar.xz + office/misc/iso-codes/pspec.xml + + + iso-codes + + /usr/lib/pkgconfig + /usr/share/locale + /usr/share/doc + /usr/share/xml + /usr/share/iso-codes + + + + + 2014-05-21 + 3.53 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2013-10-13 + 3.47 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-02 + 3.39 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + recode + http://www.gnu.org/software/recode/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.misc + File character set converter + Karakter kümesi dönüşümü aracı + Recode can convert files to various character sets (e.g. utf8, iso-8859-1, koi8r..). + Recode dosyaların bir karakter kümesinden bir başkasına dönüştürülmesine imkân verir. Çok sayıda karakter kümesini destekler. + http://pkgs.fedoraproject.org/repo/pkgs/recode/recode-3.6.tar.gz/be3f40ad2e93dae5cd5f628264bf1877/recode-3.6.tar.gz + + gettext + libtool + + + recode.patch + recode-3.6-getcwd.patch + recode-bool-bitfield.patch + recode-flex-m4.patch + stdlib.patch + recode-3.6-gettextfix.diff + system-aclocal.diff + recode-3.6-segfault.patch + recode-automake.patch + + office/misc/recode/pspec.xml + + + recode + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/locale + + + + recode-devel + Development files for recode + recode için geliştirme dosyaları + + recode + + + /usr/include + + + + + 2016-01-01 + 3.6 + Rebuild for Pisi 2.0 + Stefan Gronewold groni@pisilinux.org - 2015-02-14 - 5.0.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com + 2014-05-22 + 3.6 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2014-09-26 - 4.6.3 + 2014-02-10 + 3.6 + Rebuild, Url değiş. + Alihan Öztürk + alihan@pisilinux.org + + + 2011-01-03 + 3.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + qpdf + http://qpdf.sourceforge.net + + Marcin Bojara + marcin@pisilinux.org + + Artistic-2 + app:console + office.misc + A Content-Preserving PDF Transformation System + A command-line program that does structural, content-preserving transformations on PDF files + mirrors://sourceforge/qpdf/qpdf-5.1.3.tar.gz + + libpcre-devel + zlib-devel + + office/misc/qpdf/pspec.xml + + + qpdf + + zlib + libgcc + libpcre + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + qpdf-devel + qpdf için geliştirme dosyaları + + libpcre-devel + zlib-devel + qpdf + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-30 + 5.1.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-03-04 + 5.1.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-26 + 5.1.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-13 + 5.0.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-01 + 4.1.0 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + txt2man + http://mvertes.free.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.misc + A converter from flat ASCII text to man page format + Düz ASCII metinleri man sayfası formatına dönüştürücü + txt2man converts flat ASCII text to man page format. + txt2man düz ASCII metinleri man sayfası formatına dönüştürür. + http://mvertes.free.fr/download/txt2man-1.5.6.tar.gz + office/misc/txt2man/pspec.xml + + + txt2man + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2014-05-25 + 1.5.6 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-17 + 1.5.6 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-04-27 + 1.5.6 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + chmlib + http://www.jedrea.com/chmlib/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + office.misc + A library for dealing with Microsoft ITSS/CHM format files + Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane + Chmlib est une librairie s'occupant des formats de fichiers Microsoft ITSS/CHM. Pour l'instant, il s'agit d'une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm. + Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files. + Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır. + Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm. + http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2 + office/misc/chmlib/pspec.xml + + + chmlib + + /usr/lib + /usr/bin + /usr/share/doc + + + + chmlib-devel + Development files for chmlib + chmlib için geliştirme dosyaları + + chmlib + + + /usr/include + + + + + 2014-01-20 + 0.40 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.40 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + mdbtools + https://github.com/brianb/mdbtools + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + app:console + office.misc + MDB Tools is a suite of programs for accessing data stored in Microsoft Access databases + Microsoft Access veritabanı dosyalarında tutulan verilere erişmek için kullanılan araç ve kitaplıklar + mdbtools contains set of libraries and utilities for reading Microsoft Access database (MDB) files. + mdbtools Microsoft Access veritabanı dosyalarını (MDB) okumak için gereken araçları ve kütüphaneleri içermektedir. + https://github.com/brianb/mdbtools/archive/0.7.1.tar.gz + + unixODBC-devel + glib2-devel + readline-devel + + office/misc/mdbtools/pspec.xml + + + mdbtools + + unixODBC + glib2 + readline + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + mdbtools-gui + + + + mdbtools-devel + Development files for mdbtools + mdbtools için geliştirme dosyaları + + mdbtools + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-20 + 0.7.1 + Version bump, gui build disabled. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-02-19 + 0.6_pre1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 0.6_pre1 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-05-02 + 0.6_pre1 + Fixed build dep + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + 2010-10-13 + 0.6_pre1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gsoap + http://sourceforge.net/projects/gsoap2/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + office.misc + Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++ + The gSOAP toolkit is an extensive suite of portable C and C++ software to develop XML Web services with powerful type-safe XML data bindings. + http://sourceforge.net/projects/gsoap2/files/gSOAP/gsoap_2.8.22.zip + + zlib-devel + openssl-devel + + office/misc/gsoap/pspec.xml + + + gsoap + + zlib + openssl + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/gsoap + + + + gsoap-devel + Development files for gsoap + gsoap için geliştirme dosyaları + + gsoap + zlib-devel + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-12 + 2.8.22 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-06 + 2.8.21 Version bump. Stefan Gronewold(groni) groni@pisilinux.org - 01.11.2013 - 4.5.4 - First Release + 2014-03-01 + 2.8.16 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ebook-tools + http://sourceforge.net/projects/ebook-tools/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + office.misc + A tool for accessing and converting various ebook file formats + Çeşitli e-kitap dosya biçimlerine erişmek için bir araç + ebook-tools is a programming library for accessing and converting various ebook file formats. It also contains a console application. + ebook-tools, çeşitli e-kitap dosya biçimleri arasında dönüştürme yapmak, bu biçimlere erişmek için kullanılan bir programlama kitaplığıdır. Kitaplığın yanında ayrıca bir terminal aracı da içerir. + mirrors://sourceforge/project/ebook-tools/ebook-tools/0.2.2/ebook-tools-0.2.2.tar.gz + + libzip-devel + libxml2-devel + doxygen + cmake + + + ebook-tools-0.2.1-libzip_pkgconfig.patch + + office/misc/ebook-tools/pspec.xml + + + ebook-tools + + libzip + libxml2 + + + /usr/bin + /usr/share/doc + /usr/lib + + + + ebook-tools-devel + Development files for ebook-tools + ebook-tools için geliştirme dosyaları + + libxml2-devel + ebook-tools + + + /usr/include + + + + ebook-tools-docs + Documentation for ebook-tools + ebook-tools kitaplığı için belgelendirme + + /usr/share/doc/ebook-tools/html + + + + + 2014-01-22 + 0.2.2 + Version bump. Stefan Gronewold(groni) - groni3427@gmail.com + groni@pisilinux.org + + + 2010-10-13 + 0.1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + dos2unix + http://www.xs4all.nl/~waterlan/dos2unix.html + + PisiLinux Community + admins@pisilinux.org + + freedist + app:console + office.misc + Convert DOS and MAC text files to UNIX format + DOS ve MAC metin dosyalarını UNIX biçimine dönüştürme uygulaması + dos2unix can convert DOS and MAC files to UNIX format, processing character encoding and line ending characters. + dos2unix DOS ve MAC düzmetin dosyalarını karakter kodlamalarını ve satırsonu karakterlerini değiştirerek UNIX biçimine çevirir. + http://waterlan.home.xs4all.nl/dos2unix/dos2unix-7.3.tar.gz + office/misc/dos2unix/pspec.xml + + + dos2unix + + /usr/bin/mac2unix + /usr/bin/unix2dos + /usr/bin/unix2mac + /usr/share/man + /usr/share/doc + + + + hd2u + hd2u, Dos2Unix text file converter + hd2u, Dos2Unix text file converter + + /usr/bin/dos2unix + + + + + 2015-12-29 + 7.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-08 + 7.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-07 + 6.0.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-28 + 6.0.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-17 + 5.3.1 + Release. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-28 + 5.3.1 + Confilicts Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-08-11 + 5.3.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libofx + http://libofx.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + library + office.misc + A library for supporting Open Financial Exchange (OFX) format + Açık Finansal Takas (OXF) dosya biçimi kitaplığı + libofx is a library designed to allow applications to very easily support OFX command responses, usually provided by financial institutions. + libofx, uygulamaların finansal kuruluşlar tarafından sağlanan OFX yapılarını desteklemesini sağlayan bir kitaplıktır. + http://sourceforge.net/projects/libofx/files/libofx/0.9.10/libofx-0.9.10.tar.gz + + opensp-devel + + + libofx-0.9.5-gcc47.patch + + office/misc/libofx/pspec.xml + + + libofx + + opensp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/libofx + /usr/share/man/man1 + + + + libofx-devel + Development files for libofx + libofx için geliştirme dosyaları + + libofx + + + /usr/include + /usr/lib/pkgconfig + + + + libofx-docs + Documentation for libofx + libofx için belgelendirme + + /usr/share/doc/libofx/html + + + + + 2015-02-06 + 0.9.10 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-07-28 + 0.9.5 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-02-19 + 0.9.5 + Updated. + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-13 + 0.9.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + qpdfview + https://launchpad.net/qpdfview + + Stefan Gronewold (groni) + groni@pisilinux.org + + GNU GPL v2 + office.misc + qpdfview is a tabbed document viewer + It uses Poppler for PDF support, libspectre for PS support, DjVuLibre for DjVu support, CUPS for printing support and the Qt toolkit for its interface + https://launchpad.net/qpdfview/trunk/0.4.14/+download/qpdfview-0.4.14.tar.gz + + djvu-devel + cups-devel + poppler-qt5-devel + qt5-base-devel + qt5-xmlpatterns-devel + libspectre-devel + zlib-devel + pkgconfig + qt5-svg-devel + + office/misc/qpdfview/pspec.xml + + + qpdfview + qpdfview is a tabbed document viewer. + + qt5-base + cups + djvu + libgcc + zlib + libspectre + poppler-qt5 + + + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + + 2015-11-04 + 0.4.14 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libvisio + http://www.ohloh.net/p/libvisio + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + office.misc + A C++ library for parsing binary Microsoft Visio documents + A C++ library for parsing binary Microsoft Visio documents. + A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. + A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. + http://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.0.tar.xz + + icu4c-devel + librevenge-devel + zlib-devel + libxml2-devel + boost-devel + gperf + + office/misc/libvisio/pspec.xml + + + libvisio + + icu4c + librevenge + libgcc + libxml2 + + + /usr/lib + /usr/bin + /usr/share/doc/libvisio + + + + libvisio-devel + + icu4c-devel + librevenge-devel + zlib-devel + libxml2-devel + libvisio + + + /usr/include/ + /usr/lib/pkgconfig + + + + + 2015-01-03 + 0.1.0 + Dep Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2014-09-26 + 0.1.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-20 + 0.0.25 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-17 + 0.0.25 + R.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 0.0.25 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-03-14 + 0.0.25 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-17 + 0.0.24 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-15 + 0.0.19 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + doxygen + http://www.doxygen.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.misc + Documentation and analysis tool for C++, C, Java, IDL, PHP and C# + C, C++, Java, IDL, PHP ve C# için döküman ve analiz aracı + Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors) and to some extent PHP, C#, and D. + Doxygen C++, C, Java, Objective-C, Python, IDL (Corba ve Microsoft ile ilgili diğerleri ) ve PHP, C# ve D'yi de kapsayan diller için bir dokümantasyon sistemidir. + Doxygen es un sistema de documentación para C++, C, Java, Objective-C, Python, IDL (versiones Corba y Microsoft) y hasta cierto punto también PHP, C#, y D. + ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.7.src.tar.gz + + libgcc + + + fedora/doxygen-1.8.6-config.patch + fedora/doxygen-1.8.3-multilib.patch + fedora/doxygen-1.8.7-html_timestamp_default_false.patch + + office/misc/doxygen/pspec.xml + + + doxygen + + libgcc + + + /usr/share/doc + /usr/bin/doxygen + /usr/share/man/man1/doxygen.1 + + + + + 2014-05-24 + 1.8.7 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2013-12-30 + 1.8.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-14 + 1.8.2 + First release + Yusuf Aydemir + yusuf.aydemir + + + + + + graphite2 + http://sourceforge.net/projects/silgraphite + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:gui + office.misc + SILGraphite: rendering non-roman scripts + Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems. + graphite2 + mirrors://sourceforge/silgraphite/graphite2-1.2.4.tgz + + cmake + freetype-devel + + office/misc/graphite2/pspec.xml + + + graphite2 + + /usr/bin + /usr/share/doc + /usr/share/graphite2 + /usr/lib/ + + + + graphite2-devel + graphite2 için geliştirme dosyaları + graphite2 için geliştirme dosyaları + + graphite2 + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2014-05-17 + 1.2.4 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-25 + 1.2.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-08-21 + 1.2.1 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-02 + 1.2.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-28 + 1.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + djvu + http://djvu.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + library + office.misc + DjVu viewers, encoders and utilities + DjVu görüntüleyicileri, sıkıştırıcı ve ekipmanları + DjVu is a web-centric format and software platform to distribute documents and images. + Belgeleri, kitapları bilinen formatlardan çok daha yüksek sıkıştırma oranlarında sıkıştıran DjVu formatı ekipmanları. + mirrors://sourceforge/djvu/djvulibre-3.5.27.tar.gz + + libjpeg-turbo-devel + tiff-devel + xdg-utils + libXt-devel + + + no-pthread.diff + djvulibre-3.5.22-cdefs.patch + + office/misc/djvu/pspec.xml + + + djvu + + shared-mime-info + libjpeg-turbo + tiff + + + /usr/bin + /usr/lib + /usr/share/icons + /usr/share/applications + /usr/share/djvu + /usr/share/mime + /opt/netscape + /usr/share/doc + /usr/share/man + + + + djvu-devel + Development files for djvu + djvu için geliştirme dosyaları + + djvu + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-02 + 3.5.27 + Version Bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-22 + 3.5.25.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-21 + 3.5.25.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + docutils + http://docutils.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + public-domain + library + office.misc + A library for processing plaintext documentation + Düz yazı belgelendirme işleme için kütüphane + A library for processing plaintext documentation into useful formats, such as HTML, XML, and LaTeX. + Librería para procesamiento de texto plano para conversión a formatos útiles como HTML, XML, y LaTeX. + mirrors://sourceforge/docutils/docutils-0.11.tar.gz + office/misc/docutils/pspec.xml + + + docutils + + /usr/lib + /usr/bin + /usr/share/doc + + + + + 2014-02-26 + 0.11 + Rebuild for python 2.7.6 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-22 + 0.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.7 + First release + Pisi Linux Admins + admins@pisilinux.org @@ -32761,2228 +36326,165 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gsoap - http://sourceforge.net/projects/gsoap2/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - office.misc - Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++ - The gSOAP toolkit is an extensive suite of portable C and C++ software to develop XML Web services with powerful type-safe XML data bindings. - http://sourceforge.net/projects/gsoap2/files/gSOAP/gsoap_2.8.22.zip - - zlib-devel - openssl-devel - - office/misc/gsoap/pspec.xml - - - gsoap - - zlib - openssl - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/gsoap - - - - gsoap-devel - Development files for gsoap - gsoap için geliştirme dosyaları - - gsoap - zlib-devel - openssl-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-12 - 2.8.22 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-06 - 2.8.21 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-01 - 2.8.16 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - chmlib - http://www.jedrea.com/chmlib/ + aspell + http://aspell.net/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 - library + LGPLv2 app:console - office.misc - A library for dealing with Microsoft ITSS/CHM format files - Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane - Chmlib est une librairie s'occupant des formats de fichiers Microsoft ITSS/CHM. Pour l'instant, il s'agit d'une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm. - Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files. - Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır. - Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm. - http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2 - office/misc/chmlib/pspec.xml + office.spellcheck + A multi-language spellchecker + Bir yazım kontrol aracı + Ce programme rend possible de vérifier facilement les documents en UTF-8 sans avoir à utiliser un dictionnaire spécial. + Aspell is a spellchecker that has dictionaries for more than one language and is written as a replacement to ispell. + GNU Aspell birden fazla dil destekleyen bir yazım kontrol aracıdır. + mirrors://gnu/aspell/aspell-0.60.6.1.tar.gz + + fedora/aspell-0.60.3-install_info.patch + fedora/aspell-0.60.5-fileconflict.patch + fedora/aspell-0.60.5-pspell_conf.patch + fedora/aspell-0.60.6-mp.patch + fedora/aspell-0.60.6-zero.patch + + office/spellcheck/aspell/pspec.xml - chmlib + aspell + + libgcc + - /usr/lib /usr/bin + /usr/lib + /usr/share/aspell /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale - chmlib-devel - Development files for chmlib - chmlib için geliştirme dosyaları + aspell-devel + Development files for aspell + aspell için geliştirme dosyaları - chmlib + aspell /usr/include + /usr/share/info/aspell-dev.info + + 2014-05-25 + 0.60.6.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + - 2014-01-20 - 0.40 + 2014-01-18 + 0.60.6.1 Rebuild Stefan Gronewold(groni) groni@pisilinux.org - - 2010-10-13 - 0.40 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - qpdfview - https://launchpad.net/qpdfview - - Stefan Gronewold (groni) - groni@pisilinux.org - - GNU GPL v2 - office.misc - qpdfview is a tabbed document viewer - It uses Poppler for PDF support, libspectre for PS support, DjVuLibre for DjVu support, CUPS for printing support and the Qt toolkit for its interface - https://launchpad.net/qpdfview/trunk/0.4.14/+download/qpdfview-0.4.14.tar.gz - - djvu-devel - cups-devel - poppler-qt5-devel - qt5-base-devel - qt5-xmlpatterns-devel - libspectre-devel - zlib-devel - pkgconfig - qt5-svg-devel - - office/misc/qpdfview/pspec.xml - - - qpdfview - qpdfview is a tabbed document viewer. - - qt5-base - cups - djvu - libgcc - zlib - libspectre - poppler-qt5 - - - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - - 2015-11-04 - 0.4.14 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - mdbtools - https://github.com/brianb/mdbtools - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - library - app:console - office.misc - MDB Tools is a suite of programs for accessing data stored in Microsoft Access databases - Microsoft Access veritabanı dosyalarında tutulan verilere erişmek için kullanılan araç ve kitaplıklar - mdbtools contains set of libraries and utilities for reading Microsoft Access database (MDB) files. - mdbtools Microsoft Access veritabanı dosyalarını (MDB) okumak için gereken araçları ve kütüphaneleri içermektedir. - https://github.com/brianb/mdbtools/archive/0.7.1.tar.gz - - unixODBC-devel - glib2-devel - readline-devel - - office/misc/mdbtools/pspec.xml - - - mdbtools - - unixODBC - glib2 - readline - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - mdbtools-gui - - - - mdbtools-devel - Development files for mdbtools - mdbtools için geliştirme dosyaları - - mdbtools - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-20 - 0.7.1 - Version bump, gui build disabled. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-02-19 - 0.6_pre1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 0.6_pre1 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-05-02 - 0.6_pre1 - Fixed build dep - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org - - - 2010-10-13 - 0.6_pre1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libvisio - http://www.ohloh.net/p/libvisio - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - office.misc - A C++ library for parsing binary Microsoft Visio documents - A C++ library for parsing binary Microsoft Visio documents. - A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. - A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. - http://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.0.tar.xz - - icu4c-devel - librevenge-devel - zlib-devel - libxml2-devel - boost-devel - gperf - - office/misc/libvisio/pspec.xml - - - libvisio - - icu4c - librevenge - libgcc - libxml2 - - - /usr/lib - /usr/bin - /usr/share/doc/libvisio - - - - libvisio-devel - - icu4c-devel - librevenge-devel - zlib-devel - libxml2-devel - libvisio - - - /usr/include/ - /usr/lib/pkgconfig - - - - - 2015-01-03 - 0.1.0 - Dep Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2014-09-26 - 0.1.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-02-20 - 0.0.25 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-17 - 0.0.25 - R.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 0.0.25 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-03-14 - 0.0.25 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-17 - 0.0.24 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-15 - 0.0.19 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ebook-tools - http://sourceforge.net/projects/ebook-tools/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - app:console - office.misc - A tool for accessing and converting various ebook file formats - Çeşitli e-kitap dosya biçimlerine erişmek için bir araç - ebook-tools is a programming library for accessing and converting various ebook file formats. It also contains a console application. - ebook-tools, çeşitli e-kitap dosya biçimleri arasında dönüştürme yapmak, bu biçimlere erişmek için kullanılan bir programlama kitaplığıdır. Kitaplığın yanında ayrıca bir terminal aracı da içerir. - mirrors://sourceforge/project/ebook-tools/ebook-tools/0.2.2/ebook-tools-0.2.2.tar.gz - - libzip-devel - libxml2-devel - doxygen - cmake - - - ebook-tools-0.2.1-libzip_pkgconfig.patch - - office/misc/ebook-tools/pspec.xml - - - ebook-tools - - libzip - libxml2 - - - /usr/bin - /usr/share/doc - /usr/lib - - - - ebook-tools-devel - Development files for ebook-tools - ebook-tools için geliştirme dosyaları - - libxml2-devel - ebook-tools - - - /usr/include - - - - ebook-tools-docs - Documentation for ebook-tools - ebook-tools kitaplığı için belgelendirme - - /usr/share/doc/ebook-tools/html - - - - - 2014-01-22 - 0.2.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - doxygen - http://www.doxygen.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - office.misc - Documentation and analysis tool for C++, C, Java, IDL, PHP and C# - C, C++, Java, IDL, PHP ve C# için döküman ve analiz aracı - Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors) and to some extent PHP, C#, and D. - Doxygen C++, C, Java, Objective-C, Python, IDL (Corba ve Microsoft ile ilgili diğerleri ) ve PHP, C# ve D'yi de kapsayan diller için bir dokümantasyon sistemidir. - Doxygen es un sistema de documentación para C++, C, Java, Objective-C, Python, IDL (versiones Corba y Microsoft) y hasta cierto punto también PHP, C#, y D. - ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.7.src.tar.gz - - libgcc - - - fedora/doxygen-1.8.6-config.patch - fedora/doxygen-1.8.3-multilib.patch - fedora/doxygen-1.8.7-html_timestamp_default_false.patch - - office/misc/doxygen/pspec.xml - - - doxygen - - libgcc - - - /usr/share/doc - /usr/bin/doxygen - /usr/share/man/man1/doxygen.1 - - - - - 2014-05-24 - 1.8.7 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2013-12-30 - 1.8.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - 2012-09-14 - 1.8.2 + 0.60.6.1 First release Yusuf Aydemir - yusuf.aydemir + yusuf.aydemir@pisilinux.org - iso-codes - http://pkg-isocodes.alioth.debian.org/ + hunspell + http://hunspell.sourceforge.net/ PisiLinux Community admins@pisilinux.org + MPL-1.1 + GPLv2 LGPLv2.1 library - office.misc - International country codes - Uluslararası ülke kodları - iso-codes provides IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standards. - iso-codes IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standartlarını sağlar. - http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.53.tar.xz - office/misc/iso-codes/pspec.xml + app:console + office.spellcheck + An improved spell checker + Gelişmiş imla denetleyici + hunspell spell checker is an improved replacement for myspell in Openoffice.org. It is also used in Firefox and Thunderbird as spell checker. + hunspell, OpenOffice.org'daki myspell yerine kullanılabilen gelişmiş bir imla denetleyicidir. Aynı zamanda, Firefox ve Thunderbird'de imla denetleyici olarak kullanılmaktadır. + mirrors://sourceforge/hunspell/hunspell-1.3.3.tar.gz + + ncurses-devel + + office/spellcheck/hunspell/pspec.xml - iso-codes + hunspell + + ncurses + libgcc + - /usr/lib/pkgconfig + /usr/lib + /usr/bin /usr/share/locale - /usr/share/doc - /usr/share/xml - /usr/share/iso-codes - - - - - 2014-05-21 - 3.53 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2013-10-13 - 3.47 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-02 - 3.39 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - txt2man - http://mvertes.free.fr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - office.misc - A converter from flat ASCII text to man page format - Düz ASCII metinleri man sayfası formatına dönüştürücü - txt2man converts flat ASCII text to man page format. - txt2man düz ASCII metinleri man sayfası formatına dönüştürür. - http://mvertes.free.fr/download/txt2man-1.5.6.tar.gz - office/misc/txt2man/pspec.xml - - - txt2man - - /usr/bin /usr/share/man - /usr/share/doc - - - - - 2014-05-25 - 1.5.6 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-17 - 1.5.6 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2011-04-27 - 1.5.6 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libofx - http://libofx.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - library - office.misc - A library for supporting Open Financial Exchange (OFX) format - Açık Finansal Takas (OXF) dosya biçimi kitaplığı - libofx is a library designed to allow applications to very easily support OFX command responses, usually provided by financial institutions. - libofx, uygulamaların finansal kuruluşlar tarafından sağlanan OFX yapılarını desteklemesini sağlayan bir kitaplıktır. - http://sourceforge.net/projects/libofx/files/libofx/0.9.10/libofx-0.9.10.tar.gz - - opensp-devel - - - libofx-0.9.5-gcc47.patch - - office/misc/libofx/pspec.xml - - - libofx - - opensp - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/libofx - /usr/share/man/man1 + /usr/share/doc + + ispellaff2myspell + wordlist2hunspell + - libofx-devel - Development files for libofx - libofx için geliştirme dosyaları + hunspell-devel + Development files for hunspell + hunspell için geliştirme dosyaları - libofx + hunspell /usr/include /usr/lib/pkgconfig - - - - libofx-docs - Documentation for libofx - libofx için belgelendirme - - /usr/share/doc/libofx/html + /usr/lib/*.a + /usr/share/man/man3 - 2015-02-06 - 0.9.10 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-07-28 - 0.9.5 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-02-19 - 0.9.5 - Updated. - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-13 - 0.9.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - docutils - http://docutils.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - public-domain - library - office.misc - A library for processing plaintext documentation - Düz yazı belgelendirme işleme için kütüphane - A library for processing plaintext documentation into useful formats, such as HTML, XML, and LaTeX. - Librería para procesamiento de texto plano para conversión a formatos útiles como HTML, XML, y LaTeX. - mirrors://sourceforge/docutils/docutils-0.11.tar.gz - office/misc/docutils/pspec.xml - - - docutils - - /usr/lib - /usr/bin - /usr/share/doc - - - - - 2014-02-26 - 0.11 - Rebuild for python 2.7.6 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-22 - 0.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.7 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - graphite2 - http://sourceforge.net/projects/silgraphite - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:gui - office.misc - SILGraphite: rendering non-roman scripts - Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems. - graphite2 - mirrors://sourceforge/silgraphite/graphite2-1.2.4.tgz - - cmake - freetype-devel - - office/misc/graphite2/pspec.xml - - - graphite2 - - /usr/bin - /usr/share/doc - /usr/share/graphite2 - /usr/lib/ - - - - graphite2-devel - graphite2 için geliştirme dosyaları - graphite2 için geliştirme dosyaları - - graphite2 - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2014-05-17 - 1.2.4 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-25 - 1.2.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-08-21 - 1.2.1 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-02 - 1.2.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-28 - 1.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - qpdf - http://qpdf.sourceforge.net - - Marcin Bojara - marcin@pisilinux.org - - Artistic-2 - app:console - office.misc - A Content-Preserving PDF Transformation System - A command-line program that does structural, content-preserving transformations on PDF files - mirrors://sourceforge/qpdf/qpdf-5.1.3.tar.gz - - libpcre-devel - zlib-devel - - office/misc/qpdf/pspec.xml - - - qpdf - - zlib - libgcc - libpcre - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - qpdf-devel - qpdf için geliştirme dosyaları - - libpcre-devel - zlib-devel - qpdf - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-30 - 5.1.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-03-04 - 5.1.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-26 - 5.1.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-13 - 5.0.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-01 - 4.1.0 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - djvu - http://djvu.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - library - office.misc - DjVu viewers, encoders and utilities - DjVu görüntüleyicileri, sıkıştırıcı ve ekipmanları - DjVu is a web-centric format and software platform to distribute documents and images. - Belgeleri, kitapları bilinen formatlardan çok daha yüksek sıkıştırma oranlarında sıkıştıran DjVu formatı ekipmanları. - mirrors://sourceforge/djvu/djvulibre-3.5.27.tar.gz - - libjpeg-turbo-devel - tiff-devel - xdg-utils - libXt-devel - - - no-pthread.diff - djvulibre-3.5.22-cdefs.patch - - office/misc/djvu/pspec.xml - - - djvu - - shared-mime-info - libjpeg-turbo - tiff - - - /usr/bin - /usr/lib - /usr/share/icons - /usr/share/applications - /usr/share/djvu - /usr/share/mime - /opt/netscape - /usr/share/doc - /usr/share/man - - - - djvu-devel - Development files for djvu - djvu için geliştirme dosyaları - - djvu - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-02 - 3.5.27 + 2014-07-10 + 1.3.3 Version Bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-22 - 3.5.25.3 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-21 - 3.5.25.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - texi2html - http://savannah.nongnu.org/projects/texi2html/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - office.misc - Texinfo to HTML converter - Texinfo'dan HTML'ye dönüştürücü - texi2html is a Perl script which can generate HTML from Texinfo source files. - text2html Texinfo kaynak dosyalarından HTML çıktı üretebilen bir Perl betiğidir. - http://download.savannah.gnu.org/releases/texi2html/texi2html-5.0.tar.bz2 - office/misc/texi2html/pspec.xml - - - texi2html - - /usr/bin - /usr/share/info - /usr/share/doc/texi2html - /usr/share/man/man1 - /usr/share/texi2html - /usr/share/texinfo - /usr/share/locale - - - - - 2014-05-20 - 5.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-05-02 - 1.82 - Mass rebuild for Pisi Linux 1.0 - Ertan Güven - ertan@pisilinux.org - - - 2012-11-06 - 5.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - librevenge - http://dev-www.libreoffice.org/src/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.0 - library - office.misc - A base library for writing document import filters - librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations. - http://dev-www.libreoffice.org/src/librevenge-0.0.1.tar.bz2 - - boost-devel - cppunit-devel - zlib-devel - doxygen - libtool - - office/misc/librevenge/pspec.xml - - - librevenge - - zlib - libgcc - - - /usr/share - /usr/lib - - - - librevenge-devel - Development files for librevenge - librevenge için geliştirme dosyaları - - librevenge - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-06 - 0.0.1 - First Release - PisiLinux Community - admins@pisilinux.org - - - - - - hunspell-dict-pl - http://www.kurnik.pl/dictionary/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2+ - MPL-1.1 - locale:pl - data - office.dictionary - Polish hunspell dictionaries - Polonya dili için hunspell sözlükleri - hunspell-dict-pl includes Polish hunspell dictionaries. - hunspell-dict-pl Polonya dili için hunspell sözlükleri içerir. - https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-20150428.zip - office/dictionary/hunspell-dict-pl/pspec.xml - - - hunspell-dict-pl - - /usr/share/hunspell - /usr/share/doc - - - - - 2015-10-05 - 20100428 - Rebuild - Alihanh Öztürk - alihan@pisilinux.org - - - 2014-01-26 - 0.0_20090319 - Rebuild - Alihanh Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-sv - http://dsso.se/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - locale:sv - data - office.dictionary - Swedish hunspell dictionaries - İsveççe hunspell sözlükleri - hunspell-dict-sv includes Swedish hunspell dictionaries. - hunspell-dict-sv İsveççe hunspell sözlüklerini içerir. - http://extensions.libreoffice.org/extension-center/swedish-spelling-dictionary-den-stora-svenska-ordlistan/releases/2.36/ooo_swedish_dict_2-36.oxt - office/dictionary/hunspell-dict-sv/pspec.xml - - - hunspell-dict-sv - - /usr/share - /usr/share/doc - - - - - 2014-02-17 - 1.29 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-05 - 1.29 - v.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-13 - 1.29 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-nl - http://www.opentaal.org/english.php - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - locale:nl - data - office.dictionary - Dutch hunspell dictionaries - Flemenkçe hunspell sözlükleri - hunspell-dict-nl includes Dutch hunspell dictionaries. - hunspell-dict-nl Flemenkçe hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-nl/OpenTaal-210G-LO.oxt/3c96686c2555e3ae23b5de06ba08631b/OpenTaal-210G-LO.oxt - office/dictionary/hunspell-dict-nl/pspec.xml - - - hunspell-dict-nl - - /usr/share - /usr/share/doc - - - - - 2015-10-05 - 2.10g - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Vedat Demir + vedat@pisilinux.com - 2014-02-17 - 1.00g - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-05 - 1.00g - Adress Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-13 - 1.00g - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-es - http://es.openoffice.org/programa/diccionario.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - GPLv3+ - MPL-1.1 - locale:es - data - office.dictionary - Spanish hunspell dictionaries - İspanyolca hunspell sözlükleri - hunspell-dict-es includes Spanish (Spain, Mexico, etc.) hunspell dictionaries. - hunspell-dict-es İspanyolca (İspanya, Meksika vs.) hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-es/es_ANY.zip/a88e2244de48c0ff42f1b77c4a80c8a0/es_ANY.zip - office/dictionary/hunspell-dict-es/pspec.xml - - - hunspell-dict-es - - /usr/share - /usr/share/doc - - - - - 2014-02-17 - 0.0_20081215 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-05-05 - 0.0_20081215 - Fixed - Ertan Güven - ertan@pisilinux.org - - - 2010-10-13 - 0.0_20081215 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-fr - http://dico.savant.free.fr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - MPL-1.1 - locale:fr - data - office.dictionary - French hunspell dictionaries - Fransızca hunspell sözlükleri - hunspell-dict-fr includes French (France, Belgium, etc.) hunspell dictionaries. - hunspell-dict-fr Fransızca (Fransa, Belçika vs.) hunspell sözlüklerini içerir. - http://dico.savant.free.fr/_download/fr_FR_2-3-2.zip - office/dictionary/hunspell-dict-fr/pspec.xml - - - hunspell-dict-fr - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-27 - 2.3.2 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 2.3.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-ca - http://www.softcatala.org/wiki/Projectes/Corrector_ortogràfic - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - locale:ca - data - office.dictionary - Catalan hunspell dictionaries - Katalanca hunspell sözlüğü - hunspell-dict-ca includes Catalan hunspell dictionaries. - hunspell-dict-ca Katalanca hunspell sözlüğünü içermektedir. - http://source.pisilinux.org/1.0/hunspell-dict-ca-20090319.tar.bz2 - office/dictionary/hunspell-dict-ca/pspec.xml - - - hunspell-dict-ca - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-26 - 0.0_20090319 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-it - http://linguistico.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - locale:it - data - office.dictionary - Italian hunspell dictionaries - İtalyanca hunspell sözlükleri - hunspell-dict-it includes Italian hunspell dictionaries. - hunspell-dict-it İtalyanca hunspell sözlüklerini içerir. - http://downloads.sourceforge.net/sourceforge/linguistico/italiano_2_4_2007_09_01.zip - office/dictionary/hunspell-dict-it/pspec.xml - - - hunspell-dict-it - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-26 - 2.4 - rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 2.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-en - http://wordlist.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - locale:en - data - office.dictionary - English hunspell dictionaries - İngilizce hunspell sözlükleri - hunspell-dict-en includes English (US, UK, etc.) hunspell dictionaries. - hunspell-dict-en İngilizce (US, UK vs.) hunspell sözlüklerini içerir. - http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_US-2015.05.18.zip - http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_CA-2015.05.18.zip - http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_GB-large-2015.05.18.zip - office/dictionary/hunspell-dict-en/pspec.xml - - - hunspell-dict-en - - /usr/share - /usr/share/doc - - - - - 2015-10-05 - 2015.05.18 - version bump - Ayhan Yalcinsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-02-17 - 0.0_20090319 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-tr - http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - locale:en - data - office.dictionary - Turkish hunspell dictionaries - Turkish hunspell dictionaries - http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/releases/1.1-2014.12.11/tr-tr.oxt - - hunspell - - office/dictionary/hunspell-dict-tr/pspec.xml - - - hunspell-dict-tr - - /usr/lib/libreoffice/share/extensions/hunspell_tr/ - /usr/share/hunspell - - - - - 2015-10-03 - 1.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - hunspell-dict-pt - http://www.broffice.org/verortografico/baixar - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - GPLv2+ - locale:pt - data - office.dictionary - Portuguese hunspell dictionaries - Portekizce hunspell sözlükleri - hunspell-dict-pt includes Portuguese hunspell dictionaries. - hunspell-dict-pt Portekizce hunspell sözlükleri içerir. - http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20150704.tar.gz - office/dictionary/hunspell-dict-pt/pspec.xml - - - hunspell-dict-pt - - /usr/share/hunspell - /usr/share/doc - - - - - 2015-10-05 - 20150704 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-01-27 - 0.0_20090319 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-ru - ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell - - PisiLinux Community - admins@pisilinux.org - - BSD - locale:ru - data - office.dictionary - Russian hunspell dictionaries - Rusça hunspell sözlükleri - hunspell-dict-ru includes Russian hunspell dictionaries. - hunspell-dict-ru Rusça hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-ru/rus-myspell-0.99f7.tar.gz/05a7c3a7bea2432410a35d93161b4c0a/rus-myspell-0.99f7.tar.gz - office/dictionary/hunspell-dict-ru/pspec.xml - - - hunspell-dict-ru - - /usr/share - /usr/share/doc - - - - - 2014-02-17 - 0.99f_7 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-05-05 - 0.99f_7 - Url fixed - Ertan Güven - ertan@pisilinux.org - - - 2010-12-28 - 0.99f_7 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-de - http://www.j3e.de/ispell/igerman98 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - locale:de - data - office.dictionary - German hunspell dictionaries - Almanca hunspell sözlüğü - hunspell-dict-de includes German, Switzerland, etc. hunspell dictionaries. - hunspell-dict-de Almanca ve İsviçre Almancası için hunspell sözlüklerini içermektedir. - https://www.j3e.de/ispell/igerman98/dict/igerman98-20131206.tar.bz2 - office/dictionary/hunspell-dict-de/pspec.xml - - - hunspell-dict-de - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-26 - 0.0_20131216 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090107 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - poppler-data - http://poppler.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - data - office.postscript - Poppler encoding files - Poppler kodlama dosyaları - poppler-data consists of encoding files for poppler. When installed, the encoding files enables poppler to correctly render CJK and Cyrillic properly. - poppler-data, poppler için CJK ve Kiril harflerini düzgünce gösterebilmek için gerekli kodlama dosyalarını içerir. - http://poppler.freedesktop.org/poppler-data-0.4.7.tar.gz - office/postscript/poppler-data/pspec.xml - - - poppler-data - - /usr/share/doc - /usr/share/poppler - /usr/share/pkgconfig - - - - - 2015-03-05 - 0.4.7 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2014-05-25 - 0.4.6 + 1.3.2 Rebuild Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-10 - 0.4.6 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org + alihan@pisilinux.com - 2013-04-17 - 0.4.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-12 - 0.4.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - poppler - http://poppler.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - office.postscript - PDF rendering library - Xpdf koduna dayanan bir PDF kitaplığı - Biblioteka renderująca PDF - Poppler est une librairie de rendu PDF basée sur le code source de xpdf-3.0. - poppler is a PDF rendering library based on xpdf. - Poppler, xpdf koduna dayanan bir PDF hazırlama kitaplığıdır. - Wspólna biblioteka renderująca PDF do integrowania oglądania PDF w aplikacjach desktopowych (oparta na kodzie xpdf-3.0). - http://poppler.freedesktop.org/poppler-0.34.0.tar.xz - - lcms2-devel - curl-devel - cairo-devel - gobject-introspection-devel - libjpeg-turbo-devel - freetype-devel - libpng-devel - tiff-devel - fontconfig-devel - openjpeg-devel - qt5-base-devel - - office/postscript/poppler/pspec.xml - - - poppler - - lcms2 - curl - freetype - libgcc - libjpeg-turbo - libpng - tiff - openjpeg - fontconfig - poppler-data - - - /usr/lib - /usr/share/doc - - - - poppler-utils - Command line utilities for converting PDF files - PDF dönüşüm araçları - - poppler - cairo - lcms2 - freetype - libgcc - - - /usr/bin - /usr/share/man/man1 - - - - poppler-qt5 - Qt wrapper for poppler - - qt5-base - libgcc - poppler - - - /usr/lib/libpoppler-qt5.so* - - - - poppler-qt5-devel - Development files for poppler-qt - - poppler-qt5 - poppler-devel - - - /usr/lib/pkgconfig/poppler-qt5.pc - - - - poppler-cpp - Pure C++ wrapper for poppler - Poppler için C++ bağlayıcısı - - libgcc - poppler - - - /usr/lib/libpoppler-cpp.so* - - - - poppler-cpp-devel - Development files for poppler-cpp - poppler-cpp için geliştirme dosyaları - - poppler-cpp - poppler-devel - - - /usr/lib/pkgconfig/poppler-cpp.pc - - - - poppler-glib - Glib wrapper for poppler - Poppler için Glib bağlayıcısı - - libgcc - cairo - glib2 - freetype - poppler - - - /usr/lib/libpoppler-glib.so* - /usr/lib/girepository-1.0/Poppler-0.18.typelib - - - - poppler-glib-devel - Development files for poppler-glib - poppler-glib için geliştirme dosyaları - - gtk2-devel - cairo-devel - poppler-glib - poppler-devel - - - /usr/lib/pkgconfig/poppler-glib.pc - /usr/lib/pkgconfig/poppler-cairo.pc - /usr/share/gir-1.0/Poppler-0.18.gir - /usr/lib32/pkgconfig/poppler-glib.pc - - - - poppler-devel - Development files for poppler - poppler için geliştirme dosyaları - - poppler - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig/poppler.pc - - - - poppler-32bit - 32-bit shared libraries for poppler - emul32 - emul32 - - lcms2-32bit - libjpeg-turbo-32bit - libpng-32bit - tiff-32bit - freetype-32bit - fontconfig-32bit - glibc-32bit - - - poppler - libgcc - glibc-32bit - lcms2-32bit - libjpeg-turbo-32bit - libpng-32bit - openjpeg-32bit - tiff-32bit - freetype-32bit - fontconfig-32bit - - - /usr/lib32/libpoppler.so* - - - - poppler-glib-32bit - 32-bit shared libraries for poppler-glib - emul32 - emul32 - - glib2-32bit - cairo-32bit - freetype-32bit - glibc-32bit - - - poppler-32bit - libgcc - glibc-32bit - glib2-32bit - cairo-32bit - freetype-32bit - - - /usr/lib32/libpoppler-glib.so* - - - - - 2015-07-28 - 0.34.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-04 - 0.31.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-25 - 0.26.0 - Version bump. + 2014-01-26 + 1.3.2 + Rebuild and some fixes Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-27 - 0.24.5 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-10-10 - 0.24.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-28 - 0.22.5 - Move pc files to devel pack, fix pc files for emul32. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-01 - 0.22.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-04-17 - 0.22.3 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + alihan@pisilinux.com - 2012-10-18 - 0.20.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - ghostscript - http://www.ghostscript.com - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - office.postscript - A PostScript interpreter and renderer - Bir PostScript yorumlayıcısı ve üreticisi - ghostscript is a set of software that provides a PostScript interpreter, a set of C procedures and an interpreter for PDF files. ghostscript is normally used to display PostScript files and to print PostScript files to non-PostScript printers. - ghostscript, PostScript yorumlayıcısı, C kitaplığı ve PDF yorumlayıcısı içeren bir yazılım paketidir. ghostscript, PostScript dosyalarının görüntülenmesi ve PostScript olmayan yazıcılardan PostScript dosyalarının çıktılarının alınması için kullanılmaktadır. - http://downloads.ghostscript.com/public/ghostscript-9.15.tar.bz2 - - tiff-devel - zlib-devel - libX11-devel - libXext-devel - libSM-devel - freetype-devel - libjpeg-turbo-devel - lcms2-devel - libXt-devel - libpng-devel - libpaper-devel - fontconfig-devel - - - ubuntu/02_gs-man-fix-for-debian.patch - fedora/ghostscript-Fontmap.local.patch - fedora/ghostscript-gdevcups-debug-uninit.patch - fedora/ghostscript-iccprofiles-initdir.patch - fedora/ghostscript-multilib.patch - fedora/ghostscript-noopt.patch - fedora/ghostscript-runlibfileifexists.patch - fedora/ghostscript-scripts.patch - fedora/ghostscript-sys-zlib.patch - fedora/ghostscript-icc-missing-check.patch - fedora/ghostscript-wrf-snprintf.patch - fedora/ghostscript-gs694154.patch - - office/postscript/ghostscript/pspec.xml - - - ghostscript - - zlib - libX11 - libpng - freetype - libjpeg-turbo - tiff - lcms2 - libXt - libpaper - fontconfig - poppler-data - gnu-gs-fonts-std - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/cups - /usr/share/ghostscript - - - - ghostscript-docs - Documentation for ghostscript - ghostscript için çeşitli belgeler - - /usr/share/doc/ghostscript/html - /usr/share/doc/ghostscript/examples - - - - ghostscript-devel - Development files for ghostscript - ghostscript için geliştirme dosyaları - - ghostscript - - - /usr/bin/ijs-config - /usr/include/ghostscript - /usr/include/ijs - /usr/lib/pkgconfig - - - - ghostscript-32bit - 32-bit shared libraries for ghostscript - emul32 - emul32 - - libjpeg-turbo-32bit - zlib-32bit - tiff-32bit - lcms2-32bit - libXt-32bit - libXext-32bit - libX11-32bit - libpng-32bit - libidn-32bit - freetype-32bit - fontconfig-32bit - - - ghostscript - libjpeg-turbo-32bit - glibc-32bit - zlib-32bit - tiff-32bit - lcms2-32bit - libXt-32bit - libX11-32bit - libpng-32bit - freetype-32bit - fontconfig-32bit - - - /usr/lib32 - - - - - 2015-03-04 - 9.15 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-20 - 9.14 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-21 - 9.10 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-06-27 - 9.07 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-22 - 9.06 - Add emul32, fix dependencies - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-12 - 9.06 + 2012-09-11 + 1.3.2 First release Yusuf Aydemir - yusuf.aydemir@pisilinux.org + yusuf.aydemir@istambul.com @@ -35085,17140 +36587,143 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - hunspell - http://hunspell.sourceforge.net/ + homebank + http://homebank.free.fr - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - GPLv2 - LGPLv2.1 - library - app:console - office.spellcheck - An improved spell checker - Gelişmiş imla denetleyici - hunspell spell checker is an improved replacement for myspell in Openoffice.org. It is also used in Firefox and Thunderbird as spell checker. - hunspell, OpenOffice.org'daki myspell yerine kullanılabilen gelişmiş bir imla denetleyicidir. Aynı zamanda, Firefox ve Thunderbird'de imla denetleyici olarak kullanılmaktadır. - mirrors://sourceforge/hunspell/hunspell-1.3.3.tar.gz - - ncurses-devel - - office/spellcheck/hunspell/pspec.xml - - - hunspell - - ncurses - libgcc - - - /usr/lib - /usr/bin - /usr/share/locale - /usr/share/man - /usr/share/doc - - - ispellaff2myspell - wordlist2hunspell - - - - hunspell-devel - Development files for hunspell - hunspell için geliştirme dosyaları - - hunspell - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/*.a - /usr/share/man/man3 - - - - - 2014-07-10 - 1.3.3 - Version Bump. - Vedat Demir - vedat@pisilinux.com - - - 2014-05-25 - 1.3.2 - Rebuild - Alihan Öztürk - alihan@pisilinux.com - - - 2014-01-26 - 1.3.2 - Rebuild and some fixes - Alihan Öztürk - alihan@pisilinux.com - - - 2012-09-11 - 1.3.2 - First release - Yusuf Aydemir - yusuf.aydemir@istambul.com - - - - - - aspell - http://aspell.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - office.spellcheck - A multi-language spellchecker - Bir yazım kontrol aracı - Ce programme rend possible de vérifier facilement les documents en UTF-8 sans avoir à utiliser un dictionnaire spécial. - Aspell is a spellchecker that has dictionaries for more than one language and is written as a replacement to ispell. - GNU Aspell birden fazla dil destekleyen bir yazım kontrol aracıdır. - mirrors://gnu/aspell/aspell-0.60.6.1.tar.gz - - fedora/aspell-0.60.3-install_info.patch - fedora/aspell-0.60.5-fileconflict.patch - fedora/aspell-0.60.5-pspell_conf.patch - fedora/aspell-0.60.6-mp.patch - fedora/aspell-0.60.6-zero.patch - - office/spellcheck/aspell/pspec.xml - - - aspell - - libgcc - - - /usr/bin - /usr/lib - /usr/share/aspell - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - - - - aspell-devel - Development files for aspell - aspell için geliştirme dosyaları - - aspell - - - /usr/include - /usr/share/info/aspell-dev.info - - - - - 2014-05-25 - 0.60.6.1 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-18 - 0.60.6.1 - Rebuild - Stefan Gronewold(groni) + Stefan Gronewold (groni) groni@pisilinux.org - - - 2012-09-14 - 0.60.6.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - signon - https://code.google.com/p/accounts-sso - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - programming.library - A framework for centrally storing authentication credentials - Single Sign-On is a framework for centrally storing authentication credentials and handling authentication on behalf of applications as requested by applicationsIt consists of - a secure storage of login credentials (for example usernames and passwords), plugins for different authentication systems and a client library for applications to communicate with this system. - https://gitlab.com/accounts-sso/signond/repository/archive.tar.bz2 - - qt5-base-devel - doxygen - - - qt5.5.diff - use_keyring.patch - - programming/library/signon/pspec.xml - - - signon - - qt5-base - libgcc - doxygen - - - /usr/bin - /usr/lib - /etc - /usr/share/dbus-1 - - - - signon-devel - Development files for signon - Signon için kütüphaneler - Signon geliştirme paketi, Signon için geliştirme dosyaları sunar. - - signon - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - signon-docs - Help files and API documents for signon - data:doc - - signon - - - /usr/share/doc - - - - - 2015-11-14 - 8.58 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-24 - 8.56 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 8.48 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 8.48 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-26 - 8.48 - Move pc files to devel pack,release bump. - Erdinç Gültekin - erdincgultekin@gmail.com - - - 2013-03-08 - 8.48 - First release - Erdinç Gültekin - erdincgultekin@gmail.com - - - - - - libaccounts-glib - https://code.google.com/p/accounts-sso - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - programming.library - Accounts and SSO (Single Sign-On) framework - Accounts and SSO (Single Sign-On) framework for Linux and POSIX based platforms. - http://heanet.dl.sourceforge.net/project/kaosx/sources/libaccounts-glib/libaccounts-glib-1.18.tar.gz - - glib2-devel - libxml2-devel - sqlite-devel - gtk-doc - docbook-xsl - python-pygobject-devel - - programming/library/libaccounts-glib/pspec.xml - - - libaccounts-glib - library - - glib2 - sqlite - libxml2 - - - /usr/bin - /usr/lib - /usr/share/backup-framework/applications/accounts.conf - /usr/share/xml - /usr/share/libaccounts-glib/testdata - /usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.Accounts.Manager.xml - /usr/share/man/man1 - - - - libaccounts-glib-devel - Development files for libaccounts-glib - - libaccounts-glib - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0/Accounts-1.0.gir - /usr/share/vala - - - - libaccounts-glib-docs - Help files and API documents for libaccounts-glib - data:doc - - libaccounts-glib - - - /usr/share/gtk-doc - /usr/share/doc - - - - - 2015-10-20 - 1.18 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-11 - 1.15 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 1.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-28 - 1.8 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 1.8 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-06 - 1.8 - Sandbox Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-08 - 1.8 - First release - Erdinç Gültekin - erdincgultekin@gmail - - - - - - yaml-cpp - https://github.com/jbeder/yaml-cpp - - Ergün Salman - Poyraz76@pisilinux.org - - LGPLv2 - Libry - programming.library - yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec. - To get a feel for how it can be used, see the Tutorial or How to Emit YAML. - yalm-cpp - https://github.com/jbeder/yaml-cpp/archive/release-0.5.2.tar.gz - - cmake - python-devel - boost-devel - - programming/library/yaml-cpp/pspec.xml - - - yaml-cpp - - /usr/lib/ - /usr/include/yaml-cpp/* - /usr/lib/pkgconfig/ - /usr/share/doc/ - - - - - 2015-09-01 - 0.5.2 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - libaccounts-qt5 - https://gitlab.com/accounts-sso/libaccounts-qt - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - library - programming.library - Qt5-based client library for accessing the online accounts database - Qt5-based client library for accessing the online accounts database - https://gitlab.com/accounts-sso/libaccounts-qt/repository/archive.tar.bz2 - - doxygen - qt5-base-devel - glib2-devel - libaccounts-glib-devel - - programming/library/libaccounts-qt5/pspec.xml - - - libaccounts-qt5 - - glib2 - libgcc - qt5-base - libaccounts-glib - - - /usr/lib/libaccounts-qt5.so.* - /usr/share/doc/libaccounts-qt5 - - - - libaccounts-qt5-devel - Development files for libaccounts-qt5 - - libaccounts-qt5 - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/lib/libaccounts-qt5.so - - - - libaccounts-qt5-docs - Help files and API documents for libaccounts-qt5 - data:doc - - libaccounts-qt5 - - - /usr/share/doc - - - - libaccounts-qt5-tools - This package contains the tools for the libaccounts-qt5 library - data:doc - - libaccounts-qt5 - libgcc - qt5-base - - - /usr/bin - /usr/share/libaccounts-qt-tests - - - - - 2015-10-20 - 1.14 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libsignon-glib - https://code.google.com/p/accounts-sso - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - programming.library - Authorization and authentication management for glib - libsignon-glib provides authorization and authentication management for GLib applications. - https://gitlab.com/accounts-sso/libsignon-glib/repository/archive.tar.gz - - glib2-devel - gobject-introspection-devel - signon-devel - gtk-doc - - programming/library/libsignon-glib/pspec.xml - - - libsignon-glib - - gobject-introspection - glib2 - signon - - - /usr/lib/ - /usr/share/gir-1.0 - /usr/share/vala/vapi/signon.vapi - - - - libsignon-glib-devel - Development files for libsignon-glib - libsignon-glib için kütüphaneler - libsignon-glib geliştirme paketi, libsignon-glib için geliştirme dosyaları sunar. - - libsignon-glib - glib2-devel - signon-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libsignon-glib-doc - Document files for libsignon-glib - - libsignon-glib - - - /usr/share/doc - /usr/share/gtk-doc/html - - - - - 2015-11-14 - 1.12 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 1.9 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 1.9 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 1.9 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-07 - 1.9 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-22 - 1.9 - First release - Erdinç Gültekin - erdincgultekin@gmail.com - - - - - - libnih - https://launchpad.net/libnih - - Aydın Demirel - aydin.demirel@pisilinux.org - - GPL - app:library - programming.library - Small library for C application development - C uygulama geliştirme için küçük bir kütüphane - Small library for C application development. - C uygulama geliştirme için küçük bir kütüphane. - https://launchpad.net/libnih/1.0/1.0.3/+download/libnih-1.0.3.tar.gz - - dbus-devel - expat-devel - - programming/library/libnih/pspec.xml - - - libnih - - dbus - expat - - - /usr/bin - /usr/share/man - /usr/share/aclocal - /usr/lib/* - - - - libnih-devel - - libnih - dbus-devel - expat-devel - - - /usr/include - - - - - 2014-06-27 - 1.0.3 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - swig - http://www.swig.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - BSD - app:console - programming.library - Connects C/C++/Objective C to some high-level programming languages - Basitleştirilmiş arayüz oluşturucu - Simplified Wrapper and Interface Generator (Générateur d'interface de scripts d'enrobage simplifié), SWIG est un outil de développement qui connecte des programmes écrits en C et C++ avec divers langages de programmation de haut niveau. SWIG est utilisé avec différents type de langages incluant les langages de script habituels tels que Perl, PHP, Python, Tcl, Ruby. - Simplified Wrapper and Interface Generator, SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. SWIG is used with different types of languages including common scripting languages such as Perl, PHP, Python, Tcl, Ruby and PHP - SWIG, C ve C++ ile yazılmış uygulamaları çeşitli üst düzey programlama dilleri ile bağlayan bir yazılım geliştirme aracıdır. SWIG, genel betik dilleri olan Perl, PHP, Python, Tcl, Ruby gibi farklı diller ile kullanılır. - mirrors://sourceforge/swig/swig-3.0.2.tar.gz - - python-devel - boost-devel - ruby-devel - libpcre-devel - zlib-devel - perl - - programming/library/swig/pspec.xml - - - swig - - zlib - libgcc - libpcre - - - /usr/bin - /usr/lib - /usr/share/swig - /usr/share/doc - /usr/share/man - - - - - 2014-12-22 - 3.0.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-11 - 3.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-29 - 3.0.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-23 - 2.0.11 - Clean swig. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-24 - 2.0.10 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-17 - 2.0.9 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-09-15 - 2.0.8 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libaio - http://lse.sourceforge.net/io/aio.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.library - Librairie d'entrée/sortie asynchrone utilisant l'interface native du noyau. - Linux-native asynchronous I/O access library - Linux asenkron girdi/çıktı kütüphanesi - libaio has a richer API and capability set than the simple POSIX async I/O facility. - libaio, basit POSIX asenkron girdi/çıktı desteğinden daha iyi bir programlama arayüzü sunan bir kütüphanedir. - http://enterprise-storage-os.googlecode.com/files/libaio-0.3.109.tar.bz2 - - libaio-0.3.106-build.patch - libaio-0.3.107-ar-ranlib.patch - 92_unused_warnings.patch - libaio-0.3.109-testcase-8.patch - libaio-0.3.109-generic-arch.patch - libaio-0.3.109-unify-bits-endian.patch - libaio-0.3.109-x32.patch - - programming/library/libaio/pspec.xml - - - libaio - - /lib - /usr/lib - /usr/share/doc - - - - libaio-32bit - 32-bit shared libraries for libaio - emul32 - emul32 - - libaio - - - /usr/lib32 - - - - libaio-devel - Development files for libaio - libaio için geliştirme dosyaları - - libaio - - - /usr/include - /usr/share/man/man3 - - - - - 2014-05-19 - 0.3.109 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-06 - 0.3.109 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-16 - 0.3.109 - URL Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-14 - 0.3.109 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libbsd - http://libbsd.freedesktop.org - - Marcin Bojara - marcin@pisilinux.org - - BSD - BSD-2 - BSD-4 - ISC - library - programming.library - Provides useful functions commonly found on BSD systems - Taşınabilirlik için BSD uyumlu fonksiyonlar sağlayan bir kitaplık. - This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making it easier to port projects with strong BSD origins, without needing to embed the same code over and over again on each project. - GNU Linux sistemlerde bulunmayan BSD sistemlere özgü fonsiyonları barındıran bir kitaplıktır ve BSD uygulamalarının GNU Linux'a taşınmasını kolaylaştırır. - http://libbsd.freedesktop.org/releases/libbsd-0.6.0.tar.xz - programming/library/libbsd/pspec.xml - - - libbsd - - /usr/lib - /usr/share/doc - - - - libbsd-devel - Development files for libbsd - - libbsd - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-03-09 - 0.6.0 - Fisrt release. - Marcin Bojara - marcin@pisilinux.org - - - - - - libwlocate - http://sourceforge.net/projects/libwlocate/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - library - programming.library - A shared library that can be used for location-based services - libwlocate is a shared library that can be used for location-based services. - http://sourceforge.net/projects/pisilinux/files/source/libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac.tar.gz - - wireless-tools-devel - - programming/library/libwlocate/pspec.xml - - - libwlocate - A shared library that can be used for location-based services - - wireless-tools - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libwlocate-devel - Development files for libwlocate - - libwlocate - - - /usr/include - - - - - 2015-12-03 - 0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ctags - http://ctags.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.tool - Exuberant Ctags generates an index (or tag) file of objects found in source and header files - Kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir - Exuberant Ctags génère un fichier d'index (ou tag) pour les objets trouvés dans les fichiers sources et d'entête permettant à ces entités d'être rapidement et facilement localisées par un éditeur de texte et d'autres utilitaires. Il gère actuellement 33 langages de programmation. - Exuberant Ctags generates an index (or tag) file of objects found in source and header files that allows these items to be quickly and easily located by a text editor or other utility. Currently supports 33 programming languages. - Exuberant Ctags, kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir. - Exuberant Ctags genera un archivo de índice (o tag) de objetos encontrados en archivos de fuente y cabeceras, para localizar fácilmente estos ítemes con un editor de texto u otra herramienta. Actualmente soporta 33 lenguajes de programación. - mirrors://sourceforge/ctags/ctags-5.8.tar.gz - - ctags-5.7-segment-fault.patch - ctags-5.8-f95-pointers.patch - ctags-5.8-python-vars-starting-with-def.patch - - programming/tool/ctags/pspec.xml - - - ctags - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2014-01-21 - 5.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 5.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dev86 - http://homepage.ntlworld.com/robert.debath/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.tool - Development environment for ELKS-86 and standalone 8086 code - ELKS-86 ve 8086 kodları için geliştirme ortamı - Entorno de desarrollo para ELKS-86 y código 8086 independiente - The dev86 package provides an assembler and linker for real mode 80x86 instructions. You'll need to have this package installed in order to build programs that run in real mode, including LILO and the kernel's bootstrapping code, from their sources. - http://v3.sk/~lkundrak/dev86/archive/Dev86src-0.16.19.tar.gz - - fedora/dev86-noelks.patch - fedora/dev86-nostrip.patch - fedora/dev86-long.patch - fedora/dev86-print-overflow.patch - dont-ask-anything.patch - 64bit-build-fix.patch - makefile-fix.patch - - programming/tool/dev86/pspec.xml - - - dev86 - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2014-02-17 - 0.16.19 - Release. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-05-02 - 0.16.19 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-10-13 - 0.16.17 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - cppunit - http://www.freedesktop.org/wiki/Software/cppunit - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.tool - C++ port of the famous JUnit framework for unit testing - Popüler JUnit test çatısının C++ sürümü - cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers. - cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır. - http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz - - grep - libtool - - programming/tool/cppunit/pspec.xml - - - cppunit - - /usr/lib - /usr/share/doc - - - - cppunit-devel - Contains the headers and other files necessary for developing programs that use cppunit - - cppunit - libgcc - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/share/man - - - - - 2014-01-21 - 1.13.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-02-09 - 1.13.1 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - gdb - http://www.gnu.org/software/gdb/gdb.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - programming.debug - GNU debugger - GNU hata ayıklayıcısı - Depurador GNU - GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed. - GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar. - GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado. - mirrors://gnu/gdb/gdb-7.9.1.tar.xz - - texinfo - expat-devel - python-devel - readline-devel - ncurses-devel - - programming/debug/gdb/pspec.xml - - - gdb - - guile - expat - python - readline - ncurses - - - /usr/bin - /usr/lib - /usr/share/doc/gdb - /usr/share/gdb - /usr/share/info - /usr/share/man - - - gstack.1 - - - - gdb-devel - Development files for gdb - gdb için geliştirme dosyaları - - gdb - - - /usr/include - - - - - 2015-07-30 - 7.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 7.9 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-20 - 7.7.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-19 - 7.7 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-01-25 - 7.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-23 - 7.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - mercurial - http://www.selenic.com/mercurial - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.scm - A distributed SCM tool - Dağıtık bir kaynak kod yönetim aracı - Système de gestion de code source, rapide et léger conçu pour gérer de manière efficace les projets distribués de très grande taille. - A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects. - Çok büyük dağıtık projelerin verimli bir şekilde idare edilmesi amacıyla geliştirilmiş hızlı, hafif bir kaynak kod kontrol yönetimi sistemi - Un sistema rápido y liviano de administración de fuentes (Source Control Management) diseñado para manejo eficaz de proyectos muy largos y distribuidos. - http://mercurial.selenic.com/release/mercurial-3.3.3.tar.gz - - python-devel - - programming/scm/mercurial/pspec.xml - - - mercurial - - python - - - /usr/bin - /etc/bash_completion.d - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-04-04 - 3.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-01-10 - 3.2.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-07 - 2.9.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-01 - 2.8 - Ver. bump - Kamil Atlı - suvarice@gmail.com - - - 2012-10-06 - 2.3.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - subversion - http://subversion.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Subversion - app:console - service - programming.scm - A compelling replacement for CVS - Bir sürüm kontrol sistemi - SVN est un gestionnaire de configuration permettant de stocker des fichiers et de contrôler leur historique de changement dans un dépôt. - SVN is a version controlling system to store files and control their change history in a repository. - Daha gelişmiş özellikleri olan ve önceki CVS yerine kullanılan, bir sürüm yönetim sistemidir. - http://archive.apache.org/dist/subversion/subversion-1.9.1.tar.bz2 - - apache - expat-devel - zlib-devel - ruby-devel - serf-devel - sqlite-devel - jdk7-openjdk - apr-util-devel - cyrus-sasl-devel - python-devel - dbus-devel - glib2-devel - openssl-devel - swig - - - subversion-swig-perl-install_vendor.patch - subversion.rpath.fix.patch - dont_compile_pyc.patch - - programming/scm/subversion/pspec.xml - - - subversion - - file - zlib - expat - libgcc - sqlite - apr - serf - apr-util - cyrus-sasl - - - /etc/conf.d - /etc/subversion - /etc/bash_completion.d - /usr/share/build - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man - /var/svn - - - System.Service - System.Package - - - svnserve.confd - subversion.config - - - - subversion-devel - Development files for subversion - Subversion için geliştirme dosyaları - - openssl-devel - apr-devel - serf-devel - sqlite-devel - apr-util-devel - subversion - - - /usr/include - /usr/share/pkgconfig - - - - mod_dav_svn - server.web - - apr - apache - apr-util - subversion - - - /usr/lib/apache2 - /usr/libexec/mod_dav_svn.so - /usr/libexec/mod_authz_svn.so - /etc/apache2/modules.d - /var/www/localhost/htdocs - - - System.Package - - - 47_mod_dav_svn.conf - - - - - 2015-09-04 - 1.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-04 - 1.8.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-14 - 1.8.10 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-06-21 - 1.8.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-03 - 1.8.8 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-03 - 1.8.5 - rebuild for openjdk - Kamil Atlı - suvarice@gmail.com - - - 2014-01-11 - 1.8.5 - rebuild for cyrus-sasl - Kamil Atlı - suvarice@gmail.com - - - 2013-12-28 - 1.8.5 - Fix Deps - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-12-24 - 1.8.5 - Version bump, fix deps, add mandatory serf dependency. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-30 - 1.8.1 - rebuild for perl-svn-simple - Kamil Atlı - suvarice@gmail.com - - - 2013-08-17 - 1.8.1 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-03 - 1.8.1 - *Version bump to 1.8.1 - *Disable neon as suggested in http://subversion.apache.org/docs/release-notes/1.8.html#neon-deleted - Fatih Turgel - hitaf@pisilinux.org - - - 2012-10-24 - 1.7.7 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - git - http://git-scm.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - programming.scm - Fast Version Control System - Hızlı Sürüm Denetim Sistemi - Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. - Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir. - GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos. - https://www.kernel.org/pub/software/scm/git/git-2.4.4.tar.xz - - tcltk-devel - openssl-devel - libpcre-devel - curl-devel - zlib-devel - expat-devel - xmlto - asciidoc - perl-Error - perl - libxslt - util-linux - - - project-root.patch - gitk-fonts.patch - git-1.5-gitweb-home-link.patch - git-cvsps-ignore.patch - fix-gitwebdir.patch - - programming/scm/git/pspec.xml - - - git - app:console - - perl-String-ShellQuote - perl-Net-SMTP-SSL - perl-Authen-SASL - perl-libwww - libpcre - perl-Git - openssh - openssl - rsync - expat - zlib - curl - - - /usr/bin - /usr/libexec/git-core - /etc/bash_completion.d - /usr/share/git-core - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - git-daemon - GIT protocol daemon - GIT protokolü hizmeti - service - - zlib - libpcre - git - - - /etc/conf.d/git-daemon - /usr/libexec/git-core/git-daemon - /usr/share/man/man1/*daemon*.1* - /pub/scm - - - System.Service - - - git-daemon.confd - - - - perl-Git - Perl interface to GIT - GIT için perl arayüzü - library - programming.language.perl - - perl-Error - perl - - - /usr/lib/perl5 - /usr/share/man/man3/Git.3pm - - - - gitk - Git revision tree visualiser - Git sürüm ağacı görüntüleyici - app:gui - - git - tcltk - - - /usr/bin/gitk - /usr/share/gitk - /usr/share/man/man1/*gitk*.1* - - - - git-gui - Git GUI tool - GIT için basit bir grafik arayüz - app:gui - - git - gitk - tcltk - - - /usr/libexec/git-core/git-gui* - /usr/libexec/git-core/git-citool - /usr/share/git-gui - /usr/share/man/man1/git-gui.1* - /usr/share/man/man1/git-citool.1* - - - - gitweb - Simple web interface to GIT repositories - GIT için Web arayüzü - interfaz web para GIT - app:web - server.web - - git - - - /var/www/localhost - /etc/conf.d/gitweb - /etc/apache2/conf.d - - - gitweb.confd - git.conf.httpd - - - - - 2015-06-20 - 2.4.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-04-04 - 2.3.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-07 - 2.3.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-19 - 2.2.2 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-09-13 - 2.1.0 - Rebuild for new perl. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-16 - 2.1.0 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-25 - 2.0.1 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-01 - 2.0.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-15 - 1.9.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-11 - 1.8.5.4 - Version bump and new rsync - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-21 - 1.8.4.4 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-29 - 1.8.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-21 - 1.8.3.2 - fix dep - Kamil Atlı - suvarice@gmail.com - - - 2013-07-04 - 1.8.3.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-08 - 1.8.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-29 - 1.8.1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-28 - 1.8.0.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libgit2 - https://libgit2.github.com - - Ertuğrul Erata - ertugrulerata@gmail.com GPLv2 app:gui - programming.scm - git c dili kütüphanesi - A linkable library for Git - git için c kütüphanesi - A plain C library to interface with the git version control system - libgit2 - https://github.com/libgit2/libgit2/archive/v0.23.0.tar.gz + office + Free, easy, personal accounting for everyone + Protein dizi analizi için profil SMM (Saklı Markov Modeli) yazılımı + «HomeBank» is free software that will assist you to manage your personal accounting. + HomeBank ("serbest konuşma" olarak ve "bedava bira" gibi) kişisel muhasebe yönetmek için yardımcı olacak ücretsiz bir yazılımdır.. + homebank + http://homebank.free.fr/public/homebank-5.0.5.tar.gz - zlib-devel - openssl-devel - python - cmake - - programming/scm/libgit2/pspec.xml - - - libgit2 - - zlib - openssl - - - /usr/lib - - - - libgit2-devel - - libgit2 - zlib - openssl - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-08-01 - 0.23.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libctemplate - https://github.com/OlafvdSpek/ctemplate - - Pisi Linux Community - admins@pisilinux.org - - BSD - library - programming.misc - CTemplate is a simple but powerful template language for C++. - It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. - https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.3.tar.gz - - glibc-devel - - programming/misc/libctemplate/pspec.xml - - - libctemplate - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libctemplate-devel - Development files for libctemplate - - libctemplate - - - /usr/include - - - - - 2015-11-22 - 2.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-29 - 2.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-05 - 2.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - npth - http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - New portable threads library - Yeni GNU Taşınabilir iş parçacıkları kitaplığı - Un librairie de threads portable pour les plateformes Unix. Elle permet la synchronisation non-préemptive pour l'exécution de threads ("multithreading") au sein d'applications serveur. - is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems. - Pth Unix platformları için derlenmiş taşınabilir kitaplığıdır. Bir çok iç sunucu uygulamalarının yerine getirilmesi işlerinin öncelikli olmayan planlamasını yapar. - ftp://ftp.gnupg.org/gcrypt/npth/npth-1.2.tar.bz2 - programming/misc/npth/pspec.xml - - - npth - - /usr/lib - /usr/share/doc - - - - npth-devel - Development files for pth - npth için geliştirme dosyaları - - npth - - - /usr/bin/npth-config - /usr/include - /usr/share/aclocal - /usr/share/man - - - - - 2015-04-12 - 1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - iniparser - http://ndevilla.free.fr/iniparser/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - app:console - programming.misc - A free ini file parsing library - Bir ini dosyası ayrıştırma kitaplığı - iniparser is a free stand-alone ini file parsing library written in portable ANSI C. - iniparser, ücretsiz ve ANSI C ile taşınabilir bir şekilde yazılmış INI dosyası ayrıştırma kitaplığıdır. - http://ndevilla.free.fr/iniparser/iniparser-3.1.tar.gz - - makefile.patch - - programming/misc/iniparser/pspec.xml - - - iniparser - - /usr/share/doc - /usr/lib - - - - iniparser-devel - Development files for iniparser - iniparser için geliştirme dosyaları - - iniparser - - - /usr/include - - - - - 2013-05-22 - 3.1 - rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-04-30 - 3.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2009-03-19 - 3.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libevent - http://monkey.org/~provos/libevent - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.misc - Une librairie pour exécuter une fonction lorsqu'un événement spécifique a lieu sur un descripteur (descriptor) de fichier. - A library to execute a function when a specific event occurs on a file descriptor - Dosya tanımlayıcıları üzerindeki belirli değişiklerde belirli fonksiyonların çalıştırılmasını sağlayan bir kitaplığı - The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop. - libevent dosya tanımlayıcısında tanımlı bir olay oluştuğunda ya da zamanaşımı olduğunda belirlenmiş fonksiyonların çalıştırılma mekanizmasını sağlar. Olay güdümlü(event-driven) ağ sunucularının bulundurduğu asenkron olay döngülerinin(event-loop) yerine alması anlamına gelir. Uygulamanın olay döngüsünü degiştirmek zorunda kalmadan dinamik olarak olay ekleme ve silme işlemlerini yapabilmek için yalnızca event_dispatch() fonksiyonunu çağırması yeterli olur. - https://github.com/libevent/libevent/archive/release-2.0.22-stable.tar.gz - - openssl-devel - zlib-devel - - - libevent-linkage_fix.diff - libevent-2.0.13-manpages-on.patch - - programming/misc/libevent/pspec.xml - - - libevent - - openssl - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libevent-devel - Development files for libevent - libevent için geliştirme dosyaları - - libevent - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-07-30 - 2.0.22 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-31 - 2.0.21 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-25 - 2.0.21 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-27 - 2.0.21 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-03-27 - 2.0.21 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-10-14 - 2.0.20 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xsd - http://www.codesynthesis.com/products/xsd - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - An open-source, cross-platform W3C XML Schema to C++ data binding compiler - Kompilator schematów W3C XML do wiązań danych C++ - CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. Provided with an XML instance specification (XML Schema), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. You can then access the data stored in XML using types and functions that semantically correspond to your application domain rather than dealing with intricacies of reading and writing XML. - CodeSynthesis XSD to mający otwarte źródła wieloplatformowy kompilator schematów W3C XML do wiązań danych C++. Na podstawie specyfikacji instancji XML (schematu XML) generuje klasy C++ reprezentujące podany słownik, a także kod analizujący i serializujący. Następnie można odwoływać się do danych zapisanych w XML-u przy użyciu typów i funkcji semantycznie odpowiadających działaniu aplikacji, bez zajmowania się skomplikowaniem odczytu i zapisu XML-a. - http://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2 - - xerces-c-devel - boost-devel - - - xsdcxx.patch - - programming/misc/xsd/pspec.xml - - - xsd - - xerces-c - boost - - - /usr/bin - /usr/share/man - - - - xsd-devel - Development files for xsd - xsd için geliştirme dosyaları - Pliki nagłówkowe xsd - - xsd - - - /usr/include - /usr/lib/pkgconfig - - - - xsd-docs - Document files for xsd - - xsd - - - /usr/share/doc - - - - - 2014-12-24 - 4.0.0 - Rebuild for boost. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-20 - 3.3.0 - Rebuild for boost. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-09 - 3.3.0 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 3.3.0 - Rebuild for icu4c - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-07 - 3.3.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libxmlpp - http://libxmlplusplus.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C++ wrapper for the libxml2 XML parser library - libxml++ is a C++ wrapper for the libxml XML parser library. - http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/2.38/libxml++-2.38.1.tar.xz - - glibmm-devel - libsigc++-devel - libxml2-devel - - programming/misc/libxmlpp/pspec.xml - - - libxmlpp - - libgcc - libxml2 - glibmm - - - /usr/lib - /usr/share/doc - - - - libxmlpp-devel - Development files for libxmlpp - libxmlpp için geliştirme dosyaları - - libxmlpp - glibmm-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/libxml++-2.6 - - - - libxmlpp-docs - Development documents for libxmlpp in HTML - libxmlpp için HTML formatında geliştirme belgeleri - - /usr/share/doc/libxmlpp/html - /usr/share/devhelp - - - - - 2015-05-21 - 2.38.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2013-10-29 - 2.37.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2011-03-16 - 2.33.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dbus-c++ - http://sourceforge.net/projects/dbus-cplusplus/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C++ bindings for DBus library - DBus kitaplığı için C++ bağlayıcıları - dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk and an Ecore mainloop integration. It also offers an optional own main loop. - dbus-c++, DBus kitaplığı için C++ programlama arayüzü sunan bir kitaplıktır. - http://source.pisilinux.org/1.0/dbus-c++.tar.gz - - dbus - libgcc - expat - glib2 - - - dbus-c++-build-fix.patch - dbus-c++-linkfix.patch - gcc-44.patch - - programming/misc/dbus-c++/pspec.xml - - - dbus-c++ - - dbus - libgcc - expat - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - - - - dbus-c++-devel - - dbus-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-01-21 - 0.0_20090907 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-03-07 - 0.0_20090907 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libdbusmenu-qt - https://launchpad.net/libdbusmenu-qt - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - Qt implementation of the DBusMenu spec - DBusMenu spesifikasyonunun Qt gerçeklemesi - libdbusmenu-qt library provides a Qt implementation of the DBusMenu spec. - libdbusmenu-qt kitaplığı DBusMenu spesifikasyonunun Qt gerçeklemesini sağlar. - http://archive.ubuntu.com/ubuntu/pool/main/libd/libdbusmenu-qt/libdbusmenu-qt_0.9.3+15.10.20150604.orig.tar.gz - - libqjson-devel - mesa-devel - qt5-base-devel - doxygen - cmake - - programming/misc/libdbusmenu-qt/pspec.xml - - - libdbusmenu-qt - - qt5-base - libgcc - - - /usr/lib - /usr/share/doc - - - - libdbusmenu-qt-devel - Development files for libdbusmenu-qt - libdbusmenu-qt için geliştirme dosyaları - - libdbusmenu-qt - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-18 - 0.9.3_20150604 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 0.9.2 - rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-08 - 0.9.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 0.9.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-29 - 0.9.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libgsf - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - programming.misc - Gnome structured file library - Gnome yapılandırılmış dosya kitaplığı - The libgsf is a library for reading and writing structured files (eg MS OLE and Zip). - Libgsf MS, OLE ve Zip gibi yapılandırılmış dosyaları okuyup yazmaya yarayan bir kitaplığıdır. - mirrors://gnome/libgsf/1.14/libgsf-1.14.31.tar.xz - - libbonobo-devel - gtk2-devel - python-gtk-devel - orbit2-devel - glib2-devel - libxml2-devel - intltool - gettext-devel - perl - gobject-introspection-devel - gtk-doc + cairo-devel + libofx-devel + pango-devel gdk-pixbuf-devel - - programming/misc/libgsf/pspec.xml - - - libgsf - app:console - library - - zlib - bzip2 - glib2 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/thumbnailers/gsf-office.thumbnailer - /usr/share/gir-1.0/Gsf-1.gir - /usr/share/man - - - - libgsf-gnome - Gnome support for libgsf - libgsf için Gnome desteği - app:console - library - - libgsf - gdk-pixbuf - - - /etc - /usr/bin/gsf-office-thumbnailer - /usr/lib/libgsf-gnome* - /usr/lib/python*/site-packages/gsf/gnome* - /usr/share/man/man1/gst-office-thumbnailer* - - - - libgsf-docs - Libgsf reference documents - libgsf referans belgeleri - data:doc - - libgsf - - - /usr/share/doc - /usr/share/gtk-doc - - - - libgsf-devel - Development files for libgsf - libgsf paketi geliştirme dosyaları - library - - libgsf - libgsf-gnome - libbonobo-devel - glib2-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-02-07 - 1.14.31 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-24 - 1.14.30 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 1.14.30 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-27 - 1.14.28 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 1.14.25 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-02-23 - 1.14.25 - version bump, fix-call missing Gsf-1.gir - Erdinç Gültekin - admins@pisilinux.org - - - 2012-10-02 - 1.14.24 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libnice - http://nice.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - LGPLv2.1 - app:console - library - programming.misc - GLib ICE library - GLIB ICE kitaplığı - Nice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE). - Nice, IETF'ye ait bir taslak olan Etkileşimli Bağlanırlık Birliği standardı uygulamasıdır. - http://nice.freedesktop.org/releases/libnice-0.1.13.tar.gz - - glib2-devel - gobject-introspection-devel - gstreamer-devel - - programming/misc/libnice/pspec.xml - - - libnice - - glib2 - libxml2 - gstreamer - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - libnice-devel - Development files for libnice - libnice için geliştirme dosyaları - - libnice - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-27 - 0.1.13 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-10 - 0.1.4 - runtime dep. fixed - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.1.4 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-04-19 - 0.1.4 - build with gst-10 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-04-12 - 0.1.4 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.1.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libical - https://github.com/libical/libical - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - LGPLv2 - library - programming.misc - An open source reference implementation of the icalendar data type and serialization format - icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi - libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. - libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar. - https://github.com/libical/libical/releases/download/v1.0.1/libical-1.0.1.tar.gz - - cmake - - programming/misc/libical/pspec.xml - - - libical - - /usr/lib - /usr/share/libical/zoneinfo - - - - libical-devel - Development files for libical - libical için geliştirme dosyaları - - libical - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-06 - 1.0.1 - Version bump, fix date - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-01 - 1.0 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-27 - 1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 0.48 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xapian-core - http://www.oligarchy.co.uk/xapian - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - programming.misc - Probabilistic Information Retrieval library - İstatistiksel Bilgi Çıkarma kitaplığı - Xapian is an Open Source Probabilistic Information Retrieval Library. It offers a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to applications. - Xapian, Açık Kaynak Kodlu bir İstatistiksel Bilgi Çıkarma kitaplığıdır. Geliştiricilerin uygulamalara kolaylıkla gelişmiş kataloglama ve arama becerileri eklemelerini sağlayan hayli uyumlu bir araç takımına sahiptir. - http://oligarchy.co.uk/xapian/1.2.18/xapian-core-1.2.18.tar.xz - - zlib-devel - libutil-linux-devel - - programming/misc/xapian-core/pspec.xml - - - xapian-core - - zlib - libutil-linux - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - xapian-core-devel - Development headers for xapian-core - xapian-core için geliştirme başlıkları - xapian-core-devel provides development headers for xapian-core. - xapian-core-devel, xapian-core için geliştirme başlıklarını içerir. - library - - xapian-core - - - /usr/bin/xapian-config* - /usr/include - /usr/lib/cmake/xapian - /usr/share/aclocal - - - - xapian-core-docs - Documentation files for xapian-core - xapian-core için belgelendirme dosyaları - xapian-core-docs provides documentation files for xapian-core. - xapian-core-docs, xapian-core için belgelendirme dosyalarını içerir. - data:doc - - xapian-core - - - /usr/share/doc/xapian-core/*html - /usr/share/doc/xapian-core/apidoc.pdf - /usr/share/doc/xapian-core/apidoc/ - - - - - critical - 2014-09-02 - 1.12.18 - Version down for baloo seg fault. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-25 - 1.3.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-28 - 1.3.1 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-19 - 1.2.12 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - flann - http://www.cs.ubc.ca/research/flann/ - - Osman Erkan - osman.erkan@pisilinux.org - - BSD - library - programming.misc - FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional space. - FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset. - http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip - - cmake - - programming/misc/flann/pspec.xml - - - flann - - libgcc - libgomp - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/flann - - - - flann-devel - Development files for flann - - flann - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-25 - 1.8.4 - First release. - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libnotify - http://www.galago-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - Desktop notification library - Masaüstü bildirim kitaplığı - Envoie les notifications bureautiques à un daemon de notification. - libnotify sends desktop notifications to a notification daemon. - Libnotify, masaüstü uyarılarını uyarı birimine gönderir. - Envía notificaciones de escritorio al demonio de notificaciones - http://ftp.acc.umu.se/pub/GNOME/sources/libnotify/0.7/libnotify-0.7.6.tar.xz - + pixman-devel gtk3-devel - gdk-pixbuf-devel - gnome-common - libepoxy-devel - at-spi2-core-devel - gobject-introspection-devel - gtk-doc - - programming/misc/libnotify/pspec.xml - - - libnotify - - gdk-pixbuf - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/gir-1.0/ - /usr/share/gtk-doc/html - - - - libnotify-devel - Development files for libnotify - libnotify için geliştirme dosyaları - - libnotify - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-31 - 0.7.6 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-27 - 0.7.6 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-28 - 0.7.5 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-23 - 0.7.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libdaemon - http://0pointer.de/lennart/projects/libdaemon - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Library for writing UNIX daemons - UNIX hizmetleri yazmak için bir kitaplığı - libdaemon is a lightweight C library which eases the writing of UNIX daemons. - libdaemon, UNIX hizmetleri yazmayı kolaylaştıran hafif bir C kitaplığıdır. - http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz - programming/misc/libdaemon/pspec.xml - - - libdaemon - - /usr/lib - /usr/share/doc - - - - libdaemon-devel - Development files for libdaemon - libdaemon için geliştirme dosyaları - - libdaemon - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man/man3 - - - - libdaemon-32bit - 32-bit shared libraries for libdaemon - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libdaemon - - - /usr/lib32 - - - - - 2014-03-09 - 0.14 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 0.14 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-02-15 - 0.14 - add emul32 - Erdinç Gültekin - admins@pisilinux.org - - - 2010-10-12 - 0.14 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libqjson - http://qjson.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Qt-based library that maps JSON data to QVariant objects - Qt tabanlı bu kitaplığı JSON data haritalarını QVariant nesnelere dönüştürür - Implementacja Qt formatu JSON - libqjson, (JavaScript Object Notation) is a lightweight data-interchange format. It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs. - libqjson, (JavaScript Object Notation) bir veri değişim biçimidir. JSON haritalarını QVariant nesnelere dönüştürür.. - http://source.pisilinux.org/1.0/qjson-0.82_d0f62e65.tar.gz - - qt5-base-devel - cmake - - programming/misc/libqjson/pspec.xml - - - libqjson - - qt5-base - libgcc - - - /usr/lib - /usr/share/doc - - - - libqjson-devel - Development files for libqjson - libqjson için geliştirme dosyaları - Pliki nagłówkowe do libqjson - - libqjson - qt5-base-devel - - - /usr/include/qjson - /usr/lib/pkgconfig - /usr/lib/cmake/qjson - - - - - 2015-10-18 - 0.82_p1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 0.8.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.8.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 0.8.1 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-01-08 - 0.8.1 - First release - Idris Kalp - yaralikurt15@hotmail.com - - - - - - libtevent - http://tevent.samba.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - programming.misc - Event system based on the talloc memory management library - talloc bellek yönetim kitaplığına dayanan olay sistemi kitaplığı - libtevent is an event system based on the talloc memory management library. It is the core event system used in Samba. Tevent has support for many event types, including timers, signals, and the classic file descriptor events. - libtevent Samba uygulamasının en temel olay sistem kitaplığıdır. Zamanlayıcı, dosya tanımlayıcı gibi çeşitli olay türlerini desteklemektedir. - http://samba.org/ftp/tevent/tevent-0.9.25.tar.gz - - python-devel - gdb-devel - libtalloc-devel - libxslt - docbook-xsl - - programming/misc/libtevent/pspec.xml - - - libtevent - - libtalloc - python - - - /usr/lib - - - - libtevent-devel - Development files for libtevent - libtevent için geliştirme dosyaları - - libtevent - libtalloc-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-30 - 0.9.25 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 0.9.21 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-23 - 0.9.21 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.9.18 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-08-17 - 0.9.18 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 0.9.18 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-26 - 0.9.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - boost - http://boost.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language - Peer-reviewed portable C++ source libraries - Açık kaynak kodlu ve taşınabilir C++ kaynak kitaplıkları - Boost propose des librairies C++ gratuites, portables et relues en comité. L'accent est porté sur les librairies portables qui fonctionnent bien avec la Librairie Standard C++. - Boost provides free portable peer-reviewed C++ libraries. The emphasis is on portable libraries which work well with the C++ Standard Library. - Boost, kaynak kodları gözden geçirilmiş C++ kitaplıklarını içerir. - mirrors://sourceforge/boost/boost_1_58_0.tar.bz2 - - icu4c-devel - zlib-devel - python-devel - bzip2 - libxslt - - - boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch - - programming/misc/boost/pspec.xml - - - boost - - icu4c - zlib - bzip2 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/boostbook - - - - boost-devel - Headers and library documentation for boost - boost için başlık dosyaları ve kitaplık belgeleri - data:doc - - boost - - - /usr/include - /usr/share/doc/*/html - - - - - 2015-07-20 - 1.58.0 - Version bump, openmpi disabled. - Ali Algul - alialgul@pisilinux.org - - - 2014-12-19 - 1.57.0 - Version bump. - Ergün Salman Aydemir - poyraz76@pisilinux.org - - - 2014-05-19 - 1.55.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-07 - 1.54.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 1.53.0 - Rebuild for icu4c - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-04 - 1.53.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-14 - 1.52.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - json-glib - http://live.gnome.org/JsonGlib - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.misc - Library for JavaScript Object Notation format - JavaScript Nesne Notasyon biçimi için bir kitaplık - json-glib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format. - json-glib JavaScript Nesne Notasyon (JSON) biçimi için serileştirme ve ters serileştirme sağlayan bir kitaplıktır. - mirrors://gnome/json-glib/1.0/json-glib-1.0.2.tar.xz - - gobject-introspection-devel glib2-devel - - programming/misc/json-glib/pspec.xml - - - json-glib - - gobject-introspection - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/locale - - - - json-glib-devel - Development files for json-glib - json-glib için geliştirme dosyaları - - json-glib - glib2-devel - - - /usr/include - /usr/share/gir* - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - json-glib-32bit - 32-bit shared libraries for json-glib - json-glib için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - glibc-32bit - glib2-32bit - - - glibc-32bit - glib2-32bit - json-glib - - - /usr/lib32 - - - - - 2015-03-18 - 1.0.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-18 - 1.0.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-30 - 1.0.0 - 32bit split packages. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-30 - 1.0.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-13 - 0.16.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-09 - 0.16.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-26 - 0.15.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - apr-util - http://apr.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Apache portable runtime utils - Apache çalışma ortamı araçları (eski sürüm) - L'Apache Portable Runtime Utils (APR-Utils) contient des interfaces utilitaires supplémentaires pour APR fournissant un support pour, XML, LDAP,des interfaces pour les bases de données, d'analyse d'URI, et plus encore. La numéro de version majeur commence par un 1. - Apache portable runtime utils (APR-Util) contains additional utility interfaces for APR; including support for XML, database interfaces, URI parsing and more. - Apache portatif çalışma ortamı araçları (APR-Util) ek arabirimleri içerir; XML, LDAP, veritabanı, URI ve diğer arabirimler. Bu sürüm 0 ile başlar. - Narzędzie APR to biblioteka narzędziowa zaimplementowana na bazie apr, oferująca dostęp do bazy danych, przetwarzanie XML oraz inne przydatne funkcje. - mirrors://apache/apr/apr-util-1.5.4.tar.bz2 - - db-devel - zlib-devel - expat-devel - sqlite-devel - libutil-linux-devel - openssl-devel - unixODBC-devel - apr-devel - mariadb-lib - postgresql-lib - cyrus-sasl-devel - openldap-client - - programming/misc/apr-util/pspec.xml - - - apr-util - - db - zlib - expat - sqlite - libutil-linux - openssl - apr - unixODBC - mariadb-lib - postgresql-lib - cyrus-sasl - openldap-client - - - /usr/lib - /usr/share/doc - /usr/bin - - - - apr-util-devel - Development files for apr-util - - apr-util - apr-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-01 - 1.5.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-23 - 1.5.3 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-20 - 1.5.3 - Rebuild for Mariadb. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-09 - 1.5.3 - Rebuild for cyrus-sasl and openldap - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-28 - 1.5.3 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2013-04-23 - 1.4.1 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-09-29 - 1.4.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libsoup - http://live.gnome.org/LibSoup - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - An HTTP library implementation in C - C için HTTP kitaplık gerçekleyicisi - libsoup is an HTTP client/server library for GNOME. - libsoup, GNOME için HTTP istemci / sunucu kitaplığıdır. - mirrors://gnome/libsoup/2.50/libsoup-2.50.0.tar.xz - - libgcrypt-devel - gtk-doc - glib2-devel - libxml2-devel - sqlite-devel - intltool gettext-devel + pkgconfig + libofx-devel + intltool + at-spi2-core-devel - programming/misc/libsoup/pspec.xml + office/homebank/pspec.xml - libsoup + homebank - glib2 - libxml2 - sqlite - glib-networking - - - /usr/lib - /usr/share/doc - /usr/share/locale/ - /usr/lib/girepository-1.0/Soup-2.4.typelib - - - - libsoup-gnome - - glib2 - libsoup - - - /usr/lib/lib*gnome* - /usr/lib/girepository-1.0/SoupGNOME-2.4.typelib - - - - libsoup-docs - libsoup reference documents - libsoup başvuru belgeleri - data:doc - - libsoup - - - /usr/share/gtk-doc - - - - libsoup-devel - Development files for libsoup - libsoup için geliştirme dosyaları - - glib2-devel - libxml2-devel - libsoup - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libsoup-32bit - 32-bit shared libraries for libsoup - libsoup için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - glib2-32bit - sqlite-32bit - libxml2-32bit - glibc-32bit - - - glib2-32bit - sqlite-32bit - libxml2-32bit - glibc-32bit - libsoup - - - /usr/lib32 - - - - - 2015-06-14 - 2.50.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-20 - 2.49.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-25 - 2.46.0 - Rebuil. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 2.46.0 - 32bit split packages. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-30 - 2.46.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02.20 - 2.44.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10.10 - 2.44.0 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-03-08 - 2.41.91 - bump - Erdinç Gültekin - erdincgultekin@gmail - - - 2013-01-29 - 2.40.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-14 - 2.40.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libspectre - http://libspectre.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - A small library for rendering Postscript documents - Postscript belgeleri görüntüleştirme için küçük bir kitaplığı - libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. - libspectre, postscript belgeleri görüntüleştirme için kullanımı kolay bir API sağlar. - http://libspectre.freedesktop.org/releases/libspectre-0.2.7.tar.gz - - ghostscript-devel cairo - - programming/misc/libspectre/pspec.xml - - - libspectre - - ghostscript - - - /usr/lib - /usr/share/doc - - - - libspectre-devel - Development files for libspectre - libspectre için geliştirme dosyaları - - libspectre - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libspectre-32bit - 32-bit shared libraries for libspectre - emul32 - emul32 - - ghostscript-32bit - - - libspectre - ghostscript-32bit - - - /usr/lib32 - - - - - 2015-11-02 - 0.2.7 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-07-30 - 0.2.7 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-01-22 - 0.2.7 - Version bump, add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-14 - 0.2.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - yajl - http://lloyd.github.com/yajl - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - programming.misc - Yet Another JSON Library (YAJL) - JSON kitaplığı - yajl is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator. - yajl, ANSI C ile yazılmış olay-tabanlı (SAX tarzı) ufak bir JSON ayıklayıcıdır. - http://github.com/lloyd/yajl/tarball/2.1.0/lloyd-yajl-2.1.0.tar.gz - - cmake - - programming/misc/yajl/pspec.xml - - - yajl - - /usr/bin - /usr/lib - /usr/share/doc - - - - yajl-devel - Development headers for yajl - yajl kitaplığı için geliştirme başlıkları - - yajl - - - /usr/include - /usr/share/pkgconfig - - - - - 2015-12-31 - 2.1.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-01-17 - 2.0.1 - Rebuild for 1.0, change URL - Richard de Bruin - richdb@pisilinux.org - - - 2012-08-21 - 2.0.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - geoip - http://www.maxmind.com/geoip/api/c.shtml - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C library for country/city/organization to IP address or hostname mapping - Ülke/şehir/organizasyon adı ile IP adresi veya makine adı eşleştirmesi için C kitaplığı - GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. - GeoIP, herhangi bir IP adresinin veya makine adının hangi ülkeye ait olduğunu bulmak için kullanılan bir C kitaplığıdır. - https://github.com/maxmind/geoip-api-c/releases/download/v1.6.2/GeoIP-1.6.2.tar.gz - programming/misc/geoip/pspec.xml - - - geoip - - /etc - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/GeoIP - - - - geoip-devel - Geoip için geliştirme dosyaları - - geoip - - - /usr/include - - - - - 2014-07-14 - 1.6.2 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-12 - 1.5.1 - rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2014-01-23 - 1.5.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2011-05-30 - 1.4.7 - First release - Ertuğrul Erata - admins@pisilinux.org - - - - - - libwpg - http://libwpg.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C++ library designed to help process WordPerfect Graphics documents - WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı - Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations. - Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır. - http://dev-www.libreoffice.org/src/libwpg-0.3.0.tar.bz2 - - doxygen - libwpd-devel - libtool - grep - pkgconfig - - programming/misc/libwpg/pspec.xml - - - libwpg - - libwpd - librevenge - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libwpg-devel - Development files for libwpg - libwpg için geliştirme dosyaları - - libwpd-devel - librevenge-devel - libwpg - - - /usr/include - /usr/lib/pkgconfig - - - - libwpg-docs - Documentation for libwpg - - /usr/share/doc/libwpg/html - - - - - 2015-01-02 - 0.3.0 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-26 - 0.3.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-24 - 0.2.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-29 - 0.2.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-14 - 0.2.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - ragel - http://www.complang.org/ragel/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - programming.misc - Ragel compiles executable finite state machines from regular languages. - Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. - http://fossies.org/linux/misc/ragel-6.9.tar.gz - programming/misc/ragel/pspec.xml - - - ragel - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/vim/ - - - - - 2015-11-19 - 6.9 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xerces-c - http://xml.apache.org/xerces-c - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Xerces-C++ is a validating XML parser written in a portable subset of C++ - C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcı - Xerces-C++ est un analyseur XML validant écrit dans un sous-ensemble portable du C++. - Xerces-C++ is a validating XML parser written in a portable subset of C++. - Xerces-C++, C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcıdır. - Xerces-C++ es un analizador XML con validación, escrito con un subconjunto portable de C++ - http://mirror.metrocast.net/apache//xerces/c/3/sources/xerces-c-3.1.2.tar.gz - - icu4c-devel - curl-devel - libgcc - - programming/misc/xerces-c/pspec.xml - - - xerces-c - - icu4c - curl - libgcc - - - /usr/bin - /usr/lib - - - - xerces-c-devel - Development files for xerces-c - xerces-c için geliştirme dosyaları - - xerces-c - - - /usr/include - /usr/lib/pkgconfig - - - - xerces-c-docs - Document files for xerces-c - xerces-c için yardım dosyaları ve API belgeleri - - xerces-c - - - /usr/share/doc - - - - - 2015-11-03 - 3.1.2 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-20 - 3.1.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-18 - 3.1.1 - Rebuild for 1.0 - Richard de Bruin - richdb@pisilinux.org - - - 2010-10-21 - 3.1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libedit - http://www.thrysoee.dk/editline - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.misc - An autotool and libtoolized port of the NetBSD Editline library - NetBSD Editline kitaplığının Linux portu - libedit is a command line editing and history library. It is designed to be used by interactive programs that allow the user to type commands at a terminal prompt. - libedit, geçmiş bilgisini ve komut satırı düzenleme işlerini kolaylaştıran bir kitaplıktır. - http://thrysoee.dk/editline/libedit-20150325-3.1.tar.gz - - ncurses-devel - - programming/misc/libedit/pspec.xml - - - libedit - - ncurses - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libedit-devel - Development files for libedit - libedit için geliştirme dosyaları - - libedit - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-06-25 - 3.1_20150325 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-19 - 3.1_20140213 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-27 - 3.1_20130712 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-17 - 3.0_20120601 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libyaml - http://pyyaml.org/wiki/LibYAML - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - YAML 1.1 parser and emitter written in C - C ile yazılmış YAML 1.1 ayrıştırıcısı - libyaml is a YAML 1.1 parser and emitter written in C. - libyaml C ile yazılmış bir YAML 1.1 ayrıştırıcısıdır. - http://pyyaml.org/download/libyaml/yaml-0.1.5.tar.gz - programming/misc/libyaml/pspec.xml - - - libyaml - - /usr/lib - /usr/share/doc - - - - libyaml-devel - Development headers for libyaml - libyaml için başlık dosyaları - libyaml-devel provides development headers for libyaml. - libyaml-devel, libyaml için başlık dosyalarını içerir. - - libyaml - - - /usr/include - /usr/share/doc/libyaml/html/ - - - - - 2015-07-22 - 0.1.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-10-29 - 0.1.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-12 - 0.1.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - grantlee-qt5 - https://github.com/simonwagner/grantlee - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.misc - Qt string template engine based on the Django template system - grantlee is a plugin based String Template system written using the Qt framework. The goals of the project are to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming. - http://source.pisilinux.org/1.0/grantlee-5.0.0.tar.gz - - mesa-devel - qt5-base-devel - qt5-script-devel - qt5-linguist - cmake - - programming/misc/grantlee-qt5/pspec.xml - - - grantlee-qt5 - - qt5-base - qt5-script - libgcc - - - /usr/bin - /etc - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - grantlee-qt5-devel - Development files for grantlee - - grantlee-qt5 - qt5-base-devel - qt5-script-devel - - - /usr/include - /usr/lib/grantlee/*.cmake - - - - - 2015-10-18 - 5.0.0 - First release,rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libassuan - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - programming.misc - Librairie IPC (communication inter-processus) auto-suffisante utilisée par gpg, gpgme et newpg. - IPC library for GnuPG related projects - GnuPG, GPGME ve newpg tarafından kullanılan IPC kitaplığı - This is the IPC library used by GnuPG 2, GPGME and a few other packages. - ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-2.2.1.tar.bz2 - - libgpg-error-devel - - programming/misc/libassuan/pspec.xml - - - libassuan - - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/info - - - - libassuan-devel - Development files for libassuan - libassuan için geliştirme dosyaları - - libassuan - - - /usr/include - /usr/share/aclocal - - - - - 2015-08-21 - 2.2.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-13 - 2.2.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-31 - 2.1.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-13 - 2.1.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-29 - 2.0.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vigra - http://ukoethe.github.io/vigra - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.misc - Generic programming library for computer vision - Bilgisayarlı görü (computer vision) için genel programlama kitaplığı - vigra stands for "Vision with Generic Algorithms". It's a novel computer vision library that puts its main emphasis on customizable algorithms and data structures. - vigra, "Genel Algoritmalarla Görü (Vision with Generic Algorithms)" anlamına gelir. Özelleştirilebilir algoritma ve veri yapılarını vurgulayan yeni bir bilgisayarlı görü kitaplığıdır. - https://github.com/ukoethe/vigra/archive/Version-1-10-0.tar.gz - - cmake - doxygen - tiff-devel - hdf5-devel - fftw3-devel - boost-devel - python-nose - python-sphinx - libpng-devel - python-numpy - python-devel - openexr-devel - libjpeg-turbo-devel - - - disable-doc.patch - - programming/misc/vigra/pspec.xml - - - vigra - - hdf5 - tiff - boost - fftw3 - libgcc - libpng - python - ilmbase - openexr-libs - libjpeg-turbo - - - /usr/lib - /usr/share/doc - /usr/bin - - - - vigra-devel - Development files for vigra - vigra için geliştirme dosyaları - - vigra - - - /usr/include - /usr/lib/vigra/*.cmake - - - - - 2015-02-03 - 1.10.0 - Rebuild for openexr - Yusuf Aydemir - yusuf.aydemir@gmail.com - - - - - - libsigc++ - http://libsigc.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Système de rappels à types sûrs (typesafe callback) pour C++. - Typesafe signal framework for C++ - C++ için sinyal altyapısı - libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. - libsigc++, widget kitaplıkları, soyut arabirimlerde ve genel programlama esnasında kullanılmak üzere tasarlanmış bir sinyal ve callback altyapısıdır. - mirrors://gnome/libsigc++/2.4/libsigc++-2.4.1.tar.xz - programming/misc/libsigc++/pspec.xml - - - libsigc++ - - libgcc - - - /usr/lib - /usr/share/doc - - - - libsigc++-devel - Development files for libsigc++ - libsigc++ için geliştirme dosyaları - - libsigc++ - - - /usr/include - /usr/lib/sigc++*/include - /usr/lib/pkgconfig - - - - libsigc++-docs - Development documents for libsigc++ - libsigc++ için geliştirme belgeleri - - /usr/share/doc/libsigc++/html - - - - - 2015-07-21 - 2.4.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2013-05-18 - 2.3.1 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-03-04 - 2.3.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-29 - 2.2.11 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - icu4c - http://site.icu-project.org/home - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.misc - International Components for Unicode - Unicode desteği için uluslarası bileşenler - ICU est un ensemble mature de librairies C/C++ et Java pour le support de l'Unicode, l'internationalisation et la globalisation de logiciel (i18n/g11n). Ce paquet contient les librairies C/C++. - ICU is a mature, widely used set of C/C++ and Java libraries for Unicode support, software internationalization and globalization (i18n/g11n). This package contains the C/C++ libraries. - ICU, Unicode desteği, yazılım uluslararasılaştırma ve yerelleştirme konusunda yaygın olarak kullanılan gelişmiş bir kitaplıktır. ICU, Unicode ve u10a desteği için C/C++ ve Java kitaplıklarını içerir. - ICU es un conjunto maduro y muy utilizado de librerías C/C++ y Java para soporte Unicode, internacionalización y globalización de software (i18n/g11n). Este paque te contiene las librerías C/C++. - http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.tgz - - libgcc - - programming/misc/icu4c/pspec.xml - - - icu4c - - libgcc - - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc/icu4c/html - - - - icu4c-devel - Development files for icu4c - icu4c için geliştirme dosyaları - - icu4c - - - /usr/bin/icu-config - /usr/lib/icu - /usr/share/icu - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig/ - - - - icu4c-32bit - 32-bit shared libraries for icu4c - emul32 - _emul32 - - libgcc - glibc-32bit - - - icu4c - libgcc - glibc-32bit - - - /usr/lib32/libicu* - /usr/lib32/icu - - - - - 2015-07-03 - 55.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-22 - 54.1 - Version bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2014-05-17 - 53.1 - Version bump and add patch. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-13 - 52.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-27 - 51.2 - Move pc files to devel pack, rebuild + V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-05-15 - 51.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-22 - 50.1.2 - Version bump, add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-24 - 50.1.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - dotconf - http://www.opentts.org/projects/dotconf - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A library to parse configuration files - Yapılandırma dosyası ayıklama kitaplığı - dotconf is a simple-to-use and powerful configuration file parser library written in C. - dotconf C dilinde yazılmış, basit kullanımlı ve güçlü bir yapılandırma dosyası ayıklama kitaplığıdır. - http://source.pisilinux.org/1.0/dotconf-1.3.tar.gz - programming/misc/dotconf/pspec.xml - - - dotconf - - /usr/lib - /usr/share/doc - - - - dotconf-devel - Development headers and documentation for dotconf - dotconf kitaplığı için geliştirme başlıkları ve belgeleri - - dotconf - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/dotconf/examples - /usr/share/doc/dotconf/dotconf-api.txt - - - - - 2015-08-25 - 1.3 - First release. - Vedat Demir - vedat@pisilinux.org - - - - - - libinput - http://www.freedesktop.org/wiki/Software/libinput/ - - Alihan Öztürk - alihan@pisilinux.org - - X11 - app:console - programming.misc - library that handles input devices for display servers and other applications that need to directly deal with input devices. - libinput Wayland Campasitars giriş aygıtları işlemek için ve genel X.Org giriş sürücü sağlamak için bir kütüphane. - It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect. - Bu yüzden kullanıcıların beklediği fonksiyonellik ortak kümesi sağlamak için gereken özel giriş kodu compositors miktarını en az indirerek, aygıt kullanımı, giriş aygıtı olay işleme ve soyutlama sağlar. - http://www.freedesktop.org/software/libinput/libinput-0.20.0.tar.xz - - libevdev - eudev-devel - libmtdev-devel - - programming/misc/libinput/pspec.xml - - - libinput - - eudev - libevdev - libmtdev - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - libinput-devel - Development files for libinput - - libinput - eudev-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-21 - 0.20.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-02-16 - 0.10.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-10-25 - 0.6.0 - Add symbolic link. - Ekin Dursun - ekin.dursun@pisilinux.org - - - 2014-09-19 - 0.6.0 - Version bump.. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-27 - 0.2.0 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - apr - http://apr.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Apache portable runtime library - Apache portatif çalışma ortamı kitaplığı (eski sürüm) - Apache Portable Runtime – przenośna biblioteka uruchomieniowa - L'Apache Portable Runtime (APR) a pour mission de fournir une librairie libre C de structures de donnés et de routines. Le numéro de version majeur commence par un 0. - The mission of the Apache portable runtime (APR) is to provide a free library of C data structures and routines. - Apache portatif çalışma ortamı kitaplığı (APR), C data yapıları için özgür kitaplığı sağlar. Bu sürüm 0 ile başlar. - APR to Przenośna Biblioteka Fazy Wykonywania Apache, zaprojektowana jako biblioteka wspomagająca, która udostępnia przewidywalny i spójny interfejs do podstawowych, specyficznych dla platformy implementacji. - mirrors://apache/apr/apr-1.5.2.tar.gz - - libutil-linux-devel - - programming/misc/apr/pspec.xml - - - apr - - libutil-linux - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/aclocal - /usr/lib/apr-1/build - - - - apr-devel - Development files for apr - Development files for apr - - apr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-09-01 - 1.5.2 - Version bump, fix deps. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-19 - 1.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-28 - 1.5.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-05-26 - 1.4.6 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libIDL - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Constructeur d'arbre CORBA - CORBA tree builder - CORBA ağacı inşa aracı - libIDL provides parsing .idl files and generate errors and warning messages in gcc-like format. - libIDL .idl dosyalarını ayrıştırmayı sağlar ve gcc biçimine benzer hata ve uyarı mesajları üretir. - mirrors://gnome/libIDL/0.8/libIDL-0.8.14.tar.bz2 - - glib2-devel - - programming/misc/libIDL/pspec.xml - - - libIDL - + libofx + pango + gdk-pixbuf + gtk3 glib2 /usr/bin - /usr/lib - /usr/share/info - /usr/share/doc - - - - libIDL-devel - Development files for libIDL - - libIDL - - - /usr/bin/libIDL-config-2 - /usr/lib/pkgconfig - /usr/include - - - - - 2014-05-20 - 0.8.14 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 0.8.14 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.8.14 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libwpd - http://libwpd.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C++ library designed to help process WordPerfect documents - WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı - Library that handles Word Perfect documents. - Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır. - mirrors://sourceforge/libwpd/libwpd-0.10.0.tar.gz - - doxygen - libgsf-devel - librevenge-devel - libtool - grep - pkgconfig - - programming/misc/libwpd/pspec.xml - - - libwpd - - librevenge - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libwpd-devel - Development files for libwpd - libwpd için geliştirme dosyaları - - libwpd - librevenge-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libwpd-docs - Documentation for libwpd - - /usr/share/doc/libwpd/html - - - - - 2015-01-06 - 0.10.0 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-26 - 0.10.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-24 - 0.9.9 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-29 - 0.9.9 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-14 - 0.9.6 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - qrencode - http://fukuchi.org/works/qrencode/index.en.html - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C library for encoding data in a QR code symbol - QR kod sembolüne veri gömmek için bir kitaplık - qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. - qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. - http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz - - libsdl-devel - m4 - - programming/misc/qrencode/pspec.xml - - - qrencode - - libpng - - - /usr/lib - /usr/bin/qrencode - /usr/share/man/man1 - /usr/share/doc - - - - qrencode-devel - Development files for qrencode - qrencode için geliştirme dosyaları - - qrencode - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-02-22 - 3.4.4 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 3.3.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2012-04-05 - 3.3.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - unixODBC - http://www.unixodbc.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - programming.misc - ODBC Interface for Linux - The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms. - http://www.unixodbc.org/unixODBC-2.3.2.tar.gz - - libtool-ltdl - - programming/misc/unixODBC/pspec.xml - - - unixODBC - - libtool-ltdl - - - /etc - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/unixODBC/AUTHORS - /usr/share/doc/unixODBC/README - - - - unixODBC-devel - Development files for unixODBC - unixODBC için geliştirme dosyaları. - - unixODBC - - - /usr/bin/odbc_config - /usr/include - - - - unixODBC-docs - Documentation for unixODBC - unixODBC için belgelendirme dosyaları. - data:doc - - /usr/share/doc/unixODBC - - - - - 2014-05-19 - 2.3.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-10-04 - 2.3.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libtalloc - http://talloc.samba.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - programming.misc - Hierarchical pool based memory allocator - Bellek yönetim kitaplığı - libtalloc is a library which implements a hierarchical allocator with destructors which is the core memory allocator in samba. - libtalloc, samba hizmetinin temel bellek ayırıcısını oluşturan hiyerarşik havuz tabanlı ayırıcıyı gerçekleyen kitaplıktır. - http://www.samba.org/ftp/talloc/talloc-2.1.2.tar.gz - - docbook-xsl - libxslt-devel - python-devel - attr-devel - - programming/misc/libtalloc/pspec.xml - - - libtalloc - - python - attr - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libtalloc-devel - Development files for libtalloc - libtalloc için geliştirme dosyaları - - libtalloc - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/man/man3 - - - - libtalloc-32bit - 32-bit shared libraries for libtalloc - libtalloc için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - attr-32bit - - - glibc-32bit - attr-32bit - libtalloc - - - /usr/lib32 - - - - - 2015-06-28 - 2.1.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 2.1.1 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-23 - 2.1.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.0.8 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 2.0.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-25 - 2.0.7 - First release - Erdem Artan - admins@pisilinux.org - - - - - - python3 - http://www.python.org/ - - PisiLinux Community - admins@pisilinux.org - - custom - programming.language - Next generation of the python high-level scripting language - Next generation of the python high-level scripting language - http://www.python.org/ftp/python/3.4.3/Python-3.4.3.tar.xz - - valgrind - tcltk-devel - tcl-devel - xz-devel - gdbm-devel - zlib-devel - bzip2 - expat-devel - libffi-devel - sqlite-devel - ncurses-devel - openssl-devel - readline-devel - - - Python-3.1.1-rpath.patch - - programming/language/python3/pspec.xml - - - python3 - - xz - gdbm - zlib - bzip2 - expat - libffi - sqlite - ncurses - openssl - readline - - - /usr/bin/p* - /usr/bin/2to3* - /usr/lib/python3.4/a* - /usr/lib/python3.4/c* - /usr/lib/python3.4/d* - /usr/lib/python3.4/e* - /usr/lib/python3.4/h* - /usr/lib/python3.4/imp* - /usr/lib/python3.4/j* - /usr/lib/python3.4/lib2* - /usr/lib/python3.4/log* - /usr/lib/python3.4/m* - /usr/lib/python3.4/p* - /usr/lib/python3.4/s* - /usr/lib/python3.4/te* - /usr/lib/python3.4/u* - /usr/lib/python3.4/v* - /usr/lib/python3.4/w* - /usr/lib/python3.4/x* - /usr/lib/python3.4/*.py - /usr/lib/python3.4/*.txt - /usr/lib/python3.4/lib-dynload/a* - /usr/lib/python3.4/lib-dynload/b* - /usr/lib/python3.4/lib-dynload/_b* - /usr/lib/python3.4/lib-dynload/c* - /usr/lib/python3.4/lib-dynload/_c* - /usr/lib/python3.4/lib-dynload/_d* - /usr/lib/python3.4/lib-dynload/_e* - /usr/lib/python3.4/lib-dynload/f* - /usr/lib/python3.4/lib-dynload/g* - /usr/lib/python3.4/lib-dynload/_g* - /usr/lib/python3.4/lib-dynload/_h* - /usr/lib/python3.4/lib-dynload/_j* - /usr/lib/python3.4/lib-dynload/_l* - /usr/lib/python3.4/lib-dynload/m* - /usr/lib/python3.4/lib-dynload/_m* - /usr/lib/python3.4/lib-dynload/n* - /usr/lib/python3.4/lib-dynload/o* - /usr/lib/python3.4/lib-dynload/_o* - /usr/lib/python3.4/lib-dynload/_p* - /usr/lib/python3.4/lib-dynload/p* - /usr/lib/python3.4/lib-dynload/r* - /usr/lib/python3.4/lib-dynload/_r* - /usr/lib/python3.4/lib-dynload/_s* - /usr/lib/python3.4/lib-dynload/s* - /usr/lib/python3.4/lib-dynload/te* - /usr/lib/python3.4/lib-dynload/_te* - /usr/lib/python3.4/lib-dynload/ti* - /usr/lib/python3.4/lib-dynload/u* - /usr/lib/python3.4/lib-dynload/x* - /usr/lib/python3.4/lib-dynload/z* - /usr/lib/*.so - /usr/lib/libpython3.4m.so.1.0 - /usr/share/man/man1/* - /usr/share/doc - - - - python3-devel - - python3 - - - /usr/include/python3.4m/* - /usr/lib/pkgconfig/* - - - - python3-tk - Python modules for Tk - library - programming.language.python - - python3 - tcl - tcltk - - - /usr/lib/python3*/tkinter - /usr/lib/python3*/lib-dynload/_tkinter.cpython-34m.so - /usr/lib/python3.4/turtledemo - - - - idle3 - An Integrated Development Environment for Python - app:gui - programming.environment - idle - - python3-tk - python3 - - - /usr/bin/idle3* - /usr/lib/python*/idlelib /usr/share/applications - /usr/share/pixmaps - - - python-logo.png - idle.desktop - - - - - 2015-08-13 - 3.4.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-26 - 3.4.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-09 - 3.3.0 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-08-17 - 3.3.0 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-11 - 3.3.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - lua51 - http://www.lua.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.language - A light-weight programming language - Hafif bir programlama dili - lua51 is a powerful light-weight programming language designed for extending applications. - lua51, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. - Lua51 es un lenguaje de programación liviano y potente con todas las herramientas imaginables - http://www.lua.org/ftp/lua-5.1.5.tar.gz - - readline-devel - - - lua-5.1-cflags.diff - lua-arch.patch - - programming/language/lua51/pspec.xml - - - lua51 - - readline - - + /usr/share/application-registry /usr/lib - /usr/share/man/man1 - /usr/share/doc - /usr/bin - /sbin/lsmod - /usr/share/pixmaps - /usr/share/lua5.1 - /luac5.1.1/luac.1 - /lua5.1.1/lua.1 - - - lua.png - lua.pc - - - - lua51-devel - Development files for lua51 - lua51 için geliştirme dosyaları - - lua51 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-09 - 5.1.5 - fixed libraries and man pages - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-02-01 - 5.1.5 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - vala - http://live.gnome.org/Vala - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - programming.language - A modern programming language for GNOME - GNOME için modern bir programlama dili - Kompilator języka opartego na bibliotece GObject - Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C. - Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir. - Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C. - mirrors://gnome/vala/0.28/vala-0.28.0.tar.xz - - glib2-devel - gobject-introspection-devel - libxslt - - programming/language/vala/pspec.xml - - - vala - app:console - library - - glib2 - - - /usr/lib/vala - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/vala-*/vapi - /usr/share/vim/vimfiles - - - vim/vala.syntax - vim/vala.ftdetect - - - - vala-docs - GNOME devhelp documentation for Vala - Vala için GNOME devhelp kitabı - Pliki dokumentacji dla kompilatora vala - data:doc - - /usr/share/devhelp - - - - vala-devel - Development files for vala - vala için geliştirme dosyaları - Pliki nagłówkowe dla kompilatora vala - - vala - - - /usr/include - /usr/lib/pkgconfig - /usr/share/pkgconfig - /usr/share/aclocal - /usr/share/vala/Makefile.vapigen - /usr/share/man/man3 - - - - - 2015-05-22 - 0.28.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-25 - 0.24.0 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-11-18 - 0.22.1 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-04-13 - 0.20.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-15 - 0.18.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - tcltk - http://www.tcl.tk - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.tcl - Tk est une boîte à outils X11 implémentée avec le langage de script Tcl. - An X11 toolkit implemented with the Tcl scripting language - Tcl betik dili ile yazılmış X11 araç ve kitaplıkları - Tk is an X Windows widget set designed to work closely with the tcl scripting language. It allows you to write simple programs with full featured GUIs in only a little more time then it takes to write a text based interface. - Tk, tcl betik dili ile birlikte kullanılması için tasarlanmış bir X Windows araç setidir. Metin tabanlı arayüzlere oranla daha kısa sürede tam özellikli grafik arayüzlere sahip basit programlar yazmanızı sağlar. - mirrors://sourceforge/tcl/tk8.6.3-src.tar.gz - - tcl-devel - libX11-devel - libXft-devel - fontconfig-devel - - - tk-8.6.1-conf.patch - tk-8.6.1-fix-xft.patch - tk-8.6.1-make.patch - - programming/language/tcl/tcltk/pspec.xml - - - tcltk - - tcl - libX11 - libXft - fontconfig - - - /usr/bin - /usr/lib - /usr/lib/tk8.5 - /usr/share/doc - /usr/share/man - - - - tcltk-devel - Development files for tcltk - tcltk için geliştirme dosyaları - - tcltk - libX11-devel - tcl-devel - - - /usr/include - /usr/lib/*.a - /usr/lib/tkConfig.sh - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-12-14 - 8.6.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-30 - 8.6.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-17 - 8.6.1 - Version bump and add patch. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 8.6.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-26 - 8.6.0 - Move pc files to devel pack, increase release no. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-01-26 - 8.6.0 - bump - Erdinç Gültekin - admins@pisilinux.org - - - 2012-09-15 - 8.5.12 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - tcl - http://www.tcl.tk - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.tcl - Tcl programming language - Tcl programlama dili - Tcl provides a powerful platform for creating integration applications that tie together diverse applications, protocols, devices, and frameworks. - Tcl, çeşitli uygulamalar geliştirmek için kullanılabilen bir programlama dilidir. - Tcl provee una plataforma potente para crear aplicaciones de integración de diversos aplicaciones, protocolos, dispositivos y frameworks - mirrors://sourceforge/tcl/tcl8.6.4-src.tar.gz - - zlib-devel - - programming/language/tcl/tcl/pspec.xml - - - tcl - - zlib - - - /usr/bin - /usr/lib - /usr/lib/tcl8.5 - /usr/share/doc - /usr/share/man - - - - tcl-devel - Development files for tcl - tcl için geliştirme dosyaları - - tcl - zlib-devel - - - /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig - /usr/lib/tclConfig.sh - /usr/share/man/man3 - - - - sqlite-tcl - files for sqlite-tcl - - tcl - - - /usr/lib/sqlite3.8.8.3/libsqlite* - /usr/lib/tcl8/8.6/tdbc/sqlite3-1.0.3.tm - /usr/share/man/mann/tdbc_sqlite3.n - /usr/share/man/mann/sqlite3.n - - - - - 2015-06-11 - 8.6.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-03 - 8.6.3 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-12 - 8.6.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-30 - 8.6.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-17 - 8.6.1 - Add patch. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-06 - 8.6.1 - Rebuild to fix stripping. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-24 - 8.6.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-26 - 8.6.0 - Move pc files to devel pack, increase release no. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-01-26 - 8.6.0 - bump - Erdinç Gültekin - admins@pisilinux.org - - - 2012-09-15 - 8.5.12 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - lua - http://www.lua.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.language - A light-weight programming language - Hafif bir programlama dili - lua is a powerful light-weight programming language designed for extending applications. - lua, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. - Lua es un lenguaje de programación liviano y potente con todas las herramientas imaginables - http://www.lua.org/ftp/lua-5.2.4.tar.gz - - lua.pc - - - readline-devel - - - liblua.so.patch - - programming/language/lua/pspec.xml - - - lua - - readline - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/pixmaps - - - lua.png - - - - lua-devel - Development files for lua - lua için geliştirme dosyaları - - lua - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-06-03 - 5.2.4 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2015-02-01 - 5.2.3 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-30 - 5.1.5 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 5.1.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-udev - http://packages.python.org/pyudev - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Python bindings for libudev library - libudev için Python bağlayıcısı - These bindings enable using of udev library in Python programs. - Bu bağlayıcı, Python programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. - https://pypi.python.org/packages/source/p/pyudev/pyudev-0.16.1.tar.gz - - python-setuptools - eudev-devel - - programming/language/python/python-udev/pspec.xml - - - python-udev - - /usr/lib - /usr/share/doc - - - - python-udev-qt - Qt bindings for libudev library - libudev için Qt bağlayıcısı - These bindings provide udev capability for Python programs where Qt is used. - Bu bağlayıcı, Qt kullanan Python programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar. - - python-udev - python-qt - - - /usr/lib/python2*/site-packages/pyudev/pyqt4.py - - - - - 2015-08-04 - 0.16.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-24 - 0.16.1 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2013-06-26 - 0.16.1 - V.bump - PisiLinux Community - admins@pisilinux.org - - - 2011-07-11 - 0.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-MarkupSafe - http://pypi.python.org/pypi/MarkupSafe - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - Implements a XML/HTML/XHTML Markup safe string for Python - XML/HTML/XHTML markup dilleri için güvenli python karakter dizeleri gerçekleştirimi - python-MarkupSafe, implements a unicode subclass that supports HTML strings. - python-MarkupSafe, HTML karakter dizeleri için unicode bir alt sınıf gerçekleştirimi sağlar. - http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.23.tar.gz - - python-setuptools - - programming/language/python/python-MarkupSafe/pspec.xml - - - python-MarkupSafe - - /usr/lib/python2.* - /usr/share/doc - - - - - 2014-05-29 - 0.23 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2011-11-11 - 0.15 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-decorator - http://www.phyast.pitt.edu/~micheles/python/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - Python module to simplify the usage of decorators - Dekoratör kullanımını kolaylaştıran python modulü - python-decorator simplifies the usage of decorators for the average programmer. - python-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. - http://pypi.python.org/packages/source/d/decorator/decorator-4.0.2.tar.gz - - python-nose - python-setuptools - - programming/language/python/python-decorator/pspec.xml - - - python-decorator - - /usr/lib - /usr/share/doc - - - - - 2015-08-04 - 4.0.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 3.4.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2013-11-06 - 3.4.0 - Rebuild - Erdinç Gültekin - admins@pisilinux.org - - - 2012-11-11 - 3.4.0 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-lxml - http://codespeak.net/lxml - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - library - programming.language.python - lxml is the most feature-rich and easy-to-use library - Zengin içerikli ve kolay kullanımlı bir kütüphane. - lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. - Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. - http://lxml.de/files/lxml-3.3.5.tgz - - libxml2-devel - python-devel - cython - libxslt-devel - - programming/language/python/python-lxml/pspec.xml - - - python-lxml - - libxslt - libxml2 - python - - - /usr/lib - - - - python-lxml-docs - API documentation of python-lxml - python-lxml paketine ait API belgeleri - - python-lxml - - - /usr/share/doc - - - - - 2014-07-05 - 3.3.5 - Version bump - Vedat Demir - vedat@pisilinux.org - - - 2013-11-07 - 3.2.4 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-07-28 - 3.0.1 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-10-24 - 3.0.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - dbus-python3 - http://dbus.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - AFL-2.1 - library - programming.language.python - D-Bus Python bindings - dbus-python provides a Python module which wraps the D-Bus programming API. - http://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.0.tar.gz - - python3-devel - dbus-devel - dbus-glib-devel - glib2-devel - libpcre-devel - - - suppress-warnings.patch - - programming/language/python/dbus-python3/pspec.xml - - - dbus-python3 - D-Bus Python3 bindings - programming.language.python - - python3 - dbus - glib2 - dbus-glib - - - /usr/lib/python3* - - - - - 2015-10-08 - 1.2.0 - Release bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-05-11 - 1.2.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-28 - 1.2.0 - rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-23 - 1.2.0 - Version bump. Remove dbus-devel from runtime dependencies. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-25 - 1.1.1 - Dep Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2012-11-10 - 1.1.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gst-python - http://gstreamer.freedesktop.org/modules/gst-python.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - GStreamer Python bindings - GStreamer Python bağlayıcıları - gst-python is a Python frontend to GStreamer. - gst-python GStreamer için Python arabirimidir. - http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.22.tar.bz2 - - python-gtk-devel - python-pygobject-devel - glib2-devel - gstreamer-devel - gst-plugins-base-devel - - programming/language/python/gst-python/pspec.xml - - - gst-python - - glib2 - gstreamer - gst-plugins-base - - - /usr/lib - /usr/share/doc /usr/share + /usr/share/doc + /usr/share/locale + /usr/share/icons/hicolor - gst-python-devel - Development files for gst-python - gst-python için geliştirme dosyaları - - gst-python - python-pygobject-devel - gstreamer-devel - + homebank-data + Data Files for Homebank - /usr/lib/pkgconfig - /usr/include + /usr/share/homebank/datas + /usr/share/mime-info - - 2015-10-21 - 0.10.22 - Version Bump. + + 2015-10-12 + 5.0.5 + Version bump. Stefan Gronewold (groni) groni@pisilinux.org - - 2014-02-27 - 0.10.21 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - 2014-02-26 - 0.10.21 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-17 - 0.10.21 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2011-05-03 - 0.10.21 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-PyYAML - http://pyyaml.org/wiki/PyYAML - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - The next generation YAML parser and emitter for Python - python-pyyaml is the next generation YAML parser and emitter for Python. - http://pyyaml.org/download/pyyaml/PyYAML-3.11.tar.gz - - libyaml-devel - python-devel - - programming/language/python/python-PyYAML/pspec.xml - - - python-PyYAML - - libyaml - - - /usr/lib - /usr/share/doc - - - - - 2015-07-27 - 3.11 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2011-06-04 - 3.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-sphinx - http://sphinx.pocoo.org - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.python - Python documentation generator. It can generate HTML or Latex outputs - Python için döküman üreticisi. HTML, Latex gibi çıktılar üretebiliyor - It's a very common documentation generator especially using for python based documentation.It can generate HTML or PDF, Ps outputs with Latex output support. - Özellikle python için hazırlanan dökümanları yorumlamak için kullanılan yaygın bir döoküman üreticisi. Başta HTML olmak üzere Latex ile birlikte PDF, Ps gibi doküman çıktıları üretebiliyor. - http://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.2.1.tar.gz - - docutils - python-Pygments - python-Jinja2 - - - remove_docutils.patch - - programming/language/python/python-sphinx/pspec.xml - - - python-sphinx - - docutils - python-Pygments - python-Jinja2 - - - /usr/bin - /usr/lib/python* - /usr/share/doc/python-sphinx/LICENSE - - - - python-sphinx-docs - Documentation files for python-sphinx - python-sphinx için belgelendirme dosyaları - - /usr/share/doc/python-sphinx - - - - - 2015-07-27 - 1.3.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-02-27 - 1.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-29 - 1.1.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - python-numpy - http://numeric.scipy.org - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.python - The fundamental package needed for scientific computing with Python - 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. - mirrors://sourceforge/numpy/numpy-1.8.1.tar.gz - - python-devel - python-nose - libgfortran - lapack-devel - - programming/language/python/python-numpy/pspec.xml - - - python-numpy - - blas - lapack - python - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2014-05-29 - 1.8.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-27 - 1.8.0 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-01-19 - 1.8.0 - Version bump - Richard de Bruin - rr.debruin@pisilinux.org - - - 2013-11-16 - 1.7.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-13 - 1.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pip - https://pypi.python.org/pypi/pip - - Yusuf Aydemir - Yusuf.aydemir@istanbul.com - - MIT - programming.language.python - The PyPA recommended tool for installing Python packages - The PyPA recommended tool for installing Python packages - https://pypi.python.org/packages/source/p/pip/pip-7.1.2.tar.gz - - python-setuptools - python3-setuptools - python3-devel - - programming/language/python/pip/pspec.xml - - - pip - - python-setuptools - - - /usr/bin/pip2* - /usr/lib/python2* - /usr/share/doc - - - - pip3 - - python3-setuptools - - - /usr/bin/pip - /usr/bin/pip3* - /usr/lib/python3* - - - - - 2015-08-24 - 7.1.2 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2015-04-08 - 6.1.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - telepathy-python - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.language.python - Python libraries for Telepathy - Telepathy için Python kitaplıkları - telepathy-python is the Python libraries for use in Telepathy client and connection managers. - telepathy-pyhon Telepathy istemcileri ve bağlantı yöneticilerinde kullanılmak üzere tasarlanmış Python kitaplığıdır. - http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-0.15.19.tar.gz - - libxslt-devel - - - telepathy-python-0.15.19-mkdir_p.patch - dont-compile-py.patch - python-telepathy-no_double_errors-py.patch - - programming/language/python/telepathy-python/pspec.xml - - - telepathy-python - - /usr/lib - /usr/share/doc - - - - - 2015-11-22 - 0.15.19 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-03 - 0.15.19 - Fix build - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-16 - 0.15.19 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-15 - 0.15.19 - Version bump - Aydın Demirel - aydin@demirel.web.tr - - - 2010-10-13 - 0.15.18 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-qt5 - http://www.riverbankcomputing.co.uk/software/pyqt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python - A set of Python bindings for the Qt 5.x Toolkit - Qt5.x araçları için python bağlayıcıları - Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. - Qt5, C++ kütüphaneleri dizisi ve geliştirme araçları olup grafik kullanıcı arabirimleri için, ağ bağlantısı, iş parçacığı, Unicode, düzenli ifadeler, SQL veritabanları, SVG, OpenGL, XML ve kullanıcıve uygulama ayarları gibi platform bağımsız uygulamalara ayrılır. PyQt, Python modülü seti olarak bu sınıftan 440 kadar uygulamayı çalıştırır. - mirrors://sourceforge/pyqt/PyQt5/PyQt-5.4.2/PyQt-gpl-5.5.1.tar.gz - - dbus-devel - dbus-python3 - dbus-python-common - python3-devel - python-devel - python3-sip - python-sip - qt5-base-devel - qt5-connectivity-devel - qt5-declarative-devel - qt5-enginio-devel - qt5-location-devel - qt5-multimedia-devel - qt5-sensors-devel - qt5-serialport-devel - qt5-svg-devel - qt5-webchannel-devel - qt5-webkit-devel - qt5-websockets-devel - qt5-x11extras-devel - qt5-xmlpatterns-devel - - programming/language/python/python-qt5/pspec.xml - - - python-qt5 - A set of Python 2.x bindings for the Qt 5.x Toolkit - - libgcc - dbus - python - qt5-base - qt5-sensors - qt5-location - qt5-webkit - qt5-enginio - qt5-x11extras - qt5-svg - qt5-multimedia - qt5-serialport - qt5-webchannel - qt5-websockets - qt5-declarative - qt5-xmlpatterns - qt5-connectivity - - - /usr/bin/py2uic5 - /usr/lib/python2.7/site-packages - /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so - /usr/share/qt5/qsci/api/python/Py2Qt5.api - - - - python-qt5-devel - Development files for python3-qt5 - - libgcc - qt5-base - python-qt5 - - - /usr/bin/py2lupdate5 - /usr/bin/py2rcc5 - /usr/share/sip/Py2Qt5 - - - - python3-qt5 - A set of Python 3.x bindings for the Qt 5.x Toolkit - - libgcc - dbus - python3 - qt5-base - qt5-sensors - qt5-location - qt5-webkit - qt5-enginio - qt5-x11extras - qt5-svg - qt5-multimedia - qt5-serialport - qt5-webchannel - qt5-websockets - qt5-declarative - qt5-xmlpatterns - qt5-connectivity - - - /usr/bin/pyuic5 - /usr/lib/python3.4/site-packages - /usr/lib/qt5/plugins/PyQt5/libpyqt5qmlplugin.so - /usr/lib/qt5/plugins/designer/libpyqt5.so - /usr/share/doc - /usr/share/qt5/qsci/api/python/PyQt5.api - - - - python3-qt5-devel - Development files for python3-qt5 - - libgcc - qt5-base - python3-qt5 - - - /usr/bin/pylupdate5 - /usr/bin/pyrcc5 - /usr/share/sip/PyQt5 - - - - - 2015-11-02 - 5.5.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-10-16 - 5.5 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-07 - 5.4.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-pyaspects - http://github.com/baris/pyaspects - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - Aspect-Oriented development for Python - Aspect-Oriented Development modules for Python. - https://github.com/baris/pyaspects/archive/0.4.4.tar.gz - programming/language/python/python-pyaspects/pspec.xml - - - python-pyaspects - - /usr/lib - /usr/share/doc - - - - - 2013-12-07 - 0.4.4 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2010-10-13 - 0.4.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-beaker - http://beaker.groovie.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - A Session and Caching library with WSGI Middleware - Oturum ve önbellekleme kitaplığı - python-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. - python-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. - http://pypi.python.org/packages/source/B/Beaker/Beaker-1.6.4.tar.gz - - python-setuptools - - programming/language/python/python-beaker/pspec.xml - - - python-beaker - - /usr/lib/ - /usr/share/doc - - - - - 2013-11-04 - 1.6.4 - Rebuild - Erdinç Gültekin - admins@pisilinux.org - - - 2012-11-11 - 1.6.4 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-nose - http://somethingaboutorange.com/mrl/projects/nose/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - programming.language.python - A unittest extension offering automatic test suite discovery and easy test authoring - Python için unittest genişlemesi - python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. - python-nose alternatif test tanıtma ve keşif kitaplığı. - https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz - programming/language/python/python-nose/pspec.xml - - - python-nose - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2015-08-04 - 1.3.7 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-27 - 1.3.3 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-05-21 - 1.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-17 - 1.3.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-13 - 1.2.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pyparted - http://people.redhat.com/dcantrel/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - programming.language.python - Python bindings for parted - Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. - pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. - pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. - pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. - https://github.com/rhinstaller/pyparted/archive/v3.10.5.tar.gz - - python-decorator - python-devel - parted-devel - - programming/language/python/pyparted/pspec.xml - - - pyparted - - python-decorator - parted - python - - - /usr/lib - /usr/share/doc - - - - - 2015-08-04 - 3.10.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 3.10.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-09 - 3.9.5 - Revert back to 3.9 latest stable series. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-03 - 3.10 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-24 - 3.8 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - python-Jinja2 - http://jinja.pocoo.org/2/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.python - A small but fast and easy to use stand-alone template engine written in pure python - Küçük, hızlı ve kullanımı kolay, sadece python ile yazılmış bir bağımsız şablon üreteci - Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code. - Jinja2, sadece python ile yazılmış bir şablon üreteci olan Jinja'nın yeniden yazılmış bir versiyonudur. Django benzeri XML-olmayan bir sözdizimi sağlar ve şablonları derleyip çalıştırılabilir python programları haline getirir. Temel olarak Django şablonları ve python kodunun birleşimi bir programdır. - https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.2.tar.gz - - python-setuptools - python-MarkupSafe - - - drop_next_import_from_docs-jinjaext.patch - - programming/language/python/python-Jinja2/pspec.xml - - - python-Jinja2 - - /usr/lib/python* - /usr/share/doc/python-Jinja2/LICENSE - - - - python-Jinja2-docs - python-Jinja2 için belgelendirme dosyaları - - /usr/share/doc/python-Jinja2 - - - - - 2014-02-27 - 2.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-09 - 2.7.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-29 - 2.6 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - pyqtermwidget5 - http://gitorious.org/qtermwidget - - Harun Gültekin - hrngultekin@gmail.com - - GPLv2 - library - programming.language.python - Python binding of terminal widget for Qt - PyQt5 tabanlı uygulamalar için basit bir terminal modulü - A simple terminal widget for using with PyQt based applications - https://github.com/hrngultekin/pyqtermwidget5/archive/pyqtermwidget5-v0.1.tar.gz - - python-devel - python-qt5-devel - python-sip - qt5-base-devel - qtermwidget5-devel - - - py2config.patch - - programming/language/python/pyqtermwidget5/pspec.xml - - - pyqtermwidget5 - Python binding of terminal widget for Qt - - libgcc - qt5-base - qtermwidget5 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2014-06-19 - 0.1 - first build - Harun Gültekin - hrngultekin@gmail.com - - - - - - sip - http://www.riverbankcomputing.co.uk/sip - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - programming.language.python - SIP is a tool for generating bindings for C++ classes so that they can be used by Python - SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python. It takes any C or C++ libraries and converts them into Python extension modules. - mirrors://sourceforge/pyqt/sip-4.16.9.tar.gz - - qt5-base-devel - python3-devel - python-devel - - programming/language/python/sip/pspec.xml - - - python-sip - Python 2.x SIP bindings for C and C++ libraries - - libgcc - python - - - /usr/bin/py2sip - /usr/lib/python2.7/ - /usr/include/python2.7 - - - - python3-sip - Python 3.x SIP bindings for C and C++ libraries - - libgcc - python3 - - - /usr/bin/sip - /usr/lib/python3* - /usr/include/python3.4m - /usr/share/licenses/python3-sip/LICENSE - - - - - 2015-09-09 - 4.16.9 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-23 - 4.16.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-Pygments - http://pygments.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - A syntax highlighting package written in Python - Python dilinde yazılmış bir sözdizimi belirtme aracı - python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. - python-Pygments, kaynak kodunu güzelleştirmek ihtiyacı duyulan forum sistemleri, wikiler ve diğer uygulamalar gibi her çeşit yazılımda kullanılmak için yazılmış olan genel bir sözdizimi belirtme aracıdır. - https://pypi.python.org/packages/source/P/Pygments/Pygments-1.6.tar.gz - programming/language/python/python-Pygments/pspec.xml - - - python-Pygments - - python-setuptools - - - /usr/bin - /usr/lib/python* - /usr/share/man - - - - python-Pygments-docs - Documentation files for python-Pygments - python-Pygments için belgelendirme dosyaları - - /usr/share/doc/python-Pygments - - - - - 2013-12-07 - 1.6 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-16 - 1.5 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-gtk - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - GTK+ bindings for Python - Python için GTK+ bağlayıcıları - Bindings (liens) GTK+2 pour Python. - python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library. - python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar. - mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2 - - cairo-devel - pango-devel - gtk2-devel - glib2-devel - python-devel - libglade-devel - python-pygobject-devel - python-numpy - python-cairo - - programming/language/python/python-gtk/pspec.xml - - - python-gtk - - pango - atk - gtk2 - cairo - gdk-pixbuf - - - /usr/lib - /usr/share/doc - - - - python-gtk-demo - Demo applications for python-gtk - python-gtk için demo uygulamalar - app:gui - - python-gtk - - - /usr/bin/pygtk-demo - /usr/lib/pygtk/2.0/pygtk-demo.py - /usr/lib/pygtk/2.0/demos - - - - python-gtk-docs - Reference documents for python-gtk - python-gtk için referans belgeleri - data:doc - - python-gtk - - - /usr/share/gtk-doc - - - - python-gtk-devel - Development files for python-gtk - python-gtk için geliştirme dosyaları - - python-gtk - python-pygobject-devel - gtk2-devel - - - /usr/bin/pygtk-codegen-2.0 - /usr/include - /usr/lib/pkgconfig - /usr/share/pygtk - - - - - 2013-08-17 - 2.24.0 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 2.24.0 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-11 - 2.24.0 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-mako - http://www.makotemplates.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - programming.language.python - A python templating language - Python şablonlama dili - python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. - python-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. - http://pypi.python.org/packages/source/M/Mako/Mako-0.9.1.tar.gz - - python-setuptools - - programming/language/python/python-mako/pspec.xml - - - python-mako - - python-beaker - python-MarkupSafe - - - /usr/bin - /usr/lib - /usr/share/doc - - - - python-mako-docs - python-mako için belgelendirme dosyaları - - python-mako - - - /usr/share/doc/*/html - /usr/share/doc/*/build - /usr/share/doc/*/examples - - - - - 2014-04-16 - 0.9.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-11 - 0.7.3 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-pygobject - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Bindings (liens) glib pour Python. - Glib bindings for Python - glib için python bağlayıcıları - pygobject is GLib's GObject library bindings for Python. - pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. - http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.6.tar.xz - - python-devel - gobject-introspection-devel - - - pygobject-2.16.1-fixdetection.patch - - programming/language/python/python-pygobject/pspec.xml - - - python-pygobject - - glib2 - gobject-introspection - libffi - - - /usr/lib - /usr/share/doc - - - - python-pygobject-devel - pygobject development files - pygobject geliştirme dosyaları - - python-pygobject - gobject-introspection-devel - - - /usr/bin/pygobject-codegen-2.0 - /usr/include - /usr/lib/pkgconfig - /usr/share/pygobject - - - - python-pygobject-docs - API documents for pygobject - pygobject için API dökümanları - data:doc - - /usr/share/gtk-doc - - - - - 2012-10-14 - 2.28.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python-requests - http://www.python-requests.org/ - - Ergün Salman - ergunsalman@hotmail.com - - MIT - programming.language.python - Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. - Python’s standard urllib2 module provides most of the HTTP capabilities you need - https://pypi.python.org/packages/source/r/requests/requests-2.8.1.tar.gz - - python - python3-devel - - programming/language/python/python-requests/pspec.xml - - - python-requests - - /usr/lib/python2* - /usr/share/doc - - - - python3-requests - - /usr/lib/python3* - - - - - 2015-11-06 - 2.8.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-08-24 - 2.7.0 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - python-six - http://pypi.python.org/pypi/six/ - - Alihan Öztürk - alihan@pisilinux.org - - MIT - app:console - programming.language.python - Python 2 and 3 compatibility utilities. - Python2 ve python3 uyumluluk programı. - python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. - python-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar. - http://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz - - python3-devel - - programming/language/python/python-six/pspec.xml - - - python-six - - /usr/lib/python2* - /usr/share/doc - - - - python3-six - - /usr/lib/python3* - - - - - 2015-07-24 - 1.9.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-31 - 1.6.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-setuptools - http://pypi.python.org/pypi/setuptools - - PisiLinux Community - admins@pisilinux.org - - PSF-2.2 - library - programming.language.python - Python setuptools - python-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. - http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz - - python3-devel - - programming/language/python/python3-setuptools/pspec.xml - - - python3-setuptools - - /usr/bin/py3easy-install - /usr/bin/easy_install-3* - /usr/lib/python3* - - - - - 2015-11-07 - 0.6.49 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-24 - 0.6.49 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-17 - 0.6.35 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-08-19 - 0.6.28 - First release - Ramazan Utku - admins@pisilinux.org - - - - - - python-cups - http://cyberelk.net/tim/software/pycups - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - Python interface to the CUPS API - CUPS programlama arayüzü için Python desteği - python-cups contains python bindings to wrap the CUPS API. - python-cups, CUPS programlama arayüzü için Python bağlayıcıları içeren bir pakettir. - http://cyberelk.net/tim/data/pycups/pycups-1.9.72.tar.bz2 - - cups-devel - python-devel - - programming/language/python/python-cups/pspec.xml - - - python-cups - - cups - - - /usr/lib - /usr/share/doc - - - - - 2015-06-21 - 1.9.72 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2013-11-06 - 1.9.63 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-11 - 1.9.62 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-cairo - http://cairographics.org/pycairo - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - wrapper (version enrobée) Python de la librairie de graphisme vectoriel cairo. - Python wrapper for cairo graphics library - Cairo vektörel grafik kitaplığı için Python bağlayıcıları - Pycairo is set of Python bindings for the cairo graphics library. - http://cairographics.org/releases/py2cairo-1.10.0.tar.bz2 - - cairo-devel - python-devel - libtool - - programming/language/python/python-cairo/pspec.xml - - - python-cairo - - cairo - python - - - /usr/lib - /usr/share/doc - - - - python-cairo-devel - Development files for python-cairo - python-cairo için geliştirme dosyaları - - python-cairo - cairo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-06-01 - 1.10.0 - rebuild - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-11-05 - 1.10.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2010-10-13 - 1.8.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-pyblock - http://git.fedoraproject.org/git/pyblock.git - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python - Python modules for dealing with block devices - Blok aygıtları ile ilgili python modülleri içerir - The pyblock contains Python modules for dealing with block devices. - Pyblock blok aygıtları ile ilgili python modülleri içerir - https://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/pyblock-0.53.tar.bz2/f6d33a8362dee358517d0a9e2ebdd044/pyblock-0.53.tar.bz2 - - device-mapper-devel - python-devel - dmraid-devel - - - fix-underlinking.patch - - programming/language/python/python-pyblock/pspec.xml - - - python-pyblock - - device-mapper - dmraid - python - - - /usr/lib - /usr/share/doc - - - - - 2015-08-04 - 0.53 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-12-07 - 0.53_20111208 - Rebuild - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-05-05 - 0.53_20111208 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-19 - 0.53_20111208 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - ocaml - http://www.ocaml.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - OPL - app:console - programming.language.ocaml - Fast modern type-inferring functional programming language - Hızlı ve modern bir programlama dili - A fast modern type-inferring functional programming language descended from the ML (Meta Language) family. - OcaML, ML dilinin soyundan gelen fonksiyonel bir programlama dilidir - http://caml.inria.fr/pub/distrib/ocaml-4.02/ocaml-4.02.1.tar.xz - - zlib-devel - ncurses-devel - libX11-devel - chrpath - - - fedora/0001-Don-t-ignore-.-configure-it-s-a-real-git-file.patch - fedora/0002-Ensure-empty-compilerlibs-directory-is-created-by-gi.patch - fedora/0003-Don-t-add-rpaths-to-libraries.patch - fedora/0004-ocamlbyteinfo-ocamlplugininfo-Useful-utilities-from-.patch - fedora/0005-configure-Allow-user-defined-C-compiler-flags.patch - fedora/0009-arg-Add-no_arg-and-get_arg-helper-functions.patch - fedora/0010-arg-Allow-flags-such-as-flag-arg-as-well-as-flag-arg.patch - fedora/0011-PR-6517-use-ISO-C99-types-u-int-32-64-_t-in-preferen.patch - - programming/language/ocaml/ocaml/pspec.xml - - - ocaml - - zlib - ncurses - libX11 - - - /usr/bin/ - /usr/lib/ - /usr/share/doc/ - /usr/share/man/ - - - - - 2015-04-04 - 4.02.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-11-16 - 4.00.2 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-23 - 4.00.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-24 - 3.4.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-02-07 - 4.00.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 4.01.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-20 - 4.00.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - go - http://golang.org - - Aydın Demirel - aydin.demirel@pisilinux.org - - BSD - app:console - programming.language - Compiler and tools for the Go programming language from Google - Google'dan Go programlama dili için araçlar ve derleyici - Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. - Go basit, güvenilir ve verimli yazılım inşa etmek için onu kolay yapan açık kaynaklı bir programlama dilidir. - https://github.com/golang/go/archive/go1.4.2.tar.gz - - perl - gawk - mercurial - glibc-32bit - git - - programming/language/go/pspec.xml - - - golang - - glibc-32bit - git - - - /usr/bin/ - /usr/lib/ - /etc - /usr/share/ - - - go.sh - - - - - 2015-04-17 - 1.4.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-24 - 1.3.3 - Version bump, remove unneded depse - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-27 - 1.3.2 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - fastjar - http://savannah.nongnu.org/projects/fastjar - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:web - programming.language.java - Sun java jar compatible archiver - Sun java jar compatible archiver - Sun java jar compatible archiver - Sun java jar compatible archiver. - http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz - - zlib-devel - - programming/language/java/fastjar/pspec.xml - - - fastjar - - zlib - - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - - - - - 2014-06-05 - 0.98 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-02-27 - 0.98 - First Release - PisiLinux Community - admins@pisilinux.org - - - - - - java7-openjdk - http://icedtea.classpath.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - programming.language.java - Open Java Development Kit - OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). - http://icedtea.wildebeest.org/download/source/icedtea-2.6.1.tar.gz - - giflib_5.1.diff - fontconfig-paths.diff - openjdk7_nonreparenting-wm.diff - - - ant - wget - rhino - fastjar - nss-devel - zlib-devel - attr-devel - xorg-proto - gtk2-devel - cups-devel - eclipse-ecj - libXt-devel - libSM-devel - lcms2-devel - jdk7-openjdk - libICE-devel - libpng-devel - giflib-devel - libxslt-devel - libXtst-devel - alsa-lib-devel - libXinerama-devel - libjpeg-turbo-devel - - programming/language/java/java7-openjdk/pspec.xml - - - jre7-openjdk-headless - Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs - - atk - cups - gtk2 - zlib - cairo - glib2 - lcms2 - libXi - pango - libX11 - libgcc - libXext - libXtst - freetype - fontconfig - gdk-pixbuf - libXrender - libjpeg-turbo - - - /usr/bin/orbd - /usr/bin/rmid - /usr/bin/java - /etc/env.d/20java_jre.csh - /etc/env.d/20java_jre - /etc/java-7-openjdk/ - /usr/bin/pack200 - /usr/bin/keytool - /usr/bin/tnameserv - /usr/bin/unpack200 - /usr/share/man/man1/rmid.1 - /usr/share/man/man1/orbd.1 - /usr/share/man/man1/java.1 - /usr/bin/servertool - /usr/bin/rmiregistry - /usr/share/doc/java7-openjdk/ - /usr/share/man/ja/man1/rmid.1 - /usr/share/man/ja/man1/java.1 - /usr/share/man/man1/pack200.1 - /usr/share/man/man1/keytool.1 - /usr/share/man/ja/man1/orbd.1 - /usr/share/man/man1/tnameserv.1 - /usr/share/man/man1/unpack200.1 - /usr/share/man/ja/man1/pack200.1 - /usr/share/man/man1/servertool.1 - /usr/share/man/ja/man1/keytool.1 - /usr/share/man/man1/rmiregistry.1 - /usr/share/man/ja/man1/tnameserv.1 - /usr/share/man/ja/man1/unpack200.1 - /usr/share/man/ja/man1/servertool.1 - /usr/share/doc/jre7-openjdk-headless - /usr/share/man/ja/man1/rmiregistry.1 - /usr/lib/jvm/java-7-openjdk/jre/lib - /usr/lib/jvm/java-7-openjdk/jre/java - /usr/lib/jvm/java-7-openjdk/jre/orbd - /usr/lib/jvm/java-7-openjdk/jre/rmid - /usr/lib/jvm/java-7-openjdk/jre/bin/ - /usr/lib/jvm/java-7-openjdk/jre/keytool - /usr/lib/jvm/java-7-openjdk/jre/pack200 - /usr/lib/jvm/java-7-openjdk/jre/bin/orbd - /usr/lib/jvm/java-7-openjdk/jre/bin/java - /usr/lib/jvm/java-7-openjdk/jre/bin/rmid - /usr/lib/jvm/java-7-openjdk/jre/tnameserv - /usr/lib/jvm/java-7-openjdk/jre/unpack200 - /usr/lib/jvm/java-7-openjdk/jre/servertool - /usr/lib/jvm/java-7-openjdk/jre/policytool - /usr/lib/jvm/java-7-openjdk/jre/rmiregistry - /usr/lib/jvm/java-7-openjdk/jre/bin/keytool - /usr/lib/jvm/java-7-openjdk/jre/bin/pack200 - /usr/lib/jvm/java-7-openjdk/lib/*/jli/libjli.so - /usr/lib/jvm/java-7-openjdk/jre/bin/tnameserv - /usr/lib/jvm/java-7-openjdk/jre/bin/unpack200 - /usr/lib/jvm/java-7-openjdk/jre/bin/servertool - /usr/lib/jvm/java-7-openjdk/jre/bin/rmiregistry - /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/xawt/libmawt.so - /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/headless/libmawt.so - - - 20java_jre - 20java_jre.csh - - - - jre7-openjdk - Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Full Java runtime environment - needed for executing Java GUI and Webstart programs - - zlib - giflib - libX11 - libpng - libXext - alsa-lib - libjpeg-turbo - jre7-openjdk-headless - - - /usr/share/doc/openjdk - /usr/bin/policytool - /usr/share/icons/hicolor/ - /usr/share/man/man1/policytool.1 - /usr/share/man/ja/man1/policytool.1 - /usr/share/applications/policytool.desktop - /usr/lib/jvm/java-7-openjdk/jre/bin/policytool - /usr/lib/jvm/java-7-openjdk/jre/lib/*/libjsoundalsa.so - /usr/lib/jvm/java-7-openjdk/jre/lib/*/libpulse-java.so - /usr/lib/jvm/java-7-openjdk/jre/lib/*/libsplashscreen.so - /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libjsoundalsa.so - /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libpulse-java.so - /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libsplashscreen.so - - - sun-jre - - - sun-jre - - - - jdk7-openjdk - Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - SDK - - zlib - libX11 - libgcc - jre7-openjdk-headless - - - /etc/env.d/21java_jdk.csh - /etc/env.d/21java_jdk - /usr/share/man/man1/ - /usr/share/man/ja/man1/ - /usr/bin/jar - /usr/bin/xjc - /usr/bin/apt - /usr/bin/jdb - /usr/bin/jps - /usr/bin/jmap - /usr/bin/idlj - /usr/bin/jcmd - /usr/bin/jhat - /usr/bin/rmic - /usr/bin/javac - /usr/bin/javah - /usr/bin/javap - /usr/bin/jinfo - /usr/bin/wsgen - /usr/bin/jstat - /usr/bin/jstack - /usr/bin/jstatd - /usr/bin/javadoc - /usr/bin/extcheck - /usr/bin/jconsole - /usr/bin/wsimport - /usr/bin/jarsigner - /usr/bin/jsadebugd - /usr/bin/schemagen - /usr/bin/serialver - /usr/bin/jrunscript - /usr/bin/appletviewer - /usr/bin/native2ascii - /usr/share/applications/jconsole.desktop - /usr/lib/jvm/java-7-openjdk/include - /usr/lib/jvm/java-7-openjdk/bin/apt - /usr/lib/jvm/java-7-openjdk/bin/jar - /usr/lib/jvm/java-7-openjdk/bin/jdb - /usr/lib/jvm/java-7-openjdk/bin/jps - /usr/lib/jvm/java-7-openjdk/bin/xjc - /usr/lib/jvm/java-7-openjdk/bin/rmic - /usr/lib/jvm/java-7-openjdk/bin/rmid - /usr/lib/jvm/java-7-openjdk/bin/idlj - /usr/lib/jvm/java-7-openjdk/bin/orbd - /usr/lib/jvm/java-7-openjdk/bin/java - /usr/lib/jvm/java-7-openjdk/bin/jhat - /usr/lib/jvm/java-7-openjdk/bin/jmap - /usr/lib/jvm/java-7-openjdk/bin/jcmd - /usr/lib/jvm/java-7-openjdk/bin/javac - /usr/lib/jvm/java-7-openjdk/bin/javah - /usr/lib/jvm/java-7-openjdk/bin/javap - /usr/lib/jvm/java-7-openjdk/bin/jinfo - /usr/lib/jvm/java-7-openjdk/bin/jstat - /usr/lib/jvm/java-7-openjdk/bin/wsgen - /usr/lib/jvm/java-7-openjdk/bin/jstatd - /usr/lib/jvm/java-7-openjdk/bin/jstack - /usr/lib/jvm/java-7-openjdk/bin/pack200 - /usr/lib/jvm/java-7-openjdk/bin/javadoc - /usr/lib/jvm/java-7-openjdk/bin/keytool - /usr/lib/jvm/java-7-openjdk/bin/wsimport - /usr/lib/jvm/java-7-openjdk/bin/extcheck - /usr/lib/jvm/java-7-openjdk/bin/jconsole - /usr/lib/jvm/java-7-openjdk/bin/tnameserv - /usr/lib/jvm/java-7-openjdk/bin/unpack200 - /usr/lib/jvm/java-7-openjdk/bin/schemagen - /usr/lib/jvm/java-7-openjdk/bin/serialver - /usr/lib/jvm/java-7-openjdk/bin/jarsigner - /usr/lib/jvm/java-7-openjdk/bin/jsadebugd - /usr/lib/jvm/java-7-openjdk/bin/jrunscript - /usr/lib/jvm/java-7-openjdk/bin/policytool - /usr/lib/jvm/java-7-openjdk/bin/servertool - /usr/lib/jvm/java-7-openjdk/bin/rmiregistry - /usr/lib/jvm/java-7-openjdk/bin/java-rmi.cgi - /usr/lib/jvm/java-7-openjdk/bin/native2ascii - /usr/lib/jvm/java-7-openjdk/bin/appletviewer - /usr/lib/jvm/java-7-openjdk/lib/jexec - /usr/lib/jvm/java-7-openjdk/lib/ct.sym - /usr/lib/jvm/java-7-openjdk/lib/dt.jar - /usr/lib/jvm/java-7-openjdk/lib/ir.idl - /usr/lib/jvm/java-7-openjdk/lib/orb.idl - /usr/lib/jvm/java-7-openjdk/lib/tools.jar - /usr/lib/jvm/java-7-openjdk/lib/sa-jdi.jar - /usr/lib/jvm/java-7-openjdk/lib/jconsole.jar - - - sun-jdk - - - sun-jdk - - - 21java_jdk.csh - 21java_jdk - - - - openjdk7-src - Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - sources - - jdk7-openjdk - - - /usr/lib/jvm/java-7-openjdk/src.zip - - - - openjdk7-doc - Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - documentation - - jdk7-openjdk - - - /usr/share/doc/openjdk7-doc/ - - - - - 2015-08-22 - 7u_85.2.6.1 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-06-16 - 7u_79.2.5.5 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-02-02 - 7u_75.2.5.4 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2014-09-30 - 7u_65.2.5.2 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2014-07-18 - 7u_65.2.5.1 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2014-06-20 - 7u_60.2.5.0 - Rebuilf for new gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-06-04 - 7u_55.2.4.7 - Rebuilf for new gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-04-16 - 7u_55.2.4.7 - Version bump to 2.4.7, use system ca-certs-java instead of builtin one. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-04-01 - 7u_51.2.4.6 - Version bump to 2.4.6, use system ca-certs-java instead of builtin one. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-27 - 7u_51.2.4.5 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - eclipse-ecj - http://www.eclipse.org - - PisiLinux Community - admins@pisilinux.org - - EPL - app:web - programming.language.java - Eclipse java bytecode compiler - Eclipse java bytecode compiler - http://download.eclipse.org/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar - - ant - jre7-openjdk-headless - - - 01-ecj-include-props.patch - 02-buildxml-fix-manifest.patch - - programming/language/java/eclipse-ecj/pspec.xml - - - eclipse-ecj - - /usr/share/man - /usr/bin - /usr/share/java - - - ecj - - - - - 2015-05-19 - 4.4.2_201502041700 - Version Bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-04 - 4.4.1_201409250400 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-06-04 - 4.3.1_201309111000 - Rebuild for new gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-02-27 - 4.3.1_201309111000 - First Release - PisiLinux Community - admins@pisilinux.org - - - - - - rhino - http://www.mozilla.org/rhino/ - - PisiLinux Community - admins@pisilinux.org - - GPL2 - programming.language.java - Open-source implementation of JavaScript written entirely in Java - Open-source implementation of JavaScript written entirely in Java - https://github.com/mozilla/rhino/archive/Rhino1_7_7_RELEASE.tar.gz - http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz - - rhino - rhino.1 - rhino-jsc - rhino-jsc.1 - rhino-debugger - rhino-debugger.1 - - - ant - re7-openjdk-headless - - programming/language/java/rhino/pspec.xml - - - rhino - - /usr/share/man - /usr/bin - /usr/share/java/ - - - - - 2015-08-15 - 1.7.7 - Version Bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-03 - 1.7R_4 - Rebuild for openjdk. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-04 - 1.7R_4 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2012-07-23 - 1.7 - First release - Ramazan Utku - admins@pisilinux.org - - - - - - ruby-gtk2 - http://ruby-gnome2.sourceforge.jp/ - - Merve Yüzbaşıoğlu - admins@pisilinux.org - - LLGPL-2.1 - library - programming.language.ruby - GNOME 2 bindings for Ruby - Ruby için GNOME 2 bağlayıcıları - Ruby-gtk2 is a set of bindings for the GNOME-2.x libraries to use from Ruby. - ruby-gtk2, GNOME 2 kütüphaneleri için bağlayıcıları içerir. - mirrors://sourceforge/ruby-gnome2/ruby-gtk2-2.2.0.tar.gz - - atk-devel - ruby-devel - gtk2-devel - pango-devel - gdk-pixbuf-devel - - programming/language/ruby/ruby-gtk2/pspec.xml - - - ruby-gtk2 - - atk - ruby - gtk2 - pango - gdk-pixbuf - - - /usr/lib - /usr/share/doc - - - - - 2014-05-24 - 2.2.0 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-11 - 2.1.0 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-05-03 - 1.1.3 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - ruby - http://www.ruby-lang.org/en/ - - PisiLinux Community - admins@pisilinux.org - - Ruby - app:console - programming.language.ruby - An object-oriented scripting language - Nesneye dayalı bir dil - Ruby est un langage de programmation dynamique, open source mettant l'accent sur la simplicité et la productivité. Il a une syntaxe élégante qui est naturelle à lire et facile à écrire. - Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. - Ruby, basitlik ve üretkenliğe odaklanan açık kaynaklı, dinamik bir betik dilidir. Okuması ve yazması kolay, şık bir sözdizime sahiptir. - Ruby es un lenguaje dinámico, de código abierto, y con enfoque en simplicidad y productividad. Tiene una sintaxis elegante que permite leer naturalmente y escribirlo de manera fácil. - ftp://ftp.ruby-lang.org/pub/ruby/2.2/ruby-2.2.2.tar.bz2 - - tcltk-devel - db-devel - gmp-devel - tcl-devel - gdbm-devel - zlib-devel - libffi-devel - openssl-devel - readline-devel - libyaml-devel - - programming/language/ruby/ruby/pspec.xml - - - ruby - - db - gmp - tcl - gdbm - zlib - tcltk - libffi - openssl - readline - libyaml - - - /usr/bin - /usr/lib/ruby/2.2.0/ - /usr/lib/ruby/site_ruby/ - /usr/lib/ruby/vendor_ruby/ - /usr/lib/ruby/libruby-static.a - /usr/lib/libruby.so.2.2 - /usr/lib/libruby.so.2.2.0 - /usr/lib/libruby-static.a - /usr/lib/libruby.so - /usr/share/ri - /usr/share/doc - /usr/share/man - - - - rubygems - rubygems, The Ruby standard for packaging ruby libraries - - ruby - - - /usr/bin/gem - /usr/lib/ruby/gems - /usr/share/ri/2.2.0/system/Gem - - - - ruby-devel - ruby için geliştirme dosyaları - ruby için geliştirme dosyaları - - ruby - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-18 - 2.2.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-09 - 2.2.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-24 - 2.1.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-04 - 2.0.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-28 - 2.0.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-07 - 1.9.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-GSSAPI - http://search.cpan.org/dist/GSSAPI/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl extension providing access to the GSSAPIv2 library - GSSAPI kitaplığına erişim sağlayan perl modülü - perl-GSSAPI module gives access to the routines of the GSSAPI library, as described in rfc2743 and rfc2744 and implemented by the Kerberos-1.2 distribution from MIT. - perl-GSSAPI, RFC 2744'de açıklandığı gibi GSSAPI C bağlayıcılarını kullanan bir perl eklentisidir. - http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/GSSAPI-0.28.tar.gz - - perl - mit-kerberos - e2fsprogs-devel - - - disable_failing_test.patch - - programming/language/perl/perl-GSSAPI/pspec.xml - - - perl-GSSAPI - - perl - mit-kerberos - e2fsprogs - - - /usr/lib - /usr/share/man - - - - - 2015-04-23 - 0.28 - Release bump, fix deps - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.28 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-21 - 0.28 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 0.28 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Encode-Locale - http://search.cpan.org/~gaas/Encode-Locale-1.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2+ - app:console - programming.language.perl - NAME::Encode::Locale - Determine the locale encoding - In many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world are still byte based. Programs therefore need to decode byte strings that enter the program from the outside and encode them again on the way out. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Encode-Locale-1.03.tar.gz - - perl - - programming/language/perl/perl-Encode-Locale/pspec.xml - - - perl-Encode-Locale - - perl - - - /usr/lib - /usr/share - - - - - 2014-09-10 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-31 - 1.03 - rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 1.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-File-Listing - http://search.cpan.org/~gaas/File-Listing-6.04/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - File::Listing - parse directory listing - This module exports a single function called parse_dir(), which can be used to parse directory listings. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz - - perl - perl-HTTP-Date - - programming/language/perl/perl-File-Listing/pspec.xml - - - perl-File-Listing - - perl - perl-HTTP-Date - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.04 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-25 - 6.04 - Fix version number. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 6.0.4 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 6.0.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Authen-SASL - http://search.cpan.org/dist/Authen-SASL - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - A Perl SASL interface - Perl için SASL modülü - SASL is a generic mechanism for authentication used by several network protocols. Authen::SASL provides an implementation framework that all protocols should be able to share. The framework allows different implementations of the connection class to be plugged in. - SASL, ağ protokolleri tarafından kullanılan genel bir kimlik doğrulama tekniğidir. Authen::SASL, bütün protokollerin paylaşabileceği bir yapı sağlar. Bu yapı, kullanılacak bağlantı sınıfının farklı şekillerde uygulamalarına izin verir. - SASL es un mecanismo genérico de autenticación usado en varios protocolos de red. Authen::SASL facilita un capa de implementación, que todos los protocolos deberían poder compartir. El framework permite adjuntar implementaciones diferentes de la clase de conexión. - http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-2.16.tar.gz - - perl - perl-GSSAPI - perl-Digest-HMAC - - programming/language/perl/perl-Authen-SASL/pspec.xml - - - perl-Authen-SASL - - perl - perl-GSSAPI - perl-Digest-HMAC - - - /usr/lib - /usr/share/doc/perl-Authen-SASL - /usr/share/man - - - - - 2014-09-10 - 2.16 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 2.16 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-04 - 2.16 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-06 - 2.15 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-libwww - http://search.cpan.org/dist/libwww-perl - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Application programming interface to the World-Wide Web - libwww-perl collection is a set of Perl modules which provides a simple and consistent application programming interface to the World-Wide Web. - La colección libwww-perl es un conjunto de módulos Perl que facilitan una interfaz de programación de aplicación, simple y consistente para la Web. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/libwww-perl-6.05.tar.gz - - perl - perl-URI - perl-NET-HTTP - perl-HTTP-Date - perl-HTML-Parser - perl-HTML-Tagset - perl-HTTP-Daemon - perl-File-Listing - perl-HTTP-Message - perl-Encode-Locale - perl-HTTP-Negotiate - perl-LWP-Mediatypes - perl-WWW-Robotrules - - programming/language/perl/perl-libwww/pspec.xml - - - perl-libwww - - perl - perl-URI - perl-NET-HTTP - perl-HTTP-Date - perl-HTML-Parser - perl-HTML-Tagset - perl-HTTP-Daemon - perl-File-Listing - perl-HTTP-Message - perl-Encode-Locale - perl-HTTP-Negotiate - perl-LWP-Mediatypes - perl-WWW-Robotrules - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2014-09-10 - 6.05 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.05 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-21 - 6.05 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 6.04 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Tagset - http://search.cpan.org/dist/HTML-Tagset/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Data tables useful in parsing HTML - HTML ayrıştırmak için yararlı bilgi tabloları - HTML-Tagset contains several data tables useful in various kinds of HTML parsing operations. - HTML-Tagset HTML ayrıştırmak için yararlı birçok bilgi tablosunu barındırır. - HTML-Tagset contiene varios tablas de datos útiles para varias operaciones de parsear HTML. - http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz - - perl - - programming/language/perl/perl-HTML-Tagset/pspec.xml - - - perl-HTML-Tagset - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-HTML-Tagset - - - - - 2014-09-10 - 3.20 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 3.20 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 3.20 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-09-07 - 3.20 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTML-Parser - http://search.cpan.org/dist/HTML-Parser/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - HTML Parser - HTML ayrıştırmak için kütüphane - The HTML-Parser distribution is a collection of modules that parse and extract information from HTML documents. - HTML-Parser yazılımı, HTML dökümanlarından bilgi ayrıştıran ve seçip çıkaran bir modüller kolleksiyonudur. - La distribución HTML-Parser es una colección de módulos que analizan la sintaxis y extraen información de documentos HTML. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Parser-3.71.tar.gz - - perl - perl-Test-Pod - perl-HTML-Tagset - - programming/language/perl/perl-HTML-Parser/pspec.xml - - - perl-HTML-Parser - - perl - perl-HTML-Tagset - - - /usr/lib - /usr/share/doc/perl-HTML-Parser - /usr/share/man - - - - - 2014-09-10 - 3.71 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 3.71 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-06 - 3.71 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-06-29 - 3.69 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTTP-Body - http://search.cpan.org/~getty/HTTP-Body-1.15/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP Body Parser - HTTP::Body parses chunks of HTTP POST data and supports application/octet-stream, application/x-www-form-urlencoded, and multipart/form-data. - http://search.cpan.org/CPAN/authors/id/G/GE/GETTY/HTTP-Body-1.19.tar.gz - - perl - perl-Test-Deep - - programming/language/perl/perl-HTTP-Body/pspec.xml - - - perl-HTTP-Body - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 1.19 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.19 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.25 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 1.15 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Net-SMTP-SSL - http://search.cpan.org/dist/Net-SMTP-SSL/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - SSL Support for Net::SMTP - Net::SMTP için SSL desteği - perl-NET-SMTP-SSL implements the same API as Net::SMTP but uses IO::Socket::SSL for its network operations. - perl-Net-SMTP-SSL, SMTP protokolüne SSL desteği katarak güvenli e-posta gönderimi sağlar. - http://search.cpan.org/CPAN/authors/id/C/CW/CWEST/Net-SMTP-SSL-1.01.tar.gz - - perl - perl-IO-Socket-SSL - - programming/language/perl/perl-Net-SMTP-SSL/pspec.xml - - - perl-Net-SMTP-SSL - - perl - perl-IO-Socket-SSL - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 1.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 1.01 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-11 - 1.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-WWW-Robotrules - http://search.cpan.org/~gaas/WWW-RobotRules-6.02/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - database of robots.txt-derived permissions - This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html> Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/WWW-RobotRules-6.02.tar.gz - - perl - - programming/language/perl/perl-WWW-Robotrules/pspec.xml - - - perl-WWW-Robotrules - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-06 - 6.02 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 6.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Negotiate - http://search.cpan.org/~gaas/HTTP-Negotiate-6.01/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - choose a variant to serve - This module provides a complete implementation of the HTTP content negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for the selection of a preferred content representation based upon attributes of the negotiable variants and the value of the various Accept* header fields in the request. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz - - perl - perl-HTTP-Date - perl-HTTP-Message - - programming/language/perl/perl-HTTP-Negotiate/pspec.xml - - - perl-HTTP-Negotiate - - perl - perl-HTTP-Date - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.01 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-16 - 6.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Daemon - http://search.cpan.org/~gaas/HTTP-Daemon-6.01/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - a simple http server class - Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a socket for incoming requests. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Daemon-6.01.tar.gz - - perl - - programming/language/perl/perl-HTTP-Daemon/pspec.xml - - - perl-HTTP-Daemon - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.01 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-06 - 6.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-IO-Socket-SSL - http://search.cpan.org/dist/IO-Socket-SSL/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Nearly transparent SSL encapsulation for IO::Socket::INET - IO::Socket::SSL is a class implementing an object oriented interface to SSL sockets. The class is a descendent of IO::Socket::INET. - IO::Socket::SSL, SSL soketlerine nesne yönelimli arayüz sağlayan bir sınıftır. IO::Socket::INET'in gelişmişidir. - IO::Socket::SSL es una clase que implementa una inerfaz a sockets SSL, orientado a objetos. La clase es descendiente de IO::Socket::INET. - http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-1.998.tar.gz - - perl-Net-SSLeay - perl - - programming/language/perl/perl-IO-Socket-SSL/pspec.xml - - - perl-IO-Socket-SSL - - perl-Net-SSLeay - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-IO-Socket-SSL - - - - - 2014-09-10 - 1.998 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.989 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 1.76 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-09-07 - 1.76 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-LWP-Mediatypes - http://search.cpan.org/~gaas/LWP-MediaTypes-6.02/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - guess media type for a file or a URL - This module provides functions for handling media (also known as MIME) types and encodings. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz - - perl - - programming/language/perl/perl-LWP-Mediatypes/pspec.xml - - - perl-LWP-Mediatypes - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 12.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 12.2 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Server-Simple - http://search.cpan.org/dist/HTTP-Server-Simple/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Lightweight HTTP Server - Basit bir HTTP Sunucusu - HTTP::Server::Simple is a very simple standalone HTTP daemon with no non-core module dependencies. It's ideal for building a standalone http-based UI to your existing tools. - HTTP::Server::Simple basit, perl çekirdek modülleri dışında bağımlılığı olmadan tek başına çalışabilen bir HTTP hizmetidir. Tek başına çalışan, HTTP temelli bir uygulama yazmak istiyorsanız idealdir. - http://search.cpan.org/CPAN/authors/id/J/JE/JESSE/HTTP-Server-Simple-0.45_02.tar.gz - - perl - perl-URI - - programming/language/perl/perl-HTTP-Server-Simple/pspec.xml - - - perl-HTTP-Server-Simple - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 0.45_02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-25 - 0.45_02 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.44 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 0.44 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Sub-Uplevel - http://search.cpan.org/dist/Sub-Uplevel/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Module to apparently run a function in a higher stack frame - Bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmak için perl modülü - Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. - http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.24.tar.gz - - perl - - programming/language/perl/perl-Sub-Uplevel/pspec.xml - - - perl-Sub-Uplevel - - perl - - - /usr/lib - /usr/share/doc/perl-Sub-Uplevel - /usr/share/man - - - - - 2014-09-10 - 0.24 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.24 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 0.24 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 0.24 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Digest-SHA1 - http://search.cpan.org/dist/Digest-SHA1/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - SHA1 message digest algorithm - The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input. - Bu modül NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlar. Farklı uzunluklardaki mesajları alan algoritma, çıktı olarak 160 bitlik parmakizi veya mesaj özeti üretir. - El módulo Digest::SHA1 permite usar el algoritmo NIST SHA-1 desde programas Perl. El algoritmo acepta como entrada un mensaje de longitud arbitraria y produce un "fingerprint" (huella digital) o "message digest" de 160-bit. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz - - perl - - programming/language/perl/perl-Digest-SHA1/pspec.xml - - - perl-Digest-SHA1 - - perl - - - /usr/lib - /usr/share/doc/perl-Digest-SHA1 - /usr/share/man - - - - - 2014-09-10 - 2.13 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 2.13 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 2.13 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 2.13 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Digest-MD5 - http://www.cpan.org - - PisiLinux Community - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl interface to the MD5 Algorithm - MD5 Algoritmasına perl arayüzü - Perl interface to the MD5 Algorithm - MD5 Algoritmasına perl arayüzü - http://www.cpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.53.tar.gz - - perl - - programming/language/perl/perl-Digest-MD5/pspec.xml - - - perl-Digest-MD5 - - perl - - - /usr/bin - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 2.53 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 2.53 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-23 - 2.53 - Rebuild - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org - - - 2013-11-04 - 2.53 - V.bump - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org - - - 2013-03-21 - 2.52 - First release - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org - - - - - - perl-Archive-Zip - http://search.cpan.org/dist/Archive-Zip - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Perl interface to ZIP archive files - ZIP arşivlerine erişim için Perl modülü - The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files. This module uses the Compress::Zlib library to read and write the compressed streams inside the files. - Bu modül, Perl programlarının Zip arşiv dosyalarını oluşturmasını, düzenlemesini ve okumasını sağlar. Dosyaların içindeki akımları okumak ve yazmak için Compress:Zlib kütüphanesini kullanır. - El módulo Archive::Zip permite a programas Perl la creación, manipulación, lectura y escritura de archivos comprimidos ZIP. Este módulo utiliza la librería Compress::Zlib para leer y escribir los flujos (streams) comprimidos dentro de los archivos. - http://www.cpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.49.tar.gz - - perl - - programming/language/perl/perl-Archive-Zip/pspec.xml - - - perl-Archive-Zip - - perl - - - /usr/lib/perl5 - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2015-08-15 - 1.49 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-10 - 1.38 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.37 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-21 - 1.33 - Version Bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 1.31_04 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Test-Pod - http://search.cpan.org/dist/Test-Pod - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - A perl module to check for errors in POD files - Pod dosyalarında hata olup olmadığını kontrol eden bir Perl Modülü - Check POD files for errors or warnings in a test file, using Pod::Simple. - Test::Pod, Pod::Simple modülünü kullanarak POD dosyalarında hata ya da uyarı olup olmadığını kontrol etmeye yarayan bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz - - perl - - programming/language/perl/perl-Test-Pod/pspec.xml - - - perl-Test-Pod - - perl - - - /usr/lib - /usr/share/man - - - - - 2014-09-10 - 1.48 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.48 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-07 - 1.48 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 1.45 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Digest-HMAC - http://search.cpan.org/dist/Digest-HMAC - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Keyed-Hashing for Message Authentication - This Perl module provides HMAC-MD5 hashing. - Bu Perl modülü HMAC-MD5 şifrelemesi sağlar. - Este módulo Perl facilita hashing HMAC-MD5 - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-1.03.tar.gz - - perl - perl-Digest-SHA1 - - programming/language/perl/perl-Digest-HMAC/pspec.xml - - - perl-Digest-HMAC - - perl - perl-Digest-SHA1 - - - /usr/lib - /usr/share/man - - - - - 2014-09-10 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 1.03 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 1.03 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-URI - http://search.cpan.org/~gaas/URI - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl module for Uniform Resource Identifiers (absolute and relative) - A Uniform Resource Identifier is a compact string of characters that identifies an abstract or physical resource. A Uniform Resource Identifier can be further classified as either a Uniform Resource Locator (URL) or a Uniform Resource Name (URN). - Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri), soyut veya fiziki bir kaynağı belirleyen bir tekparça karakter dizgesidir. Bir URI, bir URL (Uniform Resource Locator – Tektip Kaynak Bulucu) veya bir URN (Uniform Resource Name – Tektip Kaynak Adı)’den daha ötede sınıflandırılabilir. - Un identificador de recurso uniformado (URI) es una cadena de caracteres compacta que identifica un recurso físico o abstracto. Se puede clasificar los URI en Uniform Resource Locator (URL) o Uniform Resource Name (URN). - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/URI-1.60.tar.gz - - perl - - programming/language/perl/perl-URI/pspec.xml - - - perl-URI - - perl - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 1.60 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.60 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-07 - 1.60 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-11 - 1.60 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-LWP-Protocol-https - http://search.cpan.org/~gaas/LWP-Protocol-https-6.04/lib/LWP/Protocol/https.pm - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - LWP::Protocol::https - Provide https support for LWP::UserAgent - The LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-Protocol-https-6.04.tar.gz - - perl - perl-Mozilla-CA - - programming/language/perl/perl-LWP-Protocol-https/pspec.xml - - - perl-LWP-Protocol-https - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2014-10-16 - 6.04 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Error - http://search.cpan.org/dist/Error/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Error/exception handling in an OO-ish way - Hata/istisna yakalama ve işlemeye yarayan Nesne yönelimli mantıkla yazılmış bir perl modülü - The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded. - perl-Error, Hata/istisna yakalama ve işleme işlerini gören, Nesne yönelimli mantıkla yazılmış bir perl modülüdür. - http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Error-0.17022.tar.gz - - perl - - programming/language/perl/perl-Error/pspec.xml - - - perl-Error - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 0.17022 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 0.17022 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 0.17021 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-04-25 - 0.17019 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-09-07 - 0.17018 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Image-ExifTool - http://www.sno.phy.queensu.ca/~phil/exiftool - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - A command-line application for reading, writing and editing meta information in image, audio and video files - Görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz bir komut satırı uygulaması - ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in image, audio and video files. - ExifTool; görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz platformdan bağımsız bir Perl kütüphanesi ve komut satırı uygulamasıdır. - http://www.cpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-10.00.tar.gz - - perl - - programming/language/perl/perl-Image-ExifTool/pspec.xml - - - perl-Image-ExifTool - - perl - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/perl-Image-ExifTool/Changes - - - - perl-Image-ExifTool-docs - Documentation of perl-Image-ExifTool - perl-Image-ExifTool için dökümantasyon dosyaları - - /usr/share/doc - - - - - 2015-08-27 - 10.00 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - perl-HTTP-Message - http://search.cpan.org/~gaas/HTTP-Message-6.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Class encapsulating HTTP Message headers - The HTTP::Headers class encapsulates HTTP-style message headers. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Message-6.06.tar.gz - - perl - perl-LWP-Mediatypes - perl-HTTP-Date - perl-HTML-Parser - perl-URI - - programming/language/perl/perl-HTTP-Message/pspec.xml - - - perl-HTTP-Message - - perl - perl-LWP-Mediatypes - perl-HTTP-Date - perl-HTML-Parser - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.06 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 6.06 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.03 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-16 - 6.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Date - http://search.cpan.org/~gaas/HTTP-Date-6.02/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - date conversion routines - This module provides functions that deal the date formats used by the HTTP protocol (and then some more). Only the first two functions, time2str() and str2time(), are exported by default. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Date-6.02.tar.gz - - perl - - programming/language/perl/perl-HTTP-Date/pspec.xml - - - perl-HTTP-Date - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.02 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Template - http://search.cpan.org/~wonko/HTML-Template-2.91/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Perl module to use HTML-like templating language - First you make a template - this is just a normal HTML file with a few extra tags, the simplest being <TMPL_VAR> - http://search.cpan.org/CPAN/authors/id/W/WO/WONKO/HTML-Template-2.95.tar.gz - - perl - - programming/language/perl/perl-HTML-Template/pspec.xml - - - perl-HTML-Template - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 2.95 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 2.95 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 2.91 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-06 - 2.91 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Scrubber - http://search.cpan.org/dist/HTML-Scrubber - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl extension for scrubbing/sanitizing html - HTML dosyalarını düzenlemek için bir perl modülü - If you wanna scrub or sanitize html input in a reliable an flexible fashion, then this module is for you. I wasn't satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought I'd write something similar that works directly with HTML::Parser. - http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Scrubber-0.11.tar.gz - - perl-HTML-Parser - perl - - programming/language/perl/perl-HTML-Scrubber/pspec.xml - - - perl-HTML-Scrubber - - perl-HTML-Parser - perl - - - /usr/lib - /usr/share/man - - - - - 2014-09-10 - 0.11 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.09 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 0.09 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-String-ShellQuote - http://search.cpan.org/~rosch/String-ShellQuote - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Quote strings for passing through the shell - This module contains some functions which are useful for quoting strings which are going to pass through the shell or a shell-like object. - Bu modül kabuk veya kabuk benzeri bir neseden geçecek dizgeleri tırnak içine almak için fonksiyonlar içerir. - El módulo contiene algunas funciones útiles para encerrar cadenas de texto entre comillas, para pasarlo a una shell o a un objeto similar. - http://search.cpan.org/CPAN/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz - - perl - - programming/language/perl/perl-String-ShellQuote/pspec.xml - - - perl-String-ShellQuote - - perl - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/perl-String-ShellQuote - - - - - 2014-09-10 - 1.04 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.04 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 1.04 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-07-10 - 1.04 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-FormatText-WithLinks-AndTables - http://search.cpan.org/dist/HTML-FormatText-WithLinks-AndTables - - Osman Erkan - osman.erkan@pisilinux.org - - PerlArtistic GPL - library - programming.language.perl - Converts HTML to Text with tables in tact. - This module was inspired by HTML::FormatText::WithLinks which has proven to be a useful `lynx -dump` work-alike. - http://search.cpan.org/CPAN/authors/id/S/SF/SFRYER/HTML-FormatText-WithLinks-AndTables-0.02.tar.gz - - perl - perl-HTML-FormatText-WithLinks - - programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml - - - perl-HTML-FormatText-WithLinks-AndTables - - perl - perl-HTML-FormatText-WithLinks - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 0.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-23 - 0.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Test-Exception - http://search.cpan.org/dist/Test-Exception/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Module for testing exception based codes - Perl için exception tabanlı kod denetleme modülü - This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. - http://search.cpan.org/CPAN/authors/id/A/AD/ADIE/Test-Exception-0.32.tar.gz - - perl - perl-Sub-Uplevel - - programming/language/perl/perl-Test-Exception/pspec.xml - - - perl-Test-Exception - - perl - perl-Sub-Uplevel - - - /usr/lib - /usr/share/doc/perl-Test-Exception - /usr/share/man - - - - - 2014-09-10 - 0.32 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.32 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 0.32 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 0.31 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTML-FormatText-WithLinks - http://search.cpan.org/dist/HTML-FormatText-WithLinks - - Osman Erkan - osman.erkan@pisilinux.org - - PerlArtistic GPL - library - programming.language.perl - HTML to text conversion with links as footnotes. - HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. - http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-0.14.tar.gz - - perl - perl-HTML-Tree - perl-HTML-Format - - programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml - - - perl-HTML-FormatText-WithLinks - - perl - perl-HTML-Tree - perl-HTML-Format - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 0.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-23 - 0.14 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Tree - http://search.cpan.org/dist/HTML-Tree/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - programming.language.perl - A Perl module that build and scan parse-trees of HTML - HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülü - Build and scan parse-trees of HTML. It allows to represent,create and extract information from HTML syntax trees. - HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülüdür. HTML ağaçlarındaki bilgileri oluşturmaya, çıkartmaya ve sunmaya yarar. - http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/HTML-Tree-5.03.tar.gz - - perl - perl-HTML-Tagset - perl-HTML-Parser - perl-Test-Exception - perl-Test-Pod-Coverage - - programming/language/perl/perl-HTML-Tree/pspec.xml - - - perl-HTML-Tree - - perl - perl-HTML-Tagset - perl-HTML-Parser - perl-Test-Exception - perl-Test-Pod-Coverage - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 5.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 5.03 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 5.02 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 5.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Template-Pro - http://search.cpan.org/dist/HTML-Template-Pro - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - LGPLv2 - library - programming.language.perl - Perl/XS module to use HTML Templates from CGI scripts - CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modülü - A fast and lightweight C/Perl+XS HTML Template engine implementation. - http://search.cpan.org/CPAN/authors/id/V/VI/VIY/HTML-Template-Pro-0.9510.tar.gz - - perl - perl-JSON - - programming/language/perl/perl-HTML-Template-Pro/pspec.xml - - - perl-HTML-Template-Pro - - perl - perl-JSON - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 0.9510 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 0.9510 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.9509 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 0.9509 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Crypt-PasswdMD5 - http://search.cpan.org/dist/Crypt-PasswdMD5/ - - Selim Ok - admins@pisilinux.org - - Artistic - library - programming.language.perl - Crypt::PasswdMD5 module for perl - Perl için Crypt::PasswdMD5 modülü - Provides various crypt()-compatible interfaces to the MD5-based crypt() function. - MD5 tabanlı crypt() fonksiyonu için, crypt() uyumlu çeşitli arayüzler sağlar. - http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-1.40.tgz - - perl - - programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml - - - perl-Crypt-PasswdMD5 - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 1.40 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.40 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 1.40 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTTP-Cookies - http://search.cpan.org/~gaas/HTTP-Cookies-6.01/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP cookie jars - This class is for objects that represent a "cookie jar" -- that is, a database of all the HTTP cookies that a given LWP::UserAgent object knows about. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Cookies-6.01.tar.gz - - perl - perl-HTTP-Message - - programming/language/perl/perl-HTTP-Cookies/pspec.xml - - - perl-HTTP-Cookies - - perl - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 6.01 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-NET-HTTP - http://search.cpan.org/~gaas/Net-HTTP-6.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Low-level HTTP connection (client) - The Net::HTTP class is a low-level HTTP client. An instance of the Net::HTTP class represents a connection to an HTTP server. The HTTP protocol is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Net-HTTP-6.06.tar.gz - - perl - - programming/language/perl/perl-NET-HTTP/pspec.xml - - - perl-NET-HTTP - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.06 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 6.06 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.03 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Text-ParseWords - http://search.cpan.org/~chorny/Text-ParseWords-3.29/ParseWords.pm - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Text::ParseWords - parse text into an array of tokens or array of arrays - This module has two interfaces, one through color() and colored() and the other through constants. It also offers the utility functions uncolor(), colorstrip(), and colorvalid(), which have to be explicitly imported to be used - http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Text-ParseWords-3.30.tar.gz - - perl - - programming/language/perl/perl-Text-ParseWords/pspec.xml - - - perl-Text-ParseWords - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-07-26 - 3.30 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-10 - 3.29 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 3.29 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-07 - 3.29 - Version bump, fix URL - Richard de Bruin - richdb@pisilinux.org - - - 2012-06-06 - 3.27 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Form - http://search.cpan.org/~gaas/HTML-Form-6.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTML::Form - Class that represents an HTML form element - Objects of the HTML::Form class represents a single HTML <form> ... </form> instance. A form consists of a sequence of inputs that usually have names, and which can take on various values. The state of a form can be tweaked and it can then be asked to provide HTTP::Request objects that can be passed to the request() method of LWP::UserAgent. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Form-6.03.tar.gz - - perl - - programming/language/perl/perl-HTML-Form/pspec.xml - - - perl-HTML-Form - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 6.03 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Net-SSLeay - http://search.cpan.org/~flora/Net-SSLeay - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Net::SSLeay module for perl - OpenSSL erişimi için Perl modülü - Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. This protocol is frequently used in the telecoms and mobile operator world to pass short messages between systems that implement the short message service (SMS). - Net::SMPP, TCP üzerinden kısa mesaj gönderimi gerçeklemesidir. Bu iletişim kuralı genelde telekom alanında kısa mesaj servisini (SMS) gerçekleştirmek için kullanılır. - Net::SMPP es una implementación del protocolo TCP de mensajes cortos sobre Peer to Peer. Este protocolo está frecuentemente usado por operadoras de telecom y móviles para pasar mensajes cortos entre sistemas que implementan el servicio de mensajes cortos (SMS). - http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-1.66.tar.gz - - perl - perl-Test-Exception - openssl-devel - - programming/language/perl/perl-Net-SSLeay/pspec.xml - - - perl-Net-SSLeay - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-Net-SSLeay - - - - - 2014-09-10 - 1.66 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.63 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 1.48 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-09-12 - 1.48 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTML-Format - http://search.cpan.org/dist/HTML-Format/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - A Perl module that format HTML as plaintext, RTF and PostScript - HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. - perl-HTML-Format HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-2.11.tar.gz - - perl - perl-HTML-Tree - perl-Font-AFM - - programming/language/perl/perl-HTML-Format/pspec.xml - - - perl-HTML-Format - - perl - perl-HTML-Tree - perl-Font-AFM - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 2.11 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 2.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 2.10 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-06 - 2.10 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - llvm - http://www.llvm.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - NCSA - programming.build - The Low Level Virtual Machine - Düşük Seviye Sanal Makine (LLVM) - The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines, though it does provide helpful libraries that can be used to build them. - LLVM projesi, modüler ve tekrar tekrar kullanılabilir derleyici teknolojileri koleksiyonudur. Adının aksine geleneksel sanal makinelerden çok farklıdır; ancak sanal makineleri oluşturmak için faydalı kitaplıklar içerir. - http://llvm.org/releases/3.5.0/llvm-3.5.0.src.tar.xz - http://llvm.org/releases/3.5.0/cfe-3.5.0.src.tar.xz - http://llvm.org/releases/3.5.0/clang-tools-extra-3.5.0.src.tar.xz - http://llvm.org/releases/3.5.0/compiler-rt-3.5.0.src.tar.xz - - zlib-devel - libxml2-devel - ncurses-devel - ocaml - libffi-devel - groff - libedit-devel - binutils - - - llvm-3.5.0-fix-cmake-llvm-exports.patch - llvm-3.5.0-force-link-pass.o.patch - - programming/build/llvm/pspec.xml - - - llvm - app:console - library - - llvm-libs - libxml2 - libgcc - ncurses - - - /usr/bin - /usr/bin/llvm-config - /usr/include/llvm* - /usr/lib/llvm - /usr/lib - /etc/ld.so.conf.d - /etc/llvm - /usr/share/doc - /usr/share/vim - /usr/share/llvm/cmake - /usr/share/kde4 - /usr/share/man - - - - llvm-libs - library - - zlib - libffi - libedit - libgcc - ncurses - - - /usr/lib/llvm/libLLVM-3* - /usr/share/licenses/llvm-libs/LICENSE - - - - llvm-ocaml - OCaml binding for LLVM - LLVM için OCaml bağlayıcısı - library - programming.language.ocaml - - llvm - ocaml - - - /usr/lib/ocaml - - - - llvm-clang-analyzer - A source code analysis framework - C ve Objective-C için kod analiz altyapısı - The Clang Static Analyzer consists of both a source code analysis framework and a standalone tool that finds bugs in C and Objective-C programs. - app:console - - llvm-clang - - - /usr/lib/clang-analyzer - /usr/bin/scan-* - - - - llvm-clang - A C language family front-end for LLVM - LLVM için C dili ailesi ön ucu - The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. - - llvm-libs - libgcc - ncurses - - - /usr/bin/clang* - /usr/bin/tblgen - /usr/lib/clang - /usr/lib/clang/libclang.so - /usr/share/man/man1/clang.1 - - - - llvm-clang-devel - Development headers for llvm-clang - llvm-clang için başlık dosyaları - - llvm-clang - - - /usr/include/clang - /usr/include/clang-c - - - - llvm-docs - Documentation for LLVM - LLVM belgeleri - data:doc - programming.docs - - /usr/share/doc/llvm/html - /usr/share/doc/llvm/ocamldoc - - - - llvm-32bit - 32-bit shared libraries for llvm - emul32 - emul32 - - zlib-32bit - libffi-32bit - - - llvm - libgcc - libedit - ncurses-32bit - zlib-32bit - libffi-32bit - - - /usr/lib32 - - - - - 2014-09-23 - 3.5.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-11 - 3.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-11 - 3.4.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-01 - 3.3 - Release bump, already cleaned. - marcin bojara - marcin@pisilinux.org - - - 2013-07-26 - 3.3 - Version bump. - marcin bojara - marcin@pisilinux.org - - - 2013-02-18 - 3.2 - version bump - PisiLinux Community - admins@pisilinux.org - - - 2012-06-11 - 3.1 - First release - marcin bojara - marcin@pisilinux.org - - - - - - ant - http://ant.apache.org - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:console - programming.build - Java-based build tool - Java tabanlı inşa aracı - Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. - Apache ant Java tabanlı bir inşa aracıdır. Teorik olarak make'e benzemektedir ancak make'in kırışıksız halidir - Apache Ant es una herramienta de compilación (build) basado en Java. Teróricamente se puede comparar con Make, pero sin las vueltas que tiene aquel. - http://archive.apache.org/dist/ant/source/apache-ant-1.9.6-src.tar.bz2 - - jdk7-openjdk - - - apache-ant-no-test-jar.patch - - programming/build/ant/pspec.xml - - - ant - - /etc - /usr/bin - /usr/share/ - - - 20ant - ant.conf - - - - ant-docs - Documentation package for ant build system - - /usr/share/doc - - - - - 2015-08-22 - 1.9.6 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-25 - 1.9.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-03 - 1.8.4 - Rebuild for openjdk. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-04-20 - 1.8.4 - Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-10-06 - 1.8.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - valgrind - http://www.valgrind.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.profiler - Memory access debugger for X86 and PPC Linux platforms - X86 ve PPC Linux platformları için bellek erişimi hata ayıklayıcı - Valgrind is an award-winning suite of tools for debugging and profiling Linux programs. With the tools that come with Valgrind, you can automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making your programs more stable. You can also perform detailed profiling, to speed up and reduce memory use of your programs. - Valgrind, bu konuda ödül kazanmış Linux için çizge ve hata ayıklama araçları takımıdır. Valgrind ile gelen araçlar yardımıyla, birçok hafıza yönetimi ve iş parçacığı hatalarını otomatik olarak yakalayabilir, boşa geçen hata ayıklama saatlerinizi kazanabilir, programlarınızı daha kararlı bir hale getirebilirsiniz. Ayrıca programlarınızı daha hızlı çalışır yapmak ve kullandıkları hafızayı azaltmak için iş parçacıklarını detaylı olarak inceleyebilirsiniz. - http://www.valgrind.org/downloads/valgrind-3.10.1.tar.bz2 - - glibc-devel - - - valgrind-3.9.0-glibc-2.21.patch - - programming/profiler/valgrind/pspec.xml - - - valgrind - - /usr/bin - /usr/include/valgrind - /usr/lib - /usr/share/doc/valgrind - /usr/share/man - - - - - 2015-07-21 - 3.10.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-10-31 - 3.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-20 - 3.9.0 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-08 - 3.9.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-19 - 3.8.1 - Add glibc-2.17 patch. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-10-24 - 3.8.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gfxboot - https://github.com/openSUSE/gfxboot - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - Tools to create graphical boot logos - Grafik açılış logosu oluşturma araçları - Set of tools to create graphical boot logos, for grub, lilo and syslinux. It supports arch-specific boot menus, advanced help menus, multiple keymaps, animated images, and more graphical pretty things. - Grub, syslinux ve lilo gibi önyükleyiciler için grafik açılış logoları oluşturma araçları. Mimari bazlı açılış menüsü, gelişmiş yardım menüsü, farklı diller için klavye haritası desteği, hareketli görüntü desteği ve daha pek çok görsel efekt desteği içerir. - gfxboot - https://github.com/openSUSE/gfxboot/archive/4.5.7.tar.gz - - xmlto - freetype-devel - util-linux - libxslt - lynx - - - productname.patch - no-theme-no-git.patch - - system/boot/gfxboot/pspec.xml - - - gfxboot - - perl-HTML-Parser - freetype - - - /usr/sbin - /usr/share/gfxboot/bin - /usr/share/gfxboot - /usr/share/doc - - - - - 2015-08-05 - 4.5.7 - Release bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-14 - 4.5.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-23 - 4.5.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-01-13 - 4.5.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - efivar - https://github.com/vathpela/efivar - - Aydın Demirel - aydin.demirel@pisilinux.org - - LGPL2.1 - app:console - system.boot - Tools and library to manipulate EFI variables - EFI değişkenlerini işlemek için araçlar ve kütüphane - Tools and library to manipulate EFI variables. - EFI değişkenlerini işlemek için araçlar ve kütüphane - https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2 - - popt-devel - - system/boot/efivar/pspec.xml - - - efivar - - /usr/lib - /usr/share/man - /usr/bin - - - - efivar-devel - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-02-21 - 0.15 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-27 - 0.10.8 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - gfxtheme-pisilinux-install - www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - system.boot - Pisi Linux gfxboot install theme - Pisi Linux gfxboot teması - Gfxtheme install package for Pisi Linux - Kurulum sistemi ve kurulu sistem için Pisi Linux gfxboot teması. - http://source.pisilinux.org/1.0/gfxtheme-pisilinux-install-0.2.tar.xz - - gfxboot - fribidi-devel - - - chmod-t.patch - - system/boot/gfxtheme-pisilinux-install/pspec.xml - - - gfxtheme-pisilinux-install - - /usr/share/gfxtheme/pisilinux/install - - - - - 2014-08-04 - 0.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-06-14 - 0.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-23 - 0.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-04-06 - 0.1 - First release. - Serdar Soytetir - kaptan@pisilinux.org - - - - - - efibootmgr - https://github.com/vathpela/efibootmgr - - Aydın Demirel - aydin.demirel@pisilinux.org - - GPL2 - app:console - system.boot - Tool to modify UEFI Firmware Boot Manager Variables - UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç - a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. - UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç - http://source.pisilinux.org/1.0/efibootmgr.tar.gz - - pciutils-devel - zlib-devel - efivar - efivar-devel - - system/boot/efibootmgr/pspec.xml - - - efibootmgr - - /usr/sbin - /usr/share/man - /usr/lib/* - - - - efibootmgr-devel - - /usr/include - - - - - 2014-09-27 - 0.7.0.16 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - syslinux - http://syslinux.zytor.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - SysLinux, IsoLinux and PXELinux bootloader - SysLinux, IsoLinux ve PXELinux önyükleyicileri - Lightweight bootloaders for floppy media (SYSLINUX), network booting (PXELINUX), and bootable "El Torito" CD-ROMs (ISOLINUX). The project also includes MEMDISK, a tool to boot legacy operating systems (such as DOS) from nontraditional media; it is usually used in conjunction with PXELINUX and ISOLINUX. - Disket sürücüden (SYSLINUX), ağ üzerinden (PXELINUX) ve açılabilir "El Torito" CD-ROM'lardan (ISOLINUX) açılışı sağlayan hafif önyükleyici araçları. Bu proje ayrıca sık kullanılmayan ya da çok eski işletim sistemlerinin açılışı için genellikle PXELINUX ve ISOLINUX ile ortak kullanılabilen MEMDISK aracını da içermektedir. - https://www.kernel.org/pub/linux/utils/boot/syslinux/4.xx/syslinux-4.07.tar.xz - - nasm - libutil-linux-devel - - - nopie.patch - fixisohybrid.patch - - system/boot/syslinux/pspec.xml - - - syslinux - - mtools - libutil-linux - perl-Crypt-PasswdMD5 - perl-Digest-SHA1 - - - /sbin - /usr/bin - /usr/lib/syslinux - /usr/share/doc - /usr/share/man - - - pisi-iso/isolinux.cfg - pisi-iso/background.png - - - - - 2014-06-14 - 4.07 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-13 - 4.07 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 4.06 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-03-24 - 4.06 - Back to 4x line - Erdinç Gültekin - admins@pisilinux.org - - - 2013-02-07 - 5.00 - fix isohybrid - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-08 - 5.00 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - memtest86 - http://www.memtest.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - Memory tester - Bellek test edici - Testeur de mémoire pour architecture x86 et x86_64 pour ordinateurs x86 et 64 bit x86 compatibles. Il doit être lancer depuis le menu de démarrage. - Memory tester for x86 and x86_64 devices for x86 and 64bit x86 compatible computers. It should be started from boot menu. - x86 ve 64bit x86 mimarilerindeki bilgisayarın belleklerini test etmeye ve hataları bulmaya yaran bir program. Kullanmak için açılış menüsünden çalıştırmanız gerekmektedir. - http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz - system/boot/memtest86/pspec.xml - - - memtest86 - - /boot - /usr/share/doc - - - - - 2015-01-27 - 5.01 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-14 - 4.20 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-10 - 4.20 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-24 - 4.20 - First release - Erdem Artan - admins@pisilinux.org - - - - - - ConsoleKit - https://github.com/Consolekit2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.auth - A framework for defining and tracking users, login sessions, and seats - Kullanıcıları, giriş oturumlarını ve koltukları takip etmek ve tanımlamak için bir altyapı - ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. which keyboard and mouse they use). - ConsoleKit, sisteme giriş yapmış kullanıcıları ve bu kullanıcıların bilgisayar ile nasıl etkileştiğini izleyen bir sistem hizmetidir. - https://github.com/ConsoleKit2/ConsoleKit2/releases/download/1.0.0/ConsoleKit2-1.0.0.tar.bz2 - - acl-devel - pam-devel - dbus-devel - eudev-devel - zlib-devel - glib2-devel - libX11-devel - libnih-devel - cgmanager-devel - polkit-devel - libxslt - xmlto - util-linux - - system/auth/ConsoleKit/pspec.xml - - - ConsoleKit - - acl - pam - dbus - zlib - glib2 - libX11 - libnih - cgmanager - polkit - eudev - - - /etc - /usr/lib/tmpfiles.d/ConsoleKit.conf - /usr/bin - /usr/sbin - /usr/libexec - /lib - /usr/lib - /usr/share/dbus-1 - /usr/share/polkit-1/actions - /usr/share/polkit-1/rules.d - /usr/share/man - /usr/share/locale - /usr/share/doc - /var - - - ConsoleKit.conf - 25-consolekit.rules - consolekit.pamd - pam-foreground-compat.ck - - - - ConsoleKit-devel - Development files for ConsoleKit - ConsoleKit için geliştirme dosyaları - - ConsoleKit - dbus-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-07 - 1.0.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-26 - 1.0.0 - readd pam-foreground-compat.ck script. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-10 - 1.0.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-20 - 0.9.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-16 - 0.9.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-15 - 0.9.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-05 - 0.9.2 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-08-01 - 0.4.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-11 - 0.4.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-06 - 0.4.6 - Dep Fix - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-09 - 0.4.6 - Add gentoo patches and ConsoleKit.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-08 - 0.4.6 - /var/run => /run - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-04 - 0.4.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-08-23 - 0.4.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vbetool - http://www.codon.org.uk/~mjg59/vbetool/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.graphics - Alter video hardware state through video BIOS - Gerçek kipte ekran BIOS değiştirme aracı (örn. ekran kartını yeniden başlatmak için) - vbetools is a real-mode video BIOS code to alter hardware state. Vbetool uses lrmi in order to run code from the video BIOS. It is able to alter DPMS states, save/restore video card state and attempt to initialize the video card from scratch. - Donanım durumunu değiştiren gerçek kipli video BIOS kodudur. Video BIOS'undan gelen kodları çalıştırmak için lrmi kullanır. Video kartının DPMS ve kaydet/tekrar inşaa et durumunun değiştirilmesini sağlar ve video kartının hatalı durumdan başlatılmasına çalışır. - http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.1.tar.gz - - libx86-devel - pciutils-devel - - - vbetool-1.0-build-as-needed.patch - unsigned_int.patch - - hardware/graphics/vbetool/pspec.xml - - - vbetool - - libx86 - pciutils - - - /usr/share/doc - /usr/share/man - /usr/sbin - - - - - 2014-05-24 - 1.1 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - nvidia-settings - http://www.nvidia.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - hardware.graphics - The NVIDIA X Server Settings tool - NVIDIA X Sunucusu ayarlama aracı - The nvidia-settings utility is a tool for configuring the NVIDIA graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate. - nvidia-settings aracı NVIDIA grafik sürücülerini ayarlamak için kullanılan bir araçtır. NVIDIA X sürücüsü ile iletişime geçerek çalışır, durum bilgisini gerekli olduğu gibi uygular, günceller. - nvidia-settings - ftp://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-355.11.tar.bz2 - - atk-devel - gtk3-devel - cairo-devel - fontconfig-devel - gtk2-devel - libXext-devel - libXv-devel - gdk-pixbuf-devel - mesa-devel - libvdpau-devel - - hardware/graphics/nvidia-settings/pspec.xml - - - nvidia-settings - - atk - cairo - glib2 - libX11 - freetype - fontconfig - gtk2 - libXext - libXv - gdk-pixbuf - libXxf86vm - pango - - - /usr/bin - /etc/X11/Xsession.d - /usr/lib - /usr/share/applications - /usr/share/pixmaps - /usr/share/man - /usr/share/doc - - - nvidia-settings.desktop - nvidia-settings.png - 21-nvidia-settings.sh - - - - - 2015-11-20 - 355.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-16 - 349.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-31 - 349.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-13 - 346.47 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-22 - 346.35 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-24 - 343.22 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-29 - 337.19 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 334.21 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-21 - 331.20 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-03-06 - 313.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-30 - 313.18 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - nvidia-xconfig - http://www.nvidia.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.graphics - The NVIDIA X Configuration Tool - NVIDIA X yapılandırma araçı - The NVIDIA X Configuration Tool - NVIDIA X yapılandırma araçı - ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-355.11.tar.bz2 - hardware/graphics/nvidia-xconfig/pspec.xml - - - nvidia-xconfig - - /usr/bin - /usr/share/man - /usr/share/doc - - - nvidia-bug-report.sh - - - - - 2015-11-20 - 355.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-16 - 349.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-31 - 349.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-13 - 346.47 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-22 - 346.35 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-24 - 343.22 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-08 - 337.19 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 334.21 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-21 - 331.20 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-03-30 - 313.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-29 - 313.18 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - irqbalance - http://www.irqbalance.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - hardware.cpu - Distribute hardware interrupts across processors - Donanım kesmelerini işlemciler arasında dağıtır - Daemon to balance IRQs across multiple CPUs on systems.This can lead to better performance and I/O balance on SMP systems. - Birden fazla işlemcili sistemlerde donanım kesmelerini (hardware interrupt) işlemciler arasında dağıtarak dengeleme sağlayan artalan süreci. Bu SMP (simetrik çoklu işlemcili) sistemlerde daha iyi performans ve G/Ç dengesi sağlar. - https://github.com/Irqbalance/irqbalance/archive/v1.0.9.tar.gz - - numactl-devel - glib2-devel - libcap-ng-devel - - hardware/cpu/irqbalance/pspec.xml - - - irqbalance - - numactl - glib2 - libcap-ng - - - /etc - /usr/sbin - /usr/share/man - /usr/share/doc - - - System.Service - - - irqbalance.confd - - - - - 2015-10-01 - 1.0.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-06 - 1.0.7 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-01-26 - 1.0.4 - Rebuild with new Download Area - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-01 - 1.0.4 - First release - Erdem Artan - admins@pisilinux.org - - - - - - intel-ucode - http://www.intel.com/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - hardware.cpu - Microcode update files for Intel CPUs - Intel işlemciler için microcode dosyaları - Microcode update files for Intel CPUs - Intel işlemciler için microcode dosyaları - http://downloadmirror.intel.com/23574/eng/microcode-20140122.tgz - - intel-microcode2ucode.c - - hardware/cpu/intel-ucode/pspec.xml - - - intel-ucode - - /usr/share/doc - /lib/firmware - - - LICENSE - - - - - 2014-05-06 - 20140122 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-23 - 20130906 - Version Bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2012-10-01 - 20120606 - First release - Erdem Artan - admins@pisilinux.org - - - - - - suspend - http://suspend.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - A set of tools to support sleep modes - Uyku kiplerini destekleme araçları - suspend package allows users to suspend-to-ram, suspend-to-disk, and suspend-to-both. - suspend, kullanıcıların bellek, disk veya her ikisini de kullanarak sistemlerini askıya almalarını sağlayan araçları içerir. - http://sourceforge.net/projects/suspend/files/suspend/suspend-1.0/suspend-utils-1.0.tar.bz2 - - lzo-devel - pciutils-devel - libx86-devel - plymouth-devel - - - suse/suspend-comment-configfile-options.diff - suse/suspend-default-compress.diff - suse/suspend-default-splash.diff - suse/suspend-0.80-dont-return-eintr-on-abort.diff - suse/suspend-0.80-keygen-new-defaults.diff - suse/suspend-0.80-vbetool-retry-on-errors.diff - mandriva/suspend-0.8-printf_format.patch - resume-dont-ask-questions.patch - suppress-outputs.patch - - hardware/powermanagement/suspend/pspec.xml - - - suspend - - lzo - libx86 - plymouth-core-libs - pciutils - - - /etc/suspend.conf - /etc/suspend.key - /usr/sbin - /usr/share/doc - - - suse/configure-suspend-encryption.sh - - - - - 2014-03-09 - 1.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-12-29 - 1.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - acpica - http://www.acpica.org - - PisiLinux Community - admins@pisilinux.org - - custom - app:console - hardware.powermanagement - ACPI debugging tools written by Intel - Intel ACPI hata ayıklama araçları - acpica contains an AML interpreter and debugger, ACPI namespace support, ACPI hardware and event support and a full ASL compiler and disassembler. - acpica, AML yorumlayıcısı, AML hata ayıklayıcısı, ACPI donanım ve olay desteği, ASL derleyicisi ve ASL disassembler gibi çeşitli ACPI araçları içeren bir pakettir. - ftp://gentoo.arcticnetwork.ca/pub/gentoo/distfiles/acpica-unix-20130117.tar.gz - hardware/powermanagement/acpica/pspec.xml - - - acpica - - /usr/share/doc - /usr/bin - /usr/sbin - /usr/share/man/man1 - - - iasl.1 - LICENSE - - - - - 2014-03-05 - 0.0_20130117 - Rebuild for buildhost - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-02 - 0.0_20130117 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-12-22 - 0.0_20130117 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - upower - http://upower.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:console - hardware.powermanagement - Power Management Service - Güç Yönetim Hizmeti - upower provides a daemon, API and command line tools for managing power devices attached to the system. - upower, sisteme bağlı güç cihazlarını yönetmek için gerekli kitaplıkları ve sistem hizmetini sunar. - http://upower.freedesktop.org/releases/upower-0.9.23.tar.xz - - tr.po - - - dbus-devel - glib2-devel - polkit-devel - dbus-glib-devel - eudev-devel - libusb-devel - libplist-devel - libimobiledevice-devel - gobject-introspection-devel - docbook-xsl - intltool - - - add-tr.patch - - hardware/powermanagement/upower/pspec.xml - - - upower - - dbus - glib2 - polkit - dbus-glib - eudev - libplist - libimobiledevice - pm-utils - libusb - - - /lib - /usr/lib - /etc/dbus-1 - /usr/share/man - /usr/share/doc - /etc/UPower - /usr/bin - /var/lib/upower - /usr/share/dbus-1 - /usr/libexec - /usr/share/polkit-1 - /usr/share/locale - /usr/share/dbus-1/interfaces/*.xml - /usr/lib/girepository-1.0/*.typelib - - - - upower-devel - Development files for upower - upower için geliştirme dosyaları - - upower - dbus-devel - glib2-devel - polkit-devel - dbus-glib-devel - eudev-devel - libplist-devel - libimobiledevice-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2015-01-28 - 0.9.23 - Rebuild. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-24 - 0.9.23 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 0.9.23 - Rebuild for libplist and libimobiledevice. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-05 - 0.9.23 - Rebuild and builddep docbook-xsl added. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-02 - 0.9.23 - Add patch. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-08 - 0.9.23 - Moved some files to core pack - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-12-19 - 0.9.23 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-20 - 0.9.21 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-03 - 0.9.20 - Fix suspend/hibernation issue - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-20 - 0.9.20 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-10-20 - 0.9.18 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pm-utils - http://pm-utils.freedesktop.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - A toolset to suspend and hibernate computers - Askıya alma işlemleri için gerekli araçlar - pm-utils provides simple shell command line tools to suspend and hibernate computers, and it that can be used to run vendor, distribution, or user supplied scripts on suspend and resume. - pm-utils, bilgisayarı bellek veya disk kullanarak uyku kipine geçirmek ve devam ettirmek için gerekli kabuk betiklerini sunar. - http://pm-utils.freedesktop.org/releases/pm-utils-1.4.1.tar.gz - http://pm-utils.freedesktop.org/releases/pm-quirks-20100619.tar.gz - - xmlto - libxslt - util-linux - - - pisilinux/check-for-swap-partition.patch - pisilinux/disable-powersave.patch - suse/pm-utils-1.2.6.1-fix-broken-dbus-send.diff - suse/pm-utils-1.3.0-suse-smart-uswsusp.patch - suse/pm-utils-1.4.1-suse-config.patch - gentoo/1.4.1-bluetooth-sync.patch - gentoo/1.4.1-disable-sata-alpm.patch - gentoo/1.4.1-fix-intel-audio-powersave-hook.patch - gentoo/1.4.1-logging-append.patch - - hardware/powermanagement/pm-utils/pspec.xml - - - pm-utils - - hdparm - vbetool - - - /etc/pm - /usr/lib - /run/pm-utils - /usr/share/doc - /usr/share/man - /usr/bin - /usr/sbin - /usr/lib/pkgconfig - /usr/lib/pm-utils/video-quirks - /usr/lib/tmpfiles.d/pm-utils.conf - - - tmpfiles.conf - suse/hooks/config.d/rtcwake.config - suse/hooks/sleep.d/30s2disk-check - suse/hooks/sleep.d/45pcmcia - - - - - 2015-07-31 - 1.4.1 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-01-10 - 1.4.1 - Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-26 - 1.4.1 - Fix hibernation issue, add some patches. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-03 - 1.4.1 - Fix suspend/hibernation issue - Marcin Bojara - marcin@pisilinux.org - - - 2011-04-05 - 1.4.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - lm_sensors - http://www.lm-sensors.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - app:console - library - hardware.powermanagement - Hardware monitoring tools - Donanım sıcaklığı izleyicisi - lm_sensors provides essential tools for monitoring the temperatures, voltages, and fans of Linux systems with hardware monitoring devices. It also contains scripts for sensor hardware identification and fan speed control. - lm_sensors linux sistemlerdeki donanım izleyiciler ile birlikte termometreleri, voltajları ve fan devirlerini izleyen bir araçtır. Ayrıca, donanım ve fan kimliğini algılayan betikler içerir. - http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-3.4.0.tar.bz2 - - rrdtool-devel - - - lm_sensors-fancontrol.patch - - hardware/powermanagement/lm_sensors/pspec.xml - - - lm_sensors - - dmidecode - rrdtool - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc - - - - lm_sensors-devel - Development files for lm_sensors - lm_sensors için geliştirme dosyaları - - lm_sensors - rrdtool-devel - - - /usr/include - /usr/share/man/man3 - - - - - 2015-10-02 - 3.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-04-14 - 3.3.5 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-19 - 3.3.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - qemu - http://bellard.org/qemu - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.virtualization - Userspace virtual machine and processor emulator - Kullanıcı uzayı sanal makine ve işlemci benzetimcisi. - QEMU emulates a full system (for example a PC), including a processor and various peripherials. It can be used to launch different operating systems without rebooting the PC or to debug system code. In user-mode emulation mode, QEMU can launch Linux processes compiled for one CPU on another CPU. - QEMU, bir PC'ye işlemcisi ve kartlarıyla birlikte öykünen bir yazılımdır. Bilgisayarı yeniden başlatmadan yeni bir işletim sistemini çalıştırmak için kullanılabilir. Ayrıca Linux altında kullanıcı kipi öykünme yöntemiyle farklı bir işlemci için derlenmiş programları çalıştırabilir. - http://wiki.qemu-project.org/download/qemu-2.4.1.tar.bz2 - - aalib-devel - vte-devel - gtk3-devel - libXext-devel - nss-devel - alsa-lib-devel - bluez-libs-devel - cyrus-sasl-devel - libsdl-devel - pulseaudio-libs-devel - python-devel - glib2-devel - - hardware/virtualization/qemu/pspec.xml - - - qemu - - atk - nss - vte - gtk2 - mesa - nspr - zlib - bzip2 - cairo - glib2 - pango - libX11 - libgcc - libpng - libsdl - libusb - pixman - libXext - alsa-lib - freetype - libepoxy - bluez-libs - cyrus-sasl - fontconfig - gdk-pixbuf - pulseaudio-libs - - - /etc - /run - /lib - /usr/bin - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/qemu - /usr/share/locale/ - - - System.Service - System.Service - - - qemu-ifup - qemu-ifdown - fedora/ksmtuned - fedora/ksm.sysconfig - fedora/ksmtuned.conf - 65-kvm.rules - - - - qemu-devel - Development files for qemu - qemu için geliştirme dosyaları - - nss-devel - glib2-devel - qemu - - - /usr/include - /usr/lib/pkgconfig/libcacard.pc - - - - - 2015-12-31 - 2.4.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-02-04 - 2.2.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-05 - 2.1.0 - Version Bump - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-01-11 - 1.7.0 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 1.3.0 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-13 - 1.3.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - docker - http://docker.io - - Ertuğrul Erata - ertugrulerata@gmail.com - - Apache - app:console - hardware.virtualization - Pack, ship and run any application as a lightweight container - Herhangi bir uygulamayı paketleyip çalıştırmak için hafif kontenyer - An open platform for distributed applications for developers and sysadmins - Geliştirici ve Sistem Yöneticileri için açık ve dağıtık platform - https://github.com/docker/docker/archive/v1.9.1.tar.gz - - git - golang - btrfs-progs-devel - device-mapper-devel - sqlite-devel - - hardware/virtualization/docker/pspec.xml - - - docker - - git - golang - sqlite - device-mapper - btrfs-progs - bridge-utils - iproute2 - iptables - - - /etc - /usr/bin/ - /usr/lib/docker - /usr/share/ - - - System.Service - System.Package - - - cgroupfs-mount - cgroupfs-umount - docker.confd - - - - - 2015-12-18 - 1.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-11-04 - 1.9.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-10-28 - 1.8.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-12 - 1.8.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-06 - 1.8.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-12 - 1.8.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-24 - 1.7.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 1.7.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-17 - 1.6.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - security - 2015-05-09 - 1.6.1 - Version bump.http://seclists.org/fulldisclosure/2015/May/28 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-17 - 1.6.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - virtualbox - http://www.virtualbox.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2 - app:gui - hardware.virtualization - A powerful virtualization program - Güçlü bir sanallaştırma programı - VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. This is the Open Source Edition which lacks USB support and some other things. - VirtualBox, ev kullanımı yanında kurumsal kullanım alanı da bulan güçlü bir xf86 sanallaştırma ürünleri ailesidir. Bu sürüm, USB ve birkaç özellik için desteği bulunmayan açık kodlu uyarlamasıdır. - http://download.virtualbox.org/virtualbox/5.0.12/VirtualBox-5.0.12.tar.bz2 - - LocalConfig.kmk - - - dev86 - cdrkit - acpica - mesa-devel - curl-devel - python-devel - pam-devel - device-mapper-devel - libcap-devel - glibc-32bit - gsoap-devel - libXt-devel - libXmu-devel - libIDL-devel - libsdl-devel - libvpx-devel - libXext-devel - libxslt-devel - mesa-glu-devel - alsa-lib-devel - libXfixes-devel - libXrandr-devel - libXdamage-devel - libXcursor-devel - libXinerama-devel - xorg-server-devel - libvncserver-devel - libXcomposite-devel - pulseaudio-libs-devel - jdk7-openjdk - kernel-module-headers - - - 002-dri-driver-path.patch - 003-ogl-include-path.patch - 005-gsoap-build.patch - 006-rdesktop-vrdp-keymap-path.patch - desktop-file.patch - fix-tr-keyboard.patch - virtualbox-4-makeself-check.patch - - hardware/virtualization/virtualbox/pspec.xml - - - virtualbox - - device-mapper - mesa - libXt - gsoap - libvpx - libXmu - libsdl - libXext - libXcursor - libXinerama - virt-wrapper - libvncserver - module-virtualbox - curl - zlib - libX11 - libgcc - libpng - python - libxml2 - openssl - - - /etc/vbox - /usr/bin - /usr/lib/virtualbox - /usr/lib/python* - /usr/share/virtualbox - /usr/share/applications - /usr/share/pixmaps - /usr/share/icons/hicolor - /usr/share/mime/packages - - - System.Package - - - vboxreload - 60-vboxdrv.rules - 60-vboxguest.rules - - - - virtualbox-guest-utils - VirtualBox guest utilities and drivers - VirtualBox misafir işletim sistemleri için yardımcı araçlar ve sürücüler - x11.driver - - libXt - libXmu - libXext - libXfixes - libXrandr - libXdamage - xorg-server - libXcomposite - module-virtualbox-guest - - - /etc/X11/Xsession.d - /lib/udev/rules.d - /lib/security - /sbin - /usr/bin/VBoxClient* - /usr/bin/VBoxControl - /usr/sbin - /usr/lib - /usr/kde/*/share/autostart - /usr/share/X11 - /usr/lib/xorg/modules - - - vboxclient.sh - - - - - 2015-08-09 - 5.0.12 - Version bump. - ali algul - alialgul@pisilinux.org - - - 2015-08-09 - 5.0.4 - Version bump. - ali algul - alialgul@pisilinux.org - - - 2015-07-24 + 2015-02-14 5.0.0 Version bump. - ali algul - alialgul@pisilinux.org - - - 2015-05-18 - 4.3.28 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-13 - 4.3.20 - Version bump, rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-11-21 - 4.3.18 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-10-19 - 4.3.18 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-09-19 - 4.3.16 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-07-26 - 4.3.14 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-04-06 - 4.3.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-23 - 4.3.8 - Some improvements. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-02 - 4.3.8 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-12-21 - 4.3.6 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-11 - 4.3.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-10 - 4.2.18 - Version bump. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-05 - 4.2.16 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-04 - 4.2.12 - Add system-xorg.patch - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-14 - 4.2.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-02 - 4.2.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-22 - 4.2.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - virt-wrapper - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - hardware.virtualization - Wrapper for virtualization software - Sanallaştırma yazılımları için önbetik - virt-wrapper is a wrapper for virtualization applications. It warns users if they are not a member of virt group and loads the kernel modules automatically. - virt-wrapper, sanallaştırma uygulamaları için bir betik içerir. Bu betik, kullanıcıyı eğer virt grubunda değilse uyarır ve çekirdek modüllerini de otomatik olarak yükler. - http://source.pisilinux.org/1.0/virt-wrapper-0.1.1.tar.gz - - pass-options-arg.patch - kmod.patch - change_group.patch - - hardware/virtualization/virt-wrapper/pspec.xml - - - virt-wrapper - - /usr/libexec - /usr/share/locale - /usr/share/doc - - - - - 2014-11-23 - 0.1.1 - Chande group for usb connect issue - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-17 - 0.1.1 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-13 - 0.1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - virt-manager - http://virt-manager.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - hardware.virtualization - Graphical tool for administering virtual machines for KVM, Xen, and QEmu - Grafik arayüzlü sanal makine yönetim aracı - Virtual Machine Manager provides a graphical tool for administering virtual machines for KVM, Xen, and QEmu. Start, stop, add or remove virtual devices, connect to a graphical or serial console, and see resource usage statistics for existing VMs on local or remote machines. Uses libvirt as the backend management API. - Virt-Manager ile kvm, qemu, xen gibi sanallaştırma sistemleriyle yaratılmış yerel veya uzak sanal makinelerin başlatılması, durdurulması, sanal cihazlar eklenip kaldırılması, grafik veya seri konsollarına bağlanılması gibi işlemler yapılabilir. Çalışmak için libvirt kütüphanesine ve servisine ihtiyaç duyar. - virt-manager-icon - http://virt-manager.org/download/sources/virt-manager/virt-manager-1.3.1.tar.gz - - intltool - gtk2-devel - - hardware/virtualization/virt-manager/pspec.xml - - - virt-manager - - gtk2 - - - /usr/bin - /usr/libexec - /etc/gconf/schemas - /usr/share/pixmaps - /usr/share - /usr/share/man - /usr/share/doc - /usr/share/locale - - - tr.po - - - - - 2015-12-31 - 1.3.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-10 - 1.0.1 - Rebuild - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-09 - 1.0.1 - Fix dep. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-08 - 1.0.1 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-07 - 0.9.5 - Rebuild - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-08-23 - 0.8.7 - Release bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-26 - 0.9.5 - Aydın Demirel - Version bump - aydin@demirel.web.tr - - - 2011-04-09 - 0.8.7 - First release - Emre Erenoglu - pakeci@erenoglu.com - - - - - - libvirt - http://www.libvirt.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.virtualization - Library providing a simple API to several virtualization systems - Birçok sanallaştırma sistemine kolay erişim sağlayan bir kütüphane - libvirt is a toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes). libvirt supports Xen hypervisor, QEMU emulator, KVM hypervisor, LXC Linux container system, OpenVZ Linux container system, User Mode Linux paravirtualized kernel and VirtualBox hypervisor together with remote management possibilities. - libvirt yeni linux sürümlerinin sunduğu sanallaştırma özellikleriyle etkileşimi kolaylaştıran bir kütüphanedir. Xen, KVM ve VirtualBox hipervizorleri, QEMU emulatörü, LXC linux konteyner sistemi, User Mode Linux paravirtual sanallaştırma sistemi gibi sistemlerle birlikte çalışabilir ve tüm bu sistemlerin uzaktan yönetimi için de kullanılabilir. - http://libvirt.org/sources/libvirt-1.3.0.tar.gz - - qemu - lvm2-devel - attr-devel - audit-devel - avahi-devel - netcf-devel - numactl-devel - libpciaccess-devel - yajl-devel - polkit-devel - dbus-devel - util-linux - gnutls-devel - parted-devel - device-mapper-devel - libnl-devel - python-devel - cyrus-sasl-devel - libcap-ng-devel - readline-devel - - hardware/virtualization/libvirt/pspec.xml - - - libvirt - - dbus - yajl - audit - eudev - libnl - netcf - gnutls - parted - libcap - libxml2 - numactl - readline - libcap-ng - avahi-libs - cyrus-sasl - libpciaccess - device-mapper - libutil-linux - - - /etc - /usr/lib/tmpfiles.d/libvirt.conf - /usr/bin - /usr/libexec - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/augeas - /usr/share/polkit-1 - /usr/share/libvirt - /usr/share/systemtap - /usr/share/man - /var - /run - /usr/share/locale - - - System.Service - System.Package - - - tmpfiles.conf - libvirt.confd - - - - libvirt-devel - Development files for libvirt - libvirt için geliştirme dosyaları - - libvirt - - - /usr/include/libvirt - /usr/lib/pkgconfig - - - - - 2015-12-31 - 1.3.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-07-02 - 1.2.6 - Version bump and bug fixes. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-14 - 1.2.3 - Rebuild - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-08 - 1.2.3 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-01-10 - 1.2.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-26 - 1.0.5 - Version bump and fixed compiling errors - Aydın Demirel - aydin@demirel.web.tr - - - 2013-01-14 - 1.0.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - lirc - http://www.lirc.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - service - hardware.irda - LIRC est un paquet permettant de décoder et d'envoyer des signaux par infrarouges pour de nombreuses télécommandes usuelles (mais pas toutes). - Linux Infrared Remote Control system - Linux Kızılötesi Uzaktan Kumanda Sistemi - Sistema de control remoto por infrarrojo en Linux - lirc is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls. - lirc, kızılötesi sinyalleriyle yaygın uzaktan kumandaları denetlemeye olanak veren bir Linux altyapısıdır. - LIRC permite decodificar y transmitir señales infrarrojos compatible con muchos (pero no de todos) controles remotos comúnes. - http://downloads.sourceforge.net/project/lirc/LIRC/0.9.3/lirc-0.9.3.tar.bz2 - - alsa-lib-devel - libftdi-devel - libusb-compat-devel - libX11-devel - libxslt - doxygen - - hardware/irda/lirc/pspec.xml - - - lirc - - alsa-lib - libftdi - libusb-compat - libX11 - - - /etc - /lib/udev/rules.d - /usr/bin - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/man - /usr/share/lirc - /run - - - System.Service - - - lirc.conf.d - lirc.tmpfiles - lirc.logrotate - - - - lirc-devel - Development files for lirc - lirc için geliştirme dosyaları - - lirc - - - /usr/include - - - - - 2015-10-02 - 0.9.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 0.9.0 - Rebuild for libftdi - Kamil Atlı - suvarice@gmail.com - - - 2012-10-01 - 0.9.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - usbmuxd - http://marcansoft.com/blog/iphonelinux/usbmuxd - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - service - library - hardware.mobile - Daemon for communicating with Apple's iPod Touch and iPhone - Apple iPod Touch ve iPhone iletişim hizmeti - usbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. - usbmuxd, Apple iPod Touch ve iPhone cihazlarıyla iletişim kurmak için gerekli bir sistem hizmetidir. Aynı anda, birden fazla cihaza bağlanma imkanı sağlar. - http://www.libimobiledevice.org/downloads/libusbmuxd-1.0.9.tar.bz2 - - libplist-devel - - hardware/mobile/usbmuxd/pspec.xml - - - usbmuxd - - libplist - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/sbin - /lib/udev/rules.d - - - - usbmuxd-devel - Development files for usbmuxd - usbmuxd için geliştirme dosyaları - - usbmuxd - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 1.0.9 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 1.0.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-20 - 1.0.8 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libimobiledevice - http://www.libimobiledevice.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2 - library - app:console - hardware.mobile - Library for connecting to mobile devices - libimobiledevice is a library for connecting to mobile devices including phones and music players - http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.7.tar.bz2 - - gnutls-devel - usbmuxd-devel - libplist-devel - libtasn1-devel - libgcrypt-devel - - hardware/mobile/libimobiledevice/pspec.xml - - - libimobiledevice - - gnutls - usbmuxd - libplist - libtasn1 - libgcrypt - - - /usr/lib - /usr/bin - /usr/share/man/man1 - /usr/share/doc/libimobiledevice - - - - libimobiledevice-devel - Development files for libimobiledevice - - gnutls-devel - usbmuxd-devel - libplist-devel - libtasn1-devel - libgcrypt-devel - libimobiledevice - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-25 - 1.1.7 - Version bump. Hakan Yıldız hknyldz93@gmail.com - - 2014-05-24 - 1.1.6 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 1.1.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-04 - 1.1.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-12 - 1.1.4 - Fixed - PisiLinux Community - admins@pisilinux.org - - 2013-03-18 - 1.1.4 - fix cython disagreement - Erdinç Gültekin - admins@pisilinux.org + 2014-09-26 + 4.6.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-10-20 - 1.1.4 - First release - Serdar Soytetir - kaptan@pisilinux.org + 01.11.2013 + 4.5.4 + First Release + Stefan Gronewold(groni) + groni3427@gmail.com - libplist - http://matt.colyer.name/projects/iphone-linux - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2 - library - app:console - hardware.mobile - Library for manipulating Apple Binary and XML Property Lists - Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için kütüphane - libplist is a library for manipulating Apple Binary and XML Property Lists. - libplist, Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için gerekli bir kütüphanedir. - http://www.libimobiledevice.org/downloads/libplist-1.11.tar.bz2 - - libxml2-devel - python-devel - cython - - hardware/mobile/libplist/pspec.xml - - - libplist - - libxml2 - python - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libplist-devel - Development files for libplist - libplist için geliştirme dosyaları - - libplist - libxml2-devel - python-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-31 - 1.11 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 1.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-02 - 1.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-01 - 1.8 - Cosmetics Fixed - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-10-20 - 1.8 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gkrellm - http://www.gkrellm.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - service - hardware - A compact and clean system monitoring tool - Sade görünümlü sistem durumu izleyicisi - A program to monitor system status, and to collect system information such as memory usage, cpu temperature etc. - Bilgisayarınızın bileşenlerinin durumunu takip edebileceğiniz, hafıza kullanımı, işlemci sıcaklığı gibi bilgiler veren bir araç. - gkrellm - http://members.dslextreme.com/users/billw/gkrellm/gkrellm-2.3.5.tar.gz - - gnutls-devel - gtk2-devel - pango-devel - libX11-devel - glib2-devel - libgcrypt-devel - libICE-devel - libSM-devel - - - drop_privileges.patch - gkrellmd-conf.patch - - hardware/info/gkrellm/pspec.xml - - - gkrellm - - gnutls - gtk2 - pango - glib2 - libX11 - libgcrypt - libICE - gdk-pixbuf - libSM - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share - /usr/share/man - - - System.Service - - - gkrellm.desktop - gkrellm.png - - - - gkrellm-devel - Development files for gkrellm - gkrellm için geliştirme dosyaları - - gkrellm - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-17 - 2.3.5 - Rebuild - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-04-07 - 2.3.5 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-23 - 2.3.5 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 2.3.5 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-06 - 2.3.5 - Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-15 - 2.3.5 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - dmidecode - http://www.nongnu.org/dmidecode/ + bashdb + http://bashdb.sourceforge.net PisiLinux Community admins@pisilinux.org GPLv2 app:console - hardware - Tool to analyse BIOS DMI data - BIOS DMI verisi inceleme araçları - Dmidecode rapporte des informations à propos du matériel composant votre système tel qu'il est décrit dans votre BIOS. Cette information comprends typiquement le fabricant du système, le nom du modèle, le numéro de série, la version du BIOS, balises de traçabilité ainsi que beaucoup d'autres détails plus ou moins intéressants et fiables en fonction du fabricant. - dmidecode reports information about x86/ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. - dmidecode, bilgisayarınızın BIOS'unda verilmiş olan bilgilerin görüntülenmesini sağlar. Üretici ismi, model ismi, seri numarası, BIOS sürümü ve sistem üreticisine bağlı olarak değişiklik gösteren birçok bilgi, dmidecode ile görüntülenebilir. - http://download.savannah.gnu.org/releases/dmidecode/dmidecode-2.12.tar.gz - hardware/info/dmidecode/pspec.xml + util.shell + A Debugger for Bash + Bash Kabuğu için bir hata ayıklayıcısı + bashdb is a comprehensive source-code debugger for bash. + bashdb, bash için kapsamlı bir kaynak kodu hata ayıklayıcısıdır. + mirrors://sourceforge/bashdb/bashdb-4.3-0.91.tar.gz + util/shell/bashdb/pspec.xml - dmidecode - - /usr/bin - /usr/sbin - /usr/share/doc - /usr/share/man - - - laptop-detect - - - - - 2014-01-22 - 2.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-25 - 2.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - media-player-info - http://cgit.freedesktop.org/media-player-info - - PisiLinux Community - admins@pisilinux.org - - BSD - hardware - Media player capability database - Medya oynatıcısı yetenek veritabanı - media-player-info is a repository of data files describing media player capabilities. These files contain information about the directory layout to use to add music to these devices, about the supported file formats, etc. - media-player-info, ortam oynatıcılarının yeteneklerini tanımlayan bir dosya demetidir. Bu dosyalar bu aygıtların hangi dizinlerine müzik dosyaları koyulması gerektiğini, hangi dosya biçimlerinin desteklendiğini tanımlar. - http://www.freedesktop.org/software/media-player-info/media-player-info-22.tar.gz - - eudev-devel - python3-devel - - hardware/info/media-player-info/pspec.xml - - - media-player-info - - /lib/udev/rules.d - /lib/udev - /usr/share/media-player-info - /usr/share/doc - - - - - 2015-02-16 - 22 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-07-05 - 21 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-25 - 19 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-02-20 - 17 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2011-10-05 - 15 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - b43-fwcutter - http://bu3sch.de/b43/fwcutter - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.firmware - Firmware Tool for Broadcom 43xx - Broadcom kablosuz sürücüleri için firmware üretme aracı - Firmware Tool for Broadcom 43xx based wireless network devices using the mac80211 wireless stack - b43-fwcutter Broadcom kablosuz sürücüleri için firmware üretmek için kullanılan basit bir araç içerir. - http://bues.ch/b43/fwcutter/b43-fwcutter-018.tar.bz2 - hardware/firmware/b43-fwcutter/pspec.xml - - - b43-fwcutter + bashdb /usr/bin /usr/share/doc - /usr/share/man/man1 - - - - - 2014-02-04 - 018 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-11-15 - 015 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - b43-firmware - http://www.linuxwireless.org/en/users/Drivers/b43 - - PisiLinux Community - admins@pisilinux.org - - freedist - data - hardware.firmware - Firmware for Broadcom B43 wireless network chips - Broadcom B43 kablosuz ağ çipleri için aygıt yazılımı - Firmware for Broadcom wireless network chips - Broadcom kablosuz ağ çipleri için aygıt yazılımı - http://mirror2.openwrt.org/sources/wl_apsta-3.130.20.0.o - http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz2 - - b43-fwcutter - - hardware/firmware/b43-firmware/pspec.xml - - - b43-firmware - - /lib/firmware - - - - - 2014-01-17 - 5.100.138 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-15 - 5.100.138 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - alsa-firmware - http://www.alsa-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv2+ - LGPLv2+ - BSD - data - hardware.firmware - firmware (logiciel interne) pour l'Architecture Son Linux Avancée (ALSA). - Firmware for several ALSA-supported sound cards - Çeşitli ALSA destekli ses kartları için firmware dosyaları - alsa-firmware contains the firmware binaries for a number of sound cards supported by the ALSA project. - alsa-firmware, ALSA sürücüleri tarafından desteklenen bazı ses kartları için gerekli firmware dosyalarını içerir. - ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.0.29.tar.bz2 - hardware/firmware/alsa-firmware/pspec.xml - - - alsa-firmware - - /usr/share/alsa/firmware - /lib/firmware - /usr/share/doc - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-12-06 - 1.0.27 - Remove conflicted ctefx.bin file, it is in linux-firmware package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-22 - 1.0.27 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-10 - 1.0.27 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-29 - 1.0.25.20121013 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - foomatic-db - http://www.linuxprinting.org/foomatic.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - data - hardware.printer - Database of printers and printer drivers - Yazıcı sürücüleri - foomatic-db contains the knowledge database for printers which are used by foomatic-db-engine to generate PPD files. - Foomatic yazıcı veritabanı ve sürücüleri - http://www.openprinting.org/download/foomatic/foomatic-db-4.0-20150819.tar.gz - - cleanup-script - - - fedora/foomatic-db-device-ids.patch - fedora/foomatic-db-invalid.patch - - hardware/printer/foomatic-db/pspec.xml - - - foomatic-db - - pnm2ppa - - - /usr/share - - - - - 2015-10-28 - 4.0.20150819 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-05 - 4.0_20130103 - Depend on cups-filters. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-24 - 4.0_20130103 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-01-03 - 4.0_20130103 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cups - http://www.cups.org/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - service - hardware.printer - Common Unix Printing System - Unix Ortak Yazdırma Sistemi - cups provides a portable printing layer for *nix-based operating systems. - http://www.cups.org/software/2.0.3/cups-2.0.3-source.tar.bz2 - - acl-devel - pam-devel - dbus-devel - zlib-devel - libusb-devel - libgcc - mit-kerberos - libpaper-devel - - - archlinux/cups-no-export-ssllibs.patch - archlinux/cups-no-gzip-man.patch - archlinux/cups-1.6.2-statedir.patch - archlinux/cups-no-gcrypt.patch - fedora/cups-enum-all.patch - fedora/cups-final-content-type.patch - fedora/cups-res_init.patch - gentoo/cups-1.6.0-fix-install-perms.patch - gentoo/cups-2.0.1-rename-systemd-service-files.patch - pisilinux/lib64.patch - pisilinux/nostrip.patch - pisilinux/cups-run.patch - pld-linux/cups-avahi-address.patch - - hardware/printer/cups/pspec.xml - - - cups - - acl - pam - dbus - zlib - libusb - libgcc - libpaper - mit-kerberos - - - /etc/cups/*conf - /usr/lib/tmpfiles.d/cups.conf - /usr/lib - /usr/sbin - /usr/bin - /var/cache/cups/rss - /var/spool/cups/tmp - /run/cups/certs - /var/log/cups - /etc - /lib/udev/rules.d - /lib/systemd/system - /usr/share/cups - /usr/share/icons - /usr/share/applications - /usr/share/doc - /usr/share/man - /usr/share/locale - - - System.Service - System.Package - - - tmpfiles.conf - cups.logrotate - fedora/textonly.ppd - - - - cups-devel - Development files for cups - cups için geliştirme dosyaları - - cups - - - /usr/include - /usr/bin/cups-config - - - - cups-32bit - 32-bit shared libraries for cups - cups için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - zlib-32bit - openssl-32bit - - - glibc-32bit - zlib-32bit - openssl-32bit - libgcc - cups - - - /usr/bin/cups-config-32bit - /usr/lib32 - - - - - 2015-06-10 - 2.0.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-02-05 - 2.0.1 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-09-25 - 1.7.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.7.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-30 - 1.7.1 - Fix comar service. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-18 - 1.7.1 - Add tmpfiles.conf. Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-17 - 1.7.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-1 - 1.7.0 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-10-14 - 1.6.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-13 - 1.6.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-19 - 1.6.1 - Lib64 path correction. - Ertan Güven - ertan@pisilinux.org - - - 2013-03-13 - 1.6.1 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-10-18 - 1.5.4 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-10-18 - 1.5.4 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libpaper - http://packages.debian.org/unstable/source/libpaper - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.printer - Library for handling paper characteristics - Kağıt özelliklerini düzenlemek için kitaplık - Libpaper is a programming library for handling paper characteristics. - libpaper, kağıt özelliklerini düzenlemek için bir programlama kitaplığıdır. - Libpaper es una librería de programación para manejar características de papel. - http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.24.tar.gz - - libpaper-1.1.23-debianbug475683.patch - libpaper-useglibcfallback.patch - - hardware/printer/libpaper/pspec.xml - - - libpaper - - /usr/bin - /usr/sbin - /usr/lib - /etc/ - /usr/share/man - /usr/share/doc - /usr/share/locale - - - papersize - - - - libpaper-devel - Development files for libpaper - libpaper için geliştirme dosyaları - - libpaper - - - /usr/include - /usr/share/man/man3 - - - - - 2014-05-21 - 1.1.24 - rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-13 - 1.1.24 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - pnm2ppa - http://pnm2ppa.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Driver addons for some Hp Deskjet printers - Bazı Hp Deskjet yazıcılar için sürücü eklentileri - Tool to convert pnm data to ppa data for Hp Deskjet 710, 712, 720, 722, 820, 1000 series printer drivers. - Hp Deskjet 710, 712, 720, 722, 820, 1000 serisi yazıcı sürücüleri için pnm verisini ppa verisine dönüştüren araçlar - mirrors://sourceforge/pnm2ppa/pnm2ppa-1.13.tar.gz - - pnm2ppa-default_config.patch - - hardware/printer/pnm2ppa/pspec.xml - - - pnm2ppa - - enscript - - - /etc - /etc/pdq - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/pnm2ppa - - - - - 2014-02-04 - 1.13 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 1.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - foomatic-db-engine - http://www.linuxprinting.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Foomatic printer database engine - Foomatic yazıcı veritabanı motoru - foomatic-db-engine is the layer that provides the database engine to Foomatic. - foomatic-db-engine, Foomatic veritabanı motorunu oluşturan katmandır. - http://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0.12.tar.gz - - libxml2-devel - cups-devel - - - foomatic-db-engine-4.0.8-fix-sandbox.patch - 4.0.7-perl-module.patch - 4.0.7-respect-ldflag.patch - - hardware/printer/foomatic-db-engine/pspec.xml - - - foomatic-db-engine - - libxml2 - - - /usr/bin - /usr/sbin - /usr/lib - /etc/foomatic - /usr/share/foomatic/templates - /usr/share/man - /usr/share/doc - - - - - 2015-10-28 - 4.0.12 - v.bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-09-13 - 4.0.11 - Rebuild for new perl. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-06-15 - 4.0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-05 - 4.0.8 - Depend on cups-filters. - PisiLinux Community - admins@pisilinux.org - - - 2013-12-01 - 4.0.8 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-11-19 - 4.0.8 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cups-filters - http://www.openprinting.org - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - GPLv3 - GPLv2+ - GPLv3+ - LGPLv2+ - MIT - data - library - app:console - hardware.printer - OpenPrinting CUPS filters and backends - Contains backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc. In addition it contains additional filters developed independently of Apple, especially filters for the PDF-centric printing workflow introduced by OpenPrinting. - http://www.openprinting.org/download/cups-filters/cups-filters-1.1.0.tar.xz - - cups-devel - glib2-devel - tiff-devel - lcms2-devel - dbus-devel - python-devel - libpng-devel - freetype-devel - fontconfig-devel - libjpeg-turbo-devel - dejavu-fonts - poppler-utils - poppler-cpp-devel - zlib-devel - avahi-devel - avahi-glib-devel - python-cups - qpdf-devel - ghostscript-devel - poppler-devel - - hardware/printer/cups-filters/pspec.xml - - - cups-filters - - cups - dbus - tiff - zlib - glib2 - lcms2 - libgcc - libpng - fontconfig - mit-kerberos - libjpeg-turbo - qpdf - ghostscript - poppler - e2fsprogs - avahi-glib - avahi-libs - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/ppd - /usr/bin - /usr/share/cups - /etc/cups/cups-browsed.conf - /etc/fonts/conf.d/99pdftoopvp.conf - - - cups - foomatic-filters - - - foomatic-filters - - - - cups-filters-devel - Development files for cups-filters - Cups-filters için geliştirme dosyaları - - cups-filters - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-28 - 1.1.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-15 - 1.0.65 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-25 - 1.0.58 - Verison bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-17 - 1.0.53 - Verison bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-05 - 1.0.44 - Rebuild to replace foomatic-filters. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-28 - 1.0.44 - rebuild for unused and runtime dep. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-18 - 1.0.44 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-02 - 1.0.41 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-16 - 1.0.40 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-10 - 1.0.39 - Cersion bump,rebuil for new poppler. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-28 - 1.0.35 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-01 - 1.0.35 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - enscript - http://www.gnu.org/software/enscript/enscript.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Powerful text-to-postscript converter - Metin dosyalarından postscript belge oluşturma aracı - enscript is an application that you can use to convert your text files to postscript files with enhanced formatting capabilities like colorizing, page layout management etc. - Metin dosyalarını postscript belgelere dönüştüren, dönüşüm sırasında renklendirme, sayfa düzeni ve boyut değiştirme gibi biçimlendirmeler yapabilen bir araç - http://www.iki.fi/mtr/genscript/enscript-1.6.4.tar.gz - - enscript-1.6.3-security.patch - enscript-1.6.3-language.patch - enscript-catmur.patch - ruby.patch - enscript-1.6.4-CVE-2008-3863-CVE-2008-4306.patch - enscript-1.6.4-config.patch - - hardware/printer/enscript/pspec.xml - - - enscript - - /etc - /usr/bin - /usr/share/doc - /usr/share/enscript - /usr/share/info - /usr/share/locale - /usr/share/man - - - ruby.st - - - - - 2014-01-23 - 1.6.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 1.6.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sane-backends - http://www.sane-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - hardware.scanner - Scanner access software - SANE (Scanner Access Now Easy) döküman ve resim tarayıcı sistemi araçları - Scanner Access Now Easy (SANE) is a universal scanner interface. The SANE application programming interface provides standardized access to any raster image scanner hardware. - SANE ve uygulama programlama arayüzü (API) ile herhangi bir görüntü tarayıcı donanımına standartlaştırlmış erişim sağlar. - sane - ftp://ftp.archlinux.org/other/sane/sane-backends-1.0.24.tar.gz - - libieee1284-devel - libusb-compat-devel - libnl-devel - openssl-devel - cups-devel - libgphoto2-devel - libv4l-devel - avahi-devel - libjpeg-turbo-devel - tiff-devel - net-snmp-devel - - - fix-buffer-overflow.patch - sane-backends-1.0.20-open-macro.patch - sane-backends-1.0.23-sane-config-multilib.patch - sane-backends-1.0.23-soname.patch - sane-backends-1.0.21-epson-expression800.patch - sane-backends-1.0.23-udev.patch - suse/fix-mustek_pp_ccd300.c.patch - archlinux/network.patch - archlinux/segfault-avahi-fix-kodakio.patch - - hardware/scannner/sane-backends/pspec.xml - - - sane-backends - - libnl - openssl - libusb-compat - libieee1284 - avahi-libs - libgphoto2 - libv4l - tiff - libjpeg-turbo - net-snmp - cups - libexif - - - /etc/sane.d/dll.d - /etc/env.d - /etc/sane.d - /usr/bin - /usr/share/locale - /usr/sbin - /usr/libexec - /usr/lib - /usr/share/doc/sane-backends/README - /usr/share/doc/sane-backends/COPYING - /usr/share/man - /usr/share/pixmaps - /lib/udev/rules.d - /usr/share/sane - - - sane.png - 30sane - - - - sane-backends-devel - Development files for sane-backends - sane-backends için geliştirme dosyaları - - sane-backends - - - /usr/include - /usr/lib/pkgconfig - - - - sane-backends-docs - Documentation for SANE backends - sane-backends için belgelendirme dosyaları - - /usr/share/doc - - - - - 2014-02-15 - 1.0.24 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-21 - 1.0.23 - Move devel files fix to paths - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-07-28 - 1.0.23 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-10-25 - 1.0.23 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libgphoto2 - http://www.gphoto.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - Library that implements support for numerous digital cameras - Sayısal kamera ve müzik çalarlara erişim sağlayan kütüphane - Libgphoto2 est une librairie centrale conçue pour permettre aux programmes extérieurs d'accéder aux appareils photos numériques. - libgphoto2 is the core library designed to allow access to digital camera by external programs. - libgphoto2, harici uygulamalar tarafından sayısal kameralara ve müzik çalarlara erişim için kullanılan bir programlama kütüphanesidir. - Libgphoto2 es la librería núcleo (core) que permite a programas externos acceder a camaras digitales. - mirrors://sourceforge/gphoto/libgphoto2-2.5.8.tar.bz2 - - doxygen - libxml2-devel - gd-devel - tiff-devel - libjpeg-turbo-devel - libexif-devel - libusb-devel - - hardware/misc/libgphoto2/pspec.xml - - - libgphoto2 - - libxml2 - libtool-ltdl - libusb - gd - libexif - libjpeg-turbo - - - /usr/bin - /lib/udev - /usr/share/doc/libgphoto2/README - /usr/share/doc/libgphoto2/COPYING - /usr/lib - /usr/share/libgphoto2 - /usr/share/hal/fdi - /lib/udev/rules.d - /usr/share/locale - /usr/share/man - - - System.Package - - - - libgphoto2-docs - Documentation for libgphoto2 - libgphoto2 için detaylı belgelendirme - - /usr/share/doc/libgphoto2 - /usr/share/doc/libgphoto2/camlibs - /usr/share/doc/libgphoto2/apidocs.html - /usr/share/doc/libgphoto2/linux-hotplug - - - - libgphoto2-devel - Development files for libgphoto2 - libgphoto2 için geliştirme dosyaları - - libexif-devel - libgphoto2 - - - /usr/bin/gphoto2-config* - /usr/bin/gphoto2-port-config - /usr/include/gphoto2 - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-02 - 2.5.8 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-15 - 2.5.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-30 - 2.5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 2.5.0 - First release - PisiLinux Community - namso-01qhotmail.it - - - - - - libieee1284 - http://cyberelk.net/tim/libieee1284/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - Library to query devices using IEEE1284 - IEEE1284 kullanarak donanımların sorgulanması için bir kütüphane - Cette librairie est à destination des applications qui ont besoins de communiquer avec (ou au moins identifier) des périphériques liés au système par le port parallèle. - Library is intended to be used by applications that need to communicate with (or at least identify) devices that are attached via a parallel port. - Paralel portlar aracılığı ile bağlanmış araçlarla iletişimi (en azından tanımlanmasını) gerçekleştiren uygulamalar için gerekli olan kütüphanedir. - La librería usado por aplicaciones que necesitan comunicarse con (,o al menos necesitan identificar) dispositivos conectados al puerto paralelo. - mirrors://sourceforge/libieee1284/libieee1284-0.2.11.tar.bz2 - - python-devel - - - libieee1284-strict-aliasing.patch - - hardware/misc/libieee1284/pspec.xml - - - libieee1284 - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - python-libieee1284 - Python bindings for libieee1284 - libieee1284 için Python bağlayıcıları - - libieee1284 - - - /usr/lib/python* - - - - libieee1284-devel - Development files for libieee1284 - libieee1284 için geliştirme dosyaları - - libieee1284 - - - /usr/include - /usr/share/man/man3 - - - - - 2014-03-10 - 0.2.11 - Fix rpath - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-03-09 - 0.2.11 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 0.2.11 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 0.2.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gpm - http://linux.schottelius.org/gpm/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - hardware.misc - Console mouse driver - Konsol tabanlı fare sürücüsü - GPM (short for General Purpose Mouse) brings mouse support to TTYs. - Genel amaçlı fare ve konsolda fare desteği içindir. - http://www.nico.schottelius.org/software/gpm/archives/gpm-1.20.7.tar.bz2 - - ncurses-devel - texinfo - - hardware/misc/gpm/pspec.xml - - - gpm - - ncurses - - - /usr/bin - /usr/include - /usr/share/man - /usr/share/info - /usr/share/doc - /usr/lib - /etc - /usr/share/emacs - - - System.Service - - - gpm.conf.d - - - - - 2014-05-20 - 1.20.7 - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-25 - 1.20.7 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 1.20.7 - First release - PisiLinux Community - namso-01qhotmail.it - - - - - - libmtp - http://libmtp.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - An implementation of Microsoft's Media Transfer Protocol (MTP) - Microsoft'un medya aktarım protokolünü destekleyen araçlar için bir kütüphane - libmtp est une implémentation du Media Transfer Protocol (MTP) de Microsoft sous la forme d'une librairie principalement adéquate pour les systèmes d'exploitation conformes à POSIX. - libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP) in the form of a library suitable primarily for POSIX compliant operating systems. - libmtp, PlayForSure olarak da anılan, Microsoft'un medya aktarım protokolünü desteklemek için yazılmış bir programlama kütüphanesidir. Uygulamalar, libmtp kütüphanesini kullanarak, PlayForSure destekli MP3 çalar veya dijital kameralardaki içerik üzerinde taşıma, aktarma, isimlendirme vb.. işlemleri kolayca yapabilirler. - libmtp es una implementación del protocolo de transferencia de Microsoft's Media (MTP) en forma de una librería para uso en sistemas operativos POSIX compliant. - mirrors://sourceforge/libmtp/1.9/libmtp-1.1.9.tar.gz - - doxygen - libusb-devel - libgcrypt-devel - - hardware/misc/libmtp/pspec.xml - - - libmtp - - libusb - libgcrypt - - - /usr/bin - /usr/lib - /lib/udev - /lib/udev/rules.d - /usr/share/hal - /usr/share/doc - - - - libmtp-devel - Development files for libmtp - libmtp için geliştirme dosyaları - - libmtp - libusb-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-28 - 1.1.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.1.6 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-05 - 1.1.6 - Rebuild for libgcrypt. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 1.1.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 1.1.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libx86 - http://www.codon.org.uk/~mjg59/libx86/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - A hardware-independent library for executing real-mode x86 code - Gerçek-mod x86 kodlarını çalıştırmak için donanım-bağımsız bir kütüphane - libx86 contains the library and header files necessary for the development of programs that will use libx86 to make real-mode x86 calls. - libx86, gerçek-mod x86 çağrıları yapabilen programların geliştirilmesi için gerekli başlık dosyaları ve kütüphaneleri içerir. - A menudo puede ser útil poder realizar llamadas de BIOS x86 en modo real desde el espacio de usuarios. lrmi facilita para ello una interfaz simple para equipos x86, sin embargo no funciona en otras plataformas. libx86 facilita la interfaz lrmi, pero además funcionará en plataformas como amd64 y alpha. - http://www.codon.org.uk/~mjg59/libx86/downloads/libx86-1.1.tar.gz - - libx86-0.99-ifmask.patch - libx86-add-pkgconfig.patch - libx86-mmap-offset.patch - - hardware/misc/libx86/pspec.xml - - - libx86 - - /usr/lib - /usr/share/doc - - - - libx86-devel - - libx86 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 1.1 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmtdev - http://bitmath.org/code/mtdev - - PisiLinux Community - admins@pisilinux.org - - MIT - library - hardware.misc - Multitouch Protocol Translation Library - Çoklu Dokunmatik Protokol Dönüşüm Kütüphanesi - The libmtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. - Libmtdev kütüphanesi, kernel MT olaylarının tüm çeşitlerini slotlu B tipi protokole dönüştürür. - http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.gz - hardware/misc/libmtdev/pspec.xml - - - libmtdev - - /usr/bin - /usr/lib - /usr/share/doc - - - - libmtdev-devel - Development files of libmtdev - Libmtdev için geliştirme dosyaları - - libmtdev - - - /usr/include - /usr/lib/pkgconfig - - - - libmtdev-32bit - 32-bit shared libraries for libmtdev - emul32 - emul32 - - glibc-32bit - - - libmtdev - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.5 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 1.1.3 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2012-10-03 - 1.1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libsmbios - http://linux.dell.com/libsmbios/main/index.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - OSL-2.0 - library - app:console - hardware.misc - Provide access to (SM)BIOS information - (SM)BIOS bilgilerine ulaşabilmeyi sağlar - libsmbios project aims towards providing access to as much BIOS information as possible. It does this by providing a library of functions that can be used as well as sample binaries. - http://linux.dell.com/libsmbios/download/libsmbios/libsmbios-2.2.28/libsmbios-2.2.28.tar.bz2 - - libxml2-devel - - hardware/misc/libsmbios/pspec.xml - - - libsmbios - - libgcc - - - /etc - /usr/share - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/locale - - - - libsmbios-devel - Development files for libsmbios - libsmbios için geliştirme dosyaları - - libsmbios - - - /usr/include/smbios - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-02-01 - 2.2.28 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 2.2.28 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libftdi - http://www.intra2net.com/en/developer/libftdi/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - A library for accessing to FTDI USB chips - FTDI USB entegrelerine erişim kitaplığı - libftdi allows access to eeprom and bitbang modes of FT232/245/2232 USB serial interface chips. - libftdi ile FT232/245/2232 USB seri arabirim entegrelerinin eeprom ve bitbang modlarını kullanabilirsiniz. - http://www.intra2net.com/en/developer/libftdi/download/libftdi1-1.1.tar.bz2 - - doxygen - - - fix-udev-group_and_usb_name.patch - - hardware/misc/libftdi/pspec.xml - - - libftdi - - libusb - - - /usr/bin - /usr/lib - /lib/udev/rules.d - /usr/share/doc - - - - python-libftdi - Python bindings for libftdi - Python için libftdi bağlayıcıları - - libusb - python3 - libftdi - - - /usr/lib/python* - - - - libftdi-devel - Development files for libftdi - libftdi için geliştirme dosyaları - - libftdi - libusb-devel - - - /usr/bin/libftdi-config - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/doc/libftdi/examples - - - - - 2014-07-05 - 1.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-10 - 0.20 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-03-09 - 0.20 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-30 - 0.20 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-11-16 - 0.20 - First release - PisiLinux Community - namso-01qhotmail.it - - - - - - libcdio-paranoia - http://www.gnu.org/software/libcdio/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - GPLv2+ - LGPLv2.1 - library - hardware.optical - CD paranoia libraries from libcdio - An advanced CDDA reader with error correction. - mirrors://gnu/libcdio/libcdio-paranoia-10.2+0.90+1.tar.bz2 - - libcdio-devel - - - libcdio-paranoia-0.90-mkdir_p.patch - - hardware/optical/libcdio-paranoia/pspec.xml - - - libcdio-paranoia - - libcdio - - + /usr/share/bashdb /usr/share/info /usr/share/man - /usr/share/doc - /usr/lib - /usr/bin - - libcdio-paranoia-devel - Development files for libcdio-paranoia - - libcdio-paranoia - libcdio-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-02-25 - 0.90_p1 - Rebuild for libcdio - Kamil Atlı - suvarice@gmail.com - - - 2014-02-25 - 0.90_p1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 0.90_p1 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 0.90_p1 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - cdrkit - http://cdrkit.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Suite of programs for CD/DVD recording. - Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction. - http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz - - cdparanoia-devel - libcap-devel - zlib-devel - bzip2 - cmake - - hardware/optical/cdrkit/pspec.xml - - - cdrkit - - file - zlib - bzip2 - libcap - - - /usr/bin - /usr/sbin - /usr/include - /usr/lib - /usr/share/man - /usr/share/doc - - - cdrtools - - - 2013-09-14 - 1.1.11 - Disable patch - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-05-16 - 1.1.11 - fixing working - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-02-11 - 1.1.11 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cdparanoia - http://www.xiph.org/paranoia/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - hardware.optical - An advanced CDDA reader with error correction - Hata düzeltme fonksiyonlu gelişmiş bir CDDA okuyucu - cdparanoia is an advanced CDDA (audio CD) reader with error correction. - http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz - - build_system.patch - cdparanoia-III-05-gcc4.3.patch - - hardware/optical/cdparanoia/pspec.xml - - - cdparanoia - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - cdparanoia-devel - Development files for cdparanoia - cdparanoia için geliştirme dosyaları - - cdparanoia - - - /usr/include - - - - - 2014-05-20 - 3.10.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-10 - 3.10.2 - Rebuild for patch - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2014-01-01 - 3.10.2 - Release bump and clean - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-09-14 - 3.10.2 - *Release bump. - *Disable patch - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2010-10-13 - 3.10.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcdio - http://www.gnu.org/software/libcdio/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.optical - Un librairie encapsulant la lecture et le controle du lecteur CD-ROM. - A library to encapsulate CD-ROM reading and control - CD-ROM okuma ve kontrol kitaplığının küçültülmüş sürümü - This library provides an interface for CD-ROM access. It can be used by applications that need OS- and device-independent access to CD-ROM devices. - GNU kompakt disk girdi ve kontrol kitaplığı (libcdio) CD-ROM ve CD kalıplarına ulaşım için gerekli bir kitaplıktır. - mirrors://gnu/libcdio/libcdio-0.92.tar.gz - - libgcc - - - libcdio-0.83-linking.patch - - hardware/optical/libcdio/pspec.xml - - - libcdio - - libgcc - - - /usr/share/info - /usr/share/man - /usr/share/doc - /usr/lib - /usr/bin - - - - libcdio-devel - Development files for libcdio - libcdio için geliştirme dosyaları - - libcdio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.92 + 2015-01-22 + 0.91 Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 0.90 - Rebuild. - Marcin Bojara - marcin@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-07-06 - 0.90 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2014-01-19 + 4.2.0.8 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org 2011-05-27 - 0.82 + 4.2.0.8 First release Pisi Linux Admins admins@pisilinux.org @@ -52227,1466 +36732,62 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - alsa-utils - http://www.alsa-project.org/ + dash + http://gondor.apana.org.au/~herbert/dash/ PisiLinux Community admins@pisilinux.org - GPLv2 + BSD app:console - hardware.sound - Advanced Linux Sound Architecture (ALSA) utilities - ALSA araçları - alsa-utils contains command line utilities for the Advanced Linux Sound Architecture (ALSA). - Alsa-utils Linux işletim sistemlerinde ses ve MIDI fonksiyonlarının gerçekleştirilmesini sağlayan gelişmiş Linux ses mimarisidir - ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.29.tar.bz2 - - xmlto - util-linux - libxslt - ncurses-devel - libsamplerate-devel - alsa-lib-devel - - hardware/sound/alsa-utils/pspec.xml + util.shell + Small and fast POSIX-compliant shell + Ufak ve hızlı POSIX uyumlu kabuk + DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as possible. + DASH, POSIX uyumlu bir /bin/sh gerçeklemesi olup, olabildiğince ufak olmayı hedefleyen bir kabuktur. + http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.8.tar.gz + util/shell/dash/pspec.xml - alsa-utils - - ncurses - alsa-lib - libsamplerate - + dash - /etc - /sbin - /usr/share/doc - /usr/share/man - /var/lib/alsa - /usr/bin - /usr/share/alsa - /lib/udev/rules.d - /usr/share/sounds - /lib/systemd/system - /usr/share/locale - - - System.Service - - - alsaunmute - 01beep.conf - alsactl.conf - alsaunmute.1 - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Rebuild version 28. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-26 - 1.0.27.2 - Remove systemd part. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-05 - 1.0.27.2 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-08-22 - 1.0.27.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.27.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 1.0.26.20121013 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - alsa-lib - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - hardware.sound - The Advanced Linux Sound Architecture (ALSA) library - Gelişmiş Linux Ses Mimarisi kütüphanesi - alsa-lib provides ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs. - alsa-lib, ses aygıtlarına erişim sağlayarak kolayca uygulama yazılmasını sağlayan bir kütüphanedir. - ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.29.tar.bz2 - - python-devel - - hardware/sound/alsa-lib/pspec.xml - - - alsa-lib - - python - - - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/alsa - - - - alsa-lib-devel - Development files for alsa-lib - alsa-lib için geliştirme dosyaları - - alsa-lib - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include/sys - /usr/include/alsa - /usr/share/aclocal - /usr/share/man/man3 - - - - alsa-lib-32bit - 32-bit shared libraries for alsa-lib - alsa-lib için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - - - /usr/lib32 - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Rebuild version 28. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-26 - 1.0.27.2 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-05 - 1.0.27.2 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-08-22 - 1.0.27.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.27.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 1.0.26.20121013 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - alsa-tools - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - hardware.sound - ALSA configuration tools - Gelişmiş Linux Ses Mimarisi araçları - alsa-tools contains ALSA (Advanced Linux Sound Architecture) tools like firmware loaders and sound card control utilities for specific sound cards. - ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.0.29.tar.bz2 - - gtk2-devel - fltk-devel - alsa-lib-devel - - - usx2yloader_udev.patch - firmware_locations.patch - alsa-tools-1.0.17rc1-fix-link.patch - - hardware/sound/alsa-tools/pspec.xml - - - alsa-tools - ALSA console tools - alsa-tools is a collection of console applications for controlling sound cards like EchoAudio, Envy24, etc. - - alsa-lib - - - /usr/bin - /usr/sbin - /lib/udev - /usr/lib - /lib/udev/rules.d - /usr/share/ld10k1 - /usr/share/sounds - /usr/share/man - /usr/share/doc/alsa-tools - - - 90-alsa-tools-firmware.rules - - - - alsa-tools-gui - Graphical frontends for some ALSA tools - alsa-tools-gui is a collection of GUI based ALSA tools for controlling sound cards like EchoAudio, Envy24, Hammerfall HDSP, RMedigicontrol. - - fltk - gtk2 - alsa-lib - - - /usr/share/man/man1/envy24control.1 - /usr/share/doc/alsa-tools-gui - /usr/share/applications - /usr/share/pixmaps - /usr/bin/echomixer - /usr/bin/envy24control - /usr/bin/hwmixvolume - /usr/bin/hdspconf - /usr/bin/hdspmixer - /usr/bin/rmedigicontrol - /usr/bin/qlo10k1 - - - alsa-tools.xpm - hwmixvolume.png - echomixer.desktop - envy24control.desktop - hdspmixer.desktop - hdspconf.desktop - hwmixvolume.desktop - rmedigicontrol.desktop - - - - alsa-tools-devel - Development files for alsa-tools - alsa-tools için geliştirme dosyaları - - alsa-tools - - - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Rebuild version 28. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-26 - 1.0.27 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-22 - 1.0.27 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-22 - 1.0.27 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.27 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-01-29 - 1.0.26.20121013 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - sbc - http://www.bluez.org/ - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - LGPLv2.1 - library - hardware.bluetooth - Bluetooth Subband Codec (SBC) library - An audio codec to connect bluetooth high quality audio devices like headphones or loudspeakers. - http://www.kernel.org/pub/linux/bluetooth/sbc-1.3.tar.gz - hardware/bluetooth/sbc/pspec.xml - - - sbc - - /usr/bin/* - /usr/lib - /usr/share/doc/sbc/* - - - - sbc-devel - Development files for sbc - - sbc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-12 - 1.3 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-27 - 1.0 - R.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-12-19 - 1.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - bluez - http://bluez.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - service - library - app:console - hardware.bluetooth - Official Linux Bluetooth protocol stack - Linux resmi Bluetooth protokol yığını - bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols. - Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir. - https://www.kernel.org/pub/linux/bluetooth/bluez-5.33.tar.xz - - cups-devel - dbus-devel - libnl-devel - alsa-lib-devel - gstreamer-devel - libsndfile-devel - libical-devel - glib2-devel - eudev-devel - readline-devel - - - 0001-Allow-using-obexd-without-systemd-in-the-user-session.patch - - hardware/bluetooth/bluez/pspec.xml - - - bluez - - dbus - eudev - glib2 - readline - libical - bluez-libs - - - /lib/udev/rules.d - /lib/systemd/system - /usr/share/misc - /usr/bin - /usr/sbin - /lib/udev - /lib/bluetooth/obexd - /lib/bluetooth/bluetoothd - /usr/lib - /usr/libexec - /usr/share/man - /var/lib/bluetooth - /usr/share/alsa/bluetooth.conf - /usr/share/dbus-1 - /etc - - - System.Service - - - - bluez-libs - Libraries for use in Bluetooth applications - Uygulamalar için bluetooth erişim kitaplığı - - libical - - - /usr/lib/libbluetooth.so* - /usr/share/doc - - - - bluez-libs-devel - Development files for bluez-libs - bluez-libs için geliştirme dosyaları - - bluez-libs - - - /usr/include/bluetooth - /usr/lib/pkgconfig - - - - - 2015-08-16 - 5.33 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-01-29 - 5.27 - rebuild. - Vedat Demir - vedat@pisilinux.org - - - 2015-01-25 - 5.27 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-07-05 - 5.21 - Version bump and bugs fix. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-23 - 5.18 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2014-01-28 - 4.101 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-27 - 4.101 - R.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-06-28 - 4.101 - Add patches, --enable-hid2hci --enable-wiimote - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-09 - 4.101 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libfreebob - http://freebob.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.firewire - FreeBoB firewire audio driver library - FreeBoB firewire ses sürücü kütüphanesi - libfreebob implements a userland driver for BeBoB-based firewire audio devices. - libfreebob BeBoB tabanlı firewire ses aygıtları için sürücü kütüphanesi içerir. - mirrors://sourceforge/freebob/libfreebob-1.0.11.tar.gz - - alsa-lib-devel - libraw1394-devel - libavc1394-devel - libiec61883-devel - - - libfreebob-1.0.11-includes.patch - gcc-4.5.patch - fix_usleep.patch - - hardware/firewire/libfreebob/pspec.xml - - - libfreebob - - alsa-lib - libraw1394 - libavc1394 - libiec61883 - - - /usr/lib - /usr/share/doc - - - - libfreebob-devel - Development files for libfreebob - libfreebob için geliştirme dosyaları - - libfreebob - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-01-30 - 1.0.11 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 1.0.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libdc1394 - http://sourceforge.net/projects/libdc1394/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.firewire - Programming interface for IEEE 1394 based cameras - IEEE 1394 tabanlı kameralar için programlama kitaplığı - libdc1394 est une librairie dont l'objectif est de fournir une interface de programmation d'application de haut niveau pour les développeur désirant contrôler les caméras basées sur le IEEE 1394 se conformant aux spécifications des Caméras Digitales basées sur 1394 (que l'on trouve sur http://www.1394ta.org/). - libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification (found at http://www.1394ta.org/). - Bu kütüphane IEEE 1394 tabanlı kameraların kontrolü için yüksek seviyeli bir arayüz oluşturur. - libdc1394 es una librería con intención de facilitar una interfaz de programación de alto nivel para programadores de aplicaciones, que desean controlar camaras basados en IEEE 1394, conforme la especificación de camaras digitales basados en 1394 (véase http://www.1394ta.org/). - http://sourceforge.net/projects/libdc1394/files/libdc1394-2/2.2.3/libdc1394-2.2.3.tar.gz - - libraw1394-devel - - hardware/firewire/libdc1394/pspec.xml - - - libdc1394 - - libraw1394 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libdc1394-devel - Development files for libdc1394 - libdc1394 için geliştirme dosyaları - - libdc1394 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-09-13 - 2.2.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-20 - 2.2.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 2.2.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-20 - 2.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libavc1394 - http://sourceforge.net/projects/libavc1394/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.firewire - Librairie pour l'ensemble de commande de l'interface digitale AV/C (Audio/Vidéo Control) de l'association pour le commerce 1394 (1394 Trade Association). - library for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set - 1394 Trade Association AV/C (Ses/Görüntü kontrol) sayısal arayüz komut seti için bir kütüphane - The libavc1394 library allows utilities to control IEEE-1394 devices using the AV/C specification. Audio/Video Control allows applications to control devices like the tape on a VCR or camcorder. - mirrors://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz - - libraw1394-devel - - - libavc1394-0.5.3-librom.patch - - hardware/firewire/libavc1394/pspec.xml - - - libavc1394 - - libraw1394 - - - /usr/bin - /usr/lib + /bin/dash /usr/share/man /usr/share/doc - - libavc1394-devel - Development files for libavc1394 - libavc1394 için geliştirme dosyaları - - libavc1394 - libraw1394-devel - - - /usr/include - /usr/lib/pkgconfig - - - 2014-05-31 - 0.5.4 + 2015-11-21 + 0.5.8 Rebuild. Alihan Öztürk alihan@pisilinux.org - 2014-03-08 - 0.5.4 - Rebuild - PisiLinux Community - admins@pisilinux.org + 2015-01-22 + 0.5.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-07-28 - 0.5.4 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 0.5.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libiec61883 - http://www.linux1394.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - hardware.firewire - A library for capturing video (DV, MPEG2 or AMDTP) over the IEEE 1394 bus - IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane - Cette librairie fournit aux les médias de troisième génération la réception et la transmission pour DV, MPEG2-TS et AMDTP (audio et musique) en n'utilisant que raw1394 sans nécessiter une configuration et une maintenance compliquées d'autres modules du noyau et de leurs nodes dans /dev. - libiec61883 is a library providing third generation media reception and transmission for DV, MPEG2-TS, and AMDTP (audio and music) using only raw1394 and not the complicated setup and maintenance of other kernel modules and their /dev nodes. - IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane - La librería facilita recepción y transmisión de media de tercera generación para DV, MPEG2-TS, y AMDTP (audio y music), usando solamente la interfaz 1394 en crudo, sin configuración complicada y mantenimiento de otros módulos de kernel y nodos /dev correspondientes. - http://www.kernel.org/pub/linux/libs/ieee1394/libiec61883-1.2.0.tar.gz - - libraw1394-devel - - - libiec61883-1.2.0-installtests.patch - libiec61883-channel-allocation-without-local-node-rw.patch - - hardware/firewire/libiec61883/pspec.xml - - - libiec61883 - - libraw1394 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libiec61883-devel - Development files for libiec61883 - libiec61883 için geliştirme dosyaları - - libiec61883 - libraw1394-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-03-09 - 1.2.0 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 1.2.0 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-15 - 1.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libraw1394 - http://www.linux1394.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - hardware.firewire - A library that provides direct access to the IEEE 1394 bus - IEEE 1394 veriyoluna direk erişim sağlayan bir kütüphane - IEEE 1394 est un standard définissant un bus de série très rapide. Ce bus est également appelé FireWire par Apple ou i.Link par Sony. - libraw1394 library provides direct access to the IEEE-1394 bus through the Linux 1394 subsystem's raw1394 user interface. Support for both the classic ieee1394 and new firewire linux driver stacks is included. - IEEE 1394 yüksek hızlı bir seri veriyolu tanımlayan standarttır. Bu veriyolu Apple, i.Link ve Sony tarafından FireWire olarak adlandırılmıştır. Bu kütüphane IEEE 1394 veriyoluna direkt erişim sağlar. - IEEE 1394 es un estándar que define un bus serial de alta velocidad. Este bus lleva también el nombre FireWire por Apple o i.Link por Sony. - http://www.kernel.org/pub/linux/libs/ieee1394/libraw1394-2.1.0.tar.xz - hardware/firewire/libraw1394/pspec.xml - - - libraw1394 - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libraw1394-devel - Development files for libraw1394 - libraw1394 için geliştirme dosyaları - - libraw1394 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 2.1.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-15 - 2.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libffado - http://www.ffado.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - hardware.firewire - Free firewire audio drivers - Ücretsiz firewire ses sürücüleri - libffado tries to provide open-source drivers for all FireWire based pro-audio devices. - libffado, firewire arabirimli profesyonel ses kartları için ücretsiz sürücü desteği sağlayan bir projedir. - http://www.ffado.org/files/libffado-2.2.1.tgz - - xdg-utils - glibmm-devel - libxmlpp-devel - alsa-lib-devel - dbus-c++-devel - libsigc++-devel - libconfig-devel - libraw1394-devel - libiec61883-devel - libgcc - - - libffado-api-doc-only.patch - libffado-libconfig145.patch - flags.patch - libffado-2.2.1-jack-detect.patch - libffado-2.2.1-mixer.patch - - hardware/firewire/libffado/pspec.xml - - - libffado - library - - glibmm - libgcc - dbus-c++ - libxmlpp - libconfig - libsigc++ - xdg-utils - libraw1394 - libiec61883 - python-setuptools - - - /usr/bin - /usr/lib - /usr/share/locale - /lib/udev/rules.d - /usr/share/libffado - /usr/share/dbus-1 - /usr/share/man - /usr/share/doc - - - - libffado-devel - Development files for libffado - libffado için geliştirme dosyaları - library - - libffado - - - /usr/include - /usr/lib/pkgconfig - - - - ffado-mixer - Graphical User Interface for FFADO - FFADO için grafik arayüzü - app:gui - hardware.sound - ffado-mixer - - libffado - python-setuptools - - - /usr/bin/ffado-mixer* - /usr/share/applications - /usr/share/pixmaps - - - pisilinux-ffadomixer.desktop - - - - - 2015-04-28 - 2.2.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-05-06 - 2.1.0 - Sandbox Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2012-11-15 - 2.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - dosfstools - http://www.daniel-baumann.ch/software/dosfstools/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - hardware.disk - Tools to create and check DOS and VFAT filesystems - DOS dosya sistemi oluşturmaya ve kontrol etmeye yarayan komutlar - The dosfstools package includes the DOS and VFAT filesystem utilities like mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel. You can create and check MS-DOS FAT filesystems on hard drives or on floppies - Dosfstools paketi, mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel gibi, DOS ve VFAT dosyasistemleri yaratmaya ve kontrol etmeye yarayan araçları içerir. - http://daniel-baumann.ch/files/software/dosfstools/dosfstools-3.0.26.tar.xz - hardware/disk/dosfstools/pspec.xml - - - dosfstools - - /sbin - /usr/share/doc - /usr/share/man - - - - - 2014-04-03 - 3.0.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-18 - 3.0.25 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-21 - 3.0.23 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-06-13 - 3.0.20 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-13 - 3.0.13 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gptfdisk - http://www.rodsbooks.com/gdisk/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:console - hardware.disk - A text-mode partitioning tool that works on GUID Partition Table (GPT) disks - A text-mode partitioning tool that works on GUID Partition Table (GPT) disks - http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.1/gptfdisk-1.0.1.tar.gz - - util-linux - ncurses-devel - popt-devel - libutil-linux-devel - - hardware/disk/gptfdisk/pspec.xml - - - gptfdisk - - ncurses - popt - libgcc - libutil-linux - - - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2015-10-28 - 1.0.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-11 - 1.0.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-04 - 0.8.10 - First Release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - udisks2 - http://udisks.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:console - hardware.disk - Disk Management Service - Disk Yönetim Hizmeti - udisks provides a daemon, API and command line tools for managing disk devices attached to the system. - udisks, sisteme bağlı disk aygıtlarını yönetmek için programlama kitaplığı ve komut satırı araçları sunar. - http://udisks.freedesktop.org/releases/udisks-2.1.6.tar.bz2 - - tr.po - - - gtk-doc - acl-devel - glib2-devel - polkit-devel - eudev-devel - parted-devel - libatasmart-devel - device-mapper-devel - lvm2-devel - gobject-introspection-devel - sg3_utils-devel - ntfsprogs - dosfstools - docbook-xsl - libxslt - intltool - - - udisks-2.x-ntfs-3g.patch - - hardware/disk/udisks2/pspec.xml - - - udisks2 - - acl - glib2 - polkit - eudev - lvm2 - mdadm - parted - libatasmart - device-mapper - ntfsprogs - dosfstools - sg3_utils - - - /etc/udisks2 - /etc/dbus-1 - /lib/udev/rules.d - /usr/bin - /usr/sbin - /usr/lib - /usr/libexec - /usr/share/bash-completion/completions - /usr/share/doc - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/gtk-doc/ - /usr/share/locale - /usr/share/polkit-1/ - /usr/share/man - /var/lib/ - /run/udisks - /usr/share/dbus-1/interfaces/*.xml - - - - udisks2-devel - Development files for udisks2 - udisks için geliştirme dosyaları - - udisks2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-12-27 - 2.1.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-19 - 2.1.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-07 - 2.1.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-25 - 2.1.3 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-05 - 2.1.3 - add builddep docbook-xsl. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-29 - 2.1.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-20 - 2.1.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-15 - 2.1.0 - V.bump - PisiLinux Community - admins@pisilinux.org - - - 2013-08-13 - 2.0.0 - fix path - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-26 - 2.0.0 - Release bump for rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2012-10-22 - 2.0.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - dmraid - http://people.redhat.com/~heinzm/sw/dmraid - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Device-Mapper Software RAID support tool and library - ATARAID aygıtlarını (Yazılımsal RAID) denetleme aracı - Device-Mapper Software RAID support tool and library - ATARAID aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. - http://launchpad.net/dmraid/1.0/1.0.0.rc16-3/+download/dmraid-1.0.0.rc16-3.tar.bz2 - - device-mapper-event-devel - device-mapper-devel - - - dmraid-diet.patch - dmraid-1.0.0_rc16-return-all-sets.patch - dmraid-1.0.0_rc16-static-build-fixes.patch - dmraid-1.0.0_rc16-undo-p-rename.patch - - hardware/disk/dmraid/pspec.xml - - - dmraid - - device-mapper - device-mapper-event - - - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man - - - - dmraid-devel - Development files for dmraid - dmraid için geliştirme dosyaları - - dmraid - - - /usr/include - - - - 2014-02-17 - 1.0.0_rc16 + 0.5.7 Release. - PisiLinux Community - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2013-03-15 - 1.0.0_rc16 - V.Bump - PisiLinux Community - admins@pisilinux.org + 2013-04-30 + 0.5.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2010-10-13 - 1.0.0_rc15 + 2010-12-31 + 0.5.6.1 First release Pisi Linux Admins admins@pisilinux.org @@ -53695,2416 +36796,57 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - dmapi - http://oss.sgi.com/projects/xfs/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.disk - Librairie de l'API de gestion de données XFS. - XFS data management API library - XFS veri yönetimi kütüphanesi - The Data Management API (DMAPI/XDSM) allows implementation of hierarchical storage management software with no kernel modifications as well as high-performance dump programs without requiring "raw" access to the disk and knowledge of filesystem structures. - ftp://oss.sgi.com/projects/xfs/cmd_tars/dmapi-2.2.12.tar.gz - - xfsprogs-devel - - hardware/disk/dmapi/pspec.xml - - - dmapi - - xfsprogs - - - /lib - /usr/lib - /usr/share/doc - /usr/share/man - - - - dmapi-devel - Development files for dmapi - dmapi için geliştirme dosyaları - - dmapi - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-05-22 - 2.2.12 - rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-11-02 - 2.2.12 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-03-16 - 2.2.10 - URL Fixed - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 2.2.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - ntfs-3g - http://www.tuxera.com/community/ntfs-3g-download - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - LGPLv2+ - library - app:console - hardware.disk - Userspace driver for NTFS read/write support - NTFS dosya sistemlerine okuma/yazma erişimi için bir sürücü - ntfs-3g allows regular users read/write access to NTFS filesystems. - ntfs-3g kullanıcıların NTFS biçimli disk bölümlerine hem okuma hem yazma erişimi yapabilmesine imkan veren bir sürücüdür. - http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz - - fuse-devel - libutil-linux-devel - - hardware/disk/ntfs-3g/pspec.xml - - - ntfs-3g - - fuse - - - /bin - /sbin - /lib - /usr/lib - /usr/include - /usr/lib/pkgconfig - /usr/share/hal/fdi - /usr/share/doc/ntfs-3g - /usr/share/man/man8/mount* - /usr/share/man/man8/ntfs-3g* - - - - ntfsprogs - Userspace tools for NTFS filesystems - NTFS dosya sistemi için kullanıcı araçları - Userspace tools for NTFS filesystems. The goals of the Linux-NTFS project are to develop reliable and full-featured access to NTFS by the Linux kernel driver and to provide a wide collection of NTFS utilities. - NTFS dosya sistemi için kullanıcı araçları içerir. Bu araçların amacı Linux çekirdeğine NTFS dosya sistemlerine güvenilir ve tam erişim sağlayacak NTFS araçlarını sağlamaktır. - hardware.disk - - ntfs-3g - fuse - libutil-linux - - - /sbin/mkfs.ntfs - /usr/bin - /usr/sbin - /usr/share/doc/ntfsprogs - /usr/share/man/man8 - - - - - 2015-05-06 - 2015.3.14 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-13 - 2014.2.15 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-11 - 2013.1.13 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-30 - 2013.1.13 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-30 - 2013.1.13 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-14 - 0.0_2012.01.15 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libatasmart - http://git.0pointer.de/?p=libatasmart.git - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - app:console - hardware.disk - ATA S.M.A.R.T. Disk Health Monitoring Library - ATA S.M.A.R.T. disk sağlığı izleme kitaplığı - A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring. - libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır. - http://0pointer.de/public/libatasmart-0.19.tar.xz - - eudev-devel - - - libatasmart-uninitialized-var.patch - - hardware/disk/libatasmart/pspec.xml - - - libatasmart - - eudev - - - /usr/sbin/skdump - /usr/sbin/sktest - /usr/lib/libatasmart.so* - /usr/share/doc/libatasmart/README - /usr/share/doc/libatasmart/LGPL - - - - libatasmart-devel - Development files for libatasmart - libatasmart için geliştirme dosyaları - - libatasmart - eudev-devel - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - /usr/share/doc - - - - - 2014-05-25 - 0.19 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-29 - 0.19 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-02 - 0.19 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xfsprogs - http://oss.sgi.com/projects/xfs/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.disk - XFS filesystem utilities - XFS dosya sistemi araçları - xfsprogs contains a number of administrative utilities to work with and manage XFS filesystems. - xfsprogs XFS dosya sistemini kullanmak ve yönetmek için bir dizi araç içerir. - ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsprogs-3.2.4.tar.gz - - libutil-linux-devel - readline-devel - - hardware/disk/xfsprogs/pspec.xml - - - xfsprogs - - libutil-linux - readline - - - /lib - /sbin - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - xfsprogs-devel - Development headers for xfsprogs - - xfsprogs - - - /usr/include - /usr/share/man/man3 - - - - - 2015-08-04 - 3.2.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-01 - 3.1.11 - Version bump - Burak Fazıl Erturk - burakerturk@pisilinux.org - - - 2012-10-05 - 3.1.8 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - reiserfsprogs - http://www.kernel.org/ + bash-completion + http://bash-completion.alioth.debian.org/ PisiLinux Community admins@pisilinux.org GPLv2 app:console - hardware.disk - Tools to work with Reiserfs filesystems - Reiserfs dosya sistemleriyle çalışabilmek için gereken araçlar - Contains tools designed to create, modify and check Reiserfs filesystems. - Reiserfs dosya sistemleri oluşturmak, bu dosya sistemlerinde hata kontrolü yapmak, bu sistemlerin boyutlarını değiştirmek ve hata ayıklamak gibi görevler taşıyan araçlar. - http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.24/reiserfsprogs-3.6.24.tar.xz - hardware/disk/reiserfsprogs/pspec.xml + util.shell + Programmable completion for bash + Bash kabuğu için otomatik tamamlama + A relatively new feature in bash is programmable completion. Since now, users have been able to complete commands, variables and filenames; now it is also possible to complete parameters. + Kabukta çeşitli uygulamalar için otomatik tamamlama özelliği eklenebilmesine olanak sağlayan bir programdır. + http://bash-completion.alioth.debian.org/files/bash-completion-2.1.tar.bz2 + util/shell/bash-completion/pspec.xml - reiserfsprogs + bash-completion - /sbin + /etc /usr/share/doc - /usr/share/man - - - - - 2014-12-13 - 3.6.24 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-10 - 3.6.21 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 3.6.21 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - btrfs-progs - http://btrfs.wiki.kernel.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Userspace utilities for btrfs - btrfs dosya sistemi araçları - btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem. - btrfs-progs, btrfs dosya sistemleri yaratmak, denetlemek; bu dosya sistemlerindeki hataları düzeltmek ve çeşitli değişiklikler yapmak için gereken araçları içerir. - http://source.pisilinux.org/1.0/btrfs-progs-v4.1.2.tar.xz - - xmlto - asciidoc - lzo-devel - zlib-devel - libutil-linux-devel - util-linux - libxslt - e2fsprogs-devel - - hardware/disk/btrfs-progs/pspec.xml - - - btrfs-progs - - lzo - zlib - libutil-linux - e2fsprogs - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - btrfs-progs-devel - Development files for btrfs-progs - - btrfs-progs - - - /usr/include - - - - - 2015-07-20 - 4.1.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-23 - 3.19.1 - Version bump, fix deps - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-23 - 3.17.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 3.14.2 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-01-19 - 3.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-19 - 0.19.20121005 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-13 - 0.19.20121005 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - hdparm - http://sourceforge.net/projects/hdparm/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - hardware.disk - Utility to change hard drive performance parameters - Sabit disk parametrelerini değiştirmekte kullanılan araç - le paquet hdparm dispose d'outils utiles permettant d'obtenir/établir les paramètres de disques durs IDE sous Linux en cours d'éxécution. - hdparm has some useful utilities that allows you to get/set hard disk parameters for Linux IDE drives in runtime. - hdparm paketi çalışma anında Linux IDE sürücülerinin parametrelerini almanıza/değiştirmenize olanak sağlayan bazı kullanışlı uygulamaları içerir. - http://downloads.sourceforge.net/hdparm/hdparm-9.43.tar.gz - hardware/disk/hdparm/pspec.xml - - - hdparm - - /sbin - /usr/share/doc - /usr/share/man - /etc/conf.d - - - hdparm.confd - - - - - 2014-05-24 - 9.43 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2011-02-02 - 9.42 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - mtools - http://mtools.linux.lu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Utilities to access MS-DOS disks without mounting them - MS-DOS (Windows) disketlerinize -mount ile bağlamadan- erişim araçları - Mtools are utilities to access MS-DOS disks without mounting them. - Mtools diskinizdeki MS-DOS (Windows) bölümlerine -mount komutu ile bağlamadan- erişebilmek için gereken araç setidir. - mirrors://gnu/mtools/mtools-4.0.18.tar.gz - hardware/disk/mtools/pspec.xml - - - mtools - - /usr/bin - /etc - /usr/share/doc - /usr/share/info - /usr/share/man - - - - - 2014-02-12 - 4.0.18 - Fix mtools.conf syntax. - Richard de Bruin - richdb@pisilinux.org - - - 2013-11-20 - 4.0.18 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-22 - 4.0.17 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - parted - http://www.gnu.org/software/parted - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - hardware.disk - Crée, supprime, modifie les dimensions, vérifie et copie partitions et systèmes de fichiers. - Create, destroy, resize, check, copy partitions and file systems - GNU Parted disk bölümlerini oluşturmaya, silmeye, boyutlandırmaya, taşımaya ve kopyalamaya yarayan bir yazılımdır. - The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks. - http://ftp.gnu.org.ua/gnu/parted/parted-3.2.tar.xz - - libutil-linux-devel - device-mapper-devel - readline-devel - - hardware/disk/parted/pspec.xml - - - parted - - libutil-linux - ncurses - device-mapper - readline - util-linux - - - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man - - - - parted-devel - Development files for parted - parted için geliştirme dosyaları - - parted - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-08-09 - 3.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-25 - 3.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-02-02 - 3.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2012-10-05 - 3.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - thin-provisioning-tools - http://github.com/jthornber/thin-provisioning-tools" - - Ali Algul - alialgul@pisilinux.org - - GPLv2 - hardware.disk - A suite of tools for thin provisioning on Linux - A suite of tools for thin provisioning on Linux - https://codeload.github.com/jthornber/thin-provisioning-tools/tar.gz/v0.5.3 - - libaio-devel - boost-devel - expat-devel - libgcc - - hardware/disk/thin-provisioning-tools/pspec.xml - - - thin-provisioning-tools - - expat - libgcc - libaio - - - /usr/sbin/ - /usr/share/man/man8/ - - - - - 2015-07-20 - 0.5.3 - First Build - Ali Algul - alialgul@pisilinux.org - - - - - - sg3_utils - http://sg.danny.cz/sg/sg3_utils.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - app:console - library - hardware.disk - Utilities for devices that use SCSI command sets - SCSI komut setini kullanan aygıtlar için araçlar - sg3_utils is a collection of Linux utilities for devices that use the SCSI command set. Includes utilities to copy data based on dd syntax and semantics, check INQUIRY data and VPD pages, check mode and log pages, spin up/down disks, do self tests and various other functions. - sg3_utils SCSI komut setini kullanan aygıtlar için çeşitli araçlar sunar. - http://sg.danny.cz/sg/p/sg3_utils-1.41.tar.xz - hardware/disk/sg3_utils/pspec.xml - - - sg3_utils - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - rescan-scsi-bus.sh - - - - sg3_utils-devel - Development files for sg3_utils - sg3_utils için geliştirme dosyaları - - sg3_utils - - - /usr/include - - - - - 2015-08-19 - 1.41 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.38 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2012-11-14 - 1.34 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - squashfs-tools - http://squashfs.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Userspace tools to create squashfs compressed filesystem - squashfs sıkıştırılmış salt-okunur dosya sistemi oluşturma aracı - Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. - squashfs, Linux için sıkıştırılmış ve salt-okunur bir dosya sistemidir. Bu paket squashfs dosya sistemiyle çalışmak için kullanılabilecek araçları içerir. - http://sourceforge.net/projects/squashfs/files/squashfs/squashfs4.2/squashfs4.2.tar.gz - - lzo-devel - xz-devel - zlib-devel - - hardware/disk/squashfs-tools/pspec.xml - - - squashfs-tools - - lzo - zlib - xz - - - /usr/sbin - /usr/share/doc - - - - - 2014-03-09 - 4.2 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-02-12 - 4.2 - Change compression type to xz, and some other enhancements. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-14 - 4.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - pisido - http://www.pisilinux.org - - Harun Gültekin - hrngultekin@gmail.com - - GPLv3+ - app:gui - util.admin - A pisi packager from GUI - Grafik arayüzde çalışan pisi paketçisi. - You can make pisi packages with a GUI. Also, you can import your existing build files.Warning:Alfa version. Ported Qt5. - Grafik arayüzde pisi paketleri yapabilirsiniz. Ayrıca var olan inşa dosyalarınızı içe aktarıp inşa edebilirsiniz.Çoklu paket yapısı eklenmiştir. Hala geliştirilme aşamasındasır. Alfa sürümdür. Qt5 ile hazırlanmıştır. - https://github.com/hrngultekin/pisido/archive/pisido-v2.3.3.tar.gz - - qscintilla2-devel - qtermwidget5-devel - - util/admin/pisido/pspec.xml - - - pisido - A pisi packager from GUI - - libgcc - qt5-base - qscintilla2 - qtermwidget5 - - - / - - - - - 2015-10-26 - 2.3.3 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-08-30 - 2.3.1 - Qt5 rebuild - Harun Gültekin - hrngultekin@gmail.com - - - 2015-08-26 - 2.2.1 - rebuild - Harun Gültekin - hrngultekin@gmail.com - - - 2015-08-01 - 2.2.0 - Rebuild - Harun Gültekin - hrngultekin@gmail.com - - - 2015-07-27 - 2.2.0 - Version bump - Harun Gültekin - hrngultekin@gmail.com - - - 2015-07-24 - 2.1.0 - Version bump - Harun Gültekin - hrngultekin@gmail.com - - - 2015-07-09 - 2.0.1 - added multipackage support - Harun Gültekin - hrngultekin@gmail.com - - - 2014-07-05 - 2.0b - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2014-02-04 - 2.0b - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2013-03-10 - 2.0b - Inıtial import. - Serdar Soytetir - kaptan@pisilinux.org - - - - - - utempter - http://www.redhat.com/ - - PisiLinux Community - admins@pisilinux.org - - MIT - LGPLv2.1 - app:console - util.admin - Application that allows non-privileged applications to write utmp (login) info - utemper, utmp(oturum açma) bilgilerini yazmak için ayrıcalıksız uygulamalara izin veren bir uygulamadır. - Utempter is a utility that allows non-privileged applications such as terminal emulators to modify the utmp database without having to setuid root. - Utempter, terminal emulatörleri gibi, yetkisiz uygulamalara setuid e ihtiyaç duymadan utmp veritabanına yazma hakkı verir. - ftp://ftp.altlinux.org/pub/people/ldv/utempter/libutempter-1.1.6.tar.bz2 - - libutempter-pierelro.patch - - util/admin/utempter/pspec.xml - - - utempter - - /usr/libexec - /usr/lib - /usr/share/doc - /usr/share/man - - - System.Package - - - - utempter-devel - Development files for utempter - utempter için geliştirme dosyaları - - utempter - - - /usr/include - - - - - 2014-05-25 - 1.1.6 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-20 - 1.1.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 0.5.5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - logrotate - https://fedorahosted.org/releases/l/o/logrotate - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.admin - Rotates, compresses, removes and emails system log files - Sistem günlük (log) dosyalarını yönetmeyi kolaylaştıran bir araç - logrotate is designed to ease administration of systems that generate large numbers of log files. It allows automatic rotation, compression, removal, and emailing of log files. - Logrotate kayıt dosyalarının rotasyonunu, silinmesini veya e-posta ile gönderilmesi gibi işlevleri ile sistem yönetimini kolaylaştırıan bir uygulamadır. - https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.8.8.tar.gz - - popt-devel - acl-devel - - util/admin/logrotate/pspec.xml - - - logrotate - - popt - acl - - - /etc - /usr/sbin - /usr/share/doc - /usr/share/man - - - - - 2015-01-26 - 3.8.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-18 - 3.8.7 - v.bump - Ayhan Yalçınsoy - ayhanyacinsoy@gmail.com - - - 2014-03-09 - 3.7.9 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2011-09-29 - 3.7.9 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - pisilinux-dev-tools - http://www.pisilinux.org - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - app:console - util.admin - A collection of useful tools that Pisi Linux developers use to make their developing work a lot easier - Pisilinux-dev-tools is a collection of useful tools that Pisilinux developers use to make their developing work a lot easier. Such tools can include packaging preparation, package analysis, etc. - http://source.pisilinux.org/1.0/pisilinux-dev-tools-0.0.2.tar.xz - - fix_detect_mesa.patch - spped_up.patch - ignore_glibc-32bit.patch - - util/admin/pisilinux-dev-tools/pspec.xml - - - pisilinux-dev-tools - - chrpath - binutils - - - /usr/bin - /usr/share/doc - - - - - 2015-06-28 - 0.0.2 - fix runtime deps. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-21 - 0.0.2 - checkelf: ignore glibc-32bit - Marcin Bojara - marcin@pisilinux.org - - - 2014-07-01 - 0.0.2 - rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-06-19 - 0.0.2 - Speed up checkelf. - Marcin Bojara - marcin@pisilinux.org - - - 2014-06-16 - 0.0.2 - checkelf: fix detect mesa. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-11 - 0.0.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-03 - 0.0.1 - Use re.search() for checking command file output. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-29 - 0.0.1 - Rebuild - Pisi Linux Admins - admins@pisilinux.org - - - 2011-05-23 - 0.0.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - htop - http://htop.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - util.admin - Visionneur de processus pour Linux - An interactive process viewer for Linux - Linux için etkileşimli bir süreç izleyici - htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. - htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. - htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. - htop - http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz - - ncurses-devel - gettext-devel - - - desktop_tr.patch - - util/admin/htop/pspec.xml - - - htop - - ncurses - - - /usr/bin - /usr/share/man - /usr/share/doc - /usr/share/applications - /usr/share/pixmaps - - - - - 2014-06-17 - 1.0.3 - Version bump - Kamil Atlı - burakerturk@pisilinux.org - - - 2013-12-31 - 1.0.2 - Release bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-01-31 - 1.0.2 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - inxi - http://code.google.com/p/inxi/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv1 - app:console - util.admin - script to get system information - script to get system information - script voor het opvragen van systeem informatie - Script para la información del sistema - script to get system information - script to get system information - Script voor het opvragen van systeem informatie - Inxi es un completo script que muestra la información del sistema - http://inxi.googlecode.com/svn/tarballs/inxi_2.2.19.tar.gz - util/admin/inxi/pspec.xml - - - inxi - - /usr/bin - /usr/share/kde4/apps/konversation/scripts/inxi - /usr/share/man - /usr/share/doc - - - - - 2015-07-23 - 2.2.19 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-01-26 - 2.2.17 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-17 - 2.1.28 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-05-03 - 2.1.27 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-12-16 - 1.9.17 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-0 - 1.9.15 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-08 - 1.9.12 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-27 - 1.8.45 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-20 - 1.8.34 - Distro list added PisiLinux - Ertan Güven - ertan@pisilinux.org - - - 2013-02-23 - 1.8.34 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2013-01-28 - 1.8.32 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - sudo - http://www.sudo.ws/ - - PisiLinux Community - admins@pisilinux.org - - Sudo - app:console - util.admin - Allows restricted root access for specified users - Yönetici haklarıyla komut çalıştırma uygulaması - sudo allows certain users/groups to run commands with root user privileges. - sudo, belirli kullanıcıların ya da kullanıcı gruplarının komut ve uygulamaları yönetici kullanıcı (root) haklarıyla çalıştırmasına izin veren bir konsol uygulamasıdır. - http://www.sudo.ws/sudo/dist/sudo-1.8.13.tar.gz - - nss-devel - audit-devel - pam-devel - zlib-devel - cyrus-sasl-devel - openldap-client - - util/admin/sudo/pspec.xml - - - sudo - - nss - audit - pam - zlib - cyrus-sasl - openldap-client - - - /etc - /usr/lib/tmpfiles.d/sudo.conf - /usr/bin - /usr/sbin - /usr/libexec - /usr/share/doc - /usr/share/locale - /usr/share/man - /run/sudo - /var/db/sudo - /usr/include - - - System.Package - - - sudoers - sudo.pamd - sudo-i.pamd - sudo.tmpfiles.conf - - - - - 2015-04-17 - 1.8.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-01 - 1.8.11_p2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-01 - 1.8.11p2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-18 - 1.8.10_p3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-03-29 - 1.8.10_p2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-13 - 1.8.9 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-09 - 1.8.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.8.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - security - 2011-02-04 - 1.7.4_p6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - cgmanager - https://github.com/lxc/cgmanager - - Aydın Demirel - aydin.demirel@pisilinux.org - - GPL - app:console - util.admin - Central cgroup management daemon - Merkezi cgroup yönetimi uygulamacığı - CGManager is a central privileged daemon that manages all your cgroups for you through a simple DBus API. - CGManager basit bir DBUS api üzerinden sizin için tüm cgruplarınızı yöneten merkezi ayrıcalıklı bir uygulamacıktır. - https://github.com/lxc/cgmanager/archive/v0.39.tar.gz - - libnih-devel - pam-devel - help2man - - util/admin/cgmanager/pspec.xml - - - cgmanager - - libnih - pam - dbus - - - /usr/bin - /lib/security - /usr/share/man - /usr/share/cgmanager - /usr/lib/libcgmanager* - - - System.Service - - - - cgmanager-devel - - cgmanager - libnih - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-09-10 - 0.39 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-10 - 0.38 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-12 - 0.36 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-27 - 0.23 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - nss - http://www.mozilla.org/projects/security/pki/nss/ - - Erdinç Gültekin - admins@pisilinux.org - - MPL-2.0 - GPLv2 - LGPLv2.1 - library - util.crypt - Network Security Services - Ağ Güvenlik Servisleri - Network Security Services (NSS) est un ensemble de librairies conçues pour faciliter le développement multi-plateforme d'applications client et serveur sécurisées. Les applications ocnstruite avec NSS peuvent gérer SSL v2 et v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, les certificats X.509 v3 et d'autres standards de sécurité. - Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. - NSS, platform bağımsız güvenli ağ servisi geliştirme kitaplıklarından oluşur. Bu kitaplık yardımı ile SSL v2 ve v3, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 sertifikaları ve diğer bir çok güvenlik standardına uygun güvenli sunucu-istemci yazılımları geliştirilebilir. - Network Security Services (NSS) es un conjunto de librerías para desarrollo cross-plataforma de aplicaciones cliente-servidor con facilidad de seguridad. Aplicaciones usando NSS pueden soportar certificados SSL v2 y v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3, y otros estándares de seguridad. - https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_20_1_RTM/src/nss-3.20.1.tar.gz - - nss.pc.in - nss-config.in - generate-pc-config.sh - - - nspr-devel - sqlite-devel - zlib-devel - - - nss-3.18.1-standalone-1.patch - add_spi+cacert_ca_certs.patch - ssl-renegotiate-transitional.patch - fedora/add-relro-linker-option.patch - fedora/nss-539183.patch - - util/crypt/nss/pspec.xml - - - nss - - zlib - sqlite - nspr - - - /usr/lib - /usr/bin - /etc - - - ld.so.conf - nssdb/cert8.db - nssdb/key3.db - nssdb/secmod.db - - - - nss-devel - Development files for nss - nss için geliştirme dosyaları - - nspr-devel - nss - - - /usr/bin/nss-config - /usr/include - /usr/lib/pkgconfig - /usr/lib/nss/*.a - - - - - 2015-12-21 - 3.20.1 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-11-19 - 3.19.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-07-15 - 3.19.2 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-05-01 - 3.18.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-28 - 3.17.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-12-13 - 3.17.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-11-02 - 3.17.2 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-08-10 - 3.16.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-20 - 3.16.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-11 - 3.16 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-04 - 3.15.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-18 - 3.15.3 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-11-11 - 3.15.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-18 - 3.15.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-19 - 3.14.3 - vbump - Erdinç Gültekin - admins@pisilinux.org - - - 2013-03-01 - 3.14.3 - vbump - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-10 - 3.14.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - qca2-qt5 - http://download.kde.org/stable/qca-qt5 - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - util.crypt - Cryptographic Architecture for QT4 - QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. QCA2 has been re-written for QT4. - http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz - - qt5-base-devel - nss-devel - doxygen - cmake - - util/crypt/qca2-qt5/pspec.xml - - - qca2-qt5 - - qt5-base - nss - libgcc - - - /usr/bin - /usr/qt/4/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/qca - - - - qca2-qt5-devel - Development files for qca2 - - qca2-qt5 - qt5-base-devel - - - /usr/include/qt5/Qca-qt5/QtCrypto - /usr/lib/pkgconfig/qca2.pc - /usr/share/qt4/mkspecs/features - - - - - 2015-11-06 - 2.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-10-18 - 2.1.0.3 - First release,rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - p11-kit - http://p11-glue.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - util.crypt - Library to work with PKCS#11 modules - Biblioteka i moduł proxy do właściwego wczytywania i współdzielenia modułów PKCS #11 - The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules. - p11-kit zapewnia możliwość ładowania i numeracji modułów PKCS #11 (a Cryptographic Token Interface Standard). - http://p11-glue.freedesktop.org/releases/p11-kit-0.23.1.tar.gz - - libtasn1-devel - libffi-devel - - util/crypt/p11-kit/pspec.xml - - - p11-kit - - libtasn1 - libffi - - - /usr/bin - /usr/share/doc - /usr/share/gtk-doc - /usr/share/p11-kit - /usr/lib - /etc/pkcs11 - - - - p11-kit-devel - p11-kit için geliştirme dosyaları - p11-kit için geliştirme dosyaları. - Pliki nagłówkowe do biplioteki p11-kit. - - p11-kit - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - p11-kit-32bit - 32-bit shared libraries for p11-kit - emul32 - emul32 - - libtasn1-32bit - libffi-32bit - glibc-32bit - - - p11-kit - libffi-32bit - libtasn1-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-04-28 - 0.23.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-13 - 0.22.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-24 - 0.20.2 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-20 - 0.20.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-26 - 0.20.1 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-31 - 0.19.3 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-26 - 0.15.2 - Move pc files to devel pack,rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-02-23 - 0.15.2 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-11-02 - 0.14 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pinentry - http://www.gnupg.org/aegypten/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - util.crypt - Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol - Assuan protokolünün kullanımı için basit PIN veya parola-kelimesi girişi arabirimleri - Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project. - Pinetry Aegypten projesi tarafından tanımlanan Assuan protokolünden faydalanan basit PIN veya şifre girme diaologları derlemesidir. - ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-0.9.5.tar.bz2 - - libsecret-devel - libgpg-error-devel - libassuan-devel - gtk2-devel - pango-devel - libcap-devel - ncurses-devel - glib2-devel - - util/crypt/pinentry/pspec.xml - - - pinentry - - glib2 - libassuan - libsecret - libgpg-error - libcap - ncurses - - - /usr/bin - /usr/share/info - /usr/share/doc - - - pinentry-wrapper - - - - pinentry-gtk - pinentry for GTK toolkit - GTK+ ile yazılmış pinentry arayüzü - - pinentry - ncurses - libcap - libassuan - libsecret - libgpg-error - glib2 - gtk2 - pango - - - /usr/bin/pinentry-gtk* - - - - - 2015-08-21 - 0.9.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-13 - 0.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-04 - 0.8.3 - Rebuid. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-04 - 0.8.3 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-10-04 - 0.8.2 - First release - PisiLinux Community - namso-0"@hotmail.it - - - - - - skey - http://www.openbsd.org/faq/faq8.html#SKey - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - library - util.crypt - Linux Port of OpenBSD Single-key Password System - Linux için OpenBSD tek anahtarlı parola sistemi - skey is an S/Key implementation ported from OpenBSD. S/Key provides One Time Password functionality, and can be used to increase system security. - skey, OpenBSD'den Linux'a aktarılan S/Key sistemidir. S/Key sistemi Tek Seferlik Parola özelilği ile sistem güvenliğini arttırmak için kullanılabilir. - http://source.pisilinux.org/1.0/skey-1.1.5.tar.bz2 - - cracklib-devel - zlib-devel - perl - - - skey-1.1.5-gentoo.diff - skey-login_name_max.diff - skey-1.1.5-fPIC.patch - skey-1.1.5-bind-now.patch - skey-1.1.5-otp.diff - skey-1.1.5-binary-search.patch - confdir.patch - zeroed_entries.patch - default_hash.patch - fix_library_info.patch - - util/crypt/skey/pspec.xml - - - skey - - cracklib - zlib - - - /etc/skey - /lib - /usr/bin - /usr/lib - /usr/sbin - /usr/share/doc/skey - /usr/share/man - - - - skey-devel - Development files for skey - skey için geliştirme dosyaları - system.devel - - skey - - - /usr/include - /usr/share/man/man3 - - - - - 2014-05-21 - 1.1.5 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-11 - 1.1.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-11 - 1.1.5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - keyutils - http://people.redhat.com/~dhowells/keyutils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - LGPLv2+ - library - app:console - util.crypt - Linux key management utilities - Linux anahtar yönetim araçları - keyutils contains utilities to control the kernel key management facility and to provide a mechanism by which the kernel call back to userspace to get a key instantiated. - keyutils, Linux çekirdeğindeki anahtar yönetim kolaylıklarını denetlemek ve çekirdek ile kullanıcı uzayı arasında iletişim kurmak için gereken araçları içerir. - http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.9.tar.bz2 - util/crypt/keyutils/pspec.xml - - - keyutils - - /etc - /bin - /sbin - /usr/include - /usr/lib - /lib - /usr/share/man - /usr/share/doc - /usr/share/keyutils - - - - - 2014-05-22 - 1.5.9 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-03 - 1.5.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-13 - 1.5.8 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-12 - 1.5.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libtasn1 - http://www.gnutls.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - util.crypt - ASN.1 library used in GNUTLS - GNUTLS için kullanılan ASN.1 kütüphanesi - libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS. - libtasn1, ASN.1 yapılarının ayrıştırılmasını sağlayan ve GNUTLS içerisinde kullanılan ASN.1 kütüphanesidir. - http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.5.tar.gz - util/crypt/libtasn1/pspec.xml - - - libtasn1 - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libtasn1-devel - Development files for libtasn1 - libtasn1 için geliştirme dosyaları - - libtasn1 - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libtasn1-32bit - 32-bit shared libraries for libtasn1 - libtasn1 için 32bit kütüphanesi - emul32 - emul32 - - glibc-32bit - - - libtasn1 - glibc-32bit - - - /usr/lib32/ - - - - - 2015-07-13 - 4.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-28 - 4.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-31 - 4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-24 - 3.5 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-20 - 3.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 3.3 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-27 - 3.3 - Move pc files to devel pack, rebuild + v.bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-18 - 2.14 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libksba - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - app:console - util.crypt - rends les certificats X.509 et le CMS facilement accessible aux applications. - Library handling X.509 certificates and CMS data - Çeşitli uygulamaların X.509 sertifikaları ve CMS verilerine kolay erişebilmesini sağlayan bir kitaplık - libksba is a library designed to build software based on the X.509 and CMS protocols. - libksba, X.509 ve CMS protokollerini kullanan yazılımlar üretmek için kullanılan bir kitaplıktır. - ftp://ftp.gnupg.org/gcrypt/libksba/libksba-1.3.3.tar.bz2 - - libgpg-error-devel - - util/crypt/libksba/pspec.xml - - - libksba - - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/info - /usr/share/doc - - - - libksba-devel - Development files for libksba - libksba için geliştirme dosyaları - - libksba - - - /usr/include - /usr/share/aclocal + /var + + System.Package + + + pisilinux + - 2015-04-12 - 1.3.3 - Version Bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-31 - 1.3.0 + 2014-02-23 + 2.1 Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org + + + 2013-07-14 + 2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2012-09-29 - 1.3.0 + 2011-06-20 + 1.2 First release - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org @@ -56448,6 +37190,612 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + qca2-qt5 + http://download.kde.org/stable/qca-qt5 + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + util.crypt + Cryptographic Architecture for QT4 + QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. QCA2 has been re-written for QT4. + http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz + + qt5-base-devel + nss-devel + doxygen + cmake + + util/crypt/qca2-qt5/pspec.xml + + + qca2-qt5 + + qt5-base + nss + libgcc + + + /usr/bin + /usr/qt/4/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/qca + + + + qca2-qt5-devel + Development files for qca2 + + qca2-qt5 + qt5-base-devel + + + /usr/include/qt5/Qca-qt5/QtCrypto + /usr/lib/pkgconfig/qca2.pc + /usr/share/qt4/mkspecs/features + + + + + 2015-11-06 + 2.1.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-10-18 + 2.1.0.3 + First release,rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + keyutils + http://people.redhat.com/~dhowells/keyutils/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + LGPLv2+ + library + app:console + util.crypt + Linux key management utilities + Linux anahtar yönetim araçları + keyutils contains utilities to control the kernel key management facility and to provide a mechanism by which the kernel call back to userspace to get a key instantiated. + keyutils, Linux çekirdeğindeki anahtar yönetim kolaylıklarını denetlemek ve çekirdek ile kullanıcı uzayı arasında iletişim kurmak için gereken araçları içerir. + http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.9.tar.bz2 + util/crypt/keyutils/pspec.xml + + + keyutils + + /etc + /bin + /sbin + /usr/include + /usr/lib + /lib + /usr/share/man + /usr/share/doc + /usr/share/keyutils + + + + + 2014-05-22 + 1.5.9 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-03 + 1.5.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-13 + 1.5.8 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-12 + 1.5.5 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libksba + http://www.gnupg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + app:console + util.crypt + rends les certificats X.509 et le CMS facilement accessible aux applications. + Library handling X.509 certificates and CMS data + Çeşitli uygulamaların X.509 sertifikaları ve CMS verilerine kolay erişebilmesini sağlayan bir kitaplık + libksba is a library designed to build software based on the X.509 and CMS protocols. + libksba, X.509 ve CMS protokollerini kullanan yazılımlar üretmek için kullanılan bir kitaplıktır. + ftp://ftp.gnupg.org/gcrypt/libksba/libksba-1.3.3.tar.bz2 + + libgpg-error-devel + + util/crypt/libksba/pspec.xml + + + libksba + + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/info + /usr/share/doc + + + + libksba-devel + Development files for libksba + libksba için geliştirme dosyaları + + libksba + + + /usr/include + /usr/share/aclocal + + + + + 2015-04-12 + 1.3.3 + Version Bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-31 + 1.3.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-29 + 1.3.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + nss + http://www.mozilla.org/projects/security/pki/nss/ + + Erdinç Gültekin + admins@pisilinux.org + + MPL-2.0 + GPLv2 + LGPLv2.1 + library + util.crypt + Network Security Services + Ağ Güvenlik Servisleri + Network Security Services (NSS) est un ensemble de librairies conçues pour faciliter le développement multi-plateforme d'applications client et serveur sécurisées. Les applications ocnstruite avec NSS peuvent gérer SSL v2 et v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, les certificats X.509 v3 et d'autres standards de sécurité. + Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. + NSS, platform bağımsız güvenli ağ servisi geliştirme kitaplıklarından oluşur. Bu kitaplık yardımı ile SSL v2 ve v3, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 sertifikaları ve diğer bir çok güvenlik standardına uygun güvenli sunucu-istemci yazılımları geliştirilebilir. + Network Security Services (NSS) es un conjunto de librerías para desarrollo cross-plataforma de aplicaciones cliente-servidor con facilidad de seguridad. Aplicaciones usando NSS pueden soportar certificados SSL v2 y v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3, y otros estándares de seguridad. + https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_20_1_RTM/src/nss-3.20.1.tar.gz + + nss.pc.in + nss-config.in + generate-pc-config.sh + + + nspr-devel + sqlite-devel + zlib-devel + + + nss-3.18.1-standalone-1.patch + add_spi+cacert_ca_certs.patch + ssl-renegotiate-transitional.patch + fedora/add-relro-linker-option.patch + fedora/nss-539183.patch + + util/crypt/nss/pspec.xml + + + nss + + zlib + sqlite + nspr + + + /usr/lib + /usr/bin + /etc + + + ld.so.conf + nssdb/cert8.db + nssdb/key3.db + nssdb/secmod.db + + + + nss-devel + Development files for nss + nss için geliştirme dosyaları + + nspr-devel + nss + + + /usr/bin/nss-config + /usr/include + /usr/lib/pkgconfig + /usr/lib/nss/*.a + + + + + 2015-12-21 + 3.20.1 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-11-19 + 3.19.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-07-15 + 3.19.2 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-05-01 + 3.18.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-28 + 3.17.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-12-13 + 3.17.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-11-02 + 3.17.2 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-08-10 + 3.16.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-20 + 3.16.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-11 + 3.16 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-04 + 3.15.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-18 + 3.15.3 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-11-11 + 3.15.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-18 + 3.15.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-19 + 3.14.3 + vbump + Erdinç Gültekin + admins@pisilinux.org + + + 2013-03-01 + 3.14.3 + vbump + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-10 + 3.14.1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + skey + http://www.openbsd.org/faq/faq8.html#SKey + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + util.crypt + Linux Port of OpenBSD Single-key Password System + Linux için OpenBSD tek anahtarlı parola sistemi + skey is an S/Key implementation ported from OpenBSD. S/Key provides One Time Password functionality, and can be used to increase system security. + skey, OpenBSD'den Linux'a aktarılan S/Key sistemidir. S/Key sistemi Tek Seferlik Parola özelilği ile sistem güvenliğini arttırmak için kullanılabilir. + http://source.pisilinux.org/1.0/skey-1.1.5.tar.bz2 + + cracklib-devel + zlib-devel + perl + + + skey-1.1.5-gentoo.diff + skey-login_name_max.diff + skey-1.1.5-fPIC.patch + skey-1.1.5-bind-now.patch + skey-1.1.5-otp.diff + skey-1.1.5-binary-search.patch + confdir.patch + zeroed_entries.patch + default_hash.patch + fix_library_info.patch + + util/crypt/skey/pspec.xml + + + skey + + cracklib + zlib + + + /etc/skey + /lib + /usr/bin + /usr/lib + /usr/sbin + /usr/share/doc/skey + /usr/share/man + + + + skey-devel + Development files for skey + skey için geliştirme dosyaları + system.devel + + skey + + + /usr/include + /usr/share/man/man3 + + + + + 2014-05-21 + 1.1.5 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 1.1.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-11 + 1.1.5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libtasn1 + http://www.gnutls.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + util.crypt + ASN.1 library used in GNUTLS + GNUTLS için kullanılan ASN.1 kütüphanesi + libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS. + libtasn1, ASN.1 yapılarının ayrıştırılmasını sağlayan ve GNUTLS içerisinde kullanılan ASN.1 kütüphanesidir. + http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.5.tar.gz + util/crypt/libtasn1/pspec.xml + + + libtasn1 + + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libtasn1-devel + Development files for libtasn1 + libtasn1 için geliştirme dosyaları + + libtasn1 + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libtasn1-32bit + 32-bit shared libraries for libtasn1 + libtasn1 için 32bit kütüphanesi + emul32 + emul32 + + glibc-32bit + + + libtasn1 + glibc-32bit + + + /usr/lib32/ + + + + + 2015-07-13 + 4.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-28 + 4.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-31 + 4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 3.5 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-20 + 3.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 3.3 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-27 + 3.3 + Move pc files to devel pack, rebuild + v.bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-18 + 2.14 + First release + PisiLinux Community + admins@pisilinux.org + + + gpgme @@ -56555,6 +37903,730 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + pinentry + http://www.gnupg.org/aegypten/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + util.crypt + Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol + Assuan protokolünün kullanımı için basit PIN veya parola-kelimesi girişi arabirimleri + Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project. + Pinetry Aegypten projesi tarafından tanımlanan Assuan protokolünden faydalanan basit PIN veya şifre girme diaologları derlemesidir. + ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-0.9.5.tar.bz2 + + libsecret-devel + libgpg-error-devel + libassuan-devel + gtk2-devel + pango-devel + libcap-devel + ncurses-devel + glib2-devel + + util/crypt/pinentry/pspec.xml + + + pinentry + + glib2 + libassuan + libsecret + libgpg-error + libcap + ncurses + + + /usr/bin + /usr/share/info + /usr/share/doc + + + pinentry-wrapper + + + + pinentry-gtk + pinentry for GTK toolkit + GTK+ ile yazılmış pinentry arayüzü + + pinentry + ncurses + libcap + libassuan + libsecret + libgpg-error + glib2 + gtk2 + pango + + + /usr/bin/pinentry-gtk* + + + + + 2015-08-21 + 0.9.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-13 + 0.9.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-04 + 0.8.3 + Rebuid. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-04 + 0.8.3 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-10-04 + 0.8.2 + First release + PisiLinux Community + namso-0"@hotmail.it + + + + + + p11-kit + http://p11-glue.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + util.crypt + Library to work with PKCS#11 modules + Biblioteka i moduł proxy do właściwego wczytywania i współdzielenia modułów PKCS #11 + The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules. + p11-kit zapewnia możliwość ładowania i numeracji modułów PKCS #11 (a Cryptographic Token Interface Standard). + http://p11-glue.freedesktop.org/releases/p11-kit-0.23.1.tar.gz + + libtasn1-devel + libffi-devel + + util/crypt/p11-kit/pspec.xml + + + p11-kit + + libtasn1 + libffi + + + /usr/bin + /usr/share/doc + /usr/share/gtk-doc + /usr/share/p11-kit + /usr/lib + /etc/pkcs11 + + + + p11-kit-devel + p11-kit için geliştirme dosyaları + p11-kit için geliştirme dosyaları. + Pliki nagłówkowe do biplioteki p11-kit. + + p11-kit + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + p11-kit-32bit + 32-bit shared libraries for p11-kit + emul32 + emul32 + + libtasn1-32bit + libffi-32bit + glibc-32bit + + + p11-kit + libffi-32bit + libtasn1-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-04-28 + 0.23.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-13 + 0.22.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 0.20.2 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-20 + 0.20.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-26 + 0.20.1 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-31 + 0.19.3 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-26 + 0.15.2 + Move pc files to devel pack,rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-23 + 0.15.2 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-11-02 + 0.14 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + augeas + http://augeas.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + library + util.misc + A library for changing configuration files + Yapılandırma dosyalarını düzenlemek için bir kitaplık + augeas is a library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API. + augeas yapılandırma dosyalarının programlama dilleri üzerinden düzenlenmesini sağlayan bir kitaplıktır. augeas yapılandırma dosyalarını ayıklayıp bir ağaç yapısı şeklinde programcıya sunar. + http://download.augeas.net/augeas-1.4.0.tar.gz + + libxml2-devel + readline-devel + + util/misc/augeas/pspec.xml + + + augeas + + libxml2 + readline + + + /usr/bin + /usr/lib + /usr/share/augeas + /usr/share/vim/vimfiles + /usr/share/doc + /usr/share/man + + + + augeas-devel + Development files for augeas + augeas için geliştirme dosyaları + + augeas + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-12-31 + 1.4.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2013-11-04 + 1.1.0 + Version bump. + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-04-30 + 1.0.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-04 + 0.10.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + tidy + http://tidy.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + HTML and XML error checking + HTML ve XML hata denetleme aracı + tidy, as the name suggests, tidies the layout of and corrects errors in HTML and XML documents. + tidy, HTML ve XML belgelerinin düzenini denetleyen ve hatalarını düzelten bir araçtır. + http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/tidy-cvs_20101110.tar.bz2 + util/misc/tidy/pspec.xml + + + tidy + + /usr/bin + /usr/lib + /usr/share/doc + + + + tidy-devel + Development files for tidy + tidy için geliştirme dosyaları + + tidy + + + /usr/include + + + + + 2012-10-04 + 20101110 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + screen + http://www.gnu.org/software/screen/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Terminal multiplexer (to have multiple sessions in a single terminal window) + Screen bir terminal(komut penceresi) çoğaltıcıdır. + 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. + screen tek bir terminal penceresini birden çok parçaya bölerek çalışmanızı sağlayan bir uygulamadır. + http://ftp.gnu.org/gnu/screen/screen-4.3.1.tar.gz + util/misc/screen/pspec.xml + + + screen + + ncurses + + + /run + /etc + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/info + /usr/share/screen + /usr/share/terminfo + /usr/lib/tmpfiles.d/screen.conf + + + System.Package + + + screenrc + screen.pam.system-auth + tmpfiles.conf + + + + + 2015-08-07 + 4.3.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-10 + 4.0.3 + Add tmpfiles.conf + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-12 + 4.0.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + strace + http://sourceforge.net/projects/strace/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + util.misc + Tracks and displays system calls associated with a running process + Çalışan bir süreç ile ilişkili sistem çağrılarını gösteren bir araç + Herramienta útil para diagnostico, aprendizaje y depuración + strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. + strace, çalışan bir UNIX süreci tarafından çağırılan ve alınan sistem çağrılarını, bu çağrılara verilen parametreleri ve dönüş değerlerini gösteren bir hata ayıklama aracıdır. + mirrors://sourceforge/strace/strace-4.9.tar.xz + + libaio-devel + libunwind-devel + + util/misc/strace/pspec.xml + + + strace + + libunwind + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2015-01-25 + 4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-09 + 4.8 + Version bump + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-04-20 + 4.7 + Versrion bump + Ertan Güven + ertan@pisilinux.org + + + 2011-04-18 + 4.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + mc + http://www.midnight-commander.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + GNU Midnight Commander cli-based file manager + GNU Midnight Commander konsol kip dosya yöneticisi + Contains GNU Midnight Commander cli-based file manager. You can do lots of file management and editing tasks, both in normal terminals and in terminal emulators of X. Also has file transfer capabilities over FTP, SSH, and Samba. + GNU Midnight Commander (mc), komut satırında çalışan metin tabanlı bir dosya yönetim ve düzenleme uygulamasıdır. İki sistem arasında FTP, SSH ve Samba protokollerini kullanarak dosya transferlerine de olanak verir. + http://www.midnight-commander.org/downloads/mc-4.8.15.tar.xz + + gpm + check-devel + glib2-devel + doxygen + slang-devel + libpcre-devel + samba-devel + libICE-devel + libutil-linux-devel + + util/misc/mc/pspec.xml + + + mc + + gpm + glib2 + slang + samba + libutil-linux + + + /etc/profile.d + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/locale + /usr/share/man + /usr/share/mc + /etc/mc + + + mc.profile + u7z + mc.ini + + + + + 2015-11-09 + 4.8.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-05 + 4.8.14 + Version bump, add samba + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-21 + 4.8.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-05 + 4.8.12 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-02-18 + 4.8.11 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-04 + 4.8.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-01 + 4.8.8 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-30 + 4.8.8 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-12-29 + 4.8.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + lsof + http://people.freebsd.org/~abe/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Lists open files for running Unix processes + Çalışan UNIX süreçleri tarafından açılan dosyaları listeyen bir araç + Lista archivos abiertos por procesos unix en ejecución + lsof is a Unix-specific diagnostic tool. Its name stands for LiSt Open Files, and it does just that. It lists information about any files that are open by processes currently running on the system. It can also list communications open by each process. + lsof sistemde çalışmakta olan UNIX süreçleri tarafından açılmış dosyaları listeleyen kullanışlı bir araçtır. + Lsof es una herramienta de diagnostica específica de Unix. Su nombre quiere decir LiSt Open files (listar archivos abiertos), y hace justamente esto. Genera una lista con información sobre cada archivo abierto por procesos que están activos en el sistema. También puede listar comunicaciones abiertas por cada proceso. + http://source.pisilinux.org/1.0/lsof_4.84_src.tar + util/misc/lsof/pspec.xml + + + lsof + + /usr/sbin + /usr/share/doc + /usr/share/lsof + /usr/share/man + + + + + 2014-03-09 + 4.84 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 4.84 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + tree + http://mama.indstate.edu/users/ice/tree/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Recursive directory listing tool + Dizin listeleme aracı + Tree lists directories recursively, and produces an indented listing of files. + Dizinleri özyineli olarak listeler ve dosya listesini girintili olarak gösterir. + ftp://mama.indstate.edu/linux/tree/tree-1.7.0.tgz + util/misc/tree/pspec.xml + + + tree + + /usr/bin + /usr/share/bash-completion + /usr/share/doc + /usr/share/man + + + tree.bashcomp + + + + + 2015-01-25 + 1.7.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-09 + 1.6.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-10-20 + 1.6.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + ibus @@ -56702,44 +38774,67 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - lsof - http://people.freebsd.org/~abe/ + utempter + http://www.redhat.com/ PisiLinux Community admins@pisilinux.org - GPLv2 + MIT + LGPLv2.1 app:console - util.misc - Lists open files for running Unix processes - Çalışan UNIX süreçleri tarafından açılan dosyaları listeyen bir araç - Lista archivos abiertos por procesos unix en ejecución - lsof is a Unix-specific diagnostic tool. Its name stands for LiSt Open Files, and it does just that. It lists information about any files that are open by processes currently running on the system. It can also list communications open by each process. - lsof sistemde çalışmakta olan UNIX süreçleri tarafından açılmış dosyaları listeleyen kullanışlı bir araçtır. - Lsof es una herramienta de diagnostica específica de Unix. Su nombre quiere decir LiSt Open files (listar archivos abiertos), y hace justamente esto. Genera una lista con información sobre cada archivo abierto por procesos que están activos en el sistema. También puede listar comunicaciones abiertas por cada proceso. - http://source.pisilinux.org/1.0/lsof_4.84_src.tar - util/misc/lsof/pspec.xml + util.admin + Application that allows non-privileged applications to write utmp (login) info + utemper, utmp(oturum açma) bilgilerini yazmak için ayrıcalıksız uygulamalara izin veren bir uygulamadır. + Utempter is a utility that allows non-privileged applications such as terminal emulators to modify the utmp database without having to setuid root. + Utempter, terminal emulatörleri gibi, yetkisiz uygulamalara setuid e ihtiyaç duymadan utmp veritabanına yazma hakkı verir. + ftp://ftp.altlinux.org/pub/people/ldv/utempter/libutempter-1.1.6.tar.bz2 + + libutempter-pierelro.patch + + util/admin/utempter/pspec.xml - lsof + utempter - /usr/sbin + /usr/libexec + /usr/lib /usr/share/doc - /usr/share/lsof /usr/share/man + + System.Package + + + + utempter-devel + Development files for utempter + utempter için geliştirme dosyaları + + utempter + + + /usr/include + - - 2014-03-09 - 4.84 + + 2014-05-25 + 1.1.6 Rebuild. Kamil Atlı suvarice@gmail.com + + 2014-01-20 + 1.1.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + 2010-10-12 - 4.84 + 0.5.5 First release Pisi Linux Admins admins@pisilinux.org @@ -56748,52 +38843,64 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - tree - http://mama.indstate.edu/users/ice/tree/ + htop + http://htop.sourceforge.net/ PisiLinux Community admins@pisilinux.org GPLv2 app:console - util.misc - Recursive directory listing tool - Dizin listeleme aracı - Tree lists directories recursively, and produces an indented listing of files. - Dizinleri özyineli olarak listeler ve dosya listesini girintili olarak gösterir. - ftp://mama.indstate.edu/linux/tree/tree-1.7.0.tgz - util/misc/tree/pspec.xml + app:gui + util.admin + Visionneur de processus pour Linux + An interactive process viewer for Linux + Linux için etkileşimli bir süreç izleyici + htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. + htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. + htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. + htop + http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz + + ncurses-devel + gettext-devel + + + desktop_tr.patch + + util/admin/htop/pspec.xml - tree + htop + + ncurses + /usr/bin - /usr/share/bash-completion - /usr/share/doc /usr/share/man + /usr/share/doc + /usr/share/applications + /usr/share/pixmaps - - tree.bashcomp - - 2015-01-25 - 1.7.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2014-06-17 + 1.0.3 + Version bump + Kamil Atlı + burakerturk@pisilinux.org - 2014-03-09 - 1.6.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org + 2013-12-31 + 1.0.2 + Release bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org - 2012-10-20 - 1.6.0 + 2013-01-31 + 1.0.2 First release Serdar Soytetir kaptan@pisilinux.org @@ -56802,314 +38909,315 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - mc - http://www.midnight-commander.org/ + inxi + http://code.google.com/p/inxi/ - PisiLinux Community - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - GPLv2 + GPLv1 app:console - util.misc - GNU Midnight Commander cli-based file manager - GNU Midnight Commander konsol kip dosya yöneticisi - Contains GNU Midnight Commander cli-based file manager. You can do lots of file management and editing tasks, both in normal terminals and in terminal emulators of X. Also has file transfer capabilities over FTP, SSH, and Samba. - GNU Midnight Commander (mc), komut satırında çalışan metin tabanlı bir dosya yönetim ve düzenleme uygulamasıdır. İki sistem arasında FTP, SSH ve Samba protokollerini kullanarak dosya transferlerine de olanak verir. - http://www.midnight-commander.org/downloads/mc-4.8.15.tar.xz - - gpm - check-devel - glib2-devel - doxygen - slang-devel - libpcre-devel - samba-devel - libICE-devel - libutil-linux-devel - - util/misc/mc/pspec.xml + util.admin + script to get system information + script to get system information + script voor het opvragen van systeem informatie + Script para la información del sistema + script to get system information + script to get system information + Script voor het opvragen van systeem informatie + Inxi es un completo script que muestra la información del sistema + http://inxi.googlecode.com/svn/tarballs/inxi_2.2.19.tar.gz + util/admin/inxi/pspec.xml - mc - - gpm - glib2 - slang - samba - libutil-linux - + inxi - /etc/profile.d /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/locale + /usr/share/kde4/apps/konversation/scripts/inxi /usr/share/man - /usr/share/mc - /etc/mc + /usr/share/doc - - mc.profile - u7z - mc.ini - - - 2015-11-09 - 4.8.15 + + 2015-07-23 + 2.2.19 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-26 + 2.2.17 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-17 + 2.1.28 + Version bump. + Kamil Atlı + suvarice@gmail.com - 2015-11-05 - 4.8.14 - Version bump, add samba - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-03 + 2.1.27 + Version bump. + Kamil Atlı + suvarice@gmail.com - 2015-02-21 - 4.8.13 + 2013-12-16 + 1.9.17 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2014-07-05 - 4.8.12 + 2013-10-0 + 1.9.15 Version bump. - Vedat Demir - vedat@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2014-02-18 - 4.8.11 + 2013-07-08 + 1.9.12 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-08-04 - 4.8.10 + 2013-04-27 + 1.8.45 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-05-01 - 4.8.8 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-30 - 4.8.8 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-12-29 - 4.8.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - augeas - http://augeas.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - app:console - library - util.misc - A library for changing configuration files - Yapılandırma dosyalarını düzenlemek için bir kitaplık - augeas is a library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API. - augeas yapılandırma dosyalarının programlama dilleri üzerinden düzenlenmesini sağlayan bir kitaplıktır. augeas yapılandırma dosyalarını ayıklayıp bir ağaç yapısı şeklinde programcıya sunar. - http://download.augeas.net/augeas-1.4.0.tar.gz - - libxml2-devel - readline-devel - - util/misc/augeas/pspec.xml - - - augeas - - libxml2 - readline - - - /usr/bin - /usr/lib - /usr/share/augeas - /usr/share/vim/vimfiles - /usr/share/doc - /usr/share/man - - - - augeas-devel - Development files for augeas - augeas için geliştirme dosyaları - - augeas - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-12-31 - 1.4.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2013-11-04 - 1.1.0 - Version bump. - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-04-30 - 1.0.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-04 - 0.10.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - tidy - http://tidy.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - HTML and XML error checking - HTML ve XML hata denetleme aracı - tidy, as the name suggests, tidies the layout of and corrects errors in HTML and XML documents. - tidy, HTML ve XML belgelerinin düzenini denetleyen ve hatalarını düzelten bir araçtır. - http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/tidy-cvs_20101110.tar.bz2 - util/misc/tidy/pspec.xml - - - tidy - - /usr/bin - /usr/lib - /usr/share/doc - - - - tidy-devel - Development files for tidy - tidy için geliştirme dosyaları - - tidy - - - /usr/include - - - - - 2012-10-04 - 20101110 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - strace - http://sourceforge.net/projects/strace/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - util.misc - Tracks and displays system calls associated with a running process - Çalışan bir süreç ile ilişkili sistem çağrılarını gösteren bir araç - Herramienta útil para diagnostico, aprendizaje y depuración - strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. - strace, çalışan bir UNIX süreci tarafından çağırılan ve alınan sistem çağrılarını, bu çağrılara verilen parametreleri ve dönüş değerlerini gösteren bir hata ayıklama aracıdır. - mirrors://sourceforge/strace/strace-4.9.tar.xz - - libaio-devel - libunwind-devel - - util/misc/strace/pspec.xml - - - strace - - libunwind - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2015-01-25 - 4.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-09 - 4.8 - Version bump - Varol Maksutoğlu - waroi@pisilinux.org - - 2013-04-20 - 4.7 - Versrion bump + 1.8.34 + Distro list added PisiLinux + Ertan Güven + ertan@pisilinux.org + + + 2013-02-23 + 1.8.34 + Version bump Ertan Güven ertan@pisilinux.org - 2011-04-18 - 4.6 + 2013-01-28 + 1.8.32 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + pisido + http://www.pisilinux.org + + Harun Gültekin + hrngultekin@gmail.com + + GPLv3+ + app:gui + util.admin + A pisi packager from GUI + Grafik arayüzde çalışan pisi paketçisi. + You can make pisi packages with a GUI. Also, you can import your existing build files.Warning:Alfa version. Ported Qt5. + Grafik arayüzde pisi paketleri yapabilirsiniz. Ayrıca var olan inşa dosyalarınızı içe aktarıp inşa edebilirsiniz.Çoklu paket yapısı eklenmiştir. Hala geliştirilme aşamasındasır. Alfa sürümdür. Qt5 ile hazırlanmıştır. + https://github.com/hrngultekin/pisido/archive/pisido-v2.3.3.tar.gz + + qscintilla2-devel + qtermwidget5-devel + + util/admin/pisido/pspec.xml + + + pisido + A pisi packager from GUI + + libgcc + qt5-base + qscintilla2 + qtermwidget5 + + + / + + + + + 2015-10-26 + 2.3.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-08-30 + 2.3.1 + Qt5 rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2015-08-26 + 2.2.1 + rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2015-08-01 + 2.2.0 + Rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2015-07-27 + 2.2.0 + Version bump + Harun Gültekin + hrngultekin@gmail.com + + + 2015-07-24 + 2.1.0 + Version bump + Harun Gültekin + hrngultekin@gmail.com + + + 2015-07-09 + 2.0.1 + added multipackage support + Harun Gültekin + hrngultekin@gmail.com + + + 2014-07-05 + 2.0b + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-02-04 + 2.0b + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-03-10 + 2.0b + Inıtial import. + Serdar Soytetir + kaptan@pisilinux.org + + + + + + pisilinux-dev-tools + http://www.pisilinux.org + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + app:console + util.admin + A collection of useful tools that Pisi Linux developers use to make their developing work a lot easier + Pisilinux-dev-tools is a collection of useful tools that Pisilinux developers use to make their developing work a lot easier. Such tools can include packaging preparation, package analysis, etc. + http://source.pisilinux.org/1.0/pisilinux-dev-tools-0.0.2.tar.xz + + fix_detect_mesa.patch + spped_up.patch + ignore_glibc-32bit.patch + + util/admin/pisilinux-dev-tools/pspec.xml + + + pisilinux-dev-tools + + chrpath + binutils + + + /usr/bin + /usr/share/doc + + + + + 2015-06-28 + 0.0.2 + fix runtime deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-21 + 0.0.2 + checkelf: ignore glibc-32bit + Marcin Bojara + marcin@pisilinux.org + + + 2014-07-01 + 0.0.2 + rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2014-06-19 + 0.0.2 + Speed up checkelf. + Marcin Bojara + marcin@pisilinux.org + + + 2014-06-16 + 0.0.2 + checkelf: fix detect mesa. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-11 + 0.0.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-03 + 0.0.1 + Use re.search() for checking command file output. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-29 + 0.0.1 + Rebuild + Pisi Linux Admins + admins@pisilinux.org + + + 2011-05-23 + 0.0.1 First release Pisi Linux Admins admins@pisilinux.org @@ -57118,65 +39226,472 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - screen - http://www.gnu.org/software/screen/ + sudo + http://www.sudo.ws/ + + PisiLinux Community + admins@pisilinux.org + + Sudo + app:console + util.admin + Allows restricted root access for specified users + Yönetici haklarıyla komut çalıştırma uygulaması + sudo allows certain users/groups to run commands with root user privileges. + sudo, belirli kullanıcıların ya da kullanıcı gruplarının komut ve uygulamaları yönetici kullanıcı (root) haklarıyla çalıştırmasına izin veren bir konsol uygulamasıdır. + http://www.sudo.ws/sudo/dist/sudo-1.8.13.tar.gz + + nss-devel + audit-devel + pam-devel + zlib-devel + cyrus-sasl-devel + openldap-client + + util/admin/sudo/pspec.xml + + + sudo + + nss + audit + pam + zlib + cyrus-sasl + openldap-client + + + /etc + /usr/lib/tmpfiles.d/sudo.conf + /usr/bin + /usr/sbin + /usr/libexec + /usr/share/doc + /usr/share/locale + /usr/share/man + /run/sudo + /var/db/sudo + /usr/include + + + System.Package + + + sudoers + sudo.pamd + sudo-i.pamd + sudo.tmpfiles.conf + + + + + 2015-04-17 + 1.8.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-01 + 1.8.11_p2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-01 + 1.8.11p2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-18 + 1.8.10_p3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-03-29 + 1.8.10_p2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-13 + 1.8.9 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-09 + 1.8.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.8.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + security + 2011-02-04 + 1.7.4_p6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + cgmanager + https://github.com/lxc/cgmanager + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL + app:console + util.admin + Central cgroup management daemon + Merkezi cgroup yönetimi uygulamacığı + CGManager is a central privileged daemon that manages all your cgroups for you through a simple DBus API. + CGManager basit bir DBUS api üzerinden sizin için tüm cgruplarınızı yöneten merkezi ayrıcalıklı bir uygulamacıktır. + https://github.com/lxc/cgmanager/archive/v0.39.tar.gz + + libnih-devel + pam-devel + help2man + + util/admin/cgmanager/pspec.xml + + + cgmanager + + libnih + pam + dbus + + + /usr/bin + /lib/security + /usr/share/man + /usr/share/cgmanager + /usr/lib/libcgmanager* + + + System.Service + + + + cgmanager-devel + + cgmanager + libnih + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-09-10 + 0.39 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-10 + 0.38 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-12 + 0.36 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-27 + 0.23 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + logrotate + https://fedorahosted.org/releases/l/o/logrotate PisiLinux Community admins@pisilinux.org GPLv2 app:console - util.misc - Terminal multiplexer (to have multiple sessions in a single terminal window) - Screen bir terminal(komut penceresi) çoğaltıcıdır. - 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. - screen tek bir terminal penceresini birden çok parçaya bölerek çalışmanızı sağlayan bir uygulamadır. - http://ftp.gnu.org/gnu/screen/screen-4.3.1.tar.gz - util/misc/screen/pspec.xml + util.admin + Rotates, compresses, removes and emails system log files + Sistem günlük (log) dosyalarını yönetmeyi kolaylaştıran bir araç + logrotate is designed to ease administration of systems that generate large numbers of log files. It allows automatic rotation, compression, removal, and emailing of log files. + Logrotate kayıt dosyalarının rotasyonunu, silinmesini veya e-posta ile gönderilmesi gibi işlevleri ile sistem yönetimini kolaylaştırıan bir uygulamadır. + https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.8.8.tar.gz + + popt-devel + acl-devel + + util/admin/logrotate/pspec.xml - screen + logrotate - ncurses + popt + acl - /run /etc - /usr/share/man + /usr/sbin /usr/share/doc - /usr/bin - /usr/share/info - /usr/share/screen - /usr/share/terminfo - /usr/lib/tmpfiles.d/screen.conf + /usr/share/man + + + + + 2015-01-26 + 3.8.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-18 + 3.8.7 + v.bump + Ayhan Yalçınsoy + ayhanyacinsoy@gmail.com + + + 2014-03-09 + 3.7.9 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2011-09-29 + 3.7.9 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + rar + http://www.rarlab.com + + PisiLinux Community + admins@pisilinux.org + + RAR + app:console + util.archive + RAR compressor + RAR sıkıştırıcı + rar is an compressor supporting multiple volume archives and damage protection. It can also create SFX-archives. This program is shareware and you must register it after 40 days of use. + rar, çoklu arşivleri ve hasar korumayı destekleyen bir sıkıştırıcıdır. rar aynı zamanda SFX arşivleri de yaratabilir. Bu uygulama ücretli olup 40 günlük kullanımdan sonra kayıt olunması gerekmektedir. + http://www.rarlab.com/rar/rarlinux-5.3.0.tar.gz + http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz + util/archive/rar/pspec.xml + + + rar + + libgcc + + + /usr/bin + /opt/rar/bin + /opt/rar/lib + /opt/rar/etc + /usr/share/doc/rar + + + + + 2016-01-01 + 5.3.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-25 + 5.2.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-21 + 5.0.0 + Update + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-19 + 4.2.0 + New version + Ertan Güven + ertan@pisilinux.org + + + 2011-05-04 + 4.0.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + p7zip + http://p7zip.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + util.archive + Port of 7-Zip archiver for *nix + 7-zip arşivleme programı + p7zip is a port of 7-Zip archiver for Unix. Supports packing-unpacking 7z, ZIP, GZIP, BZIP2 and TAR archives and unpacking RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB and NSIS arhives. + 7-zip arşivleme programı. 7z, ZIP, GZIP, BZIP2 ve TAR arşivleri oluşturabilir ve açabilir; RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB ve NSIS arşivlerini ise açabilir. + mirrors://sourceforge/p7zip/p7zip/15.09/p7zip_15.09_src_all.tar.bz2 + util/archive/p7zip/pspec.xml + + + p7zip + + libgcc + + + /usr/bin + /usr/lib/p7zip + /usr/lib/p7zip/Codecs + /usr/share/doc + /usr/share/man - - System.Package - - screenrc - screen.pam.system-auth - tmpfiles.conf + 7z + 7za - - 2015-08-07 - 4.3.1 + + 2016-01-01 + 15.09 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-16 + 9.38 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2014-01-10 - 4.0.3 - Add tmpfiles.conf + 2014-02-02 + 9.20.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-11-03 + 9.20.1 + First release Osman Erkan osman.erkan@pisilinux.org + + + + + cabextract + http://www.cabextract.org.uk/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.archive + A program to extract from Microsoft Cabinet files + Microsoft Cabinet dosyalarını açan bir program + cabextract is a program to extract files from Microsoft Cabinet files. + cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. + http://www.cabextract.org.uk/cabextract-1.6.tar.gz + util/archive/cabextract/pspec.xml + + + cabextract + + /usr/bin + /usr/share/man + + + + + 2015-11-23 + 1.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-16 + 1.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-19 + 1.4 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-01-19 + 1.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + - 2010-10-12 - 4.0.3 + 2011-06-07 + 1.4 First release Pisi Linux Admins admins@pisilinux.org @@ -57263,6 +39778,62 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + libtar + http://www.feep.net/libtar/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + util.archive + tar file manipulation API + tar dosyalarını işlemek için bir API + libtar is a C library for manipulating POSIX tar files. It handles adding and extracting files to/from a tar archive. + libtar, POSIX tar dosyalarını işlemek için yazılmış bir C kütüphanesidir. + http://pkgbuild.com/~giovanni/libtar/libtar-1.2.20.tar.gz + util/archive/libtar/pspec.xml + + + libtar + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libtar-devel + Development files for libtar + libtar için geliştirme dosyaları + + libtar + + + /usr/include + /usr/share/man/man3 + + + + + 2014-06-20 + 1.2.20 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2010-10-12 + 1.2.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + libzip @@ -57505,290 +40076,2053 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - cabextract - http://www.cabextract.org.uk/ + gtk2-engines-murrine + http://cimitan.com/murrine/project/murrine PisiLinux Community admins@pisilinux.org GPLv2 - app:console - util.archive - A program to extract from Microsoft Cabinet files - Microsoft Cabinet dosyalarını açan bir program - cabextract is a program to extract files from Microsoft Cabinet files. - cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. - http://www.cabextract.org.uk/cabextract-1.6.tar.gz - util/archive/cabextract/pspec.xml + library + desktop.lookandfeel + GTK+ Murrine theme engine + GTK+ Murrine tema motoru + The Murrine engine is a cairo-based GTK+ theming tool. It's very fast compared to clearlooks-cairo. Murrine includes animations and a unique style. + Murrine motoru, Cairo tabanlı GTK+ tema aracıdır. Clearlooks temasına göre çok daha hızlıdır. Aynı zamanda canlandırmalar, benzersiz biçemler içerir. + mirrors://gnome/murrine/0.98/murrine-0.98.2.tar.xz + + gtk2-devel + glib2-devel + cairo-devel + pango-devel + pixman-devel + gdk-pixbuf-devel + intltool + + desktop/lookandfeel/gtk2-engines-murrine/pspec.xml - cabextract + gtk2-engines-murrine + + gtk2 + glib2 + cairo + pango + pixman + gdk-pixbuf + + /usr/lib + /usr/share/doc + /usr/share/gtk-engines + + + + + 2014-02-07 + 0.98.2 + Remove gtk2 runtime dep to avoid cyclic deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 0.98.2 + Release bump + Erdinç Gültekin + erdinc@pisilinux.org + + + 2012-06-10 + 0.98.2 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + iconcan + http://www.pisilinux.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv3 + app:gui + desktop.lookandfeel + Icon etiketi için görseller + Icon etiketi için görseller + Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. + Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. + lang-tr + http://source.pisilinux.org/1.0/iconcan-1.0.1.tar.xz + desktop/lookandfeel/iconcan/pspec.xml + + + iconcan + + /usr/share/pixmaps + + + + + 2015-02-04 + 1.0.1 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-02-04 + 1.0.0 + First Release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gtk-theme-mediterranean + http://gnome-look.org/content/show.php/MediterraneanNight+Series?content=156782 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + desktop.lookandfeel + Great themes for GTK2 and GTK3 + GTK2 ve GTK3 için güzel temalar + Themes for GTK2 and GTK3. + GTK2 ve GTK3 için yazılmış tema paketleri. + https://dl.dropboxusercontent.com/u/80497678/MediterraneanNight-2.03.tar.gz + desktop/lookandfeel/gtk-theme-mediterranean/pspec.xml + + + gtk-theme-mediterranean + + gtk2-engines-murrine + gdk-pixbuf + + + /usr/share/themes/MediterraneanDark + /usr/share/themes/MediterraneanWhite + /usr/share/themes/MediterraneanLightDarkest + + + + gtk-theme-mediterranean-others + + gtk2-engines-murrine + gdk-pixbuf + + + /usr/share/themes + + + + + 2014-02-06 + 2.03 + Add MediterraneanLightDarkest to main package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-26 + 2.03 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-10-05 + 2.0.3 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + artwork-pisilinux-release + http://www.pisilinux.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + public-domain + CCPL-Attribution-ShareAlike-3.0 + CCPL-Attribution-3.0 + data + desktop.lookandfeel + Artwork for Pisi Linux releases + Pisi Linux sürümleri için sanatsal içerik + This package contains additional artwork (like wallpapers) intended for Pisi Linux releases. + Bu paket Pisi Linux sürümleri için hazırlanmış sanatsal çalışmalar içerir. + http://source.pisilinux.org/1.0/artwork-pisilinux-release-1.2.tar.xz + http://source.pisilinux.org/1.0/sample-files-20130323.tar.xz + desktop/lookandfeel/artwork-pisilinux-release/pspec.xml + + + artwork-pisilinux-release + + /usr/share/wallpapers + + + + example-content + Example files for Pisi Linux + Pisi Linux ile beraber dağıtılan örnek dosyalar + + /usr/share/example-content + /etc/X11/Xsession.d + + + 35-example-content.sh + + + + + 2015-03-04 + 1.2 + Add new wallpapers. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-04 + 0.2 + Add new wallpapers. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-07 + 0.2 + Add new wallpapers, example contents. + Serdar Soytetir + kaptann@pisilinux.org + + + 2013-09-18 + 1.0 + add more izmir themes. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-18 + 1.0 + add izmir theme. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-27 + 1.0 + Gönüllü çalışmalar eklendi. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 1.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-03-22 + 1.0 + bump for pisi Linux + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-01-31 + 2013.1 + First release + Demiray Muhterem + bilgi@bilgegunluk.com + + + + + + icon-theme-hicolor + http://icon-theme.freedesktop.org/wiki/HicolorTheme + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + desktop.lookandfeel + Default icon theme + Temel simge teması + Hicolor icon theme contains the basic directories and files needed for icon theme support. + Hicolor, simge teması desteği için ihtiyaç duyulan temel dizin ve dosyalarıni içeren temel bir simge temasıdır. + http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.tar.gz + desktop/lookandfeel/icon-theme-hicolor/pspec.xml + + + icon-theme-hicolor + + /usr/share/doc + /usr/share/icons + + + + + 2013-08-26 + 0.12 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-10-24 + 0.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + dconf-editor + http://live.gnome.org/dconf + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.base + Gui editor for dconf; simple low-level configuration system + dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. + ftp://ftp.gnome.org/pub/gnome/sources/dconf-editor/3.16/dconf-editor-3.16.1.tar.xz + + dconf-devel + libxml2-devel + gtk3-devel + pango-devel + docbook-xsl + libepoxy-devel + at-spi2-core-devel + vala-devel + libxslt + intltool + gtk-doc + + desktop/gnome/base/dconf-editor/pspec.xml + + + dconf-editor + + dconf + glib2 + libxml2 + gtk3 + pango + + + /etc + /usr/share + /usr/lib + /usr/share/doc /usr/bin - /usr/share/man + /usr/libexec + + + + + 2015-08-12 + 3.16.1 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libcroco + http://www.freespiders.org/projects/libcroco/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.base + Boîte à outils générique d'analyse et de manipulation de Cascading Style Sheet (CSS - feuilles de style). + Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit + CSS ayıklama kitaplığı + 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. + libcroco GNOME uygulamaları tarafından CSS desteği için kullanılan genel bir CSS ayıklama kitaplığıdır. + mirrors://gnome/libcroco/0.6/libcroco-0.6.8.tar.xz + + libxml2-devel + glib2-devel + + + multilib.patch + + desktop/gnome/base/libcroco/pspec.xml + + + libcroco + + glib2 + libxml2 + + + /usr/share + /usr/lib + /usr/bin + + + + libcroco-devel + Development files for libcroco + libcroco için geliştirme dosyaları + + libcroco + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/bin/croco-*-config + + + + libcroco-32bit + 32-bit shared libraries for libcroco + emul32 + emul32 + + glib2-32bit + libxml2-32bit + + + glib2-32bit + glibc-32bit + libxml2-32bit + libcroco + + + /usr/lib32 + + + + + 2014-08-11 + 0.6.8 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-26 + 0.6.8 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-12-22 + 0.6.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + accountsservice + http://www.freedesktop.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv3 + library + desktop.gnome.base + D-Bus Service to Manipulate User Account Information + accountsservice server provides a set of D-Bus interfaces for querying and manipulating user account information. + http://www.freedesktop.org/software/accountsservice/accountsservice-0.6.40.tar.xz + + intltool + glib2-devel + polkit-devel + + desktop/gnome/base/accountsservice/pspec.xml + + + accountsservice + + polkit + glib2 + + + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/gtk-doc + /usr/share/polkit-1 + /usr/share/vala/vapi + /etc/dbus-1/system.d + /usr/share/locale + /var/lib/AccountsService/ + + + + accountsservice-devel + accountsservice için geliştirme dosyaları + accountsservice için geliştirme dosyaları + + accountsservice + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-11 + 0.6.40 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-07-15 + 0.6.35 + Rebuild for gcc. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-11-08 + 0.6.35 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-30 + 0.6.34 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gnome-common + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.gnome.base + Common files for development of GNOME packages + GNOME uygulamalarının geliştirmede kullandığı yaygın dosyalar + gnome-common package contains aclocal macros, makefile headers and documents tools in order to build GNOME sources. + mirrors://gnome/gnome-common/3.10/gnome-common-3.10.0.tar.xz + desktop/gnome/base/gnome-common/pspec.xml + + + gnome-common + + /usr/share/doc + /usr/bin + /usr/share/aclocal + /usr/share/gnome-common - 2015-11-23 - 1.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2014-06-14 + 3.10.0 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org - 2015-02-16 - 1.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-19 - 1.4 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2014-01-19 - 1.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-06-07 - 1.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libtar - http://www.feep.net/libtar/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - util.archive - tar file manipulation API - tar dosyalarını işlemek için bir API - libtar is a C library for manipulating POSIX tar files. It handles adding and extracting files to/from a tar archive. - libtar, POSIX tar dosyalarını işlemek için yazılmış bir C kütüphanesidir. - http://pkgbuild.com/~giovanni/libtar/libtar-1.2.20.tar.gz - util/archive/libtar/pspec.xml - - - libtar - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libtar-devel - Development files for libtar - libtar için geliştirme dosyaları - - libtar - - - /usr/include - /usr/share/man/man3 - - - - - 2014-06-20 - 1.2.20 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2010-10-12 - 1.2.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - bash-completion - http://bash-completion.alioth.debian.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.shell - Programmable completion for bash - Bash kabuğu için otomatik tamamlama - A relatively new feature in bash is programmable completion. Since now, users have been able to complete commands, variables and filenames; now it is also possible to complete parameters. - Kabukta çeşitli uygulamalar için otomatik tamamlama özelliği eklenebilmesine olanak sağlayan bir programdır. - http://bash-completion.alioth.debian.org/files/bash-completion-2.1.tar.bz2 - util/shell/bash-completion/pspec.xml - - - bash-completion - - /etc - /usr/share/doc - /usr/share - /var - - - System.Package - - - pisilinux - - - - - 2014-02-23 - 2.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-14 - 2.1 + 2014-05-21 + 3.12.0 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2013-10-27 + 3.10.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-08-26 + 2.34.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + - 2011-06-20 - 1.2 + 2010-12-22 + 2.34.0 First release - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org - bashdb - http://bashdb.sourceforge.net + dconf + http://live.gnome.org/dconf + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:console + desktop.gnome.base + Simple low-level configuration system + Düşük seviyeli yapılandırma sistemi + dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. + FIXME + http://ftp.gnome.org/pub/gnome/sources/dconf/0.24/dconf-0.24.0.tar.xz + + dbus-devel + glib2-devel + docbook-xsl + libxslt + intltool + gtk-doc + + desktop/gnome/base/dconf/pspec.xml + + + dconf + + dbus + glib2 + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/libexec + + + + dconf-devel + Development files for dconf + + dconf + dbus-devel + glib2-devel + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + + + + dconf-docs + Reference files for dconf + data:doc + + dconf + + + /usr/share/gtk-doc + + + + + 2015-08-12 + 0.24.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-14 + 0.20 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-29 + 0.18 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-07-31 + 0.16.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-21 + 0.15.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libsecret + http://projects.gnome.org/libsecret PisiLinux Community admins@pisilinux.org GPLv2 - app:console - util.shell - A Debugger for Bash - Bash Kabuğu için bir hata ayıklayıcısı - bashdb is a comprehensive source-code debugger for bash. - bashdb, bash için kapsamlı bir kaynak kodu hata ayıklayıcısıdır. - mirrors://sourceforge/bashdb/bashdb-4.3-0.91.tar.gz - util/shell/bashdb/pspec.xml + app:gui + desktop.gnome.base + The libsecret package contains a GObject based library + The libsecret package contains a GObject based library for accessing the Secret Service API. + mirrors://gnome/libsecret/0.18/libsecret-0.18.tar.xz + + gtk-doc + vala-devel + libxslt-devel + libgcrypt-devel + glib2-devel + xmlto + + desktop/gnome/base/libsecret/pspec.xml - bashdb + libsecret + + libxslt + libgcrypt + glib2 + xmlto + + /usr/share + /usr/lib /usr/bin - /usr/share/doc - /usr/share/bashdb - /usr/share/info - /usr/share/man + + + + libsecret-devel + Development files for libsecret + libsecret için geliştirme dosyaları + + libsecret + + + /usr/include + /usr/lib/pkgconfig - - 2015-01-22 - 0.91 + + 2014-06-14 + 0.18 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-04-23 + 0.18 Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-05 + 0.16 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-20 + 0.16 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-09-05 + 0.16 + Release bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-26 + 0.15 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org - 2014-01-19 - 4.2.0.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org + 2013-03-30 + 0.15 + Version bump. + Marcin Bojara + marcin@pisilinux.org - 2011-05-27 - 4.2.0.8 + 2012-11-21 + 0.12 First release - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org - dash - http://gondor.apana.org.au/~herbert/dash/ + libbonobo + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + desktop.gnome.base + GNOME CORBA framework + GNOME CORBA geliştirme ortamı + Bonobo is a component system based on CORBA, used by the GNOME desktop. + mirrors://gnome/libbonobo/2.32/libbonobo-2.32.1.tar.bz2 + + orbit2-devel + glib2-devel + libxml2-devel + flex + grep + popt-devel + intltool + perl + gettext-devel + gtk-doc + + + libbonobo-2.32.1-srcdir-macro.patch + libbonobo-multishlib.patch + + desktop/gnome/base/libbonobo/pspec.xml + + + libbonobo + + orbit2 + glib2 + libxml2 + + + /etc + /usr/bin + /usr/sbin + /usr/libexec + /usr/lib + /usr/share/man + /usr/share/locale + /usr/share/doc + /usr/share/idl + + + + libbonobo-devel + Development files for libbonobo + libbonobo için geliştirme dosyaları + + libbonobo + orbit2-devel + glib2-devel + + + /usr/lib/pkgconfig + /usr/include + + + + libbonobo-docs + Bonobo referance documents + data:doc + + /usr/share/gtk-doc + + + + + 2014-05-24 + 2.32.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-29 + 2.32.1 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-02 + 2.32.1 + Rebuild for RC. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-03-30 + 2.32.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-18 + 2.32.0 + First release + Burak Çalışkan + admins@pisilinux.org + + + + + + libgnome-keyring + http://live.gnome.org/GnomeKeyring + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.gnome.base + Compatibility library for accessing gnome-keyring3 + gnome-keyring'e ulaşmak için uyumluluk kütüphanesidir. + libgnome-keyring is a library that used by applications to integrate with the gnome-keyring system. + libgnome-keyring, gnome-keyring sistemine uyumlu olmak için programlar tarafından kullanılan bir kütüphanedir. + http://ftp.acc.umu.se/mirror/gnome.org/sources/libgnome-keyring/3.12/libgnome-keyring-3.12.0.tar.xz + + intltool + glib2-devel + dbus-devel + libgcrypt-devel + + desktop/gnome/base/libgnome-keyring/pspec.xml + + + libgnome-keyring + + libgcrypt + glib2 + dbus + + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libgnome-keyring-devel + Development files for libgnome-keyring + libgnome-keyring için geliştirme dosyaları + + libgnome-keyring + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libgnome-keyring-docs + Referance documents for libgnome-keyring + libgnome-keyring için başvuru belgeleri + data:doc + + /usr/share/gtk-doc + + + + + 2015-08-25 + 3.12 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + + + + glibmm + http://gtkmm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome2 + C++ interface for glib2 + glib2 kitaplığı için C++ programlama dili arayüzü + Glibmm est l'interface officielle C++ pour la librairie IHM populaire GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. + Glibmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks and a comprehensive set of widgets that are easily extensible via inheritance. + Glibmm, ünlü GUI kitaplığı GTK+ için resmi C++ arayüzüdür. Önemli özelliklerinin arasında tip bağımsız çağırmalar ve miras ile genişleyebilen uyumlu parçacıklar vardır. + mirrors://gnome/glibmm/2.44/glibmm-2.44.0.tar.xz + + libsigc++-devel + glib2-devel + pkgconfig + + desktop/gnome2/glibmm/pspec.xml + + + glibmm + + glib2 + libgcc + libsigc++ + + + /usr/lib + /usr/share/doc + + + + glibmm-devel + Development files for glibmm + glibmm için geliştirme dosyaları + + glibmm + glib2-devel + libsigc++-devel + + + /usr/include + /usr/lib/glibmm-* + /usr/lib/giomm-* + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/glibmm-* + + + + + 2015-07-21 + 2.44.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-18 + 2.40.0 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-23 + 2.38.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-10-29 + 2.36.2 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-14 + 2.36.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-22 + 2.34.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + orbit2 + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + desktop.gnome2 + High-performance CORBA ORB + Yüksek performanslı CORBA ORB + Orbit2 allows to communication between two programs objects. + Orbit2 iki program nesneleri arasındaki iletişimi sağlar. + mirrors://gnome/ORBit2/2.14/ORBit2-2.14.19.tar.bz2 + + libIDL-devel + grep + glib2-devel + gtk-doc + + + fedora/ORBit2-allow-deprecated.patch + + desktop/gnome2/orbit2/pspec.xml + + + orbit2 + + libIDL + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/idl + + + + orbit2-devel + Development files for orbit2 + orbit2 için geliştirme dosyaları + + orbit2 + libIDL-devel + glib2-devel + + + /usr/bin/orbit2-config + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/share/aclocal + + + + orbit2-docs + ORBit2 reference documents + Orbit2 referans dökümanları + data:doc + + /usr/share/gtk-doc + + + + + 2014-05-21 + 2.14.19 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-10-29 + 2.14.19 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 2.14.19 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-12-22 + 2.14.19 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + librsvg + http://librsvg.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome2 + Scalable Vector Graphics (SVG) rendering library + Scalable Vector Graphics (SVG) kitaplığı + librsvg est un composant utilisé au sein de logiciels pour gérer les graphismes vectoriels au format SVG. + librsvg is a component used within software applications to enable support for SVG-format scalable vector graphics. + Scalable Vector Graphics (SVG) kitaplığı + mirrors://gnome/librsvg/2.40/librsvg-2.40.9.tar.xz + + libcroco-devel + gtk2-devel + pango-devel + vala-devel + python-devel + gdk-pixbuf-devel + gtk-doc + gobject-introspection-devel + + desktop/gnome2/librsvg/pspec.xml + + + librsvg + + glib2 + libxml2 + cairo + pango + libcroco + gdk-pixbuf + + + /etc/gtk-2.0 + /usr/bin + /usr/lib + /usr/share/man/man1 + /usr/share/pixmaps + /usr/share/themes + /usr/share/vala + /usr/share/gtk-doc + /usr/share/gir-1.0/Rsvg-2.0.gir + /usr/share/doc + + + + librsvg-devel + Development files for librsvg + librsvg için geliştirme dosyaları + + librsvg + gdk-pixbuf-devel + cairo-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + librsvg-32bit + 32-bit shared libraries for librsvg + emul32 + emul32 + + atk-32bit + gtk2-32bit + glib2-32bit + cairo-32bit + pango-32bit + libpng-32bit + libxml2-32bit + freetype-32bit + libcroco-32bit + gdk-pixbuf-32bit + fontconfig-32bit + + + librsvg + glibc-32bit + glib2-32bit + cairo-32bit + pango-32bit + libxml2-32bit + libcroco-32bit + gdk-pixbuf-32bit + + + /usr/lib32 + + + + + 2015-08-10 + 2.40.9 + Version bump. + PisiLinux Community + ayhanyalcinsoy@pisilinux.org + + + 2014-05-17 + 2.40.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-10-14 + 2.39.0 + Rebuild icu4c. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-10 + 2.39.0 + Rebuild and install using correct loaders. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-23 + 2.39.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-31 + 2.36.4 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-17 + 2.36.4 + Rebuild with new pisi release + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-23 + 2.36.4 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-01-23 + 2.36.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-06 + 2.36.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + harfbuzz + http://www.freedesktop.org/software/harfbuzz + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.font + OpenType text shaping engine + The Harfbuzz package contains an OpenType text shaping engine. + http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-0.9.40.tar.bz2 + + cairo-devel + glib2-devel + icu4c-devel + graphite2-devel + freetype-devel + expat-devel + + desktop/font/harfbuzz/pspec.xml + + + harfbuzz + + cairo + glib2 + icu4c + libgcc + freetype + graphite2 + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/gir-1.0 + /usr/share/gtk-doc + + + + harfbuzz-devel + + glib2-devel + icu4c-devel + harfbuzz + + + /usr/include/harfbuzz + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + harfbuzz-32bit + 32-bit shared libraries for harfbuzz + emul32 + emul32 + + icu4c-32bit + freetype-32bit + fontconfig-32bit + glibc-32bit + cairo-32bit + + + cairo-32bit + glib2-32bit + glibc-32bit + icu4c-32bit + freetype-32bit + + + /usr/lib32 + + + + + 2015-04-06 + 0.9.40 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-24 + 0.9.38 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-12 + 0.9.37 + Version Bump + rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-08-15 + 0.9.35 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-07-11 + 0.9.30 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-09 + 0.9.26 + Better harfbuz with icu, cairo. Fix configure option format. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-17 + 0.9.26 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-26 + 0.9.26 + Delete Unused Deps. + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-25 + 0.9.26 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-22 + 0.9.26 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 0.9.19 + Rebuild for icu4c + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-26 + 0.9.19 + Version bump. Fix build emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-30 + 0.9.18 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-01-22 + 0.9.9 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-24 + 0.9.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gnu-gs-fonts-std + http://www.ghostscript.com + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + GPLv2 + data + desktop.font + Ghostscript standard fonts + Ghostscript standard yazıtipleri + Ces fontes ont été construites à partir des fontes URW distribuées avec ghostcript. Il n'y AUCUN changemen dans leur partie latine. + gnu-gs-fonts-std contains fonts that were made from the free URW fonts distributed with ghostcript. There are no changes in the latin part of them. + Bu yazıtipleri ghostscript ile birlikte dağıtılan özgür URW yazıtiplerinden türetilmiştir. Latin bölümünde hiçbir değişiklik yapılmamıştır. + mirrors://sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz + desktop/font/gnu-gs-fonts-std/pspec.xml + + + gnu-gs-fonts-std + + /usr/share/fonts/default/ghostscript + /usr/share/doc + + + + + 2014-02-23 + 8.11 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2012-09-20 + 8.11 + First release + Sezai Yeniay + sezaiyeniay@pisilinux.org + + + + + + unicode-ucd + http://www.unicode.org/ucd + + PisiLinux Community + admins@pisilinux.org + + MIT + desktop.font + Unicode Character Database + Unicode Karakter Veritabanı + The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data. It also includes data files containing test data for conformance to several important Unicode algorithms. + Unicode karakter veritabanı, unicode karakter özelliklerini ve bilgilerini içeren birkaç veri dosyasından oluşur. + http://www.unicode.org/Public/zipped/6.3.0/UCD.zip + desktop/font/unicode-ucd/pspec.xml + + + unicode-ucd + + /usr/share/unicode/ucd + /usr/share/doc + + + copyright.html + + + + + 2014-01-27 + 6.3.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + oxygen-fonts + https://projects.kde.org/projects/playground/artwork/oxygen-fonts + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + OFL + data:font + desktop.font + Oxygen font family + Oxygen yazı tipi ailesi + Oxygen font family is a desktop / GUI font family for integrated use with KDE. + Oxygen, KDE için bir masaüstü ve grafik kullanıcı arayüzü yazı tipi ailesidir. + http://download.kde.org/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz + + cmake + extra-cmake-modules + fontconfig-devel + qt5-base-devel + fontforge + + desktop/font/oxygen-fonts/pspec.xml + + + oxygen-fonts + + /usr/share/fonts + /usr/share/doc + /usr/lib + + + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-06 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-12 + 5.4.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-08-27 + 5.4.0 + Version bump + Vedat Demir + vedat@pisilinux.org + + + 2014-03-02 + 0.4 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + fontconfig + http://fontconfig.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + desktop.font + A library for configuring and customizing font access + Yazıtiplerinin yapılandırılması ve özelleştirilmesi için bir kitaplık + Biblioteka do konfigurowania pospolitych czcionek - obsługa plików binarnych + Fontconfig est un librairie conçue pour fournir à tout le système accès à la possibilité de configurer, personnaliser et appliquer des fontes. + Fontconfig is a library designed to provide system-wide font configuration, customization and application access. + Fontconfig sistem genelindeki programlar için yazıtiplerinin ayarlanmasını, özelleştirilmesini ve programlar tarafından erişilmesini sağlar. + Fontconfig jest biblioteką do konfigurowania i dostosowywania do własnych potrzeb czcionek, które nie zależą od systemu X Window. Została zaprojektowana, aby znajdować czcionki w systemie i dobierać je do wymagań określanych przez aplikacje. + http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.1.tar.bz2 + + freetype-devel + expat-devel + + + prefer_dejavu.patch + anymetrics_urw.patch + use_legacy_lcdfilter_on_small_monospace.patch + add_hinting_and_antialiasing_to_proper_fonts.patch + fontconfig-2.8.0-sleep-less.patch + deprecated-user-conf.patch + + desktop/font/fontconfig/pspec.xml + + + fontconfig + + freetype + expat + + + /etc/fonts + /usr/bin + /usr/lib + /usr/share/doc + /var/cache/fontconfig + /usr/share + + + System.Package + System.PackageHandler + + + + fontconfig-devel + Development files for fontconfig + fontconfig için geliştirme dosyaları + Pliki nagłówkowe fontconfig + + fontconfig + freetype-devel + expat-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/fontconfig/fontconfig-devel.txt + /usr/share/man + + + + fontconfig-32bit + 32-bit shared libraries for fontconfig + fontconfig için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + expat-32bit + freetype-32bit + glibc-32bit + + + fontconfig + expat-32bit + freetype-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-17 + 2.11.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-29 + 2.11.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-01 + 2.11.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 2.10.93 + Add missing method to pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 2.10.93 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-06 + 2.10.92 + First release + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-06 + 2.10.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + fontforge + http://fontforge.sourceforge.net/ PisiLinux Community admins@pisilinux.org BSD app:console - util.shell - Small and fast POSIX-compliant shell - Ufak ve hızlı POSIX uyumlu kabuk - DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as possible. - DASH, POSIX uyumlu bir /bin/sh gerçeklemesi olup, olabildiğince ufak olmayı hedefleyen bir kabuktur. - http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.8.tar.gz - util/shell/dash/pspec.xml + app:gui + desktop.font + Font editor and converter + Postscript yazı tipi düzenleyici ve çevirici + FontForge is a font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you convert one format to another. FontForge also has support for many macintosh font formats. + FontForge kendi postscript, truetype, opentype, cid-keyed, multi-master, cff, svg, bitmap (bdf, FON, NFNT) fontlarınızı yaratmanıza veya hali hazırda varolan fontlarınızı düzenlemenize olanak tanıyan bir font düzenleyicidir. FontForge Macintosh font formatlarının çoğunu da desteklemektedir. + fontforge + https://github.com/fontforge/fontforge/releases/download/20150824/fontforge-20150824.tar.gz + http://fontforge.org/cidmaps.tgz + + libjpeg-turbo-devel + tiff-devel + cairo-devel + pango-devel + libpng-devel + libXft-devel + libXi-devel + giflib-devel + libspiro-devel + xdg-utils + fontconfig-devel + python-devel + libxml2-devel + readline-devel + libtool-ltdl + + desktop/font/fontforge/pspec.xml - dash + fontforge + + zlib + glib2 + libX11 + libpng + python + libxml2 + freetype + readline + libtool-ltdl + tiff + cairo + libXi + pango + libXft + giflib + libspiro + libjpeg-turbo + - /bin/dash - /usr/share/man + /usr/lib /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/pixmaps + /usr/share/fontforge + /usr/share/applications + /usr/share/locale + + + + fontforge-devel + Development files for fontforge + fontforge için geliştirme dosyaları + + tiff-devel + pango-devel + cairo-devel + fontforge + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-28 + 2.0.20150824 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-01 + 2.0.20140101 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-01 + 2.0.20140101 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-02 + 20120731 + Rebuild for RC. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-10-25 + 20120731 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xdg-utils + http://portland.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + desktop.misc + Utilitaires de bureaux communs. + Common desktop utilities + Ortak masaüstü komutları + Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running. + http://source.pisilinux.org/1.0/xdg-utils.tar.xz + + xmlto + docbook-xsl + util-linux + lynx + + + enable-other-xdg.patch + xfce-detection.patch + drop-xmlto-stuff.patch + + desktop/misc/xdg-utils/pspec.xml + + + xdg-utils + + /usr/bin + /usr/share/man - 2015-11-21 - 0.5.8 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + 2014-02-16 + 1.1.0_20140207 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2015-01-22 - 0.5.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-17 - 0.5.7 - Release. + 2013-10-23 + 20131006 + Release bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-04-30 - 0.5.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-08-26 + 1.1.0_rc1 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org - 2010-12-31 - 0.5.6.1 + 2013-04-05 + 1.1.0_rc1 First release Pisi Linux Admins admins@pisilinux.org @@ -57797,187 +42131,2944 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - emacs-color-theme - http://www.emacswiki.org/cgi-bin/wiki?ColorTheme + desktop-file-utils + http://www.freedesktop.org/software/desktop-file-utils/ PisiLinux Community admins@pisilinux.org GPLv2 - data - editor.emacs - Emacs-Lisp color theme package - Emacs-List renk paketi - Colortheme is an Emacs-Lisp package with more than 50 color themes for your use. - Colortheme 50'den fazla renk temasını biraraya getiren bir Emacs-Lisp paketidir. - http://download.gna.org/color-theme/color-theme-6.6.0.tar.gz - editor/emacs/emacs-color-theme/pspec.xml + library + desktop.misc + Command line utilities to work with desktop menu entries + Masaüstü menü girdilerini yönetmek için komut satırı araçları + desktop files are used to describe an application for inclusion in GNOME or KDE menus. This package contains desktop-file-validate which checks whether a .desktop file complies with the specification and desktop-file-install which installs a desktop file to the standard directory, optionally fixing it up in the process. + http://freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.21.tar.xz + + glib2-devel + + desktop/misc/desktop-file-utils/pspec.xml - emacs-color-theme + desktop-file-utils - emacs + glib2 + /usr/bin /usr/share/doc - /etc/emacs/site-lisp - /usr/share/emacs/site-lisp/color-theme + /usr/share/man/man1/ - - 80-color-theme.el - + + System.PackageHandler + - - 2015-12-24 - 6.6.0 - Update to pisi-2.0. - Ilker Manap - ilkermanap@gmail.com - - 2014-05-24 - 6.6.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org + 2013-09-07 + 0.21 + Add comar script. + Marcin Bojara + marcin@pisilinux.org - 2014-01-23 - 6.6.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org + 2013-08-26 + 0.21 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org - 2010-10-13 - 6.6.0 + 2012-11-21 + 0.21 First release - Gökcen Eraslan + PisiLinux Community admins@pisilinux.org - emacs - http://www.gnu.org/software/emacs + shared-mime-info + http://freedesktop.org/wiki/Software/shared-mime-info PisiLinux Community admins@pisilinux.org - GPLv3+ - app:gui + GPLv2 app:console - editor.emacs - An extensible console-mode editor - Genişletilebilir bir metin düzenleyici - Emacs is the extensible, customizable, self-documenting real-time console-mode editor. It has many features to increase productivity when programming. - Emacs, gelişmiş, özelleştirilebilir ve esnek bir metin editörüdür. Özellikle program yazanlar tarafından çokça tercih edilen, fare kullanımına gerek bırakmadan çok hızlı çalışma imkânı sağlayan bir editördür. - emacs - ftp://mirrors.kernel.org/gnu/emacs/emacs-24.5.tar.xz + data + desktop.misc + The shared MIME info database + Paylaşımlı MIME veritabanı tanımlamaları + shared-mim-info est un paquet contenant un grand nombre de types MIME communs, créés en fusionnant les bases de données KDE et GNOME existantes et en les convertissant au nouveau format, ainsi qu'un logiciel pour mettre à jour cette base en fonction des spécifications de share-mime-info. + shared-mime-info is a package containing a large number of common MIME types, created by converting the existing KDE and GNOME databases to the new format and merging them together, and software for updating the database based on the share-mime-info specification. + Bu pakette büyük miktarda dosya türü bilgisi bulunur. Bu bilgiler mevcut KDE ve GNOME veritabanlarının yeni biçime dönüştürülerek birleştirilmesinden oluşmuştur. Ayrıca, pakette bu veritabanını güncelleyen bir uygulama da bulunmaktadır. + http://freedesktop.org/~hadess/shared-mime-info-1.5.tar.xz - gtk2-devel - alsa-lib-devel - fontconfig-devel - giflib-devel - gpm - libjpeg-turbo-devel - libICE-devel - libSM-devel - libXft-devel - libXpm-devel - libXrender-devel - libpng-devel - librsvg-devel - tiff-devel + libxml2-devel + glib2-devel + intltool - editor/emacs/emacs /pspec.xml + + shared-mime-info-xz.patch + + desktop/misc/shared-mime-info/pspec.xml - emacs + shared-mime-info - gpm + libxml2 + glib2 + + + /etc/X11/xinit + /usr/bin + /usr/share/applications + /usr/share/mime + /usr/share/pkgconfig + /usr/share/locale/ + /usr/share/doc + /usr/share/man + + + System.PackageHandler + System.Package + + + update-mime-database.sh + defaults.list + mimeapps.list + mimetypefixes.xml + + + + + 2015-11-05 + 1.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-16 + 1.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-11-07 + 1.3 + Fix ISO images appearing as .txt files in Dolphin + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 1.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 1.1 + Add missing method to pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-11 + 1.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-13 + 1.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xdg-user-dirs + http://freedesktop.org/wiki/Software/xdg-user-dirs + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + desktop.misc + Utilities to handle user data directories + Kullanıcı veri dizinlerini idare etmek için yardımcı uygulamalar + xdg-user-dirs is a tool to help manage "well known" user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. + xdg-user-dirs, masaüstü ve müzik klasörleri gibi belli başlı kullanıcı dizinlerini yönetmek için bir araçtır. Ayrıca dosya adlarının yerelleştirilmesini de (ör. metin çevirileri) idare eder. + http://user-dirs.freedesktop.org/releases/xdg-user-dirs-0.15.tar.gz + + docbook-xsl + libxml2-devel + libxslt-devel + + + defaults.patch + tr.patch + xdg-user-dirs-0.15-libiconv.patch + + desktop/misc/xdg-user-dirs/pspec.xml + + + xdg-user-dirs + + /etc/X11 + /etc/xdg + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/man + + + xdg-user-dirs.sh + + + + + 2014-05-01 + 0.15 + Fix Downloads-İndirilenler direcory name. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-17 + 0.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 0.12 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2011-01-19 + 0.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + startup-notification + http://www.freedesktop.org/software/startup-notification/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.misc + Application startup notification and feedback library + Uygulama başlangıç duyurusu ve geribildirim sistemi + startup-notification est un exemple d'implémentation de notification de démarrage (indiquant à l'environnement bureautique qu'une application a fini de démarrer). + startup-notification is a sample implementation of startup notification (telling the desktop environment when an app is done starting up). + startup-notification, bir program başlatıldığında bunu masaüstü ortamına bildirir. + http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz + + libX11-devel + libxcb-devel + xcb-util-devel + + desktop/misc/startup-notification/pspec.xml + + + startup-notification + + libX11 + libxcb + xcb-util + + + /usr/lib + /usr/share/doc + + + + startup-notification-devel + Development files for startup-notification + startup-notification için geliştirme dosyaları + + startup-notification + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/*/*.txt + + + + + 2014-05-18 + 0.12 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-26 + 0.12 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-10-13 + 0.12 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + at-spi2-core + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + service + desktop.misc + Protocol definitions and daemons for D-Bus at-spi + D-Bus at-spi için protokol tanımları ve hizmetleri + at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. + at-spi2-core, erişilebilirlik teknolojilerinin uygulamalara D-Bus üzerinden erişerek onları otomatik olarak denetlemesini sağlar. + mirrors://gnome/at-spi2-core/2.16/at-spi2-core-2.16.0.tar.xz + + libXtst-devel + libXi-devel + gettext-devel + dbus-devel + glib2-devel + intltool + + desktop/misc/at-spi2-core/pspec.xml + + + at-spi2-core + + libXtst + libX11 + dbus + glib2 + + + /etc + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/libexec + /usr/share/gir-1.0 + /usr/share/locale + + + + at-spi2-core-32bit + 32-bit shared libraries for at-spi2-core + emul32 + emul32 + + dbus-32bit + glib2-32bit + libXi-32bit + libX11-32bit + libXtst-32bit + glibc-32bit + + + dbus-32bit + glib2-32bit + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + at-spi2-core-devel + at-spi2-core için geliştirme dosyaları + at-spi2-core için geliştirme dosyaları + + at-spi2-core + dbus-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-14 + 2.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 2.8.0 + Fix build. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-30 + 2.8.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 2.8.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-17 + 2.8.0 + Rebuild with new pisi release + PisiLinux Community + admins@pisilinux.org + + + 2013-06-17 + 2.8.0 + Rebuild with new pisi release + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-23 + 2.8.0 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-17 + 2.8.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + at-spi2-atk + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + service + desktop.misc + Protocol definitions and daemons for D-Bus at-spi + at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. + mirrors://gnome/at-spi2-atk/2.16/at-spi2-atk-2.16.0.tar.xz + + at-spi2-core-devel + glib2-devel + atk-devel + libX11-devel + dbus-devel + libXtst-devel + + desktop/misc/at-spi2-atk/pspec.xml + + + at-spi2-atk + + atk + dbus + glib2 + at-spi2-core + + + /usr/lib + /usr/share/doc + + + + at-spi2-atk-32bit + 32-bit shared libraries for at-spi2-atk + emul32 + emul32 + + glibc-32bit + at-spi2-core-32bit + atk-32bit + dbus-32bit + glib2-32bit + + + glibc-32bit + atk-32bit + dbus-32bit + glib2-32bit + at-spi2-core-32bit + + + /usr/lib32 + + + + at-spi2-atk-devel + at-spi2-atk için geliştirme dosyaları + at-spi2-atk için geliştirme dosyaları + + at-spi2-atk + + + /usr/lib32/pkgconfig + /usr/lib/pkgconfig + /usr/include + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-15 + 2.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-27 + 2.8.1 + Move pc files to devel pack, rebuild + split packages + PisiLinux Community + admins@pisilinux.org + + + 2013-06-01 + 2.8.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 2.8.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-17 + 2.8.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + atk + http://developer.gnome.org/atk + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + GTK+ and GNOME Accessibility Toolkit + GTK+ ve GNOME erişilebilirlik kitaplığı + Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. + These libraries provide tools for making software for people with disabilities. + Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. + mirrors://gnome/atk/2.16/atk-2.16.0.tar.xz + + gobject-introspection-devel + glib2-devel + gtk-doc + + desktop/toolkit/gtk/atk/pspec.xml + + + atk + + glib2 + + + /usr/lib/libatk* + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/doc + + + + atk-devel + Development files for atk + atk için geliştirme dosyaları + + atk + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + atk-32bit + 32-bit shared libraries for atk + atk için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glib2-32bit + glibc-32bit + + + atk + glib2-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-17 + 2.12.0 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.12.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-21 + 2.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 2.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-24 + 2.7.91 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gtk-doc + http://www.gtk.org/gtk-doc + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + FDL-1.1 + app:console + desktop.toolkit.gtk + GTK+ API documentation generator + GTK+ API belge oluşturucusu + Gtk-Doc is typically used to document the public API of GTK+ and GNOME libraries, but it can also be used to document application code. + gtk-doc, GNOME ve GTK+ gibi kitaplıkların API'lerinin belgelendirilmesi için yazılmış bir uygulama projesidir. + mirrors://gnome/gtk-doc/1.21/gtk-doc-1.21.tar.xz + + itstool + openjade + sgml-common + docbook-xml + docbook-xsl + libxslt-devel + + desktop/toolkit/gtk/gtk-doc/pspec.xml + + + gtk-doc + + docbook-xml + sgml-common + + + /usr/bin + /usr/share + /usr/share/doc + /usr/share/omf + /var/lib + + + + + 2015-04-06 + 1.21 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-18 + 1.20 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-30 + 1.20 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-26 + 1.18 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-26 + 1.18 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + atkmm + http://www.gtkmm.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + desktop.toolkit.gtk + C++ interface for the ATK library + ATK kitaplığı için C++ arayüzü + atkmm provides a C++ interface for the ATK library. + atkmm, ATK kitaplığı için bir C++ arayüzü sunar. + mirrors://gnome/atkmm/2.22/atkmm-2.22.7.tar.xz + + atk-devel + glibmm-devel + libtool + perl + doxygen + pkgconfig + glib2-devel + libsigc++-devel + + desktop/toolkit/gtk/atkmm/pspec.xml + + + atkmm + + atk + libgcc + glib2 + glibmm + libsigc++ + + + /usr/lib + /usr/share/doc + + + + atkmm-devel + Development files for atkmm + atkmm için geliştirme dosyaları + + atkmm + atk-devel + glibmm-devel + + + /usr/include + /usr/lib/atkmm-1.6/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/gtk-doc + + + + + 2015-11-27 + 2.22.7 + Rebuild and check. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-05-18 + 2.22.7 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-14 + 2.22.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-26 + 2.22.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gdk-pixbuf + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + GDK pixbuf library + GDK pixbuf kitaplığı + gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications + gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. + mirrors://gnome/gdk-pixbuf/2.31/gdk-pixbuf-2.31.4.tar.xz + + gtk-doc + glib2-devel + libX11-devel + tiff-devel + libjpeg-turbo-devel + libpng-devel + jasper-devel + gobject-introspection-devel + + desktop/toolkit/gtk/gdk-pixbuf/pspec.xml + + + gdk-pixbuf + + glib2 + libpng + libX11 tiff - gtk3 - cairo - pango - libSM - libXft - libICE - giflib - libXpm - gnutls - librsvg - alsa-lib - gdk-pixbuf - fontconfig - libXrender - imagemagick + jasper libjpeg-turbo /etc - /usr/share/doc - /usr/share/man /usr/bin - /usr/share/info - /usr/share/emacs - /usr/share/icons - /var/games/emacs - /usr/share/pixmaps - /usr/share/applications - /usr/libexec/emacs + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share + + + System.PackageHandler + + + + gdk-pixbuf-devel + Development files for gdk-pixbuf + gdk-pixbuf için geliştirme dosyaları + + gdk-pixbuf + glib2 + + + /usr/bin/gdk-pixbuf-csource + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/gir-1.0 + + + + gdk-pixbuf-docs + Reference documents for gdk-pixbuf + gdk-pixbuf için başvuru belgeleri + + /usr/share/gtk-doc + + + + gdk-pixbuf-32bit + 32-bit shared libraries for gdk-pixbuf + gdk-pixbuf için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + tiff-32bit + libjpeg-turbo-32bit + glibc-32bit + glib2-32bit + libX11-32bit + libpng-32bit + jasper-32bit + libX11-32bit + + + gdk-pixbuf + glibc-32bit + tiff-32bit + glib2-32bit + libpng-32bit + libX11-32bit + jasper-32bit + libjpeg-turbo-32bit + + + /usr/bin/gdk-pixbuf-query-loaders-32 + /usr/lib32 + + + System.PackageHandler + + + + + 2015-07-05 + 2.31.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-27 + 2.31.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-17 + 2.30.7 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.30.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 2.30.0 + Add missing method and fix pakhandler.py + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-05 + 2.28.2 + Add missing method and fix pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-20 + 2.28.2 + Fix build emul32. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-11 + 2.28.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 2.28.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-24 + 2.27.1 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-11-25 + 2.26.5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gtk2 + http://www.gtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + desktop.toolkit.gtk + The GIMP Toolkit version 2 + GTK grafik arayüz kitaplığı versiyon 2 + GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. + GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. + GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. + mirrors://gnome/gtk+/2.24/gtk+-2.24.28.tar.xz + + cups-devel + libXi-devel + cairo-devel + libXext-devel + libXrandr-devel + libXfixes-devel + libXrender-devel + libXdamage-devel + libXcursor-devel + fontconfig-devel + libXinerama-devel + libXcomposite-devel + atk-devel + pango-devel + gdk-pixbuf-devel + gtk-doc + gobject-introspection-devel + + + xid-collision-debug.patch + fedora/system-python.patch + fedora/icon-padding.patch + fedora/tooltip-positioning.patch + fedora/window-dragging.patch + + desktop/toolkit/gtk/gtk2/pspec.xml + + + gtk2 + + cups + libXi + cairo + libXext + libXrandr + libXfixes + libXrender + libXdamage + libXcursor + fontconfig + libXinerama + libXcomposite + glib2 + libX11 + atk + pango + gdk-pixbuf + dejavu-fonts + + + /etc + /usr/bin + /usr/share/themes + /usr/share/gtk-2.0 + /usr/share/man + /usr/share/doc + /usr/lib + /usr/share/locale System.PackageHandler - site-start.el - pisi-spec.rnc - 80-nxml-mode.el - emacs.desktop + gtkrc + + gtk2-demo + GTK demo application + GTK demo uyulaması + app:gui + + gtk2 + cairo + pango + gdk-pixbuf + glib2 + + + /usr/bin/gtk-demo + /usr/share/gtk-2.0/demo + + + + gtk2-docs + GTK reference documents + GTK referans dökümanları + data:doc + + /usr/share/gtk-doc + + + + gtk2-devel + Development files for gtk2 + gtk2 için geliştirme dosyaları + + gtk2 + atk-devel + pango-devel + cairo-devel + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/gir-1.0 + + + + gtk2-32bit + 32-bit shared libraries for gtk2 + gtk2 için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + glibc-32bit + cairo-32bit + cups-32bit + fontconfig-32bit + pango-32bit + glib2-32bit + atk-32bit + libX11-32bit + gdk-pixbuf-32bit + libXcomposite-32bit + libXcursor-32bit + libXdamage-32bit + libXext-32bit + libXfixes-32bit + libXi-32bit + libXinerama-32bit + libXrandr-32bit + libXrender-32bit + + + gtk2 + glibc-32bit + cairo-32bit + pango-32bit + glib2-32bit + atk-32bit + libX11-32bit + cups-32bit + fontconfig-32bit + gdk-pixbuf-32bit + libXcomposite-32bit + libXcursor-32bit + libXdamage-32bit + libXext-32bit + libXfixes-32bit + libXi-32bit + libXinerama-32bit + libXrandr-32bit + libXrender-32bit + + + /usr/bin/*-32bit + /usr/lib32 + + + + + 2015-07-05 + 2.24.28 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-17 + 2.24.23 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-06 + 2.24.22 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-06 + 2.24.22 + Set proper settings to gtkrc, change location of gtkrc. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-21 + 2.24.22 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 2.24.21 + Minor version bump, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-05 + 2.24.20 + Add missing method and fix pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 2.24.20 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-20 + 2.24.17 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-23 + 2.24.16 + Version bump, add new cppflags, enhancements. + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-23 + 2.24.14 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 2.24.13 + First release + Erdem Artan + admins@pisilinux.org + + + + + + cairo + http://cairographics.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + MPL-1.1 + library + desktop.toolkit.gtk + Cairo est une librairie graphique 2D supportant de nombreux périphériques de sortie. + 2D graphics library with bindings of many programming languages + Birden çok çıktı cihazına destek veren bir 2 boyutlu grafik kitaplığı + Cairo is a 2D graphics library with support for multiple output devices (and fileformats). + http://cairographics.org/releases/cairo-1.14.2.tar.xz + + lzo-devel + zlib-devel + glib2-devel + libX11-devel + libpng-devel + libxcb-devel + freetype-devel + expat-devel + fontconfig-devel + libXrender-devel + pixman-devel + xcb-util-devel + libXext-devel + mesa-devel + DirectFB-devel + valgrind + + desktop/toolkit/gtk/cairo/pspec.xml + + + cairo + + lzo + zlib + glib2 + libX11 + libpng + libxcb + freetype + fontconfig + libXrender + pixman + libXext + mesa + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/gtk-doc + /usr/share/info + /usr/lib + + + + cairo-devel + Development files for cairo + cairo için geliştirme dosyaları + + cairo + mesa-devel + glib2-devel + libX11-devel + libpng-devel + libxcb-devel + freetype-devel + pixman-devel + libXext-devel + fontconfig-devel + libXrender-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + cairo-32bit + 32-bit shared libraries for cairo + cairo için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + zlib-32bit + glib2-32bit + libX11-32bit + pixman-32bit + libpng-32bit + libxcb-32bit + libXext-32bit + freetype-32bit + fontconfig-32bit + libXrender-32bit + + + cairo + mesa-32bit + zlib-32bit + glibc-32bit + glib2-32bit + libX11-32bit + pixman-32bit + libpng-32bit + libxcb-32bit + libXext-32bit + freetype-32bit + fontconfig-32bit + libXrender-32bit + + + /usr/lib32/lib* + /usr/lib32/cairo + + + + + 2015-04-18 + 1.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-01-28 + 1.14.0 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-05-17 + 1.12.16 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-09 + 1.12.16 + Version bump, fixes. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 1.12.14 + Fix dependencies. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-23 + 1.12.14 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-02-24 + 1.12.14 + Version bump, missing dep. + Ertan Güven + ertan@pisilinux.org + + + 2013-01-22 + 1.12.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-23 + 1.12.8 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gtkmm + http://gtkmm.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + C++ binding for GTK+ + GTK+ için C++ bağlamı + gtkmm est l'interface C++ officiel de la librairie d'IHM GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. + gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. + gtkmm, grafik kullanıcı arayüzü kitaplığı GTK+'nın resmi C++ arayüzüdür. Tip-güvenli geri çağırmalar ve mirasla genişleyebilen tutarlı parçacıklardan oluşması, en önemli özelliklerini oluşturur. + mirrors://gnome/gtkmm/2.24/gtkmm-2.24.4.tar.xz + + gtk2-devel + atkmm-devel + glibmm-devel + cairomm-devel + pangomm-devel + libsigc++-devel + + desktop/toolkit/gtk/gtkmm/pspec.xml + + + gtkmm + + gtk2 + atkmm + glibmm + cairomm + pangomm + libsigc++ + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share + + + + gtkmm-devel + Development files for gtkmm + gtkmm için geliştirme dosyaları + + gtkmm + atkmm-devel + pangomm-devel + glibmm-devel + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-18 + 2.24.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-14 + 2.24.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-03 + 2.24.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + cairomm + http://cairographics.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + Bindings (liens) C++ pour Cairo. + C++ binding for Cairo + Cairo için C++ bağlayıcı + cairomm package is the C++ binding for Cairo (it makes possible using Cairo in C++). + http://cairographics.org/releases/cairomm-1.10.0.tar.gz + + grep + perl + doxygen + cairo-devel + libsigc++-devel + + desktop/toolkit/gtk/cairomm/pspec.xml + + + cairomm + + cairo + libsigc++ + libgcc + + + /usr/share/doc + /usr/lib + + + + cairomm-devel + Development files for cairomm + cairomm için geliştirme dosyaları + + cairomm + cairo-devel + libsigc++-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cairomm-1.0/include + + + + cairomm-docs + Development documents for cairomm + cairomm için geliştirme belgeleri + + /usr/share/doc/cairomm/html + + + + + 2014-05-18 + 1.10.0 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-21 + 1.10.0 + Release bump + PisiLinux Community + admins@pisilinux.org + + + 2012-08-25 + 1.10.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libglade + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + Glade interface builder + Glade arayüz oluşturucu + Libglade est une librairie effectuant un travail similaire aux routines de génération de source C dans le constructeur d'interface graphique GLADE. Là ou les routines de génération de GLADE génerent du code C à compiler, libglade construit l interface depuis un fichier XML (le format de sauvegarde de GLADE) à l'exécution. De cette manière, vous pouvez changer l'apparence de votre programme sans avoir à le recompiler. + Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C code that can then be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This way you can change the look of a program without needing to recompile. + Libglade, GLADE kullanıcı arayüzü yapıcısındaki C kaynak çıkışı yöntemine benzer iş yapan bir kitaplıktır. GLADE'in çıkış yöntemi derlenebilir C kodu oluştururken, libglade arayüzü bir XML dosyasında oluşturur. Böylece yeniden derlenmeye gerek kalmadan arayüz değiştirilebilir. + mirrors://gnome/libglade/2.6/libglade-2.6.4.tar.bz2 + + glib2-devel + libxml2-devel + atk-devel + pango-devel + gtk2-devel + + + Makefile.in.am-2.4.2-xmlcatalog.patch + libglade-2.6.3-fix_tests-page_size.patch + + desktop/toolkit/gtk/libglade/pspec.xml + + + libglade + + glib2 + libxml2 + atk + pango + gtk2 + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/xml + + + System.Package + + + + libglade-docs + Libglade reference documents + Libglade referans belgeleri + data:doc + + libglade + + + /usr/share/gtk-doc + + + + libglade-devel + Development files for libglade + libglade için geliştirme dosyaları + + libglade + gtk2-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-18 + 2.6.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 2.6.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 2.6.4 + Release bump + Pisi Linux Admins + admins@pisilinux.org + + + 2010-10-12 + 2.6.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pango + http://www.pango.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + FTL + library + desktop.toolkit.gtk + Outil de positionnement et de rendu de texte. + Text rendering and layout library + Metin görüntüleme kitaplığı + Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. + Pango, özellikle yerelleştirme ile birlikte metin düzenlemek ve biçimlendirmek için bir kitaplıktır. Pango metin biçimlendirmenin gerekli olduğu her yerde kullanılabilir ama şimdiye kadar ki birçok Pango çalışması GTK+ araç takımının parçası ile tamamlandı. Pango formları, GTK+-2.x. için temel metin ve yazı tipini yönetir. + mirrors://gnome/pango/1.36/pango-1.36.8.tar.xz + + gtk-doc + glib2-devel + libX11-devel + freetype-devel + cairo-devel + libXft-devel + harfbuzz-devel + fontconfig-devel + libXrender-devel + gobject-introspection-devel + + + pango-1.32.1-lib64.patch + + desktop/toolkit/gtk/pango/pspec.xml + + + pango + + glib2 + libX11 + freetype + cairo + libXft + harfbuzz + fontconfig + libXrender + + + /etc/pango + /usr/bin + /usr/lib/libpango* + /usr/lib/girepository-1.0 + /usr/lib/pango + /usr/share/gir-1.0 + /usr/share/man + /usr/share/doc + + + System.Package + + + + pango-devel + Development files for pango + pango için geliştirme dosyaları + + pango + cairo-devel + libXft-devel + harfbuzz-devel + fontconfig-devel + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + pango-docs + Pango reference documents + Pango referans dokümanları + data:doc + + /usr/share/gtk-doc + + + + pango-32bit + 32-bit shared libraries for pango + pango için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + cairo-32bit + glib2-32bit + libX11-32bit + libXft-32bit + freetype-32bit + libXrender-32bit + fontconfig-32bit + libffi-32bit + harfbuzz-32bit + glibc-32bit + + + pango + cairo-32bit + glib2-32bit + libX11-32bit + libXft-32bit + freetype-32bit + libXrender-32bit + fontconfig-32bit + libffi-32bit + harfbuzz-32bit + glibc-32bit + + + /usr/bin/pango-querymodules-32 + /usr/lib32/libpango* + /usr/lib32/girepository-1.0 + /usr/lib32/pango + + + + + 2015-03-18 + 1.36.8 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-07-07 + 1.36.5 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-17 + 1.36.3 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 1.36.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-05 + 1.36.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 1.36.0 + Version bump, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 1.34.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-20 + 1.34.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 1.32.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 1.32.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2011-07-07 + 1.30.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + gtk3 + http://www.gtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + desktop.toolkit.gtk + The GIMP Toolkit version 3 + GTK grafik arayüz kitaplığı versiyon 3 + GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. + GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. + GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. + Wersja 3 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce. + mirrors://gnome/gtk+/3.16/gtk+-3.16.4.tar.xz + + atk-devel + cups-devel + at-spi2-atk-devel + pango-devel + json-glib-devel + libXi-devel + cairo-devel + gobject-introspection-devel + libXext-devel + libXrandr-devel + libXfixes-devel + gdk-pixbuf-devel + fontconfig-devel + libXcursor-devel + libXdamage-devel + libXinerama-devel + libXcomposite-devel + at-spi2-core-devel + libepoxy-devel + gtk-doc + + + 071_fix-installation-of-HTML-images.patch + + desktop/toolkit/gtk/gtk3/pspec.xml + + + gtk3 + + glib2 + libX11 + libepoxy + atk + cups + pango + libXi + cairo + libXext + libXrandr + libXfixes + gdk-pixbuf + fontconfig + libXcursor + libXdamage + libXinerama + at-spi2-atk + libXcomposite + dejavu-fonts + + + /etc + /usr/bin + /usr/share/themes + /usr/share/gtk-3.0 + /usr/share/ + /usr/share/man + /usr/share/doc + /usr/lib + /usr/share/locale + + + System.PackageHandler + + + settings.ini + + + + gtk3-demo + GTK demo application + GTK demo uyulaması + app:gui + + gtk3 + glib2 + libepoxy + cairo + pango + gdk-pixbuf + + + /usr/bin/gtk3-demo + /usr/bin/gtk3-demo-application + + + + gtk3-docs + GTK reference documents + GTK referans dökümanları + data:doc + + /usr/share/doc/gtk3 + + + + gtk3-devel + Development files for gtk3 + gtk3 için geliştirme dosyaları + Pliki nagłówkowe do gtk3 + + gtk3 + atk-devel + pango-devel + libX11-devel + libXi-devel + cairo-devel + glib2-devel + libXext-devel + libepoxy-devel + libXfixes-devel + libXrandr-devel + gdk-pixbuf-devel + fontconfig-devel + libXdamage-devel + libXcursor-devel + libXinerama-devel + at-spi2-atk-devel + libXcomposite-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/gir-1.0 + + + + + 2015-07-07 + 3.16.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-18 + 3.14.9 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-04-12 + 3.12.2 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2014-04-06 + 3.10.7 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-05 + 3.10.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-21 + 3.10.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-11 + 3.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 3.8.2 + Add missing method and fix pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 3.8.2 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-14 + 3.8.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-24 + 3.6.4 + First release + Ertan Güven + ertan@pisilinux.org + + + + + + gtkspell + http://gtkspell.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + Spell checking widget for GTK+ + GTK+ için yazım denetimi eklentisi + GtkSpell provides MSWord / MacOSX-style highlighting of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements. + GtkSpell, MSWord / MacOSX işletim sistemlerinde olduğu gibi, GTK+ metin gösterme zımbırtılarında yanlış yazılmış kelimeleri vurgular ve yanlış yazılmış kelimelere sağ tıkladığınızda, size yeni kelimeler önerir. + mirrors://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz + + gtk2-devel + enchant-devel + intltool + + desktop/toolkit/gtk/gtkspell/pspec.xml + + + gtkspell + + atk + gtk2 + cairo + glib2 + pango + enchant + freetype + fontconfig + gdk-pixbuf + + + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/gtk-doc + + + + gtkspell-devel + Development files for gtkspell + gtkspell için geliştirme dosyaları + + gtkspell + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-20 + 2.0.16 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-18 + 2.0.16 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-25 + 2.0.16 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-17 + 2.0.16 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-10-12 + 2.0.16 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pangomm + http://www.gtkmm.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + desktop.toolkit.gtk + C++ interface for Pango + Pango için C++ arayüzü + Pangomm is a library that provides pango based C++ interface for object-oriented gtkmm applications. + Pangomm, nesne tabanlı gtkmm uygulamaları için C++ tabanlı pango arayüzü sağlayan bir kitaplıktır. + mirrors://gnome/pangomm/2.34/pangomm-2.34.0.tar.xz + + grep + libtool + doxygen + boost-devel + glib2-devel + pango-devel + glibmm-devel + cairomm-devel + libsigc++-devel + + desktop/toolkit/gtk/pangomm/pspec.xml + + + pangomm + + pango + glibmm + libgcc + glib2 + cairomm + libsigc++ + + + /usr/lib + /usr/share/doc + + + + pangomm-devel + Development files for pangomm + pangomm için geliştirme dosyaları + + pangomm + cairomm-devel + glibmm-devel + pango-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/pangomm-1.4 + + + + + 2014-05-18 + 2.34.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-14 + 2.34.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-26 + 2.28.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + qtermwidget5 + https://github.com/qterminal/qtermwidget + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + app:gui + desktop.toolkit + Terminal widget for Qt5 + Qt tabanlı uygulamalar için basit bir terminal modulü + A simple terminal widget for using with Qt5 based applications + https://github.com/qterminal/qtermwidget/releases/download/0.6.0/qtermwidget-0.6.0.tar.xz + + cmake + libgcc + qt5-base-devel + + desktop/toolkit/qtermwidget5/pspec.xml + + + qtermwidget5 + Development files for qtermwidget5 + + libgcc + qt5-base + + + /usr/bin/consoleq + /usr/lib + /usr/share + /usr/share/doc + + + + qtermwidget5-devel + Development files for qtermwidget5 + qtermwidget5 için geliştirme dosyaları + + qt5-base-devel + qtermwidget5 + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-13 + 0.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + wxGTK + http://www.wxwidgets.org/ + + PisiLinux Community + admins@pisilinux.org + + wxWinLL-3 + GPLv2 + LGPLv2 + wxWinFDL-3 + library + desktop.toolkit + GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit + Birçok platform için ortak C++ arayüz araç takımı olan wxWindows'un GTK+ sürümü + wxWidgets/GTK2 est le port GTK2 de la librairie graphique multi-plateforme wxWidgets, offrant des classes pour les contrôles IHM communs ainsi qu'un ensemble complet de classes d'aides pour les tâches applicatives habituelles, allant du réseau à l'affichage HTML en passant par la manipulation d'images. + wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. + wxWidgets/GTK2 birçok platform için ortak bir C++ arayüz kitaplığı olan wxWidgets'ın GTK2 sürümüdür. Ağ araçları, HTML gösterimi ve resim işleme gibi en yaygın kullanılan uygulama görevleri için kapsamlı bir sınıf kümesinin yanında tüm genel GUI denetimlerini içerir. + wxWidgets/GTK2 es la versión portada a GTK2 de la librería GUI wxWidgets cross-plataforma en C++, con clases para todos los controles GUI comunes y tambien un conjunto de clases con ayudantes para la mayoría de las tareas comunes de aplicaciones, desde networking a visualización HTML y manipulación de imagenes. + mirrors://sourceforge/wxwindows/wxWidgets-3.0.2.tar.bz2 + + zlib-devel + tiff-devel + gtk2-devel + expat-devel + libSM-devel + libpng-devel + mesa-glu-devel + webkit-gtk2-devel + libjpeg-turbo-devel + gst-plugins-base-devel + + + make-abicheck-non-fatal.patch + + desktop/toolkit/wxGTK/pspec.xml + + + wxGTK + + gtk2 + mesa + tiff + zlib + cairo + expat + glib2 + pango + libSM + libX11 + libgcc + libpng + gstreamer + gdk-pixbuf + libXxf86vm + webkit-gtk2 + libjpeg-turbo + gst-plugins-base + + + /usr/lib/ + /usr/bin + /usr/share/doc/ + /usr/share/aclocal/ + /usr/share/bakefile/ + /usr/lib/wx/config + /usr/share/locale/ + + + + wxGTK-devel + wxGTK-devel is the development files for wxGTK + wxGTK araç seti için geliştirme dosyaları + + wxGTK + + + /usr/include + + - 2015-11-22 - 24.5 - Release bump. - Ilker Manap - ilkermanap@gmail.com + 2015-08-29 + 3.0.2 + Version bump, fix install. + Osman Erkan + osman.erkan@pisilinux.org - 2014-05-24 - 24.1 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org + 2015-01-05 + 2.8.12 + use symlink not rename. + Ertuğrul Erata + ertugrulerata@gmail.com - 2014-01-29 - 24.3 - Version bump - Osman Erkan - osman.erkan@pisilinux.org + 2014-06-18 + 2.8.12 + Rebuild. + Aydın Demirel + aydin.demirel@pisilinux.org - 2013-08-23 - 24.2 + 2014-05-28 + 2.8.12 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-17 + 2.8.12 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2011-05-06 + 2.8.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + qtcreator + http://qt-project.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2 + app:gui + programming.environment + Lightweight, cross-platform integrated development environment + Hafif, çapraz platform tümleşik geliştirme ortamı + Lightweight, cross-platform integrated development environment + Hafif, çapraz platform tümleşik geliştirme ortamı + http://download.qt.io/official_releases/qtcreator/3.5/3.5.1/qt-creator-opensource-src-3.5.1.tar.gz + + libgcc + libX11-devel + cmake + git + mesa-devel + openssh + qt5-base-devel + qt5-declarative-devel + qt5-linguist + qt5-quick1-devel + qt5-quickcontrols + qt5-svg-devel + qt5-xmlpatterns + qt5-webkit-devel + qt5-x11extras-devel + qt5-assistant-devel + qt5-designer-devel + qt5-script-devel + valgrind + llvm-clang-devel + llvm + + desktop/toolkit/qtcreator/pspec.xml + + + qtcreator + Lightweight, cross-platform integrated development environment + + libX11 + libgcc + qt5-svg + qt5-base + qt5-quick1 + qt5-script + qt5-webkit + qt5-designer + qt5-assistant + qt5-x11extras + qt5-declarative + + + /usr/bin + /usr/lib/qtcreator + /usr/share/applications/qtcreator.desktop + /usr/share/licenses + /usr/share/qtcreator + /usr/share/doc + /usr/share/icons + /etc + + + qtcreator.desktop + qtcreator.sh + 80-qtcreator.conf + + + + + 2015-12-30 + 3.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-06 + 3.4.2 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + newt + https://fedorahosted.org/newt/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + desktop.toolkit + A windowing toolkit for text mode + Metin tabanlı bir pencere araç seti. + newt is a windowing toolkit for text mode, which provides many widgets and stackable windows. + Newt, metin tabanlı bir pencere araç setidir. Pek çok alet ve istiflenebilir pencere sağlar. + https://fedorahosted.org/releases/n/e/newt/newt-0.52.17.tar.gz + + tcl-devel + slang-devel + popt-devel + + desktop/toolkit/newt/pspec.xml + + + newt + + tcl + slang + popt + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + newt-devel + Development files for newt + newt için geliştirme dosyaları + + newt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-07-05 + 0.52.17 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-05 + 0.52.16 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-26 + 0.52.14 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-01-30 + 0.52.14 + Build with new relaese Tcl + Erdinç Gültekin + admins@pisilinux.org + + + 2012-09-17 + 0.52.14 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + openmotif + http://www.motifzone.org/ + + PisiLinux Community + admins@pisilinux.org + + MOTIF + library + app + desktop.toolkit.motif + Open Motif implementation + Özgür Motif kitaplığı + Freely available version of the well known Motif user interface toolkit for Open Source operating systems. + Açık kaynak kodlu işletim sistemleri için yaygın olarak tanına Motif kullanıcı arabirimi araçlarının özgürce kullanılabilen sürümü. + mirrors://sourceforge/motif/motif-2.3.4-src.tgz + + libXmu-devel + libXft-devel + xbitmaps + fontconfig-devel + libXt-devel + libXext-devel + libjpeg-turbo-devel + libX11-devel + libpng-devel + + + openmotif-2.3.2-sanitise-paths.patch + 0003_fix_ftbfs_binutils-gold.patch + openmotif-uil.patch + openmotif-unaligned.patch + sentinel.patch + strcmp.patch + warn.patch + openMotif-2.3.0-no_X11R6.patch + motif-2.3.4-bindings.patch + motif-2.3.4-mwmrc_dir.patch + wmluiltok_fake_lex_main.patch + + desktop/toolkit/motif/openmotif/pspec.xml + + + openmotif + + libXmu + libXft + libXp + libSM + libICE + fontconfig + libXt + libXext + libjpeg-turbo + libX11 + libpng + + + /etc + /usr/bin + /usr/lib + /usr/share/X11/app-defaults + /usr/share/X11/bindings + /usr/share/doc + /usr/share/man + + + Mwm.defaults + + + + openmotif-devel + Development files for openmotif + openmotif için geliştirme dosyaları + + openmotif + libXft-devel + libXt-devel + libXmu-devel + libXext-devel + + + /usr/include + /usr/share/man/man3 + + + + openmotif-32bit + 32-bit shared libraries for openmotif + emul32 + emul32 + + libSM-32bit + glibc-32bit + libXt-32bit + libXp-32bit + libXmu-32bit + libpng-32bit + libX11-32bit + libICE-32bit + libXft-32bit + libXext-32bit + fontconfig-32bit + libjpeg-turbo-32bit + + + openmotif + libSM-32bit + libXt-32bit + libXp-32bit + libXmu-32bit + libpng-32bit + libX11-32bit + libICE-32bit + libXft-32bit + libXext-32bit + fontconfig-32bit + libjpeg-turbo-32bit + + + /usr/lib32 + + + + + 2013-08-17 + 2.3.4 Release bump Osman Erkan osman.erkan@pisilinux.org - 2013-04-26 - 24.2 - Dep Fixed. + 2013-06-23 + 2.3.4 + Fix dep, we have no libXp-devel pack. Osman Erkan osman.erkan@pisilinux.org - 2012-09-01 - 24.2 + 2012-11-10 + 2.3.4 First release Osman Erkan osman.erkan@pisilinux.org @@ -57986,426 +45077,2533 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - emacs-mmm-mode - http://mmm-mode.sourceforge.net/ + qscintilla2 + http://www.riverbankcomputing.co.uk/qscintilla/ - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - Multiple Major Mode module for Emacs - Emacs Çoklu Ana Kip eklentisi - MMM Mode is an emacs add-on package providing a minor mode that allows Multiple Major Modes to coexist in one buffer. - MMM (Multiple Major Mode), Emacs uygulamasının bir tamponda aynı anda birden fazla ana kip kullanılmasına imkân veren bir eklentidir. - http://skylink.dl.sourceforge.net/project/mmm-mode/mmm-mode-0.5.4.tar.gz - editor/emacs/emacs-mmm-mode/pspec.xml - - - emacs-mmm-mode - - emacs - - - /etc - /usr/share/doc - /usr/share/info - /usr/share/emacs - - - 80-mmm-mode.el - - - - - 2015-12-24 - 0.5.4 - Release bump. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 0.5.1 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-23 - 0.5.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.4.8 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - emacs-php-mode - http://php-mode.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - PHP mode for Emacs - Emacs için PHP kipi - php-mode is an add-on for Emacs to help work with PHP files more efficiently. - php-mode, kullanıcının PHP dosyalarıyla daha hızlı çalışabilmesi için bir eklentidir. - http://stable.melpa.org/packages/php-mode-1.17.0.tar - - emacs - - editor/emacs/emacs-php-mode/pspec.xml - - - emacs-php-mode - - emacs - - - /etc - /usr/share/emacs - - - 80-php-mode.el - - - - - 2015-12-05 - 1.17.0 - Release bump. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 1.5.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-23 - 1.5.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 1.5.0 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - pymacs - http://pymacs.progiciels-bpi.ca/pymacs.html - - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org GPLv2 + GPLv3 library - editor.emacs - Interface between Emacs Lisp and Python - Emacs Lisp ve Python iletişimini sağlayan bir arayüz - Pymacs is a powerful tool which, once started from Emacs, allows two-way communication between Emacs Lisp and Python. - Pymacs, Emacs ile çalıştırıldığında, Emacs Lisp ve Python arasında çift yönlü iletişime olanak tanıyan güçlü bir araçtır. - https://github.com/pinard/Pymacs/archive/v0.25.tar.gz - editor/emacs/pymacs/pspec.xml - - - pymacs - - /usr/lib - /usr/share/doc - /usr/share/emacs - /etc/emacs/site-lisp - - - 80-pymacs.el - - - - - 2015-12-24 - 0.25 - Moved to pisi-2.0. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 0.25 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-05 - 0.25 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-01 - 0.25 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - emacs-python - http://python-mode.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - editor.emacs - Emacs major mode for editing Python source code - Python kaynak kodlarını düzenlemek için emacs kipi - emacs-python makes a number of editing and debugging features available to Python programmers who use GNU Emacs or XEmacs. - Python programcıları için birçok kod düzenleme ve hata ayıklama özelliği sağlar. - https://launchpad.net/python-mode/trunk/6.2.1/+download/python-mode.el-6.2.1.tar.gz - editor/emacs/emacs-python/pspec.xml - - - emacs-python - - pymacs - emacs - - - /etc/emacs - /usr/share/emacs - - - 80-python.el - - - - - 2015-12-05 - 6.2.1 - Release bump. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 6.1.2 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-23 - 6.1.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-01-09 - 6.1.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - vim - http://www.vim.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - editor.vi - Vi IMproved, an advanced text editor - Vi Improved, gelişmiş metin editörü - Vi IMproved – klon edytora Vi - Vim, which stands for Vi IMproved, is an open-source, multiplatform text editor extended from vi. It was first released by Bram Moolenaar in 1991. Since then, numerous features have been added to Vim, many of which are helpful in editing program source code. - VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. Çok geniş bir kullanıcı kitlesi olan VIM metin düzenleyicisi yüksek oranda özelleştirilebilir bir yazılımdır. Ayrıca VIM için pek çok destekleyici betik (script) bulunmaktadır. - Edytor tekstu podobny do Vi. Ważne ulepszenia: możliwość pracy w wielu oknach, wielopoziomowa opcja ‚cofnij’, bloki, podświetlanie składni, folding i wiele innych. - https://github.com/vim/vim/archive/v7.4.909.tar.gz + desktop.toolkit + Qt port of Scintilla + QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. + Port do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. + QScintilla2 is a port to Qt4 of Neil Hodgson's Scintilla C++ editor class. + QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. + QScintilla jest portem do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. + mirrors://sourceforge/pyqt/QScintilla2/QScintilla-2.9.1/QScintilla-gpl-2.9.1.tar.gz - gpm - ctags + python-qt5-devel + python3-qt5-devel python-devel - acl-devel - gtk2-devel - libSM-devel - libXt-devel - pango-devel - libICE-devel - ruby-devel - ncurses-devel + python3-devel + python3-sip + python-sip + qt5-base-devel + qt5-designer-devel + chrpath + qt5-script-devel + qt5-xmlpatterns-devel + mesa-devel - vim-fix-xml-crash.patch - pisilinux/grub_conf.patch - pisilinux/xorg_conf.patch - vim-7.0-warning.patch - vim-7.3-interix-link.patch + configure.py.patch + libname.patch - editor/vi/vim/pspec.xml + desktop/toolkit/qscintilla2/pspec.xml - vim - app:console + qscintilla2 - gpm - ctags - perl - ruby - acl - ncurses + qt5-base + libgcc - /usr/bin/vi* - /usr/bin/rvi* - /usr/bin/ex - /usr/bin/xxd - /bin - /usr/share/vim - /usr/share/man + /usr/lib + /usr/lib/qt5/plugins /usr/share/doc - /etc/vim + /usr/share/qt5/mkspecs + /usr/share/qt5/translations - - vimrc - pisilinux/actions.vim - pisilinux/pspec.vim - pisilinux/translations.vim - plugins/taglist.vim - plugins/kde-devel-vim.vim - plugins/newpythonfile.vim - plugins/redstring.vim - - gvim - app:gui - gvim - gui + qscintilla2-python-common + Common python qscintilla bindings files shared between qscintilla2-python and qscintilla2-python3 - acl - perl - glib2 - libX11 - ncurses - gtk2 - gpm - libSM - libXt - pango - libICE - vim - ruby - gdk-pixbuf + qscintilla2 - /usr/bin/ggvi* - /usr/bin/gvi* - /usr/bin/egvi* - /usr/bin/rggvi* - /usr/bin/rgvi* - /usr/bin/gvimtutor - /usr/share/pixmaps - /usr/share/applications + /usr/share/qt5/qsci + /usr/share/sip + + + + qscintilla2-python + Python 2.x bindings for qscintilla2 + qscintilla2 için Python bağlayıcıları + + qscintilla2 + qscintilla2-python-common + qt5-base + + + /usr/lib/python2* + + + + qscintilla2-python3 + Python 3.x bindings for qscintilla2 + + python3 + qscintilla2 + qscintilla2-python-common + qt5-base + libgcc + + + /usr/lib/python3* + + + + qscintilla2-doc + HTML documentation for qscintilla2 + qscintilla2 için HTML belgeleri + + /usr/share/doc/qscintilla2/Scintilla + /usr/share/doc/qscintilla2/html + + + + qscintilla2-devel + Development files for qscintilla2 + qscintilla2 için geliştirme dosyaları + Pliki nagłówkowe dla QScintilla + + qscintilla2 + + + /usr/include/qt5/Qsci - - gvimtutor - gvim.xpm - gvim.desktop - - - 2015-11-05 - 0.7.4.909 + + 2015-10-24 + 2.9.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-27 + 2.6.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-21 + 2.6.2 + Fix runtime deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 2.6.2 + Release bump + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-11 + 2.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + qt5-translations + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Translations) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) + A cross-platform application and UI framework (Translations) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttranslations-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-linguist + + desktop/toolkit/qt5/qt5-translations/pspec.xml + + + qt5-translations + + qt5-base + + + /usr/share/qt5 + /usr/share/licenses/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-doc + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Documentation) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) + A cross-platform application and UI framework (Documentation) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) + assistant5 + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdoc-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-sql-sqlite + qt5-assistant + + desktop/toolkit/qt5/qt5-doc/pspec.xml + + + qt5-doc + + qt5-base + qt5-script + qt5-svg + qt5-xmlpatterns + qt5-assistant + qt5-declarative + + + /usr/share/licenses + /usr/share/doc/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-02 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + polkit-qt + http://www.kde.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.toolkit.qt5 + A library that allows developers to access PolicyKit API with a nice Qt-style API + A library that allows developers to access PolicyKit API with a nice Qt-style API + http://download.kde.org/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2 + + qt5-base-devel + glib2-devel + polkit-devel + mesa-devel + cmake + + + systembus-usage.patch + + desktop/toolkit/qt5/polkit-qt/pspec.xml + + + polkit-qt + + qt5-base + glib2 + polkit + libgcc + + + /usr/share/doc + /usr/lib + + + + polkit-qt-devel + + polkit-qt + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/polkit-qt5-1 + + + + + 2015-10-16 + 0.112 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-08-01 + 0.112 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-serialport + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to hardware and virtual serial ports + Donanım ve sanal seri portlara erişim sağlar + Provides access to hardware and virtual serial ports + Donanım ve sanal seri portlara erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtserialport-opensource-src-5.5.1.tar.xz + + qt5-base-devel + eudev-devel + + desktop/toolkit/qt5/qt5-serialport/pspec.xml + + + qt5-serialport + + qt5-base + eudev + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-serialport-devel + qt5-serialport için geliştirme dosyaları + + qt5-base-devel + qt5-serialport + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-svg + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for displaying the contents of SVG files + SVG dosyalarının içeriğini görüntüleme için sınıflar + Classes for displaying the contents of SVG files + SVG dosyalarının içeriğini görüntüleme için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsvg-opensource-src-5.5.1.tar.xz + + mesa-devel + qt5-base-devel + zlib-devel + + desktop/toolkit/qt5/qt5-svg/pspec.xml + + + qt5-svg + + libgcc + qt5-base + zlib + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + qt5-svg-devel + Development files for qt5-svg + qt5-svg için geliştirme dosyaları + + qt5-base-devel + qt5-svg + + + /usr/include/qt5/ + /usr/lib/pkgconfig + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-11 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-connectivity + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to Bluetooth hardware + Bluetooth donanımlarına bağlantı sağlar + Provides access to Bluetooth hardware + Bluetooth donanımlarına bağlantı sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtconnectivity-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + bluez-libs-devel + + desktop/toolkit/qt5/qt5-connectivity/pspec.xml + + + qt5-connectivity + + qt5-base + qt5-declarative + bluez-libs + libgcc + + + /usr/bin + /usr/lib + /usr/share/licenses + /usr/lib/qt5 + /usr/lib/qt5/bin/ + + + + qt5-connectivity-devel + qt5-connectivity için geliştirme dosyaları + + qt5-connectivity + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-02 + 5.4.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-webchannel + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients + HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar + Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients + HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebchannel-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-webchannel/pspec.xml + + + qt5-webchannel + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-webchannel-devel + qt5-webchannel için geliştirme dosyaları + + qt5-webchannel + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-enginio + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A Backend-as-a-Service solution to ease the backend development for connected and data-driven application + Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü + A Backend-as-a-Service solution to ease the backend development for connected and data-driven application + Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtenginio-opensource-src-5.5.1.tar.xz + + libgcc + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-enginio/pspec.xml + + + qt5-enginio + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5/ + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin/ + + + + qt5-enginio-devel + qt5-enginio için geliştirme dosyaları + + qt5-base-devel + qt5-enginio + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-x11extras + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides platform-specific APIs for X11 + X11 için platforma özgü API'ler sağlar + Provides platform-specific APIs for X11 + X11 için platforma özgü API'ler sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtx11extras-opensource-src-5.5.1.tar.xz + + qt5-base-devel + mesa-devel + + desktop/toolkit/qt5/qt5-x11extras/pspec.xml + + + qt5-x11extras + + qt5-base + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-x11extras-devel + qt5-x11extras için geliştirme dosyaları + + qt5-x11extras + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-location + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to position, satellite and area monitoring classes + Konum, uydu ve alan izleme sınıflarına erişim sağlar + Provides access to position, satellite and area monitoring classes + Konum, uydu ve alan izleme sınıflarına erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtlocation-opensource-src-5.5.1.tar.xz + + geoclue-devel + glib2-devel + mesa-devel + qt5-base-devel + qt5-webkit-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-location/pspec.xml + + + qt5-location + + qt5-base + glib2 + libgcc + geoclue + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-location-devel + qt5-location için geliştirme dosyaları + + qt5-location + qt5-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-base + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Cross platform application and UI framework + Qt5 araç takımı, sürüm 5 + Qt est une boîte à outils graphique multi-plateforme. + Cross platform application and UI development framework + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır. + Qt es un toolkit para GUI multiplataforma. + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtbase-opensource-src-5.5.1.tar.xz + + at-spi2-core-devel + cups-devel + dbus-devel + zlib-devel + glib2-devel + libpcre-devel + desktop-file-utils + fontconfig-devel + gperf + gtk2-devel + harfbuzz-devel + icon-theme-hicolor + leveldb-devel + firebird-superserver + libjpeg-turbo-devel + mariadb-lib + libxcb-devel + libXcomposite-devel + libxkbcommon-devel + libxslt + mesa-devel + libmtdev-devel + nss-devel + pciutils-devel + postgresql-server + python-devel + DirectFB-devel + sqlite-devel + unixODBC-devel + xcb-proto + xcb-util-devel + xcb-util-image-devel + xcb-util-keysyms-devel + xcb-util-wm-devel + tiff-devel + libdrm-devel + libpng-devel + eudev-devel + libSM-devel + libICE-devel + libX11-devel + libXext-devel + firebird-devel + unixODBC-devel + libXrandr-devel + libXrender-devel + libXi-devel + xcb-util-renderutil-devel + openssl-devel + freetype-devel + pulseaudio-libs-devel + + + mkspecs.patch + + desktop/toolkit/qt5/qt5-base/pspec.xml + + + qt5-base + + libpcre + libgcc + cups + dbus + gtk2 + mesa + zlib + glib2 + icu4c + libSM + libXi + pango + libICE + libX11 + libdrm + libpng + libxcb + eudev + DirectFB + openssl + freetype + harfbuzz + libmtdev + fontconfig + libXrender + xcb-util-wm + libxkbcommon + libjpeg-turbo + xcb-util-image + xcb-util-keysyms + xcb-util-renderutil + + + /usr/lib + /usr/lib/qt5/imports + /usr/lib/qt5/qml + /usr/lib/qt5/plugins + /usr/share/qt5/translations + /usr/lib/qt5/bin + /usr/bin + /usr/share/doc + /usr/lib/qt5/mkspecs + + + + qt5-base-devel + Development files for Qt 5 + Qt5 için geliştirme dosyaları + Development files for Qt 5 + + qt5-base + mesa-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/lib/*.prl + + + + qt5-sql-mysql + Qt5'in SQL sınıfları için MySQL sürücüsü + + qt5-base + libgcc + mariadb-lib + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlmysql.so + + + + qt5-sql-postgresql + Qt5'in SQL sınıfları için PostgreSQL sürücüsü + + qt5-base + libgcc + postgresql-lib + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlpsql.so + + + + qt5-sql-sqlite + Qt5'in SQL sınıfları için SQLite sürücüsü + + qt5-base + libgcc + sqlite + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlite.so + + + + qt5-sql-odbc + Qt5'in SQL sınıfları için ODBC sürücüsü + + qt5-base + libgcc + unixODBC + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlodbc.so + + + + qt5-base-32bit + 32-bit shared libraries for qt5 + emul32 + emul32 + + cups-32bit + dbus-32bit + gtk2-32bit + mesa-32bit + zlib-32bit + glib2-32bit + glibc-32bit + icu4c-32bit + pango-32bit + libX11-32bit + libdrm-32bit + libpng-32bit + sqlite-32bit + eudev-32bit + openssl-32bit + freetype-32bit + harfbuzz-32bit + libmtdev-32bit + fontconfig-32bit + libXrender-32bit + libjpeg-turbo-32bit + + + libgcc + libpcre + qt5-base-devel + cups-32bit + dbus-32bit + gtk2-32bit + mesa-32bit + zlib-32bit + glib2-32bit + glibc-32bit + icu4c-32bit + pango-32bit + libX11-32bit + libdrm-32bit + libpng-32bit + sqlite-32bit + eudev-32bit + openssl-32bit + freetype-32bit + harfbuzz-32bit + libmtdev-32bit + fontconfig-32bit + libXrender-32bit + libjpeg-turbo-32bit + + + /usr/lib32 + + + + + 2015-10-16 + 5.5.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-07-19 + 5.4.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-23 + 5.4.1 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-websockets + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides WebSocket communication compliant with RFC 6455 + RFC 6455 ile yumuşak WebSocket iletişimi sağlar + Provides WebSocket communication compliant with RFC 6455 + RFC 6455 ile yumuşak WebSocket iletişimi sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebsockets-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-websockets/pspec.xml + + + qt5-websockets + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + + + + qt5-websockets-devel + qt5-websockets için geliştirme dosyaları + + qt5-websockets + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-imageformats + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Plugins for additional image formats: TIFF, MNG, TGA, WBMP + İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP + Plugins for additional image formats: TIFF, MNG, TGA, WBMP + İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtimageformats-opensource-src-5.5.1.tar.xz + + qt5-base-devel + jasper-devel + libmng-devel + libjpeg-turbo-devel + zlib-devel + tiff-devel + webp-devel + + desktop/toolkit/qt5/qt5-imageformats/pspec.xml + + + qt5-imageformats + + qt5-base + libgcc + libmng + tiff + webp + jasper + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + + 2015-10-16 + 5.5.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-quickcontrols + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Reusable Qt Quick based UI controls to create classic desktop-style user interfaces + Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri + Reusable Qt Quick based UI controls to create classic desktop-style user interfaces + Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquickcontrols-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + mesa-devel + + desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml + + + qt5-quickcontrols + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-multimedia + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for audio, video, radio and camera functionality + Ses, video, radyo ve kamera işlevsellikleri için sınıflar + Classes for audio, video, radio and camera functionality + Ses, video, radyo ve kamera işlevsellikleri için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtmultimedia-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + pulseaudio-libs-devel + gstreamer-devel + gst-plugins-base-devel + openal-devel + mesa-devel + + desktop/toolkit/qt5/qt5-multimedia/pspec.xml + + + qt5-multimedia + + libgcc + mesa + openal + alsa-lib + qt5-base + gstreamer + pulseaudio-libs + qt5-declarative + gst-plugins-base + glib2 + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-multimedia-devel + qt5-multimedia için geliştirme dosyaları + + qt5-multimedia + qt5-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-11 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-configuration + https://github.com/hawaii-desktop/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Settings API with change notifications for Qt + Settings API with change notifications for Qt + Settings API with change notifications for Qt + Settings API with change notifications for Qt + https://github.com/hawaii-desktop/qtconfiguration/archive/v0.3.1.tar.gz + + glib2-devel + dconf-devel + qt5-declarative-devel + cmake + qt5-base-devel + + desktop/toolkit/qt5/qt5-configuration/pspec.xml + + + qt5-configuration + + libgcc + qt5-declarative + glib2 + dconf + qt5-base + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-configuration-devel + + qt5-configuration + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-10-16 + 0.3.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-11 + 0.3.0 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - - 2015-04-12 - 0.7.4.692 - Rebuild for ruby + + 2015-09-11 + 0.2.1 + First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org + + + + + qt5-accountsservice + https://github.com/hawaii-desktop/qt-accountsservice-addon + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Qt5 - AccountService addon + Qt5 - AccountService addon + https://github.com/hawaii-desktop/qtaccountsservice/archive/v0.6.0.tar.gz + + qt5-base-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/toolkit/qt5/qt5-accountsservice/pspec.xml + + + qt5-accountsservice + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-accountsservice-devel + + qt5-base + qt5-accountsservice + + + /usr/include + + + + + 2015-09-11 + 0.6.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-11 + 0.1.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-graphicaleffects + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Graphical effects for use with Qt Quick 2 + Qt Quick2 ile kullanım için grafiksel efektler + Graphical effects for use with Qt Quick 2 + Qt Quick2 ile kullanım için grafiksel efektler + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtgraphicaleffects-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-assistant + qt5-sql-sqlite + + desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml + + + qt5-graphicaleffects + + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-webkit + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for a WebKit2 based implementation and a new QML API + WebKit2 tabanlı uygulama ve yeni QML API için sınıflar + Classes for a WebKit2 based implementation and a new QML API + WebKit2 tabanlı uygulama ve yeni QML API için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebkit-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-sensors-devel + qt5-location-devel + qt5-declarative-devel + qt5-multimedia-devel + mesa-devel + libXtst-devel + gst-plugins-base-devel + libXcomposite-devel + icu4c-devel + libjpeg-turbo-devel + fontconfig-devel + glib2-devel + dbus-devel + ruby-devel + gstreamer-devel + gstreamer-next-devel + libpng-devel + libpcre-devel + eudev-devel + webp-devel + zlib-devel + libxslt-devel + libxml2-devel + libXcomposite-devel + libX11-devel + libXrender-devel + sqlite-devel + perl-Digest-MD5 + perl-Text-ParseWords + gperf + bison + flex + qt5-phonon-devel + + desktop/toolkit/qt5/qt5-webkit/pspec.xml + + + qt5-webkit + + qt5-base + mesa + webp + zlib + glib2 + icu4c + libX11 + libgcc + libpng + sqlite + libxml2 + libxslt + libXrender + qt5-sensors + libXcomposite + libjpeg-turbo + gstreamer + gst-plugins-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5/plugins + /usr/lib/qt5/ + /usr/lib/qt5/bin/ + /usr/bin + /usr/share/doc + + + + qt5-webkit-devel + qt5-webkit için geliştirme dosyaları + + qt5-webkit + qt5-base-devel + mesa-devel + webp-devel + zlib-devel + glib2-devel + icu4c-devel + libX11-devel + libpng-devel + sqlite-devel + libxml2-devel + libxslt-devel + libXrender-devel + qt5-sensors-devel + libXcomposite-devel + libjpeg-turbo-devel + gstreamer-devel + gst-plugins-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + + 2015-10-28 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-quick1 + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. + Qt4 uyumluluğu için Qt Declarative sunar + Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices. + Qt4 uyumluluğu için Qt Declarative sunar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquick1-opensource-src-5.5.1.tar.xz + + mesa-devel + qt5-base-devel + qt5-script-devel + + desktop/toolkit/qt5/qt5-quick1/pspec.xml + + + qt5-quick1 + + mesa + qt5-base + qt5-xmlpatterns + qt5-script + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-quick1-devel + Development file for qt5-quick1 + Development file for qt5-quick1 + + qt5-base-devel + qt5-script-devel + qt5-quick1 + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-script + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility + Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar + Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility + Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar. + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtscript-opensource-src-5.5.1.tar.xz + + qt5-base-devel + mesa-devel + libgcc + + desktop/toolkit/qt5/qt5-script/pspec.xml + + + qt5-script + + qt5-base + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-script-devel + qt5-script için geliştirme dosyaları + + qt5-base-devel + qt5-script + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-declarative + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for QML and JavaScript languages + QML ve JavaScript dilleri için sınıflar + Classes for QML and JavaScript languages + QML ve JavaScript dilleri için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdeclarative-opensource-src-5.5.1.tar.xz + + qt5-base-devel + libxkbcommon-devel + mesa-devel + qt5-xmlpatterns-devel + + desktop/toolkit/qt5/qt5-declarative/pspec.xml + + + qt5-declarative + + libgcc + qt5-base + mesa + qt5-xmlpatterns + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin + /usr/bin/ + + + + qt5-declarative-devel + qt5-declarative için geliştirme dosyaları + + qt5-base-devel + qt5-declarative + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-12-20 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-02 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-tools + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Development Tools, QtHelp) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). + A cross-platform application and UI framework (Development Tools, QtHelp) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttools-opensource-src-5.5.1.tar.xz + + mesa-devel + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-tools/pspec.xml + + + qt5-assistant + + libgcc + qt5-base + + + /usr/lib/qt5/bin/assistant + /usr/lib/qt5/bin/qhelpconverter + /usr/lib/qt5/bin/qhelpgenerator + /usr/bin/assistant-qt5 + /usr/bin/qhelpgenerator-qt5 + /usr/bin/qhelpconverter-qt5 + /usr/lib/cmake/Qt5Help + /usr/lib/libQt5Help* + /usr/lib/libQt5CLucene* + /usr/lib/qt5/mkspecs/modules/qt_lib_clucene_private.pri + /usr/lib/qt5/mkspecs/modules/qt_lib_help* + /usr/share/applications/assistant5.desktop + /usr/share/qt5/translations/assistant_tr.qm + /usr/share/icons/hicolor/128x128/apps/assistant.png + /usr/share/icons/hicolor/32x32/apps/assistant.png + /usr/share/pixmaps/assistant5.png + /usr/lib/qt5/bin/qcollectiongenerator + /usr/bin/qcollectiongenerator-qt5 + + + qt5-tools + + + qt5-tools + + + assistant_tr.qm + assistant.desktop + assistant.png + + + + qt5-assistant-devel + + qt5-base-devel + qt5-assistant + + + /usr/include/qt5/QtHelp + /usr/include/qt5/QtCLucene + /usr/lib/pkgconfig/Qt5Help.pc + /usr/lib/pkgconfig/Qt5CLucene.pc + + + qt5-tools-devel + + + qt5-tools-devel + + + + qt5-designer + + libgcc + qt5-base + qt5-declarative + + + /usr/lib/qt5/bin/designer + /usr/lib/qt5/bin/qtdiag + /usr/lib/qt5/bin/qtpaths + /usr/lib/qt5/bin/pixeltool + /usr/bin/designer-qt5 + /usr/bin/qtdiag-qt5 + /usr/bin/qtpaths* + /usr/bin/pixeltool-qt5 + /usr/lib/qt5/bin/qtplugininfo + /usr/bin/qtplugininfo-qt5 + /usr/lib/cmake/Qt5Designer + /usr/lib/cmake/Qt5UiTools + /usr/lib/cmake/Qt5UiPlugin + /usr/lib/qt5/plugins/designer + /usr/share/applications/designer5.desktop + /usr/share/qt5/translations/designer_tr.qm + /usr/share/icons/hicolor/128x128/apps/QtProject-designer.png + /usr/share/pixmaps/designer5.png + /usr/lib/libQt5Designer* + /usr/lib/libQt5UiTools* + /usr/lib/qt5/mkspecs/modules/qt_lib_designer* + /usr/lib/qt5/mkspecs/modules/qt_lib_uitools* + /usr/lib/qt5/mkspecs/modules/qt_lib_uiplugin.pri + + + qt5-tools + + + qt5-tools + + + designer.desktop + designer_tr.qm + designer.png + + + + qt5-designer-devel + + qt5-base-devel + qt5-designer + + + /usr/include/qt5/QtDesigner* + /usr/include/qt5/QtUiTools + /usr/include/qt5/QtUiPlugin + /usr/lib/pkgconfig/Qt5Designer* + /usr/lib/pkgconfig/Qt5UiTools.pc + + + qt5-tools-devel + + + qt5-tools-devel + + + + qt5-linguist + + libgcc + qt5-base + + + /usr/lib/qt5/bin/linguist + /usr/lib/qt5/bin/lconvert + /usr/lib/qt5/bin/lrelease + /usr/lib/qt5/bin/lupdate + /usr/bin/lrelease-qt5 + /usr/bin/linguist-qt5 + /usr/bin/lconvert-qt5 + /usr/bin/lupdate-qt5 + /usr/lib/cmake/Qt5LinguistTools + /usr/share/applications/linguist5.desktop + /usr/share/icons/hicolor/128x128/apps/linguist.png + /usr/share/icons/hicolor/16x16/apps/linguist.png + /usr/share/icons/hicolor/32x32/apps/linguist.png + /usr/share/icons/hicolor/48x48/apps/linguist.png + /usr/share/icons/hicolor/64x64/apps/linguist.png + /usr/share/pixmaps/linguist5.png + /usr/share/qt5/phrasebooks + /usr/share/qt5/translations/linguist_tr.qm + + + qt5-tools + qt5-tools-devel + + + qt5-tools + qt5-tools-devel + + + linguist.desktop + linguist.png + linguist_tr.qm + + + + qt5-qdbusviewer + + libgcc + qt5-base + + + /usr/lib/qt5/bin/qdbusviewer + /usr/lib/qt5/bin/qdbus + /usr/bin/qdbusviewer-qt5 + /usr/bin/qdbus-qt5 + /usr/bin/qdbus + /usr/share/applications/qdbusviewer5.desktop + /usr/share/icons/hicolor/128x128/apps/qdbusviewer.png + /usr/share/icons/hicolor/32x32/apps/qdbusviewer.png + /usr/share/pixmaps/qdbusviewer5.png + + + qt5-tools + qt5-tools-devel + + + qt5-tools + qt5-tools-devel + + + qdbusviewer.desktop + assistant.png + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-sensors + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to sensor hardware and motion gesture recognition + Donanım ve hareket algılama sensörüne erişim sağlar + Provides access to sensor hardware and motion gesture recognition + Donanım ve hareket algılama sensörüne erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsensors-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-sensors/pspec.xml + + + qt5-sensors + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-sensors-devel + qt5-sensors için geliştirme dosyaları + + qt5-sensors + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-xmlpatterns + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Support for XPath, XQuery, XSLT and XML schema validation + XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar + Support for XPath, XQuery, XSLT and XML schema validation + XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtxmlpatterns-opensource-src-5.5.1.tar.xz + + qt5-base-devel + + desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml + + + qt5-xmlpatterns + + qt5-base + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-xmlpatterns-devel + qt5-xmlpatterns için geliştirme dosyaları + + qt5-xmlpatterns + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-gstreamer + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.toolkit.qt5 + Qt5 bindings for GStreamer + QtGStreamer is a set of libraries providing C++ bindings for GStreamer with a Qt-style API, plus some helper classes and elements for integrating GStreamer better in Qt applications.The goal of this module is to allow easy use of GStreamer for applications targetting MeeGo Mobile or the KDE desktop. + http://gstreamer.freedesktop.org/src/qt-gstreamer/qt-gstreamer-1.2.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + glib2-devel + gobject-introspection-devel + cmake + boost-devel + doxygen + gst-plugins-good + gstreamer-next-devel + gst-plugins-base-next-devel + mesa-devel + + desktop/toolkit/qt5/qt5-gstreamer/pspec.xml + + + qt5-gstreamer + + qt5-base + qt5-declarative + qt5-quick1 + gstreamer-next + gst-plugins-base-next + mesa + glib2 + libgcc + + + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + qt5-gstreamer-devel + Development files for qt5-gstreamer + + qt5-gstreamer + glib2-devel + qt5-base-devel + gstreamer-next-devel + qt5-declarative-devel + gst-plugins-base-next-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-10-11 + 1.2.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + fltk + http://www.fltk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit + FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit + FLTK, platformlar arası C++ kullanıcı arayüzü için bir araç takımı + FLTK fournit les fonctionnalités IHM sans fioritures et supporte les graphiques 3D via OpenGL et son émulation GLUT intégrée. FLTK est conçue pour être petite et suffisamment modulaire pour être associée statiquement, tout en restant parfaitement utilisable en tant que librairie partagée. FLTK inclus également un excellent constructeur d'IHM appelé FLUID pouvant être utilisé pour créer des applications en quelques minutes. + FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes. + FLTK sistemi yormadan modern bir arayüzün işlevselliğini sağlar. OpenGL ve kendi içinde bulunan GLUT emülasyonu sayesinde 3B görüntü de sağlayabilir. FLTK statik kitaplık olabilecek kadar küçük ve modülerdir, fakat paylaşılmış kitaplık olarak da çalışabilir. Ayrıca FLUID adlı grafik arayüz tasarım aracı sayesinde çok kısa sürede FLTK uygulamaları geliştirilebilir. + FLTK provee una funcionalidad de un GUI moderno sin demasiado complejidad y soporta gráficos 3D via OpenGL y su emulación GLUT incluido. FLTK fue diseñado para ser pequeño y modular para enlace estático, pero funciona bien como librería compartida. FLTK también incluye un entorno de desarrollo UI llamado FLUID con el cual se puede crear aplicaciones en minutos. + ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/fltk-1.3.3-source.tar.gz + + zlib-devel + libX11-devel + libgcc + libpng-devel + mesa-devel + libXft-devel + libXext-devel + mesa-glu-devel + libXfixes-devel + libXcursor-devel + fontconfig-devel + libXinerama-devel + libjpeg-turbo-devel + + + tigervnc.patch + fltk-config-dynlibs.patch + + desktop/toolkit/fltk/pspec.xml + + + fltk + + zlib + libX11 + libgcc + libpng + mesa + libXft + libXext + mesa-glu + libXfixes + libXcursor + fontconfig + libXinerama + libjpeg-turbo + + + /usr/lib + /usr/share/doc + + + + fltk-devel + Development files and utilities for FLTK + FLTK için geliştirme dosyaları ve yardımcı uygulamalar + app:console + app:gui + + fltk + libX11 + libgcc + libpng + + + /etc/env.d + /usr/share/man + /usr/bin + /usr/include + /usr/share/icons + /usr/share/mimelnk + /usr/share/doc/*/html + /usr/share/applications + + + 99fltk + + + - 2014-09-28 - 0.7.4.461 - Update official patches to current 461. - Serdar Soytetir - kaptan@pisilinux.org + 2015-07-24 + 1.3.3 + emul32bit build disabled. + Ertuğrul Erata + ertugrulerata@gmail.com - 2014-05-27 - 0.7.4.307 + 2015-04-26 + 1.3.3 Version bump. - Osman Erkan - osman.erkan@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2014-02-17 - 0.7.3.843 - Rebuild. + 2014-05-26 + 1.3.2 + Rebuild for gcc 4.9 Osman Erkan osman.erkan@pisilinux.org - 2013-07-28 - 7.3.843 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org + 2014-01-29 + 1.3.2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org - 2013-07-28 - 7.3.843 - Fix gvim desps. - Osman Erkan - osman.erkan@pisilinux.org + 2013-11-03 + 1.3.2 + Version bump. + Burak Fazıl Ertürk + burakerturk@pisilinux.org - 2013-03-03 - 7.3.843 - Release no bump for ruby 2.0 - Osman Erkan - osman.erkan@pisilinux.org + 2013-08-26 + 1.3.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org - 2013-01-06 - 7.3.762 + 2012-11-11 + 1.3.0 First release Osman Erkan osman.erkan@pisilinux.org @@ -58414,151 +47612,34879 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - bluefish - http://bluefish.openoffice.nl/index.html + kcalc + http://kde.org/applications/utilities/kcalc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A scientific calculator + Bir bilimsel hesap makinesi + KCalc is a calculator which offers many more mathematical functions than meet the eye on a first glance. + KCalc, pek çok matematik fonksiyonu barındıran bir hesap makinesi uygulamasıdır. + kcalc + mirrors://kde/stable/applications/15.12.0/src/kcalc-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + gmp-devel + cmake + kconfig-devel + kconfigwidgets-devel + kguiaddons-devel + ki18n-devel + kinit-devel + knotifications-devel + kxmlgui-devel + mesa-devel + + desktop/kde/utils/kcalc/pspec.xml + + + kcalc + + qt5-base + gmp + ki18n + libgcc + kconfig + kxmlgui + kguiaddons + kcoreaddons + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kfoldersync + http://ur1.ca/hq3ve + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + system + Folder synchronization and backup tool for KDE + Smart folder comparison, It depends only on KDE Frameworks. + http://kde-apps.org/CONTENT/content-files/164092-kfoldersync-3.0.0.tar.xz + + extra-cmake-modules + gettext-devel + cmake + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kio-devel + knotifications-devel + kxmlgui-devel + qt5-base-devel + + desktop/kde/utils/kfoldersync/pspec.xml + + + kfoldersync + Folder synchronization and backup tool for KDE + + kcoreaddons + ki18n + kio + qt5-base + libgcc + kconfig + kxmlgui + kitemviews + kdbusaddons + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-12-02 + 3.0.0 + Update to stable version + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-11-05 + 3.0.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kcharselect + http://utils.kde.org/projects/kcharselect + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A character selector + Bir karakter seçici + KCharSelect is a tool to select special characters from all installed fonts and copy them into the clipboard. + KCharSelect, tüm yüklü yazı tiplerinden özel karakterleri seçmek ve bunları panoya yapıştırmak için bir araçtır. + kcharselect + mirrors://kde/stable/applications/15.12.0/src/kcharselect-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + mesa-devel + + desktop/kde/utils/kcharselect/pspec.xml + + + kcharselect + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kwalletmanager + http://kde.org/applications/system/kwalletmanager + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A wallet management tool + KWalletManager is a tool to manage the passwords on your system. By using the KDE wallet subsystem it not only allows you to keep your own secrets but also to access and manage the passwords of every application that integrates with the wallet. + kwallet + mirrors://kde/stable/applications/15.12.0/src/kwalletmanager-15.12.0.tar.xz + + qt5-base + kdoctools-devel + cmake + extra-cmake-modules + kcoreaddons-devel + kauth-devel + kwallet-devel + kservice-devel + kcmutils-devel + kdelibs4-support-devel + ki18n-devel + kxmlgui-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + mesa-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/utils/kwalletmanager/pspec.xml + + + kwalletmanager + + qt5-base + kcmutils + kdelibs4-support + kauth + ki18n + libgcc + kcodecs + kconfig + kwallet + kxmlgui + karchive + kservice + kitemviews + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/applications + /usr/share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy + /usr/share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktimer + http://kde.org/applications/utilities/ktimer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A countdown launcher + A countdown launcher + KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. + KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. + ktimer + mirrors://kde/stable/applications/15.12.0/src/ktimer-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + kwidgetsaddons-devel + kio-devel + kiconthemes-devel + kdbusaddons-devel + knotifications-devel + mesa-devel + + desktop/kde/utils/ktimer/pspec.xml + + + ktimer + + qt5-base + kio + ki18n + libgcc + kconfig + kcoreaddons + kdbusaddons + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + filelight + http://utils.kde.org/projects/filelight + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + View disk usage information + View disk usage information + Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. + Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. + filelight + mirrors://kde/stable/applications/15.12.0/src/filelight-15.12.0.tar.xz + + qt5-base-devel + qt5-script-devel + kdoctools-devel + extra-cmake-modules + kio-devel + kparts-devel + solid-devel + kxmlgui-devel + kcoreaddons-devel + ki18n-devel + mesa-devel + docbook-xsl + + desktop/kde/utils/filelight/pspec.xml + + + filelight + + qt5-base + kparts + kio + ki18n + solid + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ro + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ro + desktop.kde.l10n + Romanian KDE5 internationalization package + KDE5 Romanya yerelleştirme paketi + kde-l10n-ro is the KDE5 internationalization package that provides Romanian translations for KDE5 applications. + kde-l10n-ro, KDE uygulamalarını Romanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ro-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ro/pspec.xml + + + kde-l10n-ro + system.locale + lang-ro + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ca-valencia + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ca@valencia + desktop.kde.l10n + Southern Catalan KDE5 internationalization package + kde-l10n-ca@valencia is the KDE5 internationalization package that provides Southern Catalan translations for KDE5 applications. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca@valencia-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + gettext-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ca-valencia/pspec.xml + + + kde-l10n-ca-valencia + system.locale + lang-ca@valencia + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/ktuberling + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-fr + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:fr + desktop.kde.l10n + French KDE5 internationalization package + KDE5 Fransız yerelleştirme paketi + kde-l10n-fr is the KDE5 internationalization package that provides French translations for KDE5 applications. + kde-l10n-fr, KDE uygulamalarını Fransız yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fr-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-fr/pspec.xml + + + kde-l10n-fr + system.locale + lang-fr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kstars + /usr/share/ktuberling + + + + kde-l10n-fr-doc + French documentation files for KDE + KDE5 için Fransız belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-da + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:da + desktop.kde.l10n + Danish KDE5 internationalization package + KDE5 Danimarkalı yerelleştirme paketi + kde-l10n-da is the KDE5 internationalization package that provides Danish translations for KDE5 applications. + kde-l10n-da, KDE uygulamalarını Danimarkalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-da-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-da/pspec.xml + + + kde-l10n-da + system.locale + lang-da + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + /usr/share/man/da + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-bg + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:bg + desktop.kde.l10n + Bulgarian KDE5 internationalization package + KDE5 Bulgar yerelleştirme paketi + kde-l10n-bg is the KDE5 internationalization package that provides Bulgarian translations for KDE5 applications. + kde-l10n-br, KDE uygulamalarını Bulgar yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bg-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-bg/pspec.xml + + + kde-l10n-bg + system.locale + lang-bg + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-nl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nl + desktop.kde.l10n + Dutch KDE5 internationalization package + KDE5 Hollandaca yerelleştirme paketi + kde-l10n-nl is the KDE5 internationalization package that provides Dutch translations for KDE5 applications. + kde-l10n-nl, KDE uygulamalarını Hollandaca yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nl-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nl/pspec.xml + + + kde-l10n-nl + system.locale + lang-nl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart + /usr/share/ktuberling + + + + kde-l10n-nl-doc + Dutch documentation files for KDE + KDE5 için Hollandaca belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-km + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:km + desktop.kde.l10n + Khmer KDE5 internationalization package + KDE5 Kmer yerelleştirme paketi + kde-l10n-km is the KDE5 internationalization package that provides Khmer translations for KDE5 applications. + kde-l10n-km, KDE uygulamalarını Kmer yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-km-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-km/pspec.xml + + + kde-l10n-km + system.locale + lang-km + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-cs + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:cs + desktop.kde.l10n + Czech KDE5 internationalization package + KDE5 Çek yerelleştirme paketi + kde-l10n-cs is the KDE5 internationalization package that provides Czech translations for KDE5 applications. + kde-l10n-cs, KDE uygulamalarını Çek yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-cs-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + extra-cmake-modules + qt5-linguist + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-cs/pspec.xml + + + kde-l10n-cs + system.locale + lang-cs + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-cs-doc + Czech documentation files for KDE + KDE5 için Çek belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-nb + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nb + desktop.kde.l10n + Norwegian Bookma KDE5 internationalization package + KDE5 Norveç bookma yerelleştirme paketi + kde-l10n-nb is the KDE5 internationalization package that provides Norwegian Bookma translations for KDE5 applications. + kde-l10n-nb, KDE uygulamalarını Norveç bookma yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nb-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nb/pspec.xml + + + kde-l10n-nb + system.locale + lang-nb + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-mr + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:mr + desktop.kde.l10n + Marathi translations KDE5 internationalization package + KDE5 Marathi translations yerelleştirme paketi + kde-l10n-mr is the KDE5 internationalization package that provides Marathi translations translations for KDE5 applications. + kde-l10n-mr, KDE uygulamalarını Marathi translations yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-mr-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-mr/pspec.xml + + + kde-l10n-mr + system.locale + lang-mr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-fa + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:fa + desktop.kde.l10n + Farsi KDE5 internationalization package + KDE5 Farsça yerelleştirme paketi + kde-l10n-fa is the KDE5 internationalization package that provides Farsi translations for KDE5 applications. + kde-l10n-fa, KDE uygulamalarını Farsça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fa-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-fa/pspec.xml + + + kde-l10n-fa + system.locale + lang-fa + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-kk + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:kk + desktop.kde.l10n + Kazakh KDE5 internationalization package + KDE5 Kazak yerelleştirme paketi + kde-l10n-kk is the KDE5 internationalization package that provides Kazakh translations for KDE5 applications. + kde-l10n-kk, KDE uygulamalarını Kazak yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-kk-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-kk/pspec.xml + + + kde-l10n-kk + system.locale + lang-kk + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-kk-doc + Kazakh documentation files for KDE + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ga + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ga + desktop.kde.l10n + Irish Gaelic KDE5 internationalization package + KDE5 İrlandalı Gaelce yerelleştirme paketi + kde-l10n-ga is the KDE5 internationalization package that provides Irish Gaelic translations for KDE5 applications. + kde-l10n-ga, KDE uygulamalarını İrlandalı Gaelce yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ga-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ga/pspec.xml + + + kde-l10n-ga + system.locale + lang-ga + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-pl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pl + desktop.kde.l10n + Polish KDE5 internationalization package + KDE5 Polonyalı yerelleştirme paketi + kde-l10n-pl is the KDE5 internationalization package that provides Polish translations for KDE5 applications. + kde-l10n-pl, KDE uygulamalarını Polonyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pl-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pl/pspec.xml + + + kde-l10n-pl + system.locale + lang-pl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-pl-doc + Polish documentation files for KDE + KDE5 için Polonyalı belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-sv + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:sv + desktop.kde.l10n + Swedish KDE5 internationalization package + KDE5 İsveçli yerelleştirme paketi + kde-l10n-sv is the KDE5 internationalization package that provides Swedish translations for KDE5 applications. + kde-l10n-sv, KDE uygulamalarını İsveçli yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sv-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-sv/pspec.xml + + + kde-l10n-sv + system.locale + lang-sv + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-sv-doc + Swedish documentation files for KDE + KDE5 için İsveçli belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-bs + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:bs + desktop.kde.l10n + Bosnian KDE5 internationalization package + KDE5 Boşnakça yerelleştirme paketi + kde-l10n-bs is the KDE5 internationalization package that provides Bosnian translations for KDE5 applications. + kde-l10n-bs, KDE uygulamalarını Boşnakça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bs-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-bs/pspec.xml + + + kde-l10n-bs + system.locale + lang-bs + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-zh_TW + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:zh_TW + desktop.kde.l10n + Chinese Traditional KDE5 internationalization package + KDE5 Geleneksel Çin yerelleştirme paketi + kde-l10n-zh_TW is the KDE5 internationalization package that provides Chinese Traditional translations for KDE5 applications. + kde-l10n-zh_TW, KDE uygulamalarını Geleneksel Çin yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_TW-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-zh_TW/pspec.xml + + + kde-l10n-zh_TW + system.locale + lang-zh_TW + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-nn + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nn + desktop.kde.l10n + Norwegian Nynorsk KDE5 internationalization package + KDE5 Norveççe yerelleştirme paketi + kde-l10n-nn is the KDE5 internationalization package that provides Norwegian Nynorsk translations for KDE5 applications. + kde-l10n-nn, KDE uygulamalarını Norveççe yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nn-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nn/pspec.xml + + + kde-l10n-nn + system.locale + lang-nn + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-nn-doc + Norwegian Nynorsk documentation files for KDE + KDE5 için Norveççe belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ug + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ug + desktop.kde.l10n + Uygur KDE5 internationalization package + KDE5 Uygur yerelleştirme paketi + kde-l10n-ug is the KDE5 internationalization package that provides Uygur translations for KDE5 applications. + kde-l10n-ug, KDE uygulamalarını Uygur yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ug-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ug/pspec.xml + + + kde-l10n-ug + system.locale + lang-ug + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-sl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:sl + desktop.kde.l10n + Slovenian KDE5 internationalization package + KDE5 Sloven yerelleştirme paketi + kde-l10n-sl is the KDE5 internationalization package that provides Slovenian translations for KDE5 applications. + kde-l10n-sl, KDE uygulamalarını Sloven yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sl-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-sl/pspec.xml + + + kde-l10n-sl + system.locale + lang-sl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ru + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ru + desktop.kde.l10n + Russian KDE5 internationalization package + KDE5 Rusça yerelleştirme paketi + kde-l10n-ru is the KDE5 internationalization package that provides Russian translations for KDE5 applications. + kde-l10n-ru, KDE uygulamalarını Rusça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ru-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ru/pspec.xml + + + kde-l10n-ru + system.locale + lang-ru + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/katepart + /usr/share/ktuberling + + + + kde-l10n-ru-doc + Russian documentation files for KDE + KDE5 için Rusça belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-lv + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:lv + desktop.kde.l10n + Latvian KDE5 internationalization package + KDE5 Letonya yerelleştirme paketi + kde-l10n-lv is the KDE5 internationalization package that provides Latvian translations for KDE5 applications. + kde-l10n-lv, KDE uygulamalarını Letonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lv-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-lv/pspec.xml + + + kde-l10n-lv + system.locale + lang-lv + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-eu + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:eu + desktop.kde.l10n + Basque KDE5 internationalization package + kde-l10n-eu is the KDE5 internationalization package that provides Basque translations for KDE5 applications. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eu-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-eu/pspec.xml + + + kde-l10n-eu + system.locale + lang-eu + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-en_GB + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:en_GB + desktop.kde.l10n + British English KDE5 internationalization package + KDE5 Britanya İngilizcesi yerelleştirme paketi + kde-l10n-en_GB is the KDE5 internationalization package that provides British English translations for KDE5 applications. + kde-l10n-tr, KDE uygulamalarını Britanya İngilizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-en_GB-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-en_GB/pspec.xml + + + kde-l10n-en_GB + system.locale + lang-en_GB + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart/syntax + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-el + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:el + desktop.kde.l10n + Greek KDE5 internationalization package + KDE5 Yunan yerelleştirme paketi + kde-l10n-el is the KDE5 internationalization package that provides Greek translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını Yunan yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-el-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-el/pspec.xml + + + kde-l10n-el + system.locale + lang-el + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-el-doc + Greek documentation files for KDE + KDE5 için Yunan belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-eo + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:eo + desktop.kde.l10n + Esperanto KDE5 internationalization package + KDE5 Esperanto yerelleştirme paketi + kde-l10n-eo is the KDE5 internationalization package that provides Esperanto translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını Esperanto yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eo-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-eo/pspec.xml + + + kde-l10n-eo + system.locale + lang-eo + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-lt + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:lt + desktop.kde.l10n + Lithuanian KDE5 internationalization package + KDE5 Litvanya yerelleştirme paketi + kde-l10n-lt is the KDE5 internationalization package that provides Lithuanian translations for KDE5 applications. + kde-l10n-lt, KDE uygulamalarını Litvanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lt-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-lt/pspec.xml + + + kde-l10n-lt + system.locale + lang-lt + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-lt-doc + German documentation files for KDE + KDE5 için Litvanya belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-es + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:es + desktop.kde.l10n + Spanish KDE5 internationalization package + KDE5 İspanyolca yerelleştirme paketi + kde-l10n-es is the KDE5 internationalization package that provides Spanish translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını İspanyolca yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-es-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-es/pspec.xml + + + kde-l10n-es + system.locale + lang-es + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-es-doc + Spanish documentation files for KDE + KDE5 için İspanyolca belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-hi + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:hi + desktop.kde.l10n + Hindi KDE5 internationalization package + KDE5 Hintçe yerelleştirme paketi + kde-l10n-ga is the KDE5 internationalization package that provides Hindi translations for KDE5 applications. + kde-l10n-hi, KDE uygulamalarını Hintçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hi-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-hi/pspec.xml + + + kde-l10n-hi + system.locale + lang-hi + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ia + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ia + desktop.kde.l10n + Interlingua KDE5 internationalization package + KDE5 Interlingua yerelleştirme paketi + kde-l10n-ia is the KDE5 internationalization package that provides Interlingua translations for KDE5 applications. + kde-l10n-ia, KDE uygulamalarını Interlingua yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ia-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ia/pspec.xml + + + kde-l10n-ia + system.locale + lang-ia + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-hu + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:hu + desktop.kde.l10n + Hungarian KDE5 internationalization package + KDE5 Macar yerelleştirme paketi + kde-l10n-hu is the KDE5 internationalization package that provides Hungarian translations for KDE5 applications. + kde-l10n-hu, KDE uygulamalarını Macar yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hu-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-hu/pspec.xml + + + kde-l10n-hu + system.locale + lang-hu + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-it + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:it + desktop.kde.l10n + Italian KDE5 internationalization package + KDE5 İtalyan yerelleştirme paketi + kde-l10n-it is the KDE5 internationalization package that provides Italian translations for KDE5 applications. + kde-l10n-it, KDE uygulamalarını İtalyan yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-it-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-it/pspec.xml + + + kde-l10n-it + system.locale + lang-it + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-it-doc + Italian documentation files for KDE + KDE5 için İtalyan belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-et + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:et + desktop.kde.l10n + Estonian KDE5 internationalization package + KDE5 Estonya yerelleştirme paketi + kde-l10n-el is the KDE5 internationalization package that provides Estonian translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını Estonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-et-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-et/pspec.xml + + + kde-l10n-et + system.locale + lang-et + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-et-doc + Estonian documentation files for KDE + KDE5 için Estonya belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-tr + http://l10n.kde.org + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv2 + locale:tr + desktop.kde.l10n + Turkish KDE5 internationalization package + KDE5 Türkçe yerelleştirme paketi + kde-l10n-tr is the KDE5 internationalization package that provides Turkish translations for KDE5 applications. + kde-l10n-tr, KDE uygulamalarını Türkçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-tr-15.12.0.tar.xz + + qt5-linguist + ki18n-devel + kconfig-devel + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-tr/pspec.xml + + + kde-l10n-tr + system.locale + lang-tr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + + + + kde-l10n-tr-doc + Turkish documentation files for KDE + KDE5 için Türkçe belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-is + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:is + desktop.kde.l10n + Icelandic KDE5 internationalization package + KDE5 İzlanda'ya özgü yerelleştirme paketi + kde-l10n-is is the KDE5 internationalization package that provides Icelandic translations for KDE5 applications. + kde-l10n-is, KDE uygulamalarını İzlanda'ya özgü yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-is-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-is/pspec.xml + + + kde-l10n-is + system.locale + lang-is + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-wa + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:wa + desktop.kde.l10n + Walloon KDE5 internationalization package + KDE5 Valon yerelleştirme paketi + kde-l10n-wa is the KDE5 internationalization package that provides Walloon translations for KDE5 applications. + kde-l10n-wa, KDE uygulamalarını Valon yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-wa-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-wa/pspec.xml + + + kde-l10n-wa + system.locale + lang-wa + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-zh_CN + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:zh_CN + desktop.kde.l10n + Chinese Simplified KDE5 internationalization package + KDE5 Sadeleştirilmiş Çince yerelleştirme paketi + kde-l10n-zh_CN is the KDE5 internationalization package that provides Chinese Simplified translations for KDE5 applications. + kde-l10n-zh_CN, KDE uygulamalarını Sadeleştirilmiş Çince yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_CN-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-zh_CN/pspec.xml + + + kde-l10n-zh_CN + system.locale + lang-zh_CN + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-pa + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pa + desktop.kde.l10n + Punjabi KDE5 internationalization package + KDE5 Pencaplı yerelleştirme paketi + kde-l10n-pa is the KDE5 internationalization package that provides Punjabi translations for KDE5 applications. + kde-l10n-pa, KDE uygulamalarını Pencaplı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pa-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pa/pspec.xml + + + kde-l10n-pa + system.locale + lang-pa + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ja + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ja + desktop.kde.l10n + Japanese KDE5 internationalization package + KDE5 Japon yerelleştirme paketi + kde-l10n-ja is the KDE5 internationalization package that provides Japanese translations for KDE5 applications. + kde-l10n-ja, KDE uygulamalarını Japon yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ja-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ja/pspec.xml + + + kde-l10n-ja + system.locale + lang-ja + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-ja-doc + Japanese documentation files for KDE + KDE5 için Japon belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-pt_BR + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pt_BR + desktop.kde.l10n + Brazilian Portuguese KDE5 internationalization package + KDE5 Brezilya Portekizcesi yerelleştirme paketi + kde-l10n-pt_BR is the KDE5 internationalization package that provides Brazilian Portuguese translations for KDE5 applications. + kde-l10n-pt_BR, KDE uygulamalarını Brezilya Portekizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt_BR-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pt_BR/pspec.xml + + + kde-l10n-pt_BR + system.locale + lang-pt_BR + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-pt_BR-doc + Brazilian Portuguese documentation files for KDE + KDE5 için Brezilya Portekizcesi belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-fi + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:fi + desktop.kde.l10n + Finnish KDE5 internationalization package + KDE5 Finlandiya yerelleştirme paketi + kde-l10n-fi is the KDE5 internationalization package that provides Finnish translations for KDE5 applications. + kde-l10n-fi, KDE uygulamalarını Finlandiya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fi-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-fi/pspec.xml + + + kde-l10n-fi + system.locale + lang-fi + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ko + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ko + desktop.kde.l10n + Korean KDE5 internationalization package + KDE5 Koreli yerelleştirme paketi + kde-l10n-ko is the KDE5 internationalization package that provides Korean translations for KDE5 applications. + kde-l10n-ko, KDE uygulamalarını Koreli yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ko-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ko/pspec.xml + + + kde-l10n-ko + system.locale + lang-ko + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-id + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:id + desktop.kde.l10n + Indonesian KDE5 internationalization package + KDE5 Endonezyalı yerelleştirme paketi + kde-l10n-id is the KDE5 internationalization package that provides Indonesian translations for KDE5 applications. + kde-l10n-id, KDE uygulamalarını Endonezyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-id-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-id/pspec.xml + + + kde-l10n-id + system.locale + lang-id + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-de + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:de + desktop.kde.l10n + German KDE5 internationalization package + kde-l10n-de is the KDE5 internationalization package that provides German translations for KDE5 applications. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-de-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-de/pspec.xml + + + kde-l10n-de + system.locale + lang-de + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-de-doc + German documentation files for KDE + + /usr/share/man + /usr/share/doc + + + + + 2015-12-21 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ca + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ca + desktop.kde.l10n + Catalan KDE5 internationalization package + KDE5 Katalan yerelleştirme paketi + kde-l10n-ca is the KDE5 internationalization package that provides Catalan translations for KDE5 applications. + kde-l10n-ca, KDE uygulamalarını Katalan yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ca/pspec.xml + + + kde-l10n-ca + system.locale + lang-ca + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/ktuberling + + + + kde-l10n-ca-doc + Catalan documentation files for KDE + KDE5 için Katalan belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-05 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-he + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:he + desktop.kde.l10n + Hebrew KDE5 internationalization package + KDE5 İbranice yerelleştirme paketi + kde-l10n-he is the KDE5 internationalization package that provides Hebrew translations for KDE5 applications. + kde-l10n-he, KDE uygulamalarını İbranice yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-he-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-he/pspec.xml + + + kde-l10n-he + system.locale + lang-he + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-hr + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:hr + desktop.kde.l10n + Croatian KDE5 internationalization package + KDE5 Hırvat yerelleştirme paketi + kde-l10n-hr is the KDE5 internationalization package that provides Croatian translations for KDE5 applications. + kde-l10n-hr, KDE uygulamalarını Hırvat yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hr-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-hr/pspec.xml + + + kde-l10n-hr + system.locale + lang-hr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-sk + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:sk + desktop.kde.l10n + Slovak KDE5 internationalization package + KDE5 Slovak yerelleştirme paketi + kde-l10n-sk is the KDE5 internationalization package that provides Slovak translations for KDE5 applications. + kde-l10n-sk, KDE uygulamalarını Slovak yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sk-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-sk/pspec.xml + + + kde-l10n-sk + system.locale + lang-sk + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-pt + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pt + desktop.kde.l10n + Portuguese KDE5 internationalization package + KDE5 Portekizli yerelleştirme paketi + kde-l10n-pt is the KDE5 internationalization package that provides Portuguese translations for KDE5 applications. + kde-l10n-pt, KDE uygulamalarını Portekizli yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pt/pspec.xml + + + kde-l10n-pt + system.locale + lang-pt + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-pt-doc + Portuguese documentation files for KDE + KDE5 için Portekizli belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-nds + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nds + desktop.kde.l10n + Low Saxon KDE5 internationalization package + KDE5 Düşük Sakson yerelleştirme paketi + kde-l10n-nds is the KDE5 internationalization package that provides Low Saxon translations for KDE5 applications. + kde-l10n-nds, KDE uygulamalarını Düşük Sakson yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nds-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nds/pspec.xml + + + kde-l10n-nds + system.locale + lang-nds + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart + /usr/share/kstars + /usr/share/ktuberling + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ar + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ar + desktop.kde.l10n + Arabic KDE5 internationalization package + KDE5 Arapça yerelleştirme paketi + kde-l10n-ar is the KDE5 internationalization package that provides Arabic translations for KDE5 applications. + kde-l10n-ar, KDE uygulamalarını Arapça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ar-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + qt5-linguist + kconfig-devel + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ar/pspec.xml + + + kde-l10n-ar + system.locale + lang-ar + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-gl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:gl + desktop.kde.l10n + Galician KDE5 internationalization package + KDE5 Galiçya yerelleştirme paketi + kde-l10n-gl is the KDE5 internationalization package that provides Galician translations for KDE5 applications. + kde-l10n-gl, KDE uygulamalarını Galiçya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-gl-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-gl/pspec.xml + + + kde-l10n-gl + system.locale + lang-gl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-gl-doc + Galician documentation files for KDE + KDE5 için Galiçya belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-uk + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:uk + desktop.kde.l10n + Ukrainian KDE5 internationalization package + KDE5 Ukraynalı yerelleştirme paketi + kde-l10n-uk is the KDE5 internationalization package that provides Ukrainian translations for KDE5 applications. + kde-l10n-uk, KDE uygulamalarını Ukraynalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-uk-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-uk/pspec.xml + + + kde-l10n-uk + system.locale + lang-uk + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/ktuberling + + + + kde-l10n-uk-doc + Ukrainian documentation files for KDE + KDE5 için Ukraynalı belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + user-manager + http://www.kde.org Pisi Linux Admins admin@pisilinux.org - GPLv3 + LGPLv2 + library app:gui - programming.environment - Bluefish is a powerful editor targeted towards programmers and webdevelopers - Deneyimli web tasarımcıları ve programcıları için güçlü bir düzenleyici - Bluefish is a powerful editor targeted towards programmers and webdevelopers, with many options to write websites, scripts and programming code. Bluefish supports many programming and markup languages. - Bluefish web sayfası tasarım ve hazırlanmasında kullanılan güçlü bir düzenleyicidir. - mirrors://sourceforge/bluefish/2.2.7/bluefish-2.2.7.tar.gz + desktop.kde.plasma + KDE 5 User Manager + User Manager within KDE workspace and applications + mirrors://kde/stable/plasma/5.5.2/user-manager-5.5.2.tar.xz - enchant - glib2-devel - gtk2-devel - libxml2-devel - intltool - gettext-devel + qt5-base-devel + accountsservice-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libpwquality-devel + mesa-devel + extra-cmake-modules - editor/bluefish/pspec.xml + desktop/kde/plasma/user-manager/pspec.xml - Bluefish + user-manager - atk - desktop-file-utils - cairo - gdk-pixbuf + qt5-base + accountsservice + libgcc + kio + ki18n + kconfig + libpwquality + kcoreaddons + kiconthemes + kconfigwidgets + kdelibs4-support + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-20 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Verison bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-27 + 5.4.0 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + system-settings + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 system settings manager + System-settings is a control panel for KDE5 Plasma + mirrors://kde/stable/plasma/5.5.2/systemsettings-5.5.2.tar.xz + + qt5-base-devel + kdoctools-devel + kio-devel + kauth-devel + khtml-devel + kcmutils-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/system-settings/pspec.xml + + + system-settings + + qt5-base + kauth + libgcc + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + kcmutils + kconfig + kdbusaddons + khtml + ki18n + kiconthemes + kio + kitemviews + kservice + kwindowsystem + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + system-settings-devel + Development files for system-settings + + qt5-base-devel + kauth-devel + kcompletion-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kconfig-devel + kdbusaddons-devel + khtml-devel + ki18n-devel + kiconthemes + kio-devel + kitemviews-devel + kservice-devel + kwindowsystem-devel + kxmlgui-devel + system-settings + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + polkit-kde-authentication-agent-1 + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + The KDE Plasma Workspace Components + The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop. + mirrors://kde/stable/plasma/5.5.2/polkit-kde-agent-1-5.5.2.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + knotifications-devel + polkit-qt-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml + + + polkit-kde-authentication-agent-1 + + qt5-base + libgcc + kcrash + kcoreaddons + polkit-qt + ki18n + kdbusaddons + kiconthemes + kwindowsystem + knotifications + kwidgetsaddons + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-31 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + breeze-gtk + https://quickgit.kde.org/?p=breeze-gtk.git + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.plasma + Breeze widget theme for GTK 2 and 3 + Breeze widget theme for GTK 2 and 3 + http://download.kde.org/stable/plasma/5.5.2/breeze-gtk-5.5.2.tar.xz + + extra-cmake-modules + qt5-base-devel + + desktop/kde/plasma/breeze-gtk/pspec.xml + + + breeze-gtk + Breeze widget theme for GTK 2 and 3 + + libgcc + qt5-base + + + /usr/share/kconf_update + /usr/share/themes + /usr/share/doc + /usr/lib/kconf_update_bin + + + + + 2015-12-26 + 5.5.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + khelpcenter + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE Help Center + KDE help center utility to read help documentation about various KDE applications. + mirrors://kde/stable/plasma/5.5.2/khelpcenter-5.5.2.tar.xz + + qt5-base-devel + libdbusmenu-qt-devel + kinit-devel + kcmutils-devel + khtml-devel + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + kdesignerplugin + kdelibs4-support-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/khelpcenter/pspec.xml + + + khelpcenter + + qt5-base + kio + libgcc + khtml + ki18n + kparts + kcodecs + kconfig + kxmlgui + kcmutils + kservice + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-workspace-wallpapers + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + The KDE Plasma Workspace Components + The KDE Plasma Workspace Components + mirrors://kde/stable/plasma/5.5.2/plasma-workspace-wallpapers-5.5.2.tar.xz + + qt5-base + extra-cmake-modules + + desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml + + + plasma-workspace-wallpapers + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-20 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-25 + 5.3.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kde-gtk-config + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + GTK2 and GTK3 Configurator for KDE + Configuration dialog to adapt GTK+ applications appearance to your taste under KDE. + mirrors://kde/stable/plasma/5.5.2/kde-gtk-config-5.5.2.tar.xz + + qt5-base-devel + kio-devel + glib2-devel + ki18n-devel + kcoreaddons-devel + kiconthemes-devel + kwidgetsaddons-devel + kcmutils-devel + karchive-devel + kauth-devel + kconfigwidgets-devel + knewstuff-devel + gtk2-devel + gtk3-devel + at-spi2-core-devel + extra-cmake-modules + + desktop/kde/plasma/kde-gtk-config/pspec.xml + + + kde-gtk-config + + qt5-base + libgcc + glib2 + kio + ki18n + kcoreaddons + kiconthemes + kwidgetsaddons + karchive + knewstuff + kconfigwidgets + gtk2 gtk3 - pango + + + /usr/share + /etc/xdg/cgc* + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + bluedevil + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE 5 Bluetooth Stack + Integrate the Bluetooth technology within KDE workspace and applications + mirrors://kde/stable/plasma/5.5.2/bluedevil-5.5.2.tar.xz + + qt5-base-devel + qt5-declarative + kded-devel + plasma-framework-devel + bluez-qt-devel + kded-devel + kio-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + kiconthemes-devel + kconfigwidgets-devel + kwindowsystem-devel + knotifications-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/plasma/bluedevil/pspec.xml + + + bluedevil + + qt5-base + libgcc + bluez-qt + kded + kio + ki18n + kconfig + qt5-declarative + kcoreaddons + kdbusaddons + kiconthemes + kconfigwidgets + knotifications + kwindowsystem + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-23 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kmenuedit + http://www.kde.org + + Pisi Linux admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Provides the interface and basic tools for the KDE workspace + Provides the interface and basic tools for the KDE workspace + mirrors://kde/stable/plasma/5.5.2/kmenuedit-5.5.2.tar.xz + + qt5-base-devel + kdoctools-devel + kconfig-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + ki18n-devel + kiconthemes-devel + kio-devel + kxmlgui-devel + sonnet-devel + kdesignerplugin + kitemmodels-devel + kinit-devel + kunitconversion-devel + kemoticons-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kmenuedit/pspec.xml + + + kmenuedit + + qt5-base + libgcc + kconfig + kservice + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + kdbusaddons + kdelibs4-support + ki18n + kiconthemes + kio + kxmlgui + sonnet + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-15 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + khotkeys + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 hotkey daemon + KDE hotkey daemon module allows you to configure custom keyboard shortcuts and mouse gestures. + mirrors://kde/stable/plasma/5.5.2/khotkeys-5.5.2.tar.xz + + libX11-devel + qt5-base-devel + qt5-x11extras-devel + kdoctools-devel + kconfig-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + ktextwidgets-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kauth-devel + kpackage-devel + kdbusaddons-devel + kdelibs4-support-devel + kglobalaccel-devel + ki18n-devel + kio-devel + kxmlgui-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + plasma-framework-devel + plasma-workspace-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/khotkeys/pspec.xml + + + khotkeys + + qt5-base + kconfig + libgcc + libX11 + kservice + qt5-x11extras + kcompletion + kcoreaddons + ktextwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + kdbusaddons + kdelibs4-support + kglobalaccel + ki18n + kio + kxmlgui + plasma-workspace + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-15 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwin + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 window manager + KWin is the window manager of the K desktop environment. + mirrors://kde/stable/plasma/5.5.2/kwin-5.5.2.tar.xz + + kactivities-devel + kauth-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdeclarative-devel + kdecorations-devel + kdoctools-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + knewstuff-devel + knotifications-devel + kservice-devel + kwayland-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kidletime-devel + kscreenlocker-devel + libepoxy-devel + libICE-devel + libSM-devel + libX11-devel + libxcb-devel + libXcursor-devel + libXext-devel + libxkbcommon-devel + libXxf86vm-devel + mesa-devel + fontconfig-devel + freetype-devel + xcb-util-wm-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-multimedia-devel + qt5-script-devel + qt5-x11extras-devel + wayland-client + wayland-cursor + wayland-devel + xcb-util-image-devel + xcb-util-keysyms-devel + eudev-devel + libinput-devel + xcb-util-cursor-devel + qt5-multimedia-devel + qt5-multimedia + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kwin/pspec.xml + + + kwin + + kactivities + kauth + kcmutils + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kcrash + kdeclarative + kdecorations + kglobalaccel + ki18n + kiconthemes + kio + knewstuff + knotifications + kservice + kwayland + kwidgetsaddons + kwindowsystem + kxmlgui + kscreenlocker + kidletime + libepoxy + libgcc + libICE + libSM + libX11 + libxcb + libxkbcommon + mesa + plasma-framework + qt5-base + qt5-declarative + qt5-script + qt5-x11extras + wayland-cursor + wayland-client + xcb-util-image + xcb-util-keysyms + eudev + kpackage + libdrm + libinput + xcb-util-cursor + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kwin-devel + Development files for kwin + + kwin + kactivities-devel + kauth-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdeclarative-devel + kdecorations-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + knewstuff-devel + knotifications-devel + kservice-devel + kwayland-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libepoxy-devel + libICE-devel + libSM-devel + libX11-devel + libxcb-devel + libXcursor-devel + libXext-devel + libxkbcommon-devel + libXxf86vm-devel + mesa-devel + fontconfig-devel + freetype-devel + xcb-util-wm-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-script-devel + qt5-x11extras-devel + wayland-devel + xcb-util-image-devel + xcb-util-keysyms-devel + eudev-devel + libinput-devel + xcb-util-cursor-devel + qt5-multimedia-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdeplasma-addons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Additional client tools for KDE applications + Additional client tools for KDE applications + mirrors://kde/stable/plasma/5.5.2/kdeplasma-addons-5.5.2.tar.xz + + qt5-base-devel + libxcb-devel + xcb-util-image-devel + glib2-devel + scim-devel + ibus-devel + kdoctools-devel + knewstuff-devel + kemoticons-devel + kitemmodels-devel + kross-devel + kinit-devel + kunitconversion-devel + kcmutils-devel + kdesignerplugin + krunner-devel + kdelibs4-support-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/plasma/kdeplasma-addons/pspec.xml + + + kdeplasma-addons + + qt5-base + plasma-framework + libgcc + libxcb + xcb-util-image + glib2 + knewstuff + krunner + kio + ki18n + kross + sonnet + kconfig + kxmlgui + karchive + kpackage + kservice + qt5-x11extras + qt5-declarative + kcompletion + kcoreaddons + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kunitconversion + kdelibs4-support + ibus + scim-libs + xcb-util-keysyms + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libksysguard + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Task management and system monitoring library + Task management and system monitoring library + mirrors://kde/stable/plasma/5.5.2/libksysguard-5.5.2.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-webkit-devel + kdoctools-devel + libX11-devel + libXres-devel + zlib-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/plasma/libksysguard/pspec.xml + + + libksysguard + + qt5-base + libX11 + libgcc + zlib + libXres + qt5-webkit + qt5-x11extras + kwindowsystem + kconfigwidgets + kwidgetsaddons + kconfig + kauth + kcoreaddons + ki18n + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libksysguard-devel + Development files for libksysguard + + libksysguard + qt5-base-devel + libX11-devel + zlib-devel + libXres-devel + qt5-webkit-devel + qt5-x11extras-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdecorations + https://projects.kde.org/projects/kde/workspace/kdecoration + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Plugin based library to create window decorations + Plugin based library to create window decorations + mirrors://kde/stable/plasma/5.5.2/kdecoration-5.5.2.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/plasma/kdecorations/pspec.xml + + + kdecorations + + qt5-base + libgcc + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdecorations-devel + Development files for kdecorations + + qt5-base-devel + kdecorations + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + powerdevil + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE power manager module + KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings + mirrors://kde/stable/plasma/5.5.2/powerdevil-5.5.2.tar.xz + + qt5-base-devel + kdoctools-devel + kidletime-devel + libxcb-devel + eudev-devel + kdesignerplugin + kinit-devel + kunitconversion-devel + kitemmodels-devel + kemoticons-devel + docbook-xsl + plasma-workspace-devel + extra-cmake-modules + + desktop/kde/plasma/powerdevil/pspec.xml + + + powerdevil + + qt5-base + kidletime + libgcc + libxcb + eudev + plasma-workspace + kio + kauth + ki18n + solid + kconfig + kxmlgui + kservice + qt5-x11extras + libkscreen + kactivities + kcompletion + kcoreaddons + kdbusaddons + kglobalaccel + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ksshaskpass + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + ssh-add helper that uses kwallet and kpassworddialog + ssh-add helper that uses kwallet and kpassworddialog + mirrors://kde/stable/plasma/5.5.2/ksshaskpass-5.5.2.tar.xz + + qt5-base-devel + kdoctools-devel + kcoreaddons-devel + ki18n-devel + kwallet-devel + libxslt + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/ksshaskpass/pspec.xml + + + ksshaskpass + + qt5-base + libgcc + kcoreaddons + kwidgetsaddons + ki18n + kwallet + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + ksshaskpass.sh + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-18 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + oxygen + https://projects.kde.org/projects/kde/workspace/oxygen + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPL + desktop.kde.plasma + KDE Oxygen style + KDE Oxygen style + mirrors://kde/stable/plasma/5.5.2/oxygen-5.5.2.tar.xz + + kcmutils-devel + frameworkintegration-devel + kdoctools-devel + cairo-devel + libxcb-devel + gtk3-devel + kdoctools-devel + kdecorations-devel + plasma-workspace-devel + extra-cmake-modules + + desktop/kde/plasma/oxygen/pspec.xml + + + oxygen + + ki18n + libgcc + libxcb + kconfig + qt5-base + kguiaddons + kcompletion + kcoreaddons + kdecorations + kwindowsystem + qt5-x11extras + kconfigwidgets + kwidgetsaddons + frameworkintegration + kcmutils + + + /usr/bin/ + /usr/lib + /usr/share/sounds + /usr/share/icons + /usr/share/locale + /usr/share/plasma + /usr/share/kstyle + /usr/share/kservices5 + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-29 + 5.3.2 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + kgamma5 + https://projects.kde.org/kgamma5 + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Adjust your monitor's gamma settings. + Adjust your monitor's gamma settings. + mirrors://kde/stable/plasma/5.5.2/kgamma5-5.5.2.tar.xz + + qt5-base-devel + kdoctools-devel + qt5-x11extras-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libXxf86vm-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kgamma5/pspec.xml + + + kgamma5 + + qt5-base + kconfig + libgcc + libX11 + ki18n + kcoreaddons + kconfigwidgets + kdelibs4-support + libXxf86vm + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + ksysguard + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE system monitor + KDE5 system monitor daemon and service. + mirrors://kde/stable/plasma/5.5.2/ksysguard-5.5.2.tar.xz + + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + knewstuff-devel + knotifications-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libksysguard-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + lm_sensors-devel + plasma-framework-devel + qt5-base-devel + docbook-xsl + extra-cmake-modules + qt5-location-devel + qt5-webkit-devel + + desktop/kde/plasma/ksysguard/pspec.xml + + + ksysguard + + icon-theme-hicolor + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdelibs4-support + ki18n + kiconthemes + kio + kitemviews + knewstuff + knotifications + kwidgetsaddons + kwindowsystem + kxmlgui + libgcc + libksysguard + lm_sensors + qt5-base + xdg-utils + qt5-location + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-sdk + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + Applications useful for Plasma development + Applications useful for Plasma development + mirrors://kde/stable/plasma/5.5.2/plasma-sdk-5.5.2.tar.xz + + qt5-base-devel + qt5-webkit-devel + qt5-svg-devel + karchive-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdeclarative-devel + ki18n-devel + kiconthemes-devel + kio-devel + knewstuff-devel + kparts-devel + plasma-framework-devel + kservice-devel + ktexteditor-devel + kwidgetsaddons-devel + kxmlgui-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/plasma/plasma-sdk/pspec.xml + + + plasma-sdk + + qt5-base + ktexteditor + plasma-framework + kio + libgcc + ki18n + kconfig + karchive + kpackage + kservice + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kdeclarative + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + sddm-kcm + https://projects.kde.org/projects/kde/workspace/sddm-kcm + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + app:console + desktop.kde.plasma + KDE5 Config Module for SDDM + KDE5 Config Module for SDDM + mirrors://kde/stable/plasma/5.5.2/sddm-kcm-5.5.2.tar.xz + + kcoreaddons-devel + kdoctools-devel + kconfigwidgets-devel + kauth-devel + libX11-devel + kxmlgui-devel + ki18n-devel + qt5-base-devel + kio-devel + qt5-declarative-devel + qt5-x11extras-devel + kconfig-devel + mesa-devel + docutils + libXcursor-devel + xcb-util-image-devel + extra-cmake-modules + + desktop/kde/plasma/sddm-kcm/pspec.xml + + + sddm-kcm + + kcoreaddons + sddm + libgcc + libX11 + kconfigwidgets + kauth + ki18n + qt5-base + kio + libXcursor + kconfig + qt5-x11extras + qt5-declarative + + + /etc/dbus-1/system.d + /usr/share/dbus-1/system-services + /usr/share/kservices5 + /usr/share/ + /usr/share/polkit-1/actions + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5/plugins + /usr/lib/libexec/kauth + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwayland + http://www.kde.org + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Qt-style Client and Server library wrapper for the Wayland libraries + Qt-style Client and Server library wrapper for the Wayland libraries + mirrors://kde/stable/plasma/5.5.2/kwayland-5.5.2.tar.xz + + qt5-base-devel + wayland-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/kwayland/pspec.xml + + + kwayland + + libgcc + qt5-base + mesa + wayland-client + wayland-server + + + /etc/xdg + /usr/lib + /usr/share/config + /usr/share/doc + + + + kwayland-devel + + qt5-base-devel + wayland-devel + mesa-devel + kwayland + + + /usr/lib/cmake + /usr/include + /usr/lib/pkgconfig + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kde-cli-tools + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Additional client tools for KDE applications + Tools based on KDE Frameworks 5 to better interact with the system + mirrors://kde/stable/plasma/5.5.2/kde-cli-tools-5.5.2.tar.xz + + qt5-base-devel + qt5-x11extras-devel + qt5-svg-devel + libX11-devel + kdoctools-devel + kio-devel + kdesu-devel + ki18n-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + kiconthemes-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kconfig-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kde-cli-tools/pspec.xml + + + kde-cli-tools + + qt5-base + qt5-svg + libX11 + libgcc + kio + kdesu + ki18n + kservice + qt5-x11extras + kcompletion + kcoreaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + kcmutils + kconfig + kdelibs4-support + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + System.Package + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kscreen + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Provides the interface and basic tools for the KDE workspace + Provides the interface and basic tools for the KDE workspace + mirrors://kde/stable/plasma/5.5.2/kscreen-5.5.2.tar.xz + + qt5-base-devel + qt5-graphicaleffects + qt5-declarative-devel + kglobalaccel-devel + libkscreen-devel + kconfig-devel + kdoctools-devel + kxmlgui-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/kscreen/pspec.xml + + + kscreen + + qt5-base + libgcc + libkscreen + qt5-declarative + kconfig + kcoreaddons + kglobalaccel + kconfigwidgets + kwidgetsaddons + kdbusaddons + ki18n + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwallet-pam + https://projects.kde.org/kwallet-pam + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KWallet PAM integration. + KWallet PAM integration. + mirrors://kde/stable/plasma/5.5.2/kwallet-pam-5.5.2.tar.xz + + pam-devel + libgcrypt-devel + extra-cmake-modules + + desktop/kde/plasma/kwallet-pam/pspec.xml + + + kwallet-pam + + pam + libgcrypt + + + /lib + /usr/lib/security + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + breeze + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 Plasma artwork + Artwork, styles and assets for the Breeze visual style for the Plasma Desktop + mirrors://kde/stable/plasma/5.5.2/breeze-5.5.2.tar.xz + + qt5-base-devel + libxcb-devel + qt5-x11extras-devel + frameworkintegration-devel + kdecorations-devel + kcoreaddons-devel + ki18n-devel + kcmutils-devel + kwindowsystem-devel + kconfig-devel + kguiaddons-devel + plasma-framework-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + breeze-gtk + breeze-icons + + desktop/kde/plasma/breeze/pspec.xml + + + breeze-style + + qt5-base + libgcc + kconfig + kguiaddons + kcoreaddons + kconfigwidgets + kwidgetsaddons + qt5-x11extras + libxcb + frameworkintegration + kcmutils + kcoreaddons + ki18n + kwindowsystem + breeze-gtk + breeze-icons + kdecorations + + + /usr/bin + /usr/lib/kconf_update_bin + /usr/lib/qt5 + /usr/share/color-schemes + /usr/share/doc + /usr/share/icons/hicolor/scalable/apps/breeze-settings.svgz + /usr/share/kconf_update + /usr/share/kservices5 + /usr/share/kstyle + /usr/share/locale + /usr/share/plasma + /usr/share/QtCurve + + + + breeze-cursors + + breeze-style + + + /usr/share/icons/breeze_cursors + /usr/share/icons/Breeze_Snow + + + + breeze-wallpapers + + breeze-style + + + /usr/share/wallpapers/Next + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-workspace + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + The KDE5 Plasma Workspace Components + The KDE5 Plasma Workspace Components + mirrors://kde/stable/plasma/5.5.2/plasma-workspace-5.5.2.tar.xz + + baloo-devel + kactivities-devel + kde-cli-tools + kdelibs4-support-devel + kdesignerplugin + kdesu-devel + kded-devel + kdewebkit-devel + kdoctools-devel + kemoticons-devel + kio-devel + kitemmodels-devel + kjs-devel + kjsembed-devel + knotifyconfig-devel + krunner-devel + ktexteditor-devel + kunitconversion-devel + kscreenlocker-devel + kwayland-devel + kwin-devel + kxmlrpcclient-devel + libdbusmenu-qt-devel + libkscreen-devel + libksysguard-devel + libqalculate-devel + libX11-devel + libXau-devel + libxcb-devel + libXcursor-devel + libXi-devel + libXrender-devel + NetworkManager-devel + networkmanager-qt-devel + pam-devel + prison-qt5-devel + qt5-base-devel + xorg-app-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + qt5-location-devel + xcb-util-image-devel + xcb-util-keysyms-devel + xcb-util-renderutil-devel + xorg-util + zlib-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/plasma-workspace/pspec.xml + + + plasma-workspace + + baloo + cln + kactivities + kauth + kbookmarks + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kcrash + kdbusaddons + kdeclarative + kde-cli-tools + kdelibs4-support + kdesu + kdewebkit + kglobalaccel + kguiaddons + ki18n + kiconthemes + kidletime + kio + kitemviews + kjobwidgets + kjs + kjsembed + knewstuff + knotifyconfig + kpackage + knotifications + krunner + kservice + ktexteditor + ktextwidgets + kwallet + kwayland + kwidgetsaddons + kwindowsystem + kxmlgui + kxmlrpcclient + libdbusmenu-qt + libgcc + libICE + libkscreen + libksysguard + libqalculate + libSM + libX11 + libXau + libxcb + libXfixes + libXi + libXrender + networkmanager-qt + pam + prison-qt5 + plasma-framework + qt5-base + qt5-declarative + qt5-phonon + qt5-script + qt5-webkit + qt5-x11extras + qt5-location + solid + wayland-client + wayland-server + xcb-util-keysyms + xcb-util + kscreenlocker + xcb-util-image + xorg-app + zlib + + + /etc/pam.d + /etc/env.d + /etc/xdg + /usr/share + /usr/share/applications + /usr/share/locale + /usr/bin + /usr/lib/qt5/plugins + /usr/lib/qt5/qml + /usr/lib + /usr/share/doc + + + kde.pam + kde-np.pam + kde-env.sh + + + + plasma-workspace-devel + Development files for kde5 plasma-workspace + + plasma-workspace + baloo-devel + cln-devel + kactivities-devel + kauth-devel + kbookmarks-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdeclarative-devel + kde-cli-tools + kdelibs4-support-devel + kdesu-devel + kdewebkit + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kidletime-devel + kio-devel + kitemviews-devel + kjobwidgets-devel + kjs-devel + kjsembed-devel + knewstuff + knotifications-devel + knotifyconfig-devel + kpackage-devel + krunner-devel + kservice-devel + ktexteditor-devel + ktextwidgets-devel + kwallet-devel + kwayland-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kxmlrpcclient-devel + kscreenlocker-devel + libdbusmenu-qt-devel + libICE-devel + libkscreen-devel + libksysguard-devel + libqalculate-devel + libSM-devel + libX11-devel + libXau-devel + libxcb-devel + libXfixes-devel + libXi-devel + libXrender-devel + networkmanager-qt-devel + pam-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-phonon-devel + qt5-script-devel + qt5-webkit-devel + qt5-x11extras-devel + qt5-location-devel + solid-devel + wayland-devel + xcb-util-keysyms-devel + zlib-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + drkonqi + KDE crash handler + + kdewebkit + kxmlrpcclient + plasma-workspace + + + /usr/lib/libexec + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-10 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kinfocenter + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 info center + KDE5 Utility that provides information about a computer system. + mirrors://kde/stable/plasma/5.5.2/kinfocenter-5.5.2.tar.xz + + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libraw1394-devel + libX11-devel + mesa-glu-devel + pciutils-devel + plasma-framework-devel + qt5-base-devel + solid-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kwayland-devel + kdesignerplugin + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kinfocenter/pspec.xml + + + kinfocenter + + kcmutils + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + kdelibs4-support + ki18n + kiconthemes + kio + kservice + kwayland + kwidgetsaddons + kxmlgui + libgcc + libraw1394 + libX11 + mesa-glu + mesa + pciutils + qt5-base + qt5-declarative + solid + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/about-distro + + + kcm-about-distrorc + pisilinux.svg + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-11 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-nm + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Plasma applet written in QML for managing network connections + Plasma applet written in QML for managing network connections + mirrors://kde/stable/plasma/5.5.2/plasma-nm-5.5.2.tar.xz + + qt5-base-devel + libgcc + networkmanager-qt-devel + modemmanager-qt-devel + ModemManager-devel + kdelibs4-support-devel + openconnect-devel + kdoctools-devel + NetworkManager-devel + mobile-broadband-provider-info + extra-cmake-modules + qt5-quick1-devel + qt5-declarative-devel + plasma-framework-devel + kdelibs4-support-devel + kdesignerplugin + kinit-devel + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + qca2-qt5-devel + + desktop/kde/plasma/plasma-nm/pspec.xml + + + plasma-nm + + qt5-base + qca2-qt5 + libgcc + openconnect + kio + networkmanager-qt + modemmanager-qt + ki18n + solid + kconfig + kwallet + kxmlgui + kservice + kitemviews + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kscreenlocker + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Library and components for secure lock screen architecture. + Library and components for secure lock screen architecture. + mirrors://kde/stable/plasma/5.5.2/kscreenlocker-5.5.2.tar.xz + + qt5-base-devel + qt5-declarative-devel + kglobalaccel-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + kdoctools-devel + kidletime-devel + kdeclarative-devel + kcmutils-devel + kwayland-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/plasma/kscreenlocker/pspec.xml + + + kscreenlocker + + qt5-base + libgcc + ki18n + kcrash + libX11 + libxcb + kconfig + kxmlgui + kpackage + kwayland + kidletime + kcoreaddons + kdeclarative + kglobalaccel + kwindowsystem + qt5-x11extras + kconfigwidgets + knotifications + wayland-client + wayland-server + qt5-declarative + kdelibs4-support + xcb-util-keysyms + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kscreenlocker-devel + Development files for kscreenlocker + + qt5-base-devel + qt5-declarative-devel + kglobalaccel-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + kdoctools-devel + kidletime-devel + kdeclarative-devel + kcmutils-devel + kwayland-devel + plasma-framework-devel + kscreenlocker + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-10 + 5.5.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libkscreen + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 screen management library + Dynamic display management library for KDE + mirrors://kde/stable/plasma/5.5.2/libkscreen-5.5.2.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libxcb-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-keysyms-devel + libXcursor-devel + libXrandr-devel + extra-cmake-modules + cmake + + desktop/kde/plasma/libkscreen/pspec.xml + + + libkscreen + + qt5-base + libxcb + libgcc + qt5-x11extras + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + + + + libkscreen-devel + Development files for libkscreen + + libxcb-devel + qt5-base-devel + qt5-x11extras-devel + libkscreen + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwayland-integration + http://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Provides integration plugins for various KDE frameworks for the wayland windowing system + Provides integration plugins for various KDE frameworks for the wayland windowing system + mirrors://kde/stable/plasma/5.5.2/kwayland-integration-5.5.2.tar.xz + + kwayland-devel + qt5-base-devel + kwindowsystem-devel + kidletime-devel + extra-cmake-modules + + desktop/kde/plasma/kwayland-integration/pspec.xml + + + kwayland-integration + + kwayland + kidletime + kwindowsystem + libgcc + qt5-base + + + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + First Release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + sddm + https://github.com/sddm/sddm + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + QML based X11 display manager + KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings + https://github.com/sddm/sddm/releases/download/v0.13.0/sddm-0.13.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-declarative-devel + libxcb-devel + libxkbfile-devel + pam-devel + extra-cmake-modules + docutils + + + sddm-0.11.0-consolekit.patch + sddm-respect-user-flags.patch + + desktop/kde/plasma/sddm/pspec.xml + + + sddm + + qt5-base + qt5-declarative + pam + libgcc + libxcb + + + /etc + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + System.Service + System.Package + + + sddm.conf + sddm + + + + + 2015-11-18 + 0.13.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-07 + 0.12 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 0.11 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-09-20 + 0.11 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + discover + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.plasma + KDE and Plasma resources management GUI + KDE and Plasma resources management GUI + mirrors://kde/stable/plasma/5.5.2/discover-5.5.2.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel + kio-devel + kdeclarative-devel + plasma-framework-devel + knewstuff-devel + extra-cmake-modules + + desktop/kde/plasma/discover/pspec.xml + + + discover + + qt5-base + libgcc + kio + attica + kconfig + kcoreaddons + kdbusaddons + kiconthemes + kdeclarative + kconfigwidgets + knotifications + kwidgetsaddons + ki18n + kxmlgui + qt5-declarative + knewstuff + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-10 + 5.5.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmal.com + + + + + + oxygen-icons + http://www.oxygen-icons.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPL + desktop.kde.plasma + KDE Oxygen icons + "The Oxygen Icon Theme + mirrors://kde/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz + + cmake + extra-cmake-modules + + desktop/kde/plasma/oxygen-icons/pspec.xml + + + oxygen-icons + + /usr/share/icons + + + + + 2015-08-01 + 15.04.3 + First Release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + plasma-pa + https://projects.kde.org/plasma-pa + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Plasma applet for audio volume management using PulseAudio. + Plasma applet for audio volume management using PulseAudio. + mirrors://kde/stable/plasma/5.5.2/plasma-pa-5.5.2.tar.xz + + qt5-base-devel + qt5-quick1-devel + qt5-declarative-devel + kconfigwidgets-devel + kcoreaddons-devel + kdeclarative-devel + plasma-framework-devel + kdoctools-devel + glib2-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/plasma-pa/pspec.xml + + + plasma-pa + + qt5-base + kdeclarative + libgcc + ki18n + kcoreaddons + kglobalaccel + qt5-declarative + pulseaudio-libs + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + plasma-desktop + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 plasma workspace + This package contains the basic packages for a Plasma workspace. + mirrors://kde/stable/plasma/5.5.2/plasma-desktop-5.5.2.tar.xz + + qt5-base-devel + boost-devel + kdoctools-devel + kio-devel + kcmutils-devel + knewstuff-devel + kpeople-devel + kdbusaddons-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kwin-devel + libX11-devel + libXft-devel + libxkbfile-devel + kded-devel + libxcb-devel + freetype-devel + libusb-compat-devel + xorg-server-devel + xorg-input-evdev-devel + xorg-input-synaptics-devel + pulseaudio-libs-devel + fontconfig-devel + plasma-workspace-devel + system-settings-devel + xorg-app-devel + xkeyboard-config + baloo-devel + libcanberra-devel + docbook-xsl + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-odbc + kdesignerplugin + extra-cmake-modules + + desktop/kde/plasma/plasma-desktop/pspec.xml + + + plasma-desktop + + baloo + fontconfig + freetype + kactivities + karchive + kauth + kbookmarks + kcmutils + kcodecs + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + kdelibs4-support + kemoticons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemmodels + kitemviews + kjobwidgets + knewstuff + knotifications + knotifyconfig + kparts + kpeople + krunner + kservice + kwallet + kwidgetsaddons + kwindowsystem + kxmlgui + libgcc + libusb-compat + libX11 + libxcb + libXcursor + libXfixes + libXft + libXi + libxkbfile + plasma-framework + plasma-workspace + libcanberra + pulseaudio-libs + xkeyboard-config + qt5-base + qt5-declarative + qt5-phonon + qt5-svg + qt5-x11extras + solid + sonnet + qt5-sql-sqlite + system-settings + xcb-util-image + oxygen-icons + oxygen-fonts + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-31 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwrited + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 daemon listening for wall and write messages + KDE5 daemon listening for wall and write messages + mirrors://kde/stable/plasma/5.5.2/kwrited-5.5.2.tar.xz + + qt5-base-devel + ki18n-devel + kdoctools-devel + kcoreaddons-devel + knotifications-devel + kpty-devel + kdelibs4-support-devel + kdbusaddons-devel + extra-cmake-modules + + desktop/kde/plasma/kwrited/pspec.xml + + + kwrited + + qt5-base + kpty + libgcc + kcoreaddons + knotifications + kdbusaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + milou + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDedicated search application built on top of Baloo + Dedicated search application built on top of Baloo + mirrors://kde/stable/plasma/5.5.2/milou-5.5.2.tar.xz + + qt5-base-devel + qt5-declarative + kdoctools-devel + kdeclarative-devel + ki18n-devel + krunner-devel + plasma-framework-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + extra-cmake-modules + + desktop/kde/plasma/milou/pspec.xml + + + milou + + qt5-base + qt5-declarative + krunner + libgcc + kconfig + kservice + kcoreaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-mediacenter + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.plasma + A mediacenter user interface based on KDE Plasma components + A mediacenter user interface based on KDE Plasma components + mirrors://kde/stable/plasma/5.5.2/plasma-mediacenter-5.5.2.tar.xz + + qt5-base-devel + qt5-multimedia-devel + qt5-multimedia + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + kfilemetadata-devel + kdeclarative-devel + plasma-framework-devel + baloo-devel + extra-cmake-modules + + desktop/kde/plasma/plasma-mediacenter/pspec.xml + + + plasma-mediacenter + + qt5-base + baloo + libgcc + kfilemetadata + kcoreaddons + kactivities + qt5-declarative + kguiaddons + kservice + kconfig + ki18n + kio + taglib + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-22 + 5.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-18 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + qt5-phonon-backend-gstreamer + http://phonon.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + desktop.kde.phonon + GStreamer qt5-phonon backend + Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. phonon-backend-gstreamer contains the GStreamer backend for Phonon. + mirrors://kde/stable/phonon/phonon-backend-gstreamer/4.8.2/src/phonon-backend-gstreamer-4.8.2.tar.xz + + qt5-base-devel + qt5-phonon-devel + gstreamer-devel + gstreamer-next-devel + gst-plugins-base-devel + gst-plugins-base-next-devel + mesa-devel + libxml2-devel + cmake + + desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml + + + qt5-phonon-backend-gstreamer + + qt5-base + qt5-phonon + mesa + glib2 + libgcc + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/lib/qt5 + /usr/share + + + + + 2015-08-18 + 4.8.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + qt5-phonon-backend-vlc + http://gitorious.org/phonon/phonon-vlc + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.phonon + VLC Backend for qt5-phonon + phonon-backend-vlc allows Phonon (the KDE media library) to use VLC for audio and video playback. + mirrors://kde/stable/phonon/phonon-backend-vlc/0.8.2/src/phonon-backend-vlc-0.8.2.tar.xz + + qt5-base-devel + qt5-phonon-devel + pulseaudio + vlc-devel + + desktop/kde/phonon/qt5-phonon-backend-vlc/pspec.xml + + + qt5-phonon-backend-vlc + + libgcc + qt5-base + qt5-phonon + vlc-libs + + + /usr/lib + /usr/lib/qt5 + /usr/share/kde4/services + /usr/share/doc + + + + + 2015-02-23 + 0.8.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + qt5-phonon + http://phonon.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.phonon + Cross platform multimedia API for KDE4 using QT5 + Phonon was created as a solution to several problems with multimedia commonly faced by Unix desktops, especially KDE 3's outdated multimedia framework aRts. Phonon itself is not a multimedia framework, but interfaces with existing frameworks such as GStreamer or Xine via backends. + mirrors://kde/stable/phonon/4.8.3/src/phonon-4.8.3.tar.xz + + qt5-base-devel + qt5-designer-devel + qt5-quick1-devel + alsa-lib-devel + gst-plugins-base-devel + pulseaudio-libs-devel + gstreamer-devel + cmake + mesa-devel + + + qt-5.4.2.patch + + desktop/kde/phonon/qt5-phonon/pspec.xml + + + qt5-phonon + + libgcc + qt5-base + qt5-designer + qt5-quick1 + pulseaudio-libs + + + /usr/lib/libphonon* + /usr/lib/qt5 + /usr/share/dbus-1 + + + + qt5-phonon-devel + Development files for phonon-qt5 + + qt5-phonon + qt5-base-devel + qt5-designer-devel + pulseaudio-libs-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/share/phonon4qt5 + + + + + 2015-08-13 + 4.8.3 + First Release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + parley + http://edu.kde.org/applications/all/parley + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + Parley is a program to help you memorize things. + Tekrar yapmanıza yardım eden bir uygulama + Parley is a program to help you memorize things. Parley supports many language specific features but can be used for other learning tasks just as well. It uses the spaced repetition learning method, also known as flash cards. Creating new vocabulary collections with Parley is easy, but of course it is even better if you can use some of our premade files. Have a look at the KDE-Files.org page or use the "Download New Collections" feature directly in Parley. + Parley ile yeni öğrendiğiniz şeyleri belli zaman aralıklarıyla tekrar ederek uzun zamanlı hafızanızda yer etmelerini sağlayabilirsiniz. Parley, flaş kart denilen tekniği kullanır. Dil öğrenimi için özelleşmiş yetenekleri olmasına karşın diğer konularda da kullanıma uygundur. Kartları hazırlamak epey kolay olmakla beraber kde-files.org adresinden ulaşabileceğiniz hazır kart setlerini de kullanabilirsiniz. + parley + mirrors://kde/stable/applications/15.12.0/src/parley-15.12.0.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-multimedia-devel + libxslt-devel + libXrender-devel + libxml2-devel + libkeduvocdocument-devel + kdoctools-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + gettext-devel + ki18n-devel + kio-devel + knewstuff-devel + kross-devel + kcmutils-devel + kxmlgui-devel + sonnet-devel + kservice-devel + ktextwidgets-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + knotifications-devel + khtml-devel + extra-cmake-modules + + desktop/kde/edu/parley/pspec.xml + + + parley + + qt5-base + qt5-svg + qt5-multimedia + libxslt + libXrender + libxml2 + libkeduvocdocument + kdoctools + kcoreaddons + kconfig + kcrash + gettext + ki18n + kio + knewstuff + kross + kcmutils + kxmlgui + knotifications + sonnet + kservice + libgcc + ktextwidgets + kcompletion + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-17 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + khangman + http://edu.kde.org/applications/all/khangman + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + KHangMan is a game for kids based on the well-known hangman game + Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu + KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. + KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor. + khangman + mirrors://kde/stable/applications/15.12.0/src/khangman-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kcrash-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kconfigwidgets-devel + knotifications-devel + kxmlgui-devel + kwidgetsaddons-devel + kio-devel + qt5-svg-devel + qt5-linguist + qt5-declarative-devel + libkeduvocdocument-devel + extra-cmake-modules + + desktop/kde/edu/khangman/pspec.xml + + + khangman + + qt5-base + kdeclarative + knewstuff + ki18n + kwidgetsaddons + kconfig + kcoreaddons + kxmlgui + qt5-declarative + libkeduvocdocument + libgcc + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmplot + http://kde.org/applications/education/kmplot/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.education + Mathematical Function Plotter + KmPlot is a program to draw graphs, their integrals or derivatives. It supports different systems of coordinates like the Cartesian or the polar coordinate system. The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need. + http://download.kde.org/stable/applications/15.12.0/src/kmplot-15.12.0.tar.xz + + extra-cmake-modules + gettext-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kinit-devel + kunitconversion-devel + kdelibs4-support-devel + kparts-devel + kwidgetsaddons-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + qt5-base-devel + + desktop/kde/edu/kmplot/pspec.xml + + + kmplot + Mathematical Function Plotter + + kdelibs4-support + ki18n + kparts + kwidgetsaddons + qt5-base + qt5-svg + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + + + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-06 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kturtle + http://edu.kde.org/applications/all/kturtle + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An educational programming environment + Öğrenim amaçlı programlama ortamı + KTurtle is an educational programming environment that aims to make learning how to program as easily as possible. To achieve this KTurtle makes all programming tools available from the user interface. The programming language used is TurtleScript which allows its commands to be translated. + KTurtle, programlama öğrenmeyi olabildiğince kolaylaştırmak için tasarlanmış bir programlama uygulamasıdır. Bu amaçla tasarlanan arayüz tüm gerekli araçları kullanıcıya sunar. Ayrıca kullanılan programlama dili olan TurtleScript başka dillere çevrilebilen bir yapıya sahiptir. + kturtle + mirrors://kde/stable/applications/15.12.0/src/kturtle-15.12.0.tar.xz + + qt5-base-devel + qt5-svg-devel + kdoctools-devel + kdelibs4-support-devel + knewstuff-devel + extra-cmake-modules + kio-devel + kcoreaddons-devel + ktextwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kxmlgui-devel + kconfig-devel + gettext-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/edu/kturtle/pspec.xml + + + kturtle + + qt5-base + qt5-svg + ki18n + knewstuff + libgcc + kcoreaddons + ktextwidgets + kconfigwidgets + kwidgetsaddons + kxmlgui + kconfig + kdelibs4-support + + + /etc/xdg + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-17 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + klettres + http://edu.kde.org/applications/all/klettres + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An alphabet learning application + Alfabe öğrenme uygulaması + KLettres is an application specially designed to help the user to learn alphabet in a new language and then to learn to read simple syllables. The user can be a young child aged from two and a half or an adult that wants to learn the basics of a foreign language. + KLettres, kullanıcının yeni bir alfabeyi ve basit sesli sözleri öğrenmesi için geliştirilmiş bir uygulamadır. İki buçuk yaşındaki bir çocuk için yararlı olabileceği gibi, yeni bir dil öğrenen yetişkinler için de yardımcı olabilir. + klettres + mirrors://kde/stable/applications/15.12.0/src/klettres-15.12.0.tar.xz + + qt5-base-devel + qt5-svg-devel + kdoctools-devel + extra-cmake-modules + kcompletion-devel + kemoticons-devel + kitemmodels-devel + ki18n-devel + knewstuff-devel + kwidgetsaddons-devel + kconfigwidgets-devel + kcoreaddons-devel + kconfig-devel + kxmlgui-devel + qt5-phonon-devel + + desktop/kde/edu/klettres/pspec.xml + + + klettres + + qt5-base + qt5-svg + qt5-phonon + knewstuff + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + libgcc + + + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-17 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + blinken + https://www.kde.org/applications/education/blinken/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + FDL + GPL + LGPL + gui + desktop.kde.education + Blinken - Memory Enhancement Game + Blinken is based on an electronic game released in 1978, which challenges players to remember sequences of increasing length. On the face of the device, there are 4 different color buttons, each one with their own distinctive sound. + http://download.kde.org/stable/applications/15.12.0/src/blinken-15.12.0.tar.xz + + extra-cmake-modules + gettext-devel + kdbusaddons-devel + kdoctools-devel + kguiaddons-devel + ki18n-devel + kxmlgui-devel + qt5-base-devel + + desktop/kde/edu/blinken/pspec.xml + + + blinken + Blinken - Memory Enhancement Game + + kconfig + kcoreaddons + kdbusaddons + kguiaddons + ki18n + kxmlgui + libgcc + qt5-base + qt5-phonon + qt5-svg + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-06 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kdeedu-data + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.edu + Common data for KDE Edu applications + Common data for KDE Edu applications. + mirrors://kde/stable/applications/15.12.0/src/kdeedu-data-15.12.0.tar.xz + + extra-cmake-modules + + desktop/kde/edu/kdeedu-data/pspec.xml + + + kdeedu-data + + /usr/share + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kstars + http://edu.kde.org/applications/all/kstars + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + A desktop planetarium for KDE + KDE için bir masaüstü gözlemevi + KStars is a Desktop Planetarium for KDE. It provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time. The display includes up to 100 million stars, 13,000 deep-sky objects, all 8 planets, the Sun and Moon, and thousands of comets and asteroids. + KStars, dünyanın herhangi bir yerinin herhangi bir anındaki gökyüzü yıldız haritasını gösterebilen bir uygulamadır. 100 milyon kadar yıldız, 13000 derin gök cismi, 8 gezegenin tümü, Güneş, Ay ile birçok kuyruklu yıldız ve astreoidi içeren bir veritabanı vardır. + kstars + mirrors://kde/stable/applications/15.12.0/src/kstars-15.12.0.tar.xz + + qt5-base-devel + qt5-multimedia-devel + qt5-quick1-devel + qt5-svg-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + eigen3 + xplanet + cfitsio-devel + libindi-devel + kdoctools-devel + kconfig-devel + kguiaddons-devel + kwidgetsaddons-devel + knewstuff-devel + kdbusaddons-devel + gettext-devel + ki18n-devel + kinit-devel + kjobwidgets-devel + kio-devel + kwindowsystem-devel + kxmlgui-devel + kplotting-devel + ktexteditor-devel + kiconthemes-devel + pkgconfig + mesa-glu-devel + mesa-devel + wcslib-devel + zlib-devel + extra-cmake-modules + + desktop/kde/edu/kstars/pspec.xml + + + kstars + + qt5-base + qt5-svg + libindi + cfitsio + kio + kinit + knewstuff + kplotting + ktexteditor + zlib + ki18n + libgcc + kconfig + kxmlgui + kcoreaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + wcslib + xplanet + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-18 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kiten + http://edu.kde.org/applications/all/kiten + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + A Japanese reference/study tool + Japonca referans ve alıştırma uygulaması + Kiten is a Japanese reference/study tool. + Kiten, Japonca referans ve alıştırma uygulamasıdır. + kiten>kiten + mirrors://kde/stable/applications/15.12.0/src/kiten-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + karchive-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdoctools-devel + gettext-devel + ki18n-devel + khtml-devel + kxmlgui-devel + kio-devel + kparts-devel + kwidgetsaddons-devel + + desktop/kde/edu/kiten/pspec.xml + + + kiten + + qt5-base + karchive + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdoctools + gettext + ki18n + khtml + kxmlgui + kio + kparts + libgcc + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + kiten-devel + Development files for kiten + kiten için geliştirme dosyaları + + kiten + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kig + http://edu.kde.org/applications/all/kig + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An interactive geometry application + Bir etkileşimli geometri uygulaması + Kig is an application for interactive geometry. + Kig, bir etkileşimli geometri uygulamasıdır. + kig + mirrors://kde/stable/applications/15.12.0/src/kig-15.12.0.tar.xz + + qt5-base-devel + qt5-svg-devel + boost-devel + ktexteditor-devel + kdoctools-devel + kemoticons-devel + kitemmodels-devel + qt5-xmlpatterns-devel + gettext-devel + pkgconfig + extra-cmake-modules + + desktop/kde/edu/kig/pspec.xml + + + kig + + qt5-base + boost + ktexteditor + qt5-xmlpatterns + qt5-svg + ki18n + kparts + ktexteditor + kiconthemes + kconfigwidgets + karchive + kxmlgui + kitemmodels + libgcc + kservice + kcompletion + kcoreaddons + kwidgetsaddons + kconfig + + + /usr/lib + /usr/lib/qt5 + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmines + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Minesweeper like game + Mayın tarlası oyunu + KMines is the classic Minesweeper game. The idea is to uncover all the squares without blowing up any mines. When a mine is blown up, the game is over. + KMines klasik mayın tarlası oyununun bir türevidir. Oyunun amacı hiç bir mayına denk gelmemeye çalışarak kutuları açmaktır. Eğer bir mayın patlarsa oyun biter. + kmines + http://download.kde.org/stable/applications/15.12.0/src/kmines-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kmines/pspec.xml + + + kmines + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kimap + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Job-based API for interacting with IMAP servers + API for interacting with IMAP servers + mirrors://kde/stable/applications/15.12.0/src/kimap-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + kmime-devel + boost-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + cyrus-sasl-devel + kunitconversion-devel + extra-cmake-modules + + desktop/kde/application/kimap/pspec.xml + + + kimap + + qt5-base + kmime + kio + ki18n + libgcc + kcodecs + cyrus-sasl + kcoreaddons + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kimap-devel + Development files for kimap + + qt5-base-devel + kimap + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + dolphin-plugins + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.application + Extra dolphin plugins + Dolphin eklentileri. + This package contains plugins that offer integration in Dolphin with the following version control systems: + Dolphin için VCS (Version Control System) eklentileri. + mirrors://kde/stable/applications/15.12.0/src/dolphin-plugins-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + dolphin-devel + kio-devel + kdelibs4-support-devel + extra-cmake-modules + + desktop/kde/application/dolphin-plugins/pspec.xml + + + dolphin-plugins + + qt5-base + dolphin + kio + ki18n + libgcc + kconfig + kxmlgui + kservice + ktexteditor + kwidgetsaddons + kcompletion + kcoreaddons + ktextwidgets + kdelibs4-support + + + /usr/share + /usr/lib + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-12 + 15.07.90 + First Relase unstable. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdepim + http://www.kde.org + + Pisi Linux Admins + vedat@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + KDE Pim different packages with akonadi-console, kadressbook blogilo etc + Provides different Packages for KDE5 + mirrors://kde/stable/applications/15.12.0/src/kdepim-15.12.0.tar.xz + + qt5-base-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + qt5-declarative-devel + qt5-quick1-devel + qt5-phonon-devel + qt5-webkit-devel + qt5-x11extras-devel + qt5-location-devel + prison-qt5-devel + openssl-devel + kinit-devel + kross-devel + libassuan-devel + akonadi-devel + akonadi-search-devel + kdnssd-devel + grantlee-qt5-devel + kpimtextedit-devel + kmailtransport-devel + kcalutils-devel + kholidays-devel + ktnef-devel + kimap-devel + ksyndication-devel + gpgmepp-devel + akonadi-calendar-devel + libSM-devel + NetworkManager-devel + kauth-devel + kbookmarks-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcrash-devel + kdbusaddons-devel + kdesignerplugin + kdoctools-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kidentitymanagement-devel + kio-devel + kitemviews-devel + knotifications-devel + kparts-devel + kservice-devel + ktextwidgets-devel + kunitconversion-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kcmutils-devel + kdewebkit-devel + khtml-devel + ktexteditor-devel + kidentitymanagement-devel + kldap-devel + cyrus-sasl-devel + kmbox-devel + kontactinterface-devel + kalarmcal-devel + kxmlrpcclient-devel + kblog-devel + kdelibs4-support-devel + kdepimlibs-devel + kidentitymanagement-devel + gpgme-devel + libX11-devel + extra-cmake-modules + qt5-linguist + kemoticons-devel + kitemmodels-devel + knewstuff-devel + knotifyconfig-devel + libkgapi-devel + curl-devel + kdepim-runtime + + desktop/kde/application/kdepim/pspec.xml + + + kdepim + + qt5-base + qt5-phonon + qt5-webkit + qt5-x11extras + gpgme + kross + libassuan + akonadi + akonadi-search + kdnssd + grantlee-qt5 + kpimtextedit + kmailtransport + kcalutils + kholidays + ktnef + kimap + ksyndication + gpgmepp + akonadi-calendar + kauth + kbookmarks + kcompletion + kconfig + kconfigwidgets + kcrash + kdbusaddons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemviews + knotifications + kparts + kservice + ktextwidgets + kunitconversion + kwidgetsaddons + kwindowsystem + kxmlgui + kcmutils + kdewebkit + khtml + ktexteditor + kidentitymanagement + kldap + kcodecs + kwallet + cyrus-sasl + kmbox + kontactinterface + kalarmcal + kxmlrpcclient + karchive + kcalcore + kcontacts + kholidays + knewstuff + sonnet + kblog + kdepimlibs + kcoreaddons + kitemmodels + kjobwidgets + knotifyconfig + kdelibs4-support + kidentitymanagement + libgpg-error + libX11 + libgcc + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kblackbox + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Blackbox logic game + Blackbox mantık oyunu + KBlackBox is a game of hide and seek played on a grid of boxes. The computer has hidden several balls within this box. By shooting beams into the box and observing where they emerge it is possible to deduce the positions of the hidden balls. + KBlackBox yan yana dizilmiş kutularla oynanan bir saklambaç oyunudur. Bilgisayarın sakladığı topları kutuları lazerle kontrol ederek bulabilirsiniz. + kblackbox + http://download.kde.org/stable/applications/15.12.0/src/kblackbox-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kguiaddons-devel + kiconthemes-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kblackbox/pspec.xml + + + kblackbox + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + karchive + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkexiv2 + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + An Exiv2 wrapper library + Exiv2 sarmalayıcı kitaplığı + libkexiv2 is a wrapper around Exiv2 library to manipulate pictures metadata as EXIF/IPTC and XMP. + libkexiv2, EXIF/IPTC ve XMP gibi resim meta bilgilerini düzenlemek için kullanılan Exiv2 kitaplığını sarmalayan bir kitaplıktır. + mirrors://kde/stable/applications/15.12.0/src/libkexiv2-15.12.0.tar.xz + + extra-cmake-modules + cmake + exiv2-devel + qt5-base-devel + + desktop/kde/application/libkexiv2/pspec.xml + + + libkexiv2 + + qt5-base + exiv2-libs + + + /usr/lib + /usr/bin + + + + libkexiv2-devel + Development files for libkexiv2 + libkexiv2 için geliştirme dosyaları + + libkexiv2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-12-19 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-26 + 5.11.80 + First Release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-common-internals + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Common components for KDE-Telepathy + Common components for KDE-Telepathy + http://download.kde.org/stable/applications/15.12.0/src/ktp-common-internals-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + knotifications-devel + kio-devel + kwidgetsaddons-devel + kcmutils-devel + knotifyconfig-devel + ktexteditor-devel + kwallet-devel + kconfig-devel + kwindowsystem-devel + kiconthemes-devel + kpeople-devel + signon-devel + kaccounts-integration-devel + telepathy-logger-qt-devel + libaccounts-qt5-devel + telepathy-qt5-devel + libaccounts-glib-devel + libgcrypt-devel + sqlite-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + telepathy-mission-control-devel + libotr-devel + + desktop/kde/application/ktp-common-internals/pspec.xml + + + ktp-common-internals + Common components for KDE-Telepathy + + ki18n + kparts + libgcc + libotr + signon + kconfig + kpeople + kwallet + kxmlgui + kcmutils + kservice + qt5-base + libgcrypt + kcoreaddons + kiconthemes + ktexteditor + knotifyconfig + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + libaccounts-qt5 + qt5-declarative + telepathy-logger-qt + kaccounts-integration + + + /usr/bin + /usr/lib/libKTpCommonInternals.so.* + /usr/lib/libKTpModels.so.* + /usr/lib/libKTpLogger.so.* + /usr/lib/libKTpWidgets.so.* + /usr/lib/libKTpOTR.so.* + /usr/lib/ktp-proxy + /usr/lib/qt5 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/knotifications5 + /usr/share/config.kcfg + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/icons + /usr/share/katepart5 + /usr/share/doc + + + + ktp-common-internals-devel + Development files for ktp-common-internals + + ktp-common-internals + libotr-devel + + + /usr/include/KTp + /usr/lib/cmake/KTp + /usr/lib/libKTpCommonInternals.so + /usr/lib/libKTpModels.so + /usr/lib/libKTpLogger.so + /usr/lib/libKTpWidgets.so + /usr/lib/libKTpOTR.so + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ktp-contact-list + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KDE Telepathy contact list application + KDE Telepathy contact list application + http://download.kde.org/stable/applications/15.12.0/src/ktp-contact-list-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kdbusaddons-devel + kio-devel + kcmutils-devel + knotifications-devel + kwindowsystem-devel + knotifyconfig-devel + ki18n-devel + kiconthemes-devel + kxmlgui-devel + kpeople-devel + telepathy-qt5-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + + desktop/kde/application/ktp-contact-list/pspec.xml + + + ktp-contact-list + KDE Telepathy contact list application + + ki18n + libgcc + kconfig + kpeople + kxmlgui + kservice + qt5-base + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/share + /usr/share/dbus-1 + /usr/share/applications + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + signon-kwallet-extension + http://kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app + desktop.kde.application + KWallet signon extension + KWallet signon extension + http://download.kde.org/stable/applications/15.12.0/src/signon-kwallet-extension-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kwallet-devel + signon-devel + + desktop/kde/application/signon-kwallet-extension/pspec.xml + + + signon-kwallet-extension + KWallet signon extension + + libgcc + signon + kwallet + qt5-base + + + /usr/lib/signon + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-03 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ktp-kded-module + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors + Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors + http://download.kde.org/stable/applications/15.12.0/src/ktp-kded-module-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + kdbusaddons-devel + kwidgetsaddons-devel + kconfig-devel + ki18n-devel + kio-devel + knotifications-devel + kconfigwidgets-devel + kidletime-devel + kcmutils-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-kded-module/pspec.xml + + + ktp-kded-module + Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors + + kio + ki18n + libgcc + kconfig + qt5-base + kidletime + kcoreaddons + kdbusaddons + telepathy-qt5 + kconfigwidgets + knotifications + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/dbus-1 + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-23 + 15.08.3 + Fİrst Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kblog + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + A blogging library for KDE + KBlog is a library for calling functions on Blogger 1.0, MetaWeblog, MovableType and GData compatible blogs. It calls the APIs using KXmlRpcClient and Syndication. + mirrors://kde/stable/applications/15.12.0/src/kblog-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kcoreaddons-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + qt5-webkit-devel + kcalcore-devel + ksyndication-devel + kxmlrpcclient-devel + + desktop/kde/application/kblog/pspec.xml + + + kblog + + qt5-base + kcalcore + kxmlrpcclient + kio + ki18n + libgcc + kcoreaddons + ksyndication + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kblog-devel + Development files for kblog + + qt5-base-devel + kblog + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kfourinline + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Four in a row board game + Bir satırda dört tahta oyunu + KFourInLine is a board game for two players based on the Connect-Four game. + KFourInLine iki kişiyle oynanan Hedef 4 türevi bir oyundur. + kfourinline + http://download.kde.org/stable/applications/15.12.0/src/kfourinline-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kcompletion-devel + kxmlgui-devel + kdnssd-devel + kio-devel + knotifyconfig-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/application/kfourinline/pspec.xml + + + kfourinline + + ki18n + kdnssd + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcompletion + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-18 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + dragonplayer + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Multimedia player + a multimedia player where the focus is on simplicity, instead of features. + mirrors://kde/stable/applications/15.12.0/src/dragon-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + kio-devel + kparts-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/application/dragonplayer/pspec.xml + + + dragonplayer + + qt5-base + kio + ki18n + solid + libgcc + kconfig + kxmlgui + kservice + qt5-phonon + kcoreaddons + kdbusaddons + kjobwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + kparts + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 15.07.80 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ksyndication + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.application + RSS/Atom parser library + syndication is a parser library for RSS and Atom feeds. + mirrors://kde/stable/applications/15.12.0/src/syndication-15.12.0.tar.xz + + qt5-base-devel + kio-devel + kdoctools-devel + extra-cmake-modules + + desktop/kde/application/ksyndication/pspec.xml + + + ksyndication + + qt5-base + kio + kcodecs + libgcc + kcoreaddons + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ksyndication-devel + Development files for ksyndication + + qt5-base-devel + ksyndication + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-23 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-dev-scripts + https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Scripts and setting files useful during development of KDE software + Scripts and setting files useful during development of KDE software + http://download.kde.org/stable/applications/15.12.0/src/kde-dev-scripts-15.12.0.tar.xz + + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + + desktop/kde/application/kde-dev-scripts/pspec.xml + + + kde-dev-scripts + Scripts and setting files useful during development of KDE software + + qt5-base + kdoctools + kdelibs4-support + + + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + katomic + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Sokoban like logic game + Sokoban benzeri mantık oyunu + KAtomic is both fun and educational game built around molecular geometry. + KAtomic moleküler geometri hakkında hem eğlenceli hem de eğitici bir oyundur. + katomic + http://download.kde.org/stable/applications/15.12.0/src/katomic-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/katomic/pspec.xml + + + katomic + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-15 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-text-ui + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Telepathy handler for Text Chats + Telepathy handler for Text Chats + http://download.kde.org/stable/applications/15.12.0/src/ktp-text-ui-15.12.0.tar.xz + + extra-cmake-modules + karchive-devel + sonnet-devel + kwidgetsaddons-devel + kservice-devel + kemoticons-devel + kio-devel + kcmutils-devel + knotifyconfig-devel + knotifications-devel + ki18n-devel + kdewebkit-devel + kwindowsystem-devel + kxmlgui-devel + kitemviews-devel + ktextwidgets-devel + kiconthemes-devel + kdbusaddons-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + qt5-location-devel + qt5-webkit-devel + + desktop/kde/application/ktp-text-ui/pspec.xml + + + ktp-text-ui + Telepathy handler for Text Chats + + kio + ki18n + libgcc + sonnet + kconfig + kxmlgui + karchive + kcmutils + kservice + qt5-base + kdewebkit + kemoticons + kitemviews + qt5-webkit + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + knotifyconfig + kwindowsystem + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/lib + /usr/share + /usr/share/ktelepathy + /usr/share/ktp-log-viewer + /usr/share/kxmlgui5 + /usr/share/telepathy + /usr/share/dbus-1 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kdepimlibs + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.application + KDE5 PIM libraries + KDE5 PIM kitaplıkları + Contains KDE5 PIM (Personal Information Management) base libraries. + KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıkları içerir. + mirrors://kde/stable/applications/15.12.0/src/kdepimlibs-15.12.0.tar.xz + + qt5-base-devel + boost-devel + gpgme-devel + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + prison-qt5-devel + kmbox-devel + qt5-phonon-devel + akonadi-devel + libical-devel + libqjson-devel + libgpg-error-devel + libxslt-devel + openldap-client + cyrus-sasl-devel + kitemviews-devel + kio-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalcore-devel + kldap-devel + extra-cmake-modules + + desktop/kde/application/kdepimlibs/pspec.xml + + + kdepimlibs + + qt5-base + kio + ki18n + libgcc + kcodecs + kmime + kldap + kxmlgui + kcalcore + kcontacts + kconfig + libxml2 + kservice + kguiaddons + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + ktextwidgets + kconfigwidgets + kwidgetsaddons + kdelibs4-support + qt5-phonon + prison-qt5 + akonadi + cyrus-sasl + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/mkspecs/ + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/dbus-1 + /usr/share/config.kcfg + /usr/share/kf5 + /usr/share/config + /usr/share/akonadi + + + + kdepimlibs-devel + Development package for KDE5 PIM libraries + KDE5 PIM kitaplıkları için geliştirme paketi + Contains development tools and header files for KDE5 PIM (Personal Information Management) base libraries. + KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıklarla ilgili geliştirme araçları ve başlık dosyalarını içerir. + + qt5-base-devel + boost-devel + kdepimlibs + + + /usr/lib/cmake + /usr/include + /usr/lib/gpgmepp + /usr/share/kde4/apps/cmake + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-11 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-14 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-09 + 4.11.4 + Rebuild for cyrus-sasl. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-servicemenu-rootactions + http://www.kde-apps.org/content/show.php?content=48411 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Root actions servicemenu for Dolphin + Dolphin için yetkili kullanıcı eylemleri menüsü + kde-servicemenu-rootactions is an addon for KDE4 that provides a convenient way to perform several actions as root from the right-click context menu in Dolphin file manager. + kde-servicemenu-rootactions, Dolphin dosya yöneticisinin içerik menüsü üzerinden yetkili kullanıcı işlemlerinin gerçekleştirilebilmesini sağlayan bir eklentidir. + dolphin + http://kde-apps.org/CONTENT/content-files/48411-rootactions_servicemenu_2.8.1.tar.gz + desktop/kde/application/kde-servicemenu-rootactions/pspec.xml + + + kde-servicemenu-rootactions + + /usr/bin + /usr/share/kservices5 + /usr/share/doc + + + + + 2014-05-30 + 2.8.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-09 + 2.8.1 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-20 + 2.7.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdebugsettings + http://projects.kde.org/kdebugsettings + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + An application to enable/disable qCDebug + KDebug control module for KDE. It provides a graphical frontend for the +kdebug daemon, which allow enabling or disabling particular debug areas/messages. + http://download.kde.org/stable/applications/15.12.0/src/kdebugsettings-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kiconthemes-devel + kwidgetsaddons-devel + kitemviews-devel + kcompletion-devel + kio-devel + + desktop/kde/application/kdebugsettings/pspec.xml + + + kdebugsettings + An application to enable/disable qCDebug + + ki18n + libgcc + kconfig + qt5-base + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kwidgetsaddons + + + /usr/bin + /etc + /usr/share/applications + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kcron + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Graphical task scheduler + Görev zamanlayıcı arayüzü. + Kcron is a graphical frontend to the cron system, used to schedule regular tasks on a Unix system. + Kcron, cron görev zamanlayıcı altyapısının bir arayüzüdür. + kcron + http://download.kde.org/stable/applications/15.12.0/src/kcron-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kdoctools-devel + kiconthemes-devel + kio-devel + kxmlgui-devel + kiconthemes-devel + kiconthemes-devel + kiconthemes-devel + + desktop/kde/application/kcron/pspec.xml + + + kcron + + kio + ki18n + libgcc + qt5-base + kcoreaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + + + kdeadmin + + + kdeadmin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + granatier + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A Bomberman game + Bombalama macera oyunu + Granatier is a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone. + granatier, oyuncunun yüksekliği her turda azalan bir uçak içinde şehirlere hücum ettiği tek kişilik bir macera oyunudur. + granatier + mirrors://kde/stable/applications/15.12.0/src/granatier-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kwidgetsaddons-devel + ki18n-devel + kxmlgui-devel + knewstuff-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/granatier/pspec.xml + + + granatier + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + knewstuff + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kruler + http://www.kde.org/applications/graphics/kruler + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A screen ruler and color measurement tool + Ekran cetveli ve renk ölçüm aracı + KRuler is a screen ruler and color measurement tool. + KRuler, bir ekran cetveli ve renk ölçüm aracıdır. + kruler + mirrors://kde/stable/applications/15.12.0/src/kruler-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + knotifications-devel + kwindowsystem-devel + kxmlgui-devel + python-devel + docbook-xsl + + desktop/kde/application/kruler/pspec.xml + + + kruler + + qt5-base + kxmlgui + knotifications + ki18n + libgcc + libxcb + kconfig + kcoreaddons + kwindowsystem + qt5-x11extras + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + akonadi-calendar + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Akonadi calendar integration + Calendar integration for Akonadi. + mirrors://kde/stable/applications/15.12.0/src/akonadi-calendar-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kcodecs-devel + kdoctools-devel + boost-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmailtransport-devel + akonadi-devel + kdelibs4-support-devel + extra-cmake-modules + kdesignerplugin + kdepimlibs-devel + kmime-devel + cyrus-sasl-devel + kcontacts-devel + kidentitymanagement-devel + kcalcore-devel + kcalutils-devel + + desktop/kde/application/akonadi-calendar/pspec.xml + + + akonadi-calendar + + qt5-base + ki18n + kcodecs + kdelibs4-support + kio + kmime + libgcc + kconfig + kxmlgui + kcalcore + kcalutils + kcontacts + kdepimlibs + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + kjobwidgets + kconfigwidgets + kmailtransport + kwidgetsaddons + kidentitymanagement + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + akonadi-calendar-devel + Development files for akonadi-calendar + + qt5-base-devel + akonadi-calendar + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + artikulate + https://projects.kde.org/projects/kde/kdeedu/artikulate + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + LGPLv3 + FDLv1.2 + app:gui + desktop.kde.application + Improve your pronunciation by listening to native speakers + Artikulate, Improve your pronunciation by listening to native speakers. + artikulate + mirrors://kde/stable/applications/15.12.0/src/artikulate-15.12.0.tar.xz + + boost-devel + cmake + extra-cmake-modules + kdoctools-devel + ki18n + kcrash-devel + libgcc + kconfig-devel + kxmlgui-devel + qt5-base-devel + knewstuff-devel + kcoreaddons-devel + kdeclarative-devel + qt5-gstreamer-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + + desktop/kde/application/artikulate/pspec.xml + + + artikulate + + ki18n + kcrash + libgcc + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdeclarative + qt5-gstreamer + kconfigwidgets + kwidgetsaddons + qt5-declarative + qt5-xmlpatterns + + + /etc + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-25 + 15.12.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ktp-desktop-applets + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + The KDE-Telepathy Plasma desktop applets + The KDE-Telepathy Plasma desktop applets + http://download.kde.org/stable/applications/15.12.0/src/ktp-desktop-applets-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kwindowsystem-devel + plasma-framework-devel + + desktop/kde/application/ktp-desktop-applets/pspec.xml + + + ktp-desktop-applets + The KDE-Telepathy Plasma desktop applets + + libgcc + qt5-base + kwindowsystem + qt5-declarative + + + /usr/lib + /usr/share + /usr/share/plasma + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + konversation + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + A user friendly IRC client for KDE + Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform. + mirrors://kde/stable/konversation/1.6/src/konversation-1.6.tar.xz + + qt5-base-devel + qt5-phonon-devel + extra-cmake-modules + kdoctools-devel + kitemviews-devel + kbookmarks-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kemoticons-devel + ki18n-devel + kidletime-devel + knotifyconfig-devel + kio-devel + kparts-devel + solid-devel + sonnet-devel + kwallet-devel + kwidgetsaddons-devel + kglobalaccel-devel + kdbusaddons-devel + knotifications-devel + kwindowsystem-devel + kiconthemes-devel + karchive-devel + qca2-qt5-devel + python3-devel + gettext-devel + docbook-xsl + + desktop/kde/application/konversation/pspec.xml + + + konversation + + qt5-base + qca2-qt5 + kemoticons + kidletime + knotifyconfig + kparts + kio + libgcc + ki18n + sonnet + kcodecs + kconfig + kwallet + kxmlgui + karchive + kservice + kbookmarks + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + ktextwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2015-08-29 + 1.6.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ksystemlog + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + System log viewer. + Sistem kayıt görüntüleyicisi. + KSystemLog show all logs of your system, grouped by General (Default system log, Authentication, Kernel, X.org...), and optional Services (Apache, Cups, etc, ...). + Ksystemlog, sistemin bütün hata kayıtlarını (genel ve opsiyonel) görüntülemmeye yarayan bir uygulamadır. + ksystemlog + http://download.kde.org/stable/applications/15.12.0/src/ksystemlog-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kxmlgui-devel + kcoreaddons-devel + kwidgetsaddons-devel + kitemviews-devel + kiconthemes-devel + kio-devel + kconfig-devel + karchive-devel + kdoctools-devel + ki18n-devel + kcompletion-devel + ktextwidgets-devel + + desktop/kde/application/ksystemlog/pspec.xml + + + ksystemlog + + kio + ki18n + libgcc + kconfig + kxmlgui + karchive + kservice + qt5-base + kitemviews + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share/applications + /usr/share/kxmlgui5 + /usr/share/doc + + + kdeadmin + + + kdeadmin + + + + + 2015-12-19 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + khangman + http://edu.kde.org/applications/all/khangman + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KHangMan is a game for kids based on the well-known hangman game + Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu + KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. + KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor. + khangman + mirrors://kde/stable/applications/15.12.0/src/khangman-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kcrash-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kconfigwidgets-devel + knotifications-devel + kxmlgui-devel + kwidgetsaddons-devel + kio-devel + qt5-svg-devel + qt5-declarative-devel + extra-cmake-modules + mesa-devel + libkeduvocdocument-devel + + desktop/kde/application/khangman/pspec.xml + + + khangman + + qt5-base + kdeclarative + knewstuff + ki18n + kwidgetsaddons + kconfig + kcoreaddons + kxmlgui + qt5-declarative + libkeduvocdocument + libgcc + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-24 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkeduvocdocument + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.application + Common libraries for KDE Edu applications + Libraries for KDE EDU applications. + mirrors://kde/stable/applications/15.12.0/src/libkeduvocdocument-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + ki18n-devel + kio-devel + karchive-devel + mesa-devel + + desktop/kde/application/libkeduvocdocument/pspec.xml + + + libkeduvocdocument + + qt5-base + karchive + libgcc + ki18n + kio + kcoreaddons + + + /usr/lib + /usr/share/doc + + + + libkeduvocdocument-devel + Development files for libkeduvocdocument + + libkeduvocdocument + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-24 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + cantor + http://edu.kde.org/cantor + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.application + A KDE frontend to mathematical softwares + Matematiksel uygulamalar için bir KDE önyüzü + Cantor is an application that lets you use your favorite mathematical applications from within a nice KDE-integrated Worksheet Interface. It offers assistant dialogs for common tasks and allows you to share your worksheets with others. + Cantor; Sage, Maxima, R and KAlgebra gibi uygulamalara arayüz sağlayarak kullanımı kolaylaştırmayı amaçlar. Çok kullanılan işler için dialoglar sağlar ve çalışmalarınızı başkalarıyla paylaşabilmenize olanak tanır. + cantar + mirrors://kde/stable/applications/15.12.0/src/cantor-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + qt5-xmlpatterns-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + ktexteditor-devel + knewstuff-devel + kpty-devel + analitza-devel + libqalculate-devel + cln-devel + + desktop/kde/application/cantor/pspec.xml + + + cantor + + cln + kio + kpty + ki18n + kparts + libgcc + kconfig + kxmlgui + analitza + karchive + kservice + qt5-base + knewstuff + kcompletion + kcoreaddons + kiconthemes + ktexteditor + ktextwidgets + libqalculate + kconfigwidgets + kwidgetsaddons + qt5-xmlpatterns + kdelibs4-support + + + /etc + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/locale + + + + cantor-devel + Development files for cantor + cantor için geliştirme dosyaları + + cantor + + + /usr/include + /usr/share/kde5/apps/cmake + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 4.11.2 + Rebuild for icu4c. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-23 + 4.10.2 + Dep fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kio-extras + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Additional KIO-slaves for KDE5 applications + Additional KIO-slaves for KDE5 applications + mirrors://kde/stable/applications/15.12.0/src/kio-extras-15.12.0.tar.xz + + exiv2-devel + gettext-devel + karchive-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + kdnssd-devel + kdoctools-devel + kemoticons-devel + khtml-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + kitemmodels-devel + kpty-devel + kunitconversion-devel + libjpeg-turbo-devel + libmtp-devel + libssh-devel + qt5-base-devel + qt5-phonon-devel + qt5-svg-devel + samba-devel + shared-mime-info + solid-devel + openexr-devel + openslp-devel + docbook-xsl + kdesignerplugin + extra-cmake-modules + cmake + + desktop/kde/application/kio-extras/pspec.xml + + + kio-extras + + exiv2-libs + karchive + kbookmarks + kcodecs + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdelibs4-support + kdnssd + kguiaddons + khtml + ki18n + kiconthemes + kio + kparts + kpty + kservice + kxmlgui + libgcc + libjpeg-turbo + libmtp + libssh + qt5-base + qt5-phonon + qt5-svg + samba + solid + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kmailtransport + http://pim.kde.org/akonadi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.application + Mail Transport Service + Mail Transport Service + akonadi + mirrors://kde/stable/applications/15.12.0/src/kmailtransport-15.12.0.tar.xz + + qt5-base-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcmutils-devel + kmime-devel + akonadi-search-devel + akonadi-devel + cyrus-sasl-devel + extra-cmake-modules + + desktop/kde/application/kmailtransport/pspec.xml + + + kmailtransport + app:console + + qt5-base + ki18n + kio + libgcc + kmime + kconfig + kwallet + kcompletion + kdepimlibs + kcoreaddons + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/lib + /usr/lib/qt5 + /usr/share/kservices5 + /usr/share/doc/ + /usr/share/config.kcfg + + + + kmailtransport-devel + Development files for akonadi + + kmailtransport + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + krfb + http://www.kde.org/applications/system/krfb/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.application + Desktop sharing utility + Masaüstü paylaşım araçları. + KDE Desktop Sharing is a manager for easily sharing a desktop session with another system. The desktop session can be viewed or controlled remotely by any VNC or RFB client + krfb, masaüstünü uzaktaki bilgisayarlarla kolaylıkla paylaşmaya olanak sağlar. + http://download.kde.org/stable/applications/15.12.0/src/krfb-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-x11extras-devel + ki18n-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdnssd-devel + kdoctools-devel + knotifications-devel + kwallet-devel + kwidgetsaddons-devel + kxmlgui-devel + libvncserver-devel + libX11-devel + libXdamage-devel + libxcb-devel + libXext-devel + libXtst-devel + + desktop/kde/application/krfb/pspec.xml + + + krfb + + ki18n + kdnssd + libX11 + libgcc + kconfig + kwallet + kxmlgui + libXtst + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libvncserver + qt5-x11extras + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/krfb + /usr/share/kservicetypes5 + /usr/share/doc + + + kdenetwork + + + kdenetwork + + + + + 2015-12-18 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-14 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + kholidays + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + KDE library for regional holiday information + KDE library for regional holiday information + mirrors://kde/stable/applications/15.12.0/src/kholidays-15.12.0.tar.xz + + qt5-base-devel + kitemviews-devel + kdoctools-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + extra-cmake-modules + + desktop/kde/application/kholidays/pspec.xml + + + kholidays + + qt5-base + kdelibs4-support + ki18n + libgcc + kitemviews + kcompletion + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kholidays-devel + Development files for kdelibs4-support + + qt5-base-devel + kholidays + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-auth-handler + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + http://download.kde.org/stable/applications/15.12.0/src/ktp-auth-handler-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kwallet-devel + kwidgetsaddons-devel + ki18n-devel + kio-devel + kdewebkit-devel + telepathy-qt5-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + qca2-qt5-devel + libaccounts-qt5-devel + kaccounts-integration-devel + signon-devel + + desktop/kde/application/ktp-auth-handler/pspec.xml + + + ktp-auth-handler + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + + kio + ki18n + libgcc + signon + kconfig + qca2-qt5 + qt5-base + kcoreaddons + telepathy-qt5 + kwidgetsaddons + libaccounts-qt5 + ktp-common-internals + kaccounts-integration + + + /usr/lib + /usr/share/telepathy + /usr/share/dbus-1 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libksane + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + SANE library interface for KDE + KDE için SANE kitaplık arayüzü + libksane is a SANE library interface for KDE. + libksane, KDE için bir SANE kitaplık arayüzüdür. + mirrors://kde/stable/applications/15.12.0/src/libksane-15.12.0.tar.xz + + ki18n-devel + kwallet-devel + qt5-base-devel + ktextwidgets-devel + sane-backends-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/application/libksane/pspec.xml + + + libksane + + ki18n + kwallet + qt5-base + ktextwidgets + sane-backends + kwidgetsaddons + + + /usr/lib + /usr/share/icons + + + + libksane-devel + Development files for libksane + libksane için geliştirme dosyaları + + libksane + + + /usr/lib/cmake + /usr/include + /usr/lib/pkgconfig + + + + + 2015-12-19 + 15.12.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdesdk-thumbnailers + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + library + desktop.kde.application + Translation file thumbnail generators + Translation file thumbnail generators + http://download.kde.org/stable/applications/15.12.0/src/kdesdk-thumbnailers-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfig-devel + ki18n-devel + kio-devel + gettext-devel + + desktop/kde/application/kdesdk-thumbnailers/pspec.xml + + + kdesdk-thumbnailers + + kio + ki18n + libgcc + gettext + kconfig + qt5-base + kwidgetsaddons + + + /usr/share/kservices5 + /usr/share/config.kcfg + /usr/lib + /usr/share/doc + + + kdesdk + + + kdesdk + + + + + 2015-12-18 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-14 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + kaccounts-providers + https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + http://download.kde.org/stable/applications/15.12.0/src/kaccounts-providers-15.12.0.tar.xz + + extra-cmake-modules + intltool + kaccounts-integration-devel + qt5-declarative-devel + qt5-base-devel + kcoreaddons-devel + libaccounts-qt5-devel + libaccounts-glib-devel + kio-devel + ki18n-devel + kdeclarative-devel + kpackage-devel + signon-devel + + desktop/kde/application/kaccounts-providers/pspec.xml + + + kaccounts-providers + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + + kaccounts-integration + libaccounts-glib + libgcc + kio + ki18n + kpackage + kcoreaddons + kdeclarative + qt5-declarative + qt5-base + + + /etc + /usr/share + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-15 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kgeography + http://edu.kde.org/applications/all/kgeography + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KGeography is a geography learning tool + Bir coğrafya uygulaması + KGeography is a geography learning tool, which allows you to learn about the political divisions of some countries (divisions, capitals of those divisions and their associated flags if there are some). + KGeography, ülkeler hakkında çeşitli bilgiler sunan bir coğrafya uygulamasıdır. + kgeography + mirrors://kde/stable/applications/15.12.0/src/kgeography-15.12.0.tar.xz + + qt5-base-devel + kconfig-devel + kdoctools-devel + kxmlgui-devel + kwidgetsaddons-devel + kcoreaddons-devel + ki18n-devel + kitemviews-devel + kiconthemes-devel + kservice-devel + kconfigwidgets-devel + extra-cmake-modules + + desktop/kde/application/kgeography/pspec.xml + + + kgeography + + qt5-base + libgcc + kconfig + kxmlgui + kwidgetsaddons + kcoreaddons + ki18n + kitemviews + kiconthemes + kconfigwidgets + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-filetransfer-handler + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KDE Telepathy file transfer handler + KDE Telepathy file transfer handler + http://download.kde.org/stable/applications/15.12.0/src/ktp-filetransfer-handler-15.12.0.tar.xz + + extra-cmake-modules + kcoreaddons-devel + ki18n-devel + kio-devel + kconfig-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-filetransfer-handler/pspec.xml + + + ktp-filetransfer-handler + KDE Telepathy file transfer handler + + kio + ki18n + libgcc + kconfig + qt5-base + kcoreaddons + telepathy-qt5 + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + konsole + https://projects.kde.org/projects/kde/applications/dolphin + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + desktop.kde.application + KDE Konsole + Konsole for KDE5 + mirrors://kde/stable/applications/15.12.0/src/konsole-15.12.0.tar.xz + + qt5-base-devel + qt5-script-devel + kpty-devel + kio-devel + kinit-devel + knotifyconfig-devel + kparts-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + docbook-xsl + extra-cmake-modules + kdoctools-devel + cmake + + desktop/kde/application/konsole/pspec.xml + + + konsole + + libgcc + qt5-base + kdelibs4-support + kiconthemes + knotifyconfig + knotifications + kparts + kpty + kio + ki18n + kconfig + kxmlgui + kservice + kbookmarks + kguiaddons + kcompletion + kcoreaddons + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/lib + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-05 + 15.04.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libkgapi + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + Google API library for KDE + A KDE-based library for accessing various Google services via their public API + mirrors://kde/stable/libkgapi/5.1.0/src/libkgapi-5.1.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcontacts-devel + kwindowsystem-devel + kio-devel + kcalcore-devel + kdoctools-devel + qt5-webkit-devel + qt5-linguist + qt5-location-devel + + desktop/kde/application/libkgapi/pspec.xml + + + libkgapi + + qt5-base + kcalcore + kcontacts + kio + libgcc + qt5-webkit + kwindowsystem + kdelibs4-support + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libkgapi-devel + Development files for libkgapi + + qt5-base-devel + kcalcore-devel + kcontacts-devel + kio-devel + qt5-webkit-devel + kwindowsystem-devel + kdelibs4-support-devel + libkgapi + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-26 + 5.1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-08 + 5.0.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + picmi + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Picmi is a single player logic-based puzzle game + Resim çizme bulmacası + Picmi is a single player logic-based puzzle game. The goal is to color cells according to numbers given at the side of the board in order to uncover a hidden pattern or picture. + Picmi, tablonun kenarında verilen sayılar kadar tabla üzerinde nokta koyarak bir resim tamamlama bulmacasıdır. + http://download.kde.org/stable/applications/15.12.0/src/picmi-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel + kdoctools-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kio-devel + knewstuff-devel + kxmlgui-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/picmi/pspec.xml + + + picmi + picmi + + ki18n + libgcc + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-03 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkface + https://projects.kde.org/projects/kde/kdegraphics/libs/libkface + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + library + desktop.kde.application + A Qt/C++ wrapper around LibFace library to perform face recognition and detection over pictures + Libkface is a Qt/C++ library to perform face recognition and detection over pictures.This library is used by kipi-plugins, digiKam and others Kipi host programs. + http://download.kde.org/stable/applications/15.12.0/src/libkface-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + opencv-devel + + desktop/kde/application/libkface/pspec.xml + + + libkface + A Qt/C++ wrapper around LibFace library to perform face recognition and detection over pictures + + libgcc + opencv + qt5-base + + + /usr/lib/*.so.* + /usr/share/libkface + /usr/share/doc + + + + libkface-devel + Development files for libkface + library + + libkface + + + /usr/include/KF5 + /usr/include/libkface_version.h + /usr/lib/cmake/KF5KFace + /usr/lib/*.so + + + + + 2015-12-19 + 15.12.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kbounce + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Ball bouncing game + Top zıplatma oyunu + KBounce is a single player arcade game with the elements of puzzle. It is played on a field, surrounded by walls, with two or more balls that move about in the field bouncing off of walls. The player can build new walls, decreasing the size of the active field. The goal of the game is to fill at least 75% of the field and advance to the next level. + KBounce, Volfied'in oynaniş tarzına benzeyen tek kişilik bir bulmaca - macera oyunudur. Oyuncu iki veya daha fazla topun oradan oraya zıpladığı duvarlarla kaplı bir alanda yeni duvarlar inşa ederek ve toplara yakalanmamaya çalışarak aktif alanın en azından %75'ini kapatmaya çalışmaktadır. + kbounce + http://download.kde.org/stable/applications/15.12.0/src/kbounce-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kcompletion-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kbounce/pspec.xml + + + kbounce + + kio + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + klines + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Kolor Lines + Renkli çizgiler + Kolor Lines is a simple but highly addictive, one player game for KDE. Kolor Lines has been inspired by well known game of Color Lines. The goal of Kolor Lines is quite plain. The player has to move the colored balls around the game board, gathering them into the lines of the same color by five. + Kolor Lines basit ama bağımlılık yapıcı bir oyundur. Dünyaca ünlü Color Lines'tan esinlenilen oyunda amacınız aynı renkli toplardan beş tanesini yan yana getirmektir. + klines + http://download.kde.org/stable/applications/15.12.0/src/klines-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kservice-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knewstuff-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/klines/pspec.xml + + + klines + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkdcraw + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + A C++ interface around LibRaw library + LibRaw kitaplığı için C++ arayüzü + libkdcraw is a C++ interface around LibRaw library used to decode RAW picture files. + libkdcraw, RAW resim dosyalarını çözmek için kullanılan LibRaW kitaplığının C++ arayüzüdür. + mirrors://kde/stable/applications/15.12.0/src/libkdcraw-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + libraw-devel + kconfig-devel + ki18n-devel + cmake + extra-cmake-modules + + desktop/kde/application/libkdcraw/pspec.xml + + + libkdcraw + + qt5-base + libraw + kconfig + ki18n + libgcc + + + /usr/lib + /usr/bin + /usr/share/icons + /usr/share/ + + + + libkdcraw-devel + Development files for libkdcraw + libkdcraw için geliştirme dosyaları + + libkdcraw + qt5-base-devel + libraw-devel + kconfig-devel + ki18n-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/apps/cmake + + + + + 2015-12-19 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-13 + 15.07.90_p1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kapman + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Pac-Man clone + Pac-Man klonu + Kapman is a clone of the well known game Pac-Man. You must go through the levels escaping ghosts in a maze. You lose a life when a ghost eats you, but you can eat the ghosts for a few seconds when eating an energizer. + Kapman dünyaca ünlü Pac-Man'in bir türevidir. Labirent içinde hayaletlerle köşe kapmaca oynayarak bölümleri geçmeye çalıştığınız oyunda eğer hayaletlere yakalanırsanız bir hakkınızı kaybediyorsunuz. Eğer bir enerji nesnesi alırsanız bu kez siz bir kaç saniyeliğine hayaletleri yiyebiliyorsunuz. + kapman + http://download.kde.org/stable/applications/15.12.0/src/kapman-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwindowsystem-devel + ki18n-devel + kinit-devel + kunitconversion-devel + kitemmodels-devel + kemoticons-devel + kconfigwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + kdesignerplugin + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + + desktop/kde/application/kapman/pspec.xml + + + kapman + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-15 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + baloo-widgets + http://www.kde.org + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Framework for searching and managing metadata + Baloo is a framework for searching and managing metada + mirrors://kde/stable/applications/15.12.0/src/baloo-widgets-15.12.0.tar.xz + + baloo-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kfilemetadata-devel + kinit-devel + kio-devel + kitemmodels-devel + kunitconversion-devel + qt5-base-devel + + desktop/kde/application/baloo-widgets/pspec.xml + + + baloo-widgets + Development files for baloo-widgets + + baloo + kconfig + kcoreaddons + kfilemetadata + ki18n + kio + kwidgetsaddons + libgcc + qt5-base + + + /etc + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/locale + + + + baloo-widgets-devel + Development files for baloo-widgets + + baloo-widgets + qt5-base-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-20 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-28 + 15.08.0 + First Release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kidentitymanagement + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + KDE PIM libraries + Library for the KDE-PIM(Personal-Infomation-Management + mirrors://kde/stable/applications/15.12.0/src/kidentitymanagement-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + kpimtextedit-devel + kio-devel + kcodecs-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + ktextwidgets-devel + kwidgetsaddons-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kpimtextedit-devel + kunitconversion-devel + extra-cmake-modules + + desktop/kde/application/kidentitymanagement/pspec.xml + + + kidentitymanagement + + qt5-base + kpimtextedit + kio + ki18n + libgcc + kcodecs + kconfig + kxmlgui + kcompletion + kcoreaddons + ktextwidgets + kwidgetsaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kidentitymanagement-devel + Development files for kidentitymanagement + + qt5-base-devel + kpimtextedit-devel + kidentitymanagement + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + analitza + https://projects.kde.org/projects/kde/kdeedu/analitza + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + desktop.kde.application + A KDE library for mathematical features + Matematiksel özellikler için bir KDE kitaplığı + analitza is a library to add mathematical features to programs. + analitza, programlara matematiksel özellikler eklemek için bir kitaplıktır. + hi32-app-kalgebra + mirrors://kde/stable/applications/15.08.2/src/analitza-15.08.2.tar.xz + + cmake + eigen3 + mesa-devel + qt5-svg-devel + extra-cmake-modules + qt5-declarative-devel + + desktop/kde/application/analitza/pspec.xml + + + analitza + + mesa + libgcc + qt5-svg + qt5-base + qt5-declarative + + + /usr/lib + /usr/share/doc + /usr/share/libanalitza/ + + + + analitza-devel + Development files for analitza + analitza için geliştirme dosyaları + + analitza + + + /usr/include + /usr/lib/cmake + + + + + 2015-10-19 + 15.08.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-18 + 15.04.3 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-23 + 4.10.2 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + bomber + https://www.kde.org/applications/games/bomber/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + A single player arcade game + Bomber is a single player arcade game. The player is invading various cities in a plane that is decreasing in height. + mirrors://kde/stable/applications/15.12.0/src/bomber-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/bomber/pspec.xml + + + bomber + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + qt5-phonon + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share/appdata + /usr/share/applications + /usr/share + /usr/share/bomber + /usr/share/config.kcfg + /usr/share/icons + /usr/share/doc + /usr/share/kxmlgui5 + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + okular + http://okular.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + A document viewer + Belge gösterici + Okular is a document viewer. + Okular bir belge göstericidir. + okular + http://sourceforge.net/projects/pisilinux/files/source/okular-15.08.02_20151104.tar.xz + + qt5-base-devel + qt5-declarative-devel + kjs-devel + qca2-qt5-devel + tiff-devel + kdelibs4-support-devel + qt5-phonon-devel + poppler-qt5-devel + ebook-tools-devel + libkexiv2-devel + kdoctools-devel + threadweaver-devel + kdesignerplugin + khtml-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kactivities-devel + libkscreen-devel + libspectre-devel + djvu-devel + kpty-devel + extra-cmake-modules + + desktop/kde/application/okular/pspec.xml + + + okular + app:gui + + qt5-base + qca2-qt5 + tiff + libkexiv2 + poppler-qt5 + ebook-tools + kactivities + libjpeg-turbo + kdelibs4-support + khtml + kpty + kio + kjs + zlib + ki18n + kparts + libgcc + kcodecs + kconfig + kwallet + kxmlgui + qt5-svg + freetype + karchive + kservice + kbookmarks + kitemviews + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + threadweaver + kwindowsystem + kconfigwidgets + kwidgetsaddons + qt5-declarative + djvu + libspectre + qt5-phonon + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share + + + + okular-devel + Development files for okular + Okular için geliştirme dosyaları + + okular + + + /usr/include + /usr/lib/cmake + + + + + 2015-11-05 + 15.08.02_20151104 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kcalutils + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + The KDE calendar utility library + Calendar utility library for KDE + mirrors://kde/stable/applications/15.12.0/src/kcalutils-15.12.0.tar.xz + + qt5-base-devel + kcalcore-devel + kidentitymanagement-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + grantlee-qt5-devel + kdoctools-devel + extra-cmake-modules + + desktop/kde/application/kcalutils/pspec.xml + + + kcalutils + + qt5-base + kcalcore + kidentitymanagement + ki18n + libgcc + kcodecs + kconfig + grantlee-qt5 + kcoreaddons + kiconthemes + kwidgetsaddons + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/kcalendar + + + + kcalutils-devel + Development files for kcalutils + + qt5-base-devel + kcalutils + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + yakuake + http://extragear.kde.org/apps/yakuake + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Very powerful Quake style Konsole for KDE4 + KDE5 için Quake tarzı oldukça güçlü bir Konsole + The name comes from Yet Another Kuake (thus YaKuake). Its behaviour is similar to the console of the Quake game. + İsmi Bir Başka Kuake (Yet Another Kuake - YaKuake) sözcüklerinden gelmektedir. Quake oyunundaki konsola benzer. + yakuake + http://source.pisilinux.org/1.0/yakuake-2.9.9_20150703.tar.gz + + qt5-base-devel + libX11-devel + qt5-x11extras-devel + knewstuff-devel + kio-devel + kparts-devel + knotifyconfig-devel + extra-cmake-modules + + desktop/kde/application/yakuake/pspec.xml + + + yakuake + + qt5-base + qt5-x11extras + kio + ki18n + kparts + kconfig + kxmlgui + karchive + kservice + knewstuff + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + knotifyconfig + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + libX11 + libgcc + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/locale + /usr/share/doc + + + yakuake.notifyrc + + + + + 2015-08-01 + 2.9.9_20150703 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktnef + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + API for handling TNEF data + The API permits access to the actual attachments, the message properties (TNEF/MAPI), and allows one to view/extract message formatted text in Rich Text Format format. + mirrors://kde/stable/applications/15.12.0/src/ktnef-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcalcore-devel + kcalutils-devel + kcontacts-devel + + desktop/kde/application/ktnef/pspec.xml + + + ktnef + + qt5-base + kcalutils + ki18n + libgcc + kcalcore + kcontacts + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ktnef-devel + Development files for ktnef + + qt5-base-devel + ktnef + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ksquares + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Connect the dots to create squares + Noktaları birleştirerek kare yapma oyunu + KSquares is a fun and exciting game that modeled after the well known pen and paper based game of Dots and Boxes. + KSquares sıkıcı derslerin kurtarıcısı, eğlenceli ve heyecanlı kare yapma oyununun KDE sürümüdür. + ksquares + http://download.kde.org/stable/applications/15.12.0/src/ksquares-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/ksquares/pspec.xml + + + ksquares + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdenlive + http://www.kdenlive.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A video editing GUI for KDE4 using the MLT video framework + MLT video yapısı kullanan, KDE için bir video düzenleme uygulaması + Nieliniowy edytor wideo + Kdenlive est multi-piste, gère une liste de clips et gère les doubles moniteurs vidéos. Il fournit également entre autres un support de couches personnalisables ainsi que des effets et des transitions de base. + kdenlive provides dual video monitors, a multi-track timeline and clip list. Other features include customizable layout support, basic effects and transitions. + kdenlive, ikili video izleyicileri, çoklu parça zaman çizelgesi ve klip listesi sunmaktadır. Diğer özellikler arasında özelleştirilebilir düzenleme desteği, temel efektler ve geçişler sayılabilir. + Kdenlive jest nieliniowym pakietem do edycji wideo obsługującym DV, HDC i wiele innych formatów. + http://download.kde.org/stable/applications/15.12.0/src/kdenlive-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-script-devel + qt5-svg-devel + karchive-devel + kbookmarks-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + kio-devel + kwidgetsaddons-devel + kplotting-devel + knotifyconfig-devel + knewstuff-devel + kxmlgui-devel + knotifications-devel + kguiaddons-devel + ktextwidgets-devel + kiconthemes-devel + kdoctools-devel + mlt-devel + qt5-declarative-devel + + desktop/kde/application/kdenlive/pspec.xml + + + kdenlive + + kio + mlt + ki18n + solid + libgcc + kconfig + kxmlgui + qt5-svg + karchive + kservice + qt5-base + knewstuff + kplotting + kbookmarks + kguiaddons + kitemviews + qt5-script + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + qt5-declarative + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/man + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-17 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-04-06 + 0.9.10 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-18 + 0.9.8 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-11-26 + 0.9.6 + rebuild for ffmpeg + Kamil Atlı + suvarice@gmail.com + + + 2013-04-08 + 0.9.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-29 + 0.9.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-03 + 0.9.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-baseapps + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + desktop.kde.application + KDE-Baseapps: base applications from the official KDE release + Base application for KDE5 such as Dolphin, kfind, plasma-widget-folderview, konqueror etc. + http://sourceforge.net/projects/pisilinux/files/source/kde-baseapps-15.12.0_20151228.tar.xz + + qt5-base-devel + zlib-devel + glib2-devel + libX11-devel + kfilemetadata-devel + qt5-phonon-devel + kactivities-devel + libXrender-devel + libXt-devel + libraw1394-devel + mesa-devel + kdelibs4-support-devel + tidy-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesu-devel + khtml-devel + kdelibs4-support-devel + kcmutils-devel + kconfig-devel + kded-devel + kdoctools-devel + kdesignerplugin + libxslt + docbook-xsl + extra-cmake-modules + + desktop/kde/application/kde-baseapps/pspec.xml + + + kde-baseapps + + qt5-base + zlib + libX11 + libgcc + tidy + kio + kdesu + khtml + ki18n + kparts + kcodecs + kconfig + kxmlgui + karchive + kcmutils + kservice + kbookmarks + kitemviews + qt5-script + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + kwindowsystem + qt5-x11extras + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/locale + /usr/lib + /usr/share/doc + + + + kde-baseapps-devel + Development files for kde-baseapps + + kde-baseapps + tidy-devel + qt5-base-devel + zlib-devel + glib2-devel + libX11-devel + kfilemetadata-devel + qt5-phonon-devel + kactivities-devel + libXrender-devel + libXt-devel + libraw1394-devel + mesa-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesu-devel + khtml-devel + kcmutils-devel + kconfig-devel + kded-devel + kdoctools-devel + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-26 + 15.12.0_20151228 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-11-01 + 15.07.90_20151029 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-08-31 + 15.07.90_20150729 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-03 + 15.04.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kross-interpreters + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Kross interpreter plugins for programming languages + Language interpreters to enable in-process scripting with Kross. + mirrors://kde/stable/applications/15.12.0/src/kross-interpreters-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + kross-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + python-devel + + desktop/kde/application/kross-interpreters/pspec.xml + + + kross-interpreters + + qt5-base + libgcc + python + kross + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-25 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-29 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktuberling + http://kde.org/applications/games/ktuberling/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A simple constructor game suitable for children and adults alike + KTuberling a simple constructor game suitable for children and adults alike. The idea of the game is based around a once popular doll making concept. + http://download.kde.org/stable/applications/15.12.0/src/ktuberling-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/application/ktuberling/pspec.xml + + + ktuberling + A simple constructor game suitable for children and adults alike + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/ktuberling + /usr/share/kxmlgui5 + /usr/share/doc + + + + + 2015-12-19 + 15.12.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + spectacle + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + KDE screenshot capture utility + Ekran görüntüsü yakalama aracı + Spectacle, a new screenshot application that aims to replace KSnapshot.. + spectacle bir ekran görüntüsü yakalama aracıdır. + mirrors://kde/stable/applications/15.12.0/src/spectacle-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + libkipi-devel + qt5-script-devel + libxcb-devel + libkscreen-devel + xcb-util-devel + qt5-x11extras-devel + xcb-util-image-devel + xcb-util-cursor-devel + kxmlgui-devel + kio-devel + kwindowsystem-devel + kcoreaddons-devel + ki18n-devel + kwidgetsaddons-devel + knotifications-devel + + desktop/kde/application/spectacle/pspec.xml + + + spectacle + + qt5-base + kio + libkscreen + xcb-util-cursor + ki18n + libgcc + kconfig + kxmlgui + libkipi + kservice + kcoreaddons + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdbusaddons + libxcb + xcb-util + qt5-x11extras + xcb-util-image + + + /usr/bin + /usr/share + /usr/share/doc + + + ksnapshot + + + ksnapshot + + + + + 2015-12-18 + 15.12.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-approver + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KDE Channel Approver for Telepathy + KDE Channel Approver for Telepathy + http://download.kde.org/stable/applications/15.12.0/src/ktp-approver-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kdbusaddons-devel + kconfig-devel + ki18n-devel + knotifications-devel + kservice-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-approver/pspec.xml + + + ktp-approver + + ki18n + libgcc + kconfig + kservice + qt5-base + kcoreaddons + kdbusaddons + telepathy-qt5 + knotifications + + + /etc + /usr/lib + /usr/share + /usr/share/kservicetypes5 + /usr/share/kservices5 + /usr/share/dbus-1 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kjumpingcube + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Territory capture game + Alan kapma oyunu + KJumpingCube is a simple tactical game. + KJumpingCube basit bir taktik oyunudur. + kjumpingcube + http://download.kde.org/stable/applications/15.12.0/src/kjumpingcube-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/application/kjumpingcube/pspec.xml + + + kjumpingcube + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpimtextedit + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + A textedit with PIM-specific features. + Text Edit with KDE-PIM specific features. + mirrors://kde/stable/applications/15.12.0/src/kpimtextedit-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kcodecs-devel + kconfig-devel + kio-devel + kemoticons-devel + kdesignerplugin + kitemmodels-devel + kinit-devel + kdelibs4-support-devel + kunitconversion-devel + kdoctools-devel + extra-cmake-modules + grantlee-qt5-devel + + desktop/kde/application/kpimtextedit/pspec.xml + + + kpimtextedit + + qt5-base + ki18n + kcodecs + kio + sonnet + libgcc + kemoticons + kcompletion + ktextwidgets + kwidgetsaddons + grantlee-qt5 + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kpimtextedit-devel + Development files for kpimtextedit + + qt5-base-devel + kpimtextedit + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kanagram + http://edu.kde.org/applications/all/kanagram + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A letter order game + Bir harf sıralama oyunu + Kanagram is a game based on anagrams of words: the puzzle is solved when the letters of the scrambled word are put back in the correct order. There is no limit on either time taken, or the amount of attempts to solve the word. + Kanagram, anagramlar üzerine bir oyundur. Dağınık yerleştirilmiş harfleri birleştirerek kelimeyi bulun. Zaman veya deneme sınırı yoktur. + kanagram + mirrors://kde/stable/applications/15.12.0/src/kanagram-15.12.0.tar.xz + + qt5-base-devel + qt5-declarative + kdoctools-devel + knewstuff-devel + kdeclarative-devel + ki18n-devel + kio-devel + kcrash-devel + sonnet-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kxmlgui + kwidgetsaddons-devel + extra-cmake-modules + libkeduvocdocument-devel + + desktop/kde/application/kanagram/pspec.xml + + + kanagram + + ki18n + libgcc + sonnet + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdeclarative + kconfigwidgets + qt5-declarative + libkeduvocdocument + + + /etc/xdg + /usr/share + /usr/bin + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + klickety + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A kind of solitary game + Bir tür soliter oyunu + Klickety is a kind of solitary game that takes place on a Tetris-like board. + Klickety Tetris gibi tahta üzerinde yer alan bir tür soliter oyunu + klickety + http://download.kde.org/stable/applications/15.12.0/src/klickety-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kconfigwidgets-devel + kxmlgui-devel + kio-devel + kdoctools-devel + knotifyconfig-devel + kdbusaddons-devel + knotifications-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/klickety/pspec.xml + + + klickety + + kio + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/kconf_update + /usr/share/klickety + /usr/share/knotifications5 + /usr/share/kxmlgui5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + bovo + https://www.kde.org/applications/games/bovo/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + A Gomoku like game for two players. + Bovo is a Gomoku like game for two players, where the opponents alternate in placing their respective pictogram on the game board. + bovo + mirrors://kde/stable/applications/15.12.0/src/bovo-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kxmlgui-devel + kdoctools-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/bovo/pspec.xml + + + bovo + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/icons + /usr/share/kxmlgui5 + /usr/share/applications + /usr/share/bovo + /usr/share/doc + + + org.kde.bovo.desktop + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-18 + 15.08.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kdenetwork-filesharing + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + library + desktop.kde.application + Filesharing configuration modlue. + Dosya paylaşım konfigürasyon modülü. + Filesharing configuration modlue. + Dosya paylaşım konfigürasyon modülü. + http://download.kde.org/stable/applications/15.12.0/src/kdenetwork-filesharing-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kdoctools-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kwidgetsaddons-devel + samba-devel + + desktop/kde/application/kdenetwork-filesharing/pspec.xml + + + kdenetwork-filesharing + + kio + ki18n + libgcc + qt5-base + kcompletion + kcoreaddons + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + + + kdenetwork + + + kdenetwork + + + + + 2015-12-18 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-14 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + ark + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + desktop.kde.application + KDE Archiving Tool + Ark is a program for managing various archive formats within the KDE environment. + mirrors://kde/stable/applications/15.12.0/src/ark-15.12.0.tar.xz + + qt5-base-devel + karchive-devel + kconfig-devel + kcrash-devel + kio-devel + kpty-devel + khtml-devel + xz-devel + kdbusaddons-devel + kdoctools-devel + docbook-xsl + libarchive-devel + extra-cmake-modules + + desktop/kde/application/ark/pspec.xml + + + ark + + qt5-base + libarchive + karchive + kconfig + kio + unrar + kpty + khtml + ki18n + libgcc + kxmlgui + kservice + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + kwidgetsaddons + kparts + kconfigwidgets + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/locale + /usr/lib + /usr/share/icons + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kteatime + http://www.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Timer for making tea. + Çay yapma zamanlayıcısı. + KTeaTime is a handy timer for steeping tea. No longer will you have to guess at how long it takes for your tea to be ready. + Kteatime çay yapmak için kullanışlı bir uygulamadır. Kteatime ile çay demlemek için ne kadar beklemek gerektiğini düşünmenize gerek kalmaz. + http://download.kde.org/stable/applications/15.12.0/src/kteatime-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfig-devel + kcrash-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + knotifyconfig-devel + knotifications-devel + kwidgetsaddons-devel + ktextwidgets-devel + kxmlgui-devel + + desktop/kde/application/kteatime/pspec.xml + + + kteatime + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kiconthemes + ktextwidgets + knotifyconfig + kconfigwidgets + knotifications + + + /usr/bin + /usr/doc + /usr/share + + + kdetoys + + + kdetoys + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + kbruch + http://edu.kde.org/applications/mathematics/kbruch + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Practice calculating with fractions and percentages + Ondalık ve kesirli sayılarla pratik yapın + KBruch is a small program to practice calculating with fractions and percentages. Different exercises are provided for this purpose and you can use the learning mode to practice with fractions. The program checks the user's input and gives feedback. + KBruch, ondalık ve kesirli sayılar üzerine işlemleri öğrenmeye ve egzersiz yapmaya yarayan bir uygulamadır. + kbruch + mirrors://kde/stable/applications/15.12.0/src/kbruch-15.12.0.tar.xz + + qt5-base + kdoctools-devel + kconfig-devel + kcrash-devel + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + kcoreaddons-devel + kconfigwidgets-devel + extra-cmake-modules + + desktop/kde/application/kbruch/pspec.xml + + + kbruch + + qt5-base + kxmlgui + kconfig + kcrash + ki18n + libgcc + kwidgetsaddons + kcoreaddons + kconfigwidgets + + + /usr/bin + /usr/share + /usr/share/man/man1 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + knavalbattle + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Naval Battle game + Amiral Battı oyunu + knavalbattle is a Battle Ship game for KDE. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. + KBattleship KDE için bir Amiral Battı oyunudur. Gemiler denizi temsil eden oyun tahtasına yerleştirilir ve oyuncular rakiplerinin gemilerinin yerleşimini tahmin ederek gemileri vurmaya çalışır. Rakibinin tüm gemilerini daha önce batıran oyuncu kazanır. + knavalbattle + http://download.kde.org/stable/applications/15.12.0/src/knavalbattle-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfig-devel + kdbusaddons-devel + kdnssd-devel + ki18n-devel + kxmlgui-devel + kdoctools-devel + ktextwidgets-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/knavalbattle/pspec.xml + + + knavalbattle + + ki18n + kdnssd + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kwidgetsaddons + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/kconf_update + /usr/share/knavalbattle + /usr/share/kservices5 + /usr/share/kxmlgui5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + blinken + http://kde.org/applications/education/blinken/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + Memory Enhancement Game + Hafıza geliştirme oyunu. + Memory Enhancement Game + Hafıza geliştirme oyunu. + blinken + mirrors://kde/stable/applications/15.12.0/src/blinken-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kdoctools-devel + kxmlgui-devel + qt5-phonon-devel + + desktop/kde/application/blinken/pspec.xml + + + blinken + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kguiaddons + qt5-phonon + kcoreaddons + kdbusaddons + + + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/blinken + /usr/share/config.kcfg + /usr/share/icons + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ktp-contact-runner + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KRunner plugin for KDE Telepathy + KRunner plugin for KDE Telepathy + http://download.kde.org/stable/applications/15.12.0/src/ktp-contact-runner-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kservice-devel + krunner-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-contact-runner/pspec.xml + + + ktp-contact-runner + KRunner plugin for KDE Telepathy + + ki18n + libgcc + krunner + qt5-base + kcoreaddons + telepathy-qt5 + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kalarmcal + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Library to provides access and handling of KAlarm calendar data + Library to provides access and handling of KAlarm calendar data + mirrors://kde/stable/applications/15.12.0/src/kalarmcal-15.12.0.tar.xz + + qt5-base-devel + akonadi-devel + kcalcore-devel + kidentitymanagement-devel + kdepimlibs-devel + boost-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdoctools-devel + libical-devel + kholidays-devel + extra-cmake-modules + + desktop/kde/application/kalarmcal/pspec.xml + + + kalarmcal + + qt5-base + kcalcore + kholidays + kidentitymanagement + ki18n + libgcc + kdepimlibs + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kalarmcal-devel + Development files for kalarmcal + + qt5-base-devel + kalarmcal + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-23 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + gwenview + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + library + desktop.kde.application + An image viewer + Resim görüntüleyici + Gwenview is an easy to use image viewer. + Gwenview, kullanımı kolay bir resim görüntüleyicisidir. + gwenview + mirrors://kde/stable/applications/15.12.0/src/gwenview-15.12.0.tar.xz + + exiv2-devel + qt5-base-devel + libkipi-devel + kdoctools-devel + kio-devel + kactivities-devel + kded-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + baloo-devel + libkdcraw-devel + libpng-devel + zlib-devel + mesa-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/application/gwenview/pspec.xml + + + gwenview + + qt5-base + exiv2-libs + kactivities + libkipi + libkdcraw + kded + kdelibs4-support + kio + ki18n + lcms2 + kparts + libX11 + libgcc + libpng + kconfig + kxmlgui + qt5-svg + kservice + baloo + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + ktextwidgets + libjpeg-turbo + qt5-x11extras + kconfigwidgets + knotifications + kwidgetsaddons + kfilemetadata + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/applications + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-12 + 15.08.0 + first release, use stable source. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kcontacts + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + Address book API for KDE. + Address book for KDE for Contacts. + mirrors://kde/stable/applications/15.12.0/src/kcontacts-15.12.0.tar.xz + + qt5-base-devel + ki18n-devel + kcodecs-devel + kconfig-devel + kio-devel + extra-cmake-modules + + desktop/kde/application/kcontacts/pspec.xml + + + kcontacts + + qt5-base + ki18n + kcodecs + kconfig + kcoreaddons + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcontacts-devel + Development files for kcontacts + + qt5-base-devel + kcontacts + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kblocks + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Falling blocks game + Tetris + KBlocks is the classic falling blocks game. The idea is stack the falling blocks in a way that lines are completely filled. When a line is completed it is removed, and more space is available in the play area. When there is not enough space for blocks to fall, the game is over. + KBlocks klasikleşmiş tetrisin bir yeniden yapımıdır. Oyunun amacı düşen parçaları en uygun şekilde dizmektir. Bir satır tamamen dolduktan sonra silinmektedir ve daha fazla oyun alanı açılmaktadır. Yeni parçaları koyacak yeriniz kalmadığında oyun bitmektedir. + kblocks + http://download.kde.org/stable/applications/15.12.0/src/kblocks-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kdoctools-devel + ki18n-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kemoticons-devel + + desktop/kde/application/kblocks/pspec.xml + + + kblocks + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + qt5-phonon + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmime + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + KDE library for handling mail messages and newsgroup articles. + Kmime library for handling mail messages and newsgroup articles. + mirrors://kde/stable/applications/15.12.0/src/kmime-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + boost-devel + ki18n-devel + kcodecs-devel + kdoctools-devel + kdelibs4-support-devel + + desktop/kde/application/kmime/pspec.xml + + + kmime + + qt5-base + ki18n + kcodecs + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmime-devel + Development files for kmime + + qt5-base-devel + kmime + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kollision + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A simple ball dodging game + Basit bir top sıçratma oyunu + Kollision is ball dodging game. Click on the empty field to start a game: a blue ball immediately replaces your mouse cursor, and a number of red balls start to fade into the field. + Kollision basit bir top sıçratma oyunudur. Boş bir alana fareyle tıkladığınızda oyun başlar ve fare imlecinizin yerini mavi bir top alır, ayrıca olayların gelişmesine vesile olacak kırmızı toplar da alandaki yerlerini alırlar. + kollision + http://download.kde.org/stable/applications/15.12.0/src/kollision-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kollision/pspec.xml + + + kollision + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdiamond + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Three in a row game + Bir satırda üç oyunu + KDiamond is a single player puzzle game. The object of the game is to build lines of three similar diamonds. + KDiamond benzer elmaslardan üç tanesinin yan yana getirilmesini konu edinen tek kişilik bir bulmaca oyunudur. + kdiamond + http://download.kde.org/stable/applications/15.12.0/src/kdiamond-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kxmlgui-devel + knotifications-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kdiamond/pspec.xml + + + kdiamond + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-17 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + knetwalk + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Network construction game + Ağ yapılandırma oyunu + KNetWalk is a single player logic game. The object of the game is to start the LAN, connecting all the terminals to the server, in as few turns as possible. + KNetWalk bir ağ kurma oyunudur. Dunucularla istemcileri mümkün olan en az kaynakla birleştirmeye çalışmak oyunun amacıdır. Bağımlılık yapması olasıdır. + knetwalk + http://download.kde.org/stable/applications/15.12.0/src/knetwalk-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/knetwalk/pspec.xml + + + knetwalk + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + dolphin + https://projects.kde.org/projects/kde/applications/dolphin + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + desktop.kde.application + KDE File Manager + Dolphin is the File Manager for KDE. + mirrors://kde/stable/applications/15.12.0/src/dolphin-15.12.0.tar.xz + + qt5-base-devel + qt5-phonon-devel + kio-devel + kcmutils-devel + knewstuff-devel + kinit-devel + kactivities-devel + baloo-devel + kfilemetadata-devel + kparts-devel + ktexteditor-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + baloo-widgets + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/application/dolphin/pspec.xml + + + dolphin + + qt5-base + knewstuff + kio + ki18n + solid + kparts + libgcc + kcodecs + kcrash + kconfig + kxmlgui + kcmutils + kservice + kbookmarks + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /etc/xdg + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + dolphin-devel + + dolphin + qt5-base-devel + qt5-phonon-devel + kio-devel + kcmutils-devel + knewstuff-devel + kinit-devel + kactivities-devel + baloo-devel + kfilemetadata-devel + kparts-devel + ktexteditor-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + + + /usr/include + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-31 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-23 + 14.12 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kate + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Advanced Text Editor + Plasma library and runtime components based upon KF5 and Qt5 + mirrors://kde/stable/applications/15.12.0/src/kate-15.12.0.tar.xz + + qt5-base-devel + plasma-framework-devel + kdoctools-devel + knewstuff-devel + kinit-devel + kparts-devel + ktexteditor-devel + threadweaver-devel + kitemmodels-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + docbook-xsl + extra-cmake-modules + kded-devel + + desktop/kde/application/kate/pspec.xml + + + kate + + qt5-base + libgcc + libgit2 + knewstuff + ki18n + kconfig + kded + kguiaddons + kactivities + kjobwidgets + kitemmodels + kio + kparts + ktexteditor + kwindowsystem + kxmlgui + plasma-framework + kwallet + kservice + kbookmarks + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + threadweaver + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/share + /etc/xdg + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-03 + 15.04.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdeedu-data + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.application + Common data for KDE Edu applications + Common data for KDE Edu applications. + mirrors://kde/stable/applications/15.12.0/src/kdeedu-data-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/application/kdeedu-data/pspec.xml + + + kdeedu-data + + /usr/share + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + step + http://kde.org/applications/education/step/ + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Interactive Physical Simulator + Step is an interactive physical simulator. It allows you to explore the physical world through simulations. + mirrors://kde/stable/applications/15.12.0/src/step-15.12.0.tar.xz + + qt5-base-devel + qt5-quick1-devel + qt5-svg-devel + qt5-declarative-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + mesa-devel + khtml-devel + kconfig-devel + kdelibs4-support-devel + knewstuff-devel + kplotting-devel + eigen3 + pkgconfig + libqalculate-devel + cln-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/step/pspec.xml + + + step + + qt5-base + cln + gsl + khtml + knewstuff + kplotting + libqalculate + kparts + kio + libgcc + kdelibs4-support + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + kconfigwidgets + kwidgetsaddons + kservice + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-send-file + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + A File manager plugin to launch a file transfer job with a specified contact + A File manager plugin to launch a file transfer job with a specified contact + http://download.kde.org/stable/applications/15.12.0/src/ktp-send-file-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcmutils-devel + kio-devel + kiconthemes-devel + ki18n-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-send-file/pspec.xml + + + ktp-send-file + A File manager plugin to launch a file transfer job with a specified contact + + kio + ki18n + libgcc + qt5-base + kcoreaddons + kiconthemes + telepathy-qt5 + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/share + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + akonadi + http://pim.kde.org/akonadi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.application + PIM (Personal Information Management) Storage Service + PIM (Kişisel Bilgi Yönetimi) Depolama Servisi + akonadi is an extensible cross-desktop storage service for PIM data and meta data providing concurrent read, write, and query access. + Akonadi, PIM verisi ve meta veriler için eşzamanlı okuma, yazma ve sorgulama yapma imkanı sağlayan, masaüstü ortamından bağımsız, genişletilebilir bir depolama servisidir. + akonadi + mirrors://kde/stable/applications/15.12.0/src/akonadi-15.12.0.tar.xz + + qt5-base-devel + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + sqlite-devel + shared-mime-info + mariadb-client + mariadb-server + postgresql-server + libxslt-devel + boost-devel + extra-cmake-modules + + desktop/kde/application/akonadi/pspec.xml + + + akonadi + app:console + + qt5-base + sqlite + libgcc + mariadb-client + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/mime + /usr/share/kf5 + /usr/share/doc/ + + + + akonadi-devel + Development files for akonadi + akonadi için geliştirme dosyaları + + akonadi + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-15 + 1.13.0 + Rebuild + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-21 + 1.13.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 1.12.1 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-24 + 1.12.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-18 + 1.11.0 + Dep fixed. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-13 + 1.11.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-09 + 1.10.3 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-06 + 1.10.3 + Version bump. + Fix crash when there are no flags to update during flags change + Fix crash on Akonadi shutdown when using PostgreSQL + Fix notification to clients about database upgrade + Send dummy requests to MySQL from time to time to keep the connection alive + Bug #277839 – Fix problem with too long socket paths + Bug #323977 – Check minimum MySQL version at runtime + Bug #252120, Bug #322931 – Use text instead of bytea column type for QString in PostgreSQL + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-18 + 1.10.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-11 + 1.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-10 + 1.9.80 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-03 + 1.9.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-08 + 1.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-08 + 1.9.0 + First release + Idris Kalp + yaralikurt15@hotmail.com + + + + + + kmbox + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + MBox library support. + MBox library support. + mirrors://kde/stable/applications/15.12.0/src/kmbox-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kmime-devel + boost-devel + + desktop/kde/application/kmbox/pspec.xml + + + kmbox + + qt5-base + kmime + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmbox-devel + Development files for kmbox + + qt5-base-devel + kmbox + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kdepim-runtime + http://community.kde.org/KDE_PIM + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + KDE5 PIM Runtime Environment + KDE5 PIM (Kişisel Bilgi Yönetimi) çalışma zamanı ortamı + kdepim-runtime contains KDE5 PIM (Personal Information Management) runtime environment like akonadi agents. + kdepim-runtime, kdelibs kullanarak yazılmış olan Akonadi ajanları da dahil olmak üzere KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) çalışma zamanı ortamını içerir. + kontact + mirrors://kde/stable/applications/15.12.0/src/kdepim-runtime-15.12.0.tar.xz + + kdoctools-devel + boost-devel + shared-mime-info + akonadi-devel + akonadi-calendar-devel + akonadi-search-devel + kcmutils-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + knotifyconfig-devel + kross-devel + kmailtransport-devel + kidentitymanagement-devel + kalarmcal-devel + kcalutils-devel + kmbox-devel + kimap-devel + libkgapi-devel + kholidays-devel + ksyndication-devel + kdepimlibs-devel + cyrus-sasl-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-xmlpatterns-devel + qt5-webkit-devel + extra-cmake-modules + qt5-location-devel + + desktop/kde/application/kdepim-runtime/pspec.xml + + + kdepim-runtime + + akonadi + libkgapi + kio + ki18n + kimap + kmbox + kmime + libgcc + kcodecs + kconfig + kwallet + kxmlgui + kcalcore + kcmutils + kservice + qt5-base + kalarmcal + kcalutils + kdepimlibs + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kitemmodels + kcontacts + kjobwidgets + knotifyconfig + kwindowsystem + kconfigwidgets + kmailtransport + ktextwidgets + knotifications + kwidgetsaddons + qt5-xmlpatterns + akonadi-calendar + kdelibs4-support + kidentitymanagement + + + /etc/xdg + /usr/lib + /usr/bin + /usr/share/mime + /usr/share/kservicetypes5 + /usr/share/kservices5 + /usr/share/knotifications5 + /usr/share/icons + /usr/share/dbus-1 + /usr/share/akonadi + /usr/share/ontology + /usr/share/autostart + /usr/share/applications + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-23 + 15.08.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ffmpegthumbs + https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + ffmpeg based thumbnailer for KDE + KDE için ffmpeg tabanlı önizleme + FFmpeg-based thumbnail creator for video files + Video dosyaları için FFmpeg tabanlı önizleme oluşturur. + http://download.kde.org/stable/applications/15.12.0/src/ffmpegthumbs-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kio-devel + ffmpeg-devel + + desktop/kde/application/ffmpegthumbs/pspec.xml + + + ffmpegthumbs + + kio + ffmpeg + libgcc + qt5-base + + + /usr/share + /usr/lib + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2015-01-13 + 4.14.3 + Rebuild + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-30 + 4.11.3 + Rebuild for ffmpeg. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdegraphics-thumbnailers + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + KDE4 thumbnailer library + KDE4 önizleme kitaplıkları + kdegraphics-thumbnailers contains thumbnail-related libraries. + kdegraphics-thumbnailers, önizleme kitaplıklarını içerir. + http://download.kde.org/stable/applications/15.12.0/src/kdegraphics-thumbnailers-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kio-devel + libkdcraw-devel + libkexiv2-devel + + desktop/kde/application/kdegraphics-thumbnailers/pspec.xml + + + kdegraphics-thumbnailers + + kio + libgcc + qt5-base + libkdcraw + libkexiv2 + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkipi + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + Common plugin infrastructure for KDE image applications + KDE resim uygulamaları için ortak eklenti yapısı + Kipi (KDE Image Plugin Interface) is an effort to develop a common plugin structure (for Digikam, Gwenview, etc.). Its aim is to share image plugins among graphic applications. + Kipi, ortak bir eklenti yapısı ortaya koymak için gerekli bir kitaplıktır. + mirrors://kde/stable/applications/15.12.0/src/libkipi-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + cmake + extra-cmake-modules + + desktop/kde/application/libkipi/pspec.xml + + + libkipi + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kservice + kcoreaddons + + + /usr/lib + /usr/bin + /usr/share + /usr/share/icons + + + + libkipi-devel + Development files for libkipi + libkipi için geliştirme dosyaları + + libkipi + qt5-base-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-12-19 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-01 + 15.04.3_20150731 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + rocs + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Rocs Graph Theory + Rocs aims to be a Graph Theory IDE for helping professors to show the results of a graph algorithm and also helping students to do the algorithms. Rocs has a scripting module, done in Qt Script, that interacts with the drawn graph and every change in the graph with the script is reflected on the drawn one.. + mirrors://kde/stable/applications/15.12.0/src/rocs-15.12.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-webkit-devel + qt5-base-devel + qt5-xmlpatterns-devel + extra-cmake-modules + kdoctools-devel + kdeclarative-devel + ki18n-devel + gettext-devel + kitemviews-devel + ktexteditor-devel + kxmlgui-devel + kconfig-devel + karchive-devel + kcompletion-devel + kcoreaddons-devel + ktexteditor-devel + kconfigwidgets-devel + kxmlgui-devel + kwidgetsaddons-devel + karchive-devel + cmake + qt5-location-devel + grantlee-qt5-devel + gettext-devel + boost-devel + + desktop/kde/application/rocs/pspec.xml + + + rocs + + qt5-base + qt5-script + qt5-declarative + qt5-xmlpatterns + qt5-webkit + grantlee-qt5 + kdeclarative + ktexteditor + kparts + libgcc + ki18n + kconfig + karchive + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + karchive + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + kwidgetsaddons + kwidgetsaddons + kxmlgui + kitemviews + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + rocs-devel + Development files for rocs + + rocs + + + /usr/include + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-29 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmix + http://kde.org/applications/multimedia/kmix/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KMix: KDE Digital Mixer + KMix: KDE için Dijital Mixer + KMix: KDE Digital Mixer + KMix: KDE için Dijital Mixer. + kmix + mirrors://kde/stable/applications/15.12.0/src/kmix-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + ki18n-devel + kcmutils-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + libcanberra-devel + glib2-devel + alsa-lib-devel + kglobalaccel-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/application/kmix/pspec.xml + + + kmix + + qt5-base + alsa-lib + libcanberra + pulseaudio-libs + kdelibs4-support + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + libgcc + plasma-framework + + + /etc + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/include + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-13 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + killbots + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Run for your life + Hayatta kalmak için kaçın + Killbots is a simple game of evading killer robots. Who created the robots and why they have been programmed to destroy, no one knows. All that is known is that the robots are numerous and their sole objective is to destroy you. + Killbots katil robotlardan kaçmaya çalıştığınız basit bir oyundur. Robotların kimin tarafından yaratıldığı veya neden yok etmek için programlandığı bilinmiyor. Tek gerçek şu ki bir çok robot var ve tek amaçları sizi yok etmek. + killbots + http://download.kde.org/stable/applications/15.12.0/src/killbots-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + kcompletion-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/killbots/pspec.xml + + + killbots + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-18 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + gpgmepp + https://projects.kde.org/gpgmepp + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPLv2 + desktop.kde.application + C++ bindings/wrapper for gpgme + gpgme için C++ bağlayıcısı + C++ bindings/wrapper for gpgme + gpgme için C++ bağlayıcısı + mirrors://kde/stable/applications/15.12.0/src/gpgmepp-15.12.0.tar.xz + + boost-devel + qt5-base-devel + gpgme-devel + extra-cmake-modules + + desktop/kde/application/gpgmepp/pspec.xml + + + gpgmepp + + libgcc + qt5-base + gpgme + + + /usr/lib + /usr/share/doc + + + + gpgmepp-devel + + gpgmepp + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kbreakout + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Breakout like game + Breakout benzeri oyun + KBreakout is a Breakout like game. The object of the game is to destroy as many bricks as possible without losing the ball. + KBreakout bir Breakout türevidir. Oyunun amacı topları yere düşürmeden olabildiğince çok tuğlayı yok etmektir. + kbreakout + http://download.kde.org/stable/applications/15.12.0/src/kbreakout-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kservice-devel + kconfigwidgets-devel + kiconthemes-devel + kcompletion-devel + kjobwidgets-devel + kxmlgui-devel + kio-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kbreakout/pspec.xml + + + kbreakout + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + print-manager + http://www.kde.org/applications/graphics/kruler + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KDE print manager + KDE print tool. + print-manager + mirrors://kde/stable/applications/15.12.0/src/print-manager-15.12.0.tar.xz + + kdoctools-devel + extra-cmake-modules + cups-devel + kio-devel + ki18n-devel + libgcc + kconfig-devel + kservice-devel + qt5-base-devel + kdbusaddons-devel + kiconthemes-devel + kcoreaddons-devel + kwindowsystem-devel + knotifications-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + kcmutils-devel + plasma-framework-devel + + desktop/kde/application/print-manager/pspec.xml + + + print-manager + + kio + cups + ki18n + libgcc + kconfig + kservice + qt5-base + kdbusaddons + kiconthemes + kcoreaddons + kwindowsystem + knotifications + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First Release. + Ergün Salman + poyraz76@pisilinux.org + + + + + + kamera + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + Webcam support for KDE + KDE için web kamera desteği + Kamera is a plugin for KDE to use webcam. + Kamera, KDE için bir web kamera eklentisidir. + http://download.kde.org/stable/applications/15.12.0/src/kamera-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfigwidgets-devel + kxmlgui-devel + kio-devel + ki18n-devel + kconfig-devel + kdoctools-devel + libgphoto2-devel + + desktop/kde/application/kamera/pspec.xml + + + kamera + + kio + ki18n + libgcc + kconfig + kxmlgui + qt5-base + libgphoto2 + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kalgebra + http://edu.kde.org/applications/mathematics/kalgebra + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.application + A graph calculator + Bir grafiksel hesap makinesi + KAlgebra is a fully featured calculator that lets you plot different types of 2D and 3D functions and to calculate easy and not so easy calculations, such as addition, trigonometric functions or derivatives. + KAlgebra, farklı farklı 2B ve 3B fonksiyonları çizmek, kolay ve o kadar da kolay olmayan trigonometrik veya türev gibi hesaplamaları yapmak için bir uygulamadır. + kalgebra + mirrors://kde/stable/applications/15.12.0/src/kalgebra-15.12.0.tar.xz + + mesa-devel + mesa-glu-devel + qt5-base-devel + qt5-quick1-devel + qt5-svg-devel + qt5-webkit-devel + qt5-location-devel + analitza-devel + kdoctools-devel + ncurses-devel + readline-devel + gettext-devel + ki18n-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kio-devel + extra-cmake-modules + + desktop/kde/application/kalgebra/pspec.xml + + + kalgebra + + qt5-base + qt5-declarative + qt5-webkit + qt5-location + analitza + libgcc + kconfig + kxmlgui + readline + kcoreaddons + ki18n + kconfigwidgets + kwidgetsaddons + kio + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kldap + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + LDAP access API for KDE + Allows LDAP accessing with a convenient Qt style C++ API. + mirrors://kde/stable/applications/15.12.0/src/kldap-15.12.0.tar.xz + + qt5-base-devel + kcompletion-devel + ki18n-devel + openldap-client + cyrus-sasl-devel + extra-cmake-modules + + desktop/kde/application/kldap/pspec.xml + + + kldap + + qt5-base + kcompletion + ki18n + libgcc + cyrus-sasl + openldap-client + kwidgetsaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kldap-devel + Development files for kdelibs4-support + + qt5-base-devel + kldap + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + partitionmanager + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + KDE Partition Manager is a utility program to help you manage the disk devices, partitions and file systems on your computer + KDE Disk Bölümü Yöneticisi + It allows you to easily create, copy, move, delete, resize without losing data, backup and restore partitions.. + KDE Disk Bölümü Yöneticisi, disklerinizi, bölümlerinizi ve dosya sistemlerinizi yönetmenize izin verir. Birçok dosya sistemini (ext2/3/4, reiserfs, NTFS, FAT32 ve daha fazlası) desteklemenin yanı sıra, yeni bölüm oluşturabilir ya da var olan bir bölüm üzerinde boyutlandırma, kopyalama, taşıma, yedekleme ve geri yükleme işlemlerini yapabilir. + mirrors://kde/stable/partitionmanager/1.2.1/src/partitionmanager-1.2.1.tar.xz + + qt5-base-devel + libatasmart-devel + extra-cmake-modules + parted-devel + libutil-linux-devel + ki18n-devel + kio-devel + kconfig-devel + kxmlgui-devel + kservice-devel + kcoreaddons-devel + kiconthemes-devel + kjobwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kdoctools-devel + + desktop/kde/application/partitionmanager/pspec.xml + + + partitionmanager + + qt5-base + libatasmart + libgcc + parted + libutil-linux + kio + ki18n + kconfig + kxmlgui + kservice + kcoreaddons + kiconthemes + kjobwidgets + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-09-27 + 1.2.1 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kaccounts-integration + https://projects.kde.org/projects/kdereview/kaccounts-integration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + http://download.kde.org/stable/applications/15.12.0/src/kaccounts-integration-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcmutils-devel + ki18n-devel + kcoreaddons-devel + kdbusaddons-devel + libaccounts-qt5-devel + signon-devel + gettext-devel + kdeclarative-devel + + desktop/kde/application/kaccounts-integration/pspec.xml + + + kaccounts-integration + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + + ki18n + libgcc + signon + qt5-base + kcoreaddons + kdbusaddons + kconfigwidgets + libaccounts-qt5 + qt5-declarative + + + /usr/share + /usr/share/kservices5 + /usr/share/doc + /usr/lib/qt5 + /usr/lib/libkaccounts.so* + + + + kaccounts-integration-devel + Development files for kaccounts-integration + + kaccounts-integration + + + /usr/include + /usr/lib/cmake/KAccounts + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-14 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + poxml + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.application + Tools for translating DocBook XML files with Gettex + DocBook XML dosyalarını çevirme araçları. + This is a collection of tools that facilitate translating DocBook XML files using Gettext message files (PO files). + poxml, DocBook XML dosyalarını (.po) Gettext yarımıyla çevirmeyi sağlayan bir programdır. + http://download.kde.org/stable/applications/15.12.0/src/poxml-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + gettext-devel + kdoctools-devel + docbook-xsl + + desktop/kde/application/poxml/pspec.xml + + + poxml + + libgcc + gettext + qt5-base + + + /usr/bin + /usr/share/doc + /usr/share/man + + + kdesdk + + + kdesdk + + + + + 2015-12-20 + 15.12.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-14 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + kiriki + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Yahtzee like dice game + Yahtzee benzeri zar oyunu + Kiriki is an addictive and fun dice game for KDE, designed to be played by as many as six players. + Kiriki KDE için alışkanlık yapan ve eğlenceli bir zar oyunudur. Altı oyuncuya kadar birlikte oynanabilir. + kiriki + http://download.kde.org/stable/applications/15.12.0/src/kiriki-15.12.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kiriki/pspec.xml + + + kiriki + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + kiconthemes + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcalcore + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + the KDE calendar access library. + A calendar contains information like incidences (events, to-dos, journals), alarms, time zones, and other useful information. + mirrors://kde/stable/applications/15.12.0/src/kcalcore-15.12.0.tar.xz + + qt5-base-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libical-devel + extra-cmake-modules + + desktop/kde/application/kcalcore/pspec.xml + + + kcalcore + + qt5-base + kcodecs + kconfig + kcoreaddons + libical + kdelibs4-support + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcalcore-devel + Development files for kcontacts + + qt5-base-devel + libical-devel + kcalcore + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + akonadi-search + http://pim.kde.org/akonadi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.application + Libraries and daemons to implement searching in Akonadi + Libraries and daemons to implement searching in Akonadi + akonadi + mirrors://kde/stable/applications/15.12.0/src/akonadi-search-15.12.0.tar.xz + + qt5-base-devel + kcrash-devel + kconfig-devel + ki18n-devel + akonadi-devel + kcontacts-devel + kmime-devel + kjobwidgets-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdelibs4-support-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kcalcore-devel + libical-devel + kdesignerplugin + kcompletion-devel + kdepimlibs-devel + boost-devel + kcmutils-devel + krunner-devel + xapian-core-devel + kdoctools-devel + extra-cmake-modules + + desktop/kde/application/akonadi-search/pspec.xml + + + akonadi-search + app:console + + qt5-base + ki18n + kmime + libgcc + kcodecs + kconfig + kcalcore + kcontacts + kdepimlibs + kcoreaddons + xapian-core + krunner + kcompletion + kconfigwidgets + kwidgetsaddons + + + /etc/akonadi + /etc/xdg + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/config + /usr/share/mime + /usr/share/kde4 + /usr/share/doc/ + /usr/share/akonadi + /usr/share/kservices5 + + + + akonadi-search-devel + Development files for akonadi + + akonadi-search + qt5-base-devel + ki18n-devel + kmime-devel + kcodecs-devel + kconfig-devel + kcalcore-devel + kcontacts-devel + kdepimlibs-devel + kcoreaddons-devel + xapian-core-devel + kdelibs4-support-devel + kcmutils-devel + krunner-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kontactinterface + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + Kontact Plugin Interface Library + This library provides the glue necessary for application "Parts" to be embedded as a Kontact component (or plugin). + mirrors://kde/stable/applications/15.12.0/src/kontactinterface-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + kcoreaddons-devel + kparts-devel + kwindowsystem-devel + ki18n-devel + kxmlgui-devel + kiconthemes-devel + + desktop/kde/application/kontactinterface/pspec.xml + + + kontactinterface + + qt5-base + kio + kparts + libgcc + kxmlgui + kcoreaddons + kiconthemes + kwindowsystem + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kontactinterface-devel + Development files for kontactinterface + + qt5-base-devel + kontactinterface + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kwordquiz + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + Kwordquiz is a Flash Card Trainer + KWordQuiz is a tool that gives you a powerful way to master new vocabularies. It may be a language or any other kind of terminology.. + mirrors://kde/stable/applications/15.12.0/src/kwordquiz-15.12.0.tar.xz + + qt5-base-devel + gettext-devel + ki18n-devel + kcrash-devel + sonnet-devel + kconfig-devel + kconfigwidgets-devel + kdoctools-devel + kguiaddons-devel + kiconthemes-devel + kitemviews-devel + knotifyconfig-devel + kio-devel + knewstuff-devel + knotifications-devel + kxmlgui-devel + kdelibs4-support-devel + kdeclarative-devel + kcoreaddons-devel + kwindowsystem-devel + kwidgetsaddons-devel + qt5-phonon-devel + libkeduvocdocument-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + cmake + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/games/kwordquiz/pspec.xml + + + kwordquiz + + qt5-base + qt5-phonon + ki18n + kconfig + kconfigwidgets + kguiaddons + kiconthemes + kitemviews + knotifyconfig + knewstuff + knotifications + kxmlgui + kdelibs4-support + libgcc + kcoreaddons + kwindowsystem + kwidgetsaddons + libkeduvocdocument + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-30 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkmahjongg + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.games + Common code, backgrounds and tile sets for games using Mahjongg tiles + Common code, backgrounds and tile sets for games using Mahjongg tiles. + mirrors://kde/stable/applications/15.12.0/src/libkmahjongg-15.12.0.tar.xz + + qt5-base-devel + qt5-svg-devel + extra-cmake-modules + gettext-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcoreaddons-devel + mesa-devel + + desktop/kde/games/libkmahjongg/pspec.xml + + + libkmahjongg + + qt5-base + qt5-svg + libgcc + ki18n + kconfig + kcompletion + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + libkmahjongg-devel + Development files for libkmahjongg + + libkmahjongg + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-25 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkdegames + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + A tool for managing print jobs and printers + Print-Manager. A tool to managing your print jobs and the Printers + mirrors://kde/stable/applications/15.12.0/src/libkdegames-15.12.0.tar.xz + + qt5-base-devel + kdoctools-devel + kdnssd-devel + openal-devel + cmake + extra-cmake-modules + python3 + kdeclarative-devel + knewstuff-devel + kio-devel + ki18n-devel + libgcc + kconfig-devel + kxmlgui-devel + qt5-svg-devel + karchive-devel + kguiaddons-devel + libsndfile-devel + kcompletion-devel + kcoreaddons-devel + kiconthemes-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + mesa-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/games/libkdegames/pspec.xml + + + libkdegames + + qt5-base + kdelibs4-support + kdnssd + kdeclarative + knewstuff + kio + ki18n + libgcc + openal + kconfig + kxmlgui + qt5-svg + karchive + kguiaddons + libsndfile + kcompletion + kcoreaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libkdegames-devel + Shared libraries for KDE games. + + libkdegames + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-08-16 + 15.04.3 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kshisen + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + Shisen-Sho Mahjongg like tile game + Shisen-Sho is a solitaire-like game played using the standard set of Mahjong tiles. Unlike Mahjong however, Shisen-Sho has only one layer of scrambled tiles. + mirrors://kde/stable/applications/15.08.0/src/kshisen-15.08.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + ki18n-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcoreaddons-devel + kcoreaddons-devel + kdbusaddons-devel + libkdegames-devel + libkmahjongg-devel + knewstuff-devel + kdnssd-devel + kdeclarative-devel + kio-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/games/kshisen/pspec.xml + + + kshisen + + qt5-base + libgcc + ki18n + kconfig + kconfigwidgets + kwidgetsaddons + kxmlgui + kcoreaddons + kdbusaddons + libkdegames + libkmahjongg + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-08-29 + 1.6.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kpat + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + Patience card game + To play KPatience you need, as the name suggests, patience. For simple games, where the way the game goes depends only upon how the cards fall, your patience might be the only thing you need. + mirrors://kde/stable/applications/15.12.0/src/kpat-15.12.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-phonon-devel + kdoctools-devel + cmake + gettext-devel + kio-devel + kpackage-devel + kitemviews-devel + kinit-devel + kunitconversion-devel + kdelibs4-support-devel + kiconthemes-devel + ktextwidgets-devel + kitemmodels-devel + knotifyconfig-devel + libkdegames-devel + kemoticons-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kconfig-devel + kxmlgui-devel + qt5-svg-devel + kguiaddons-devel + kcompletion-devel + kcoreaddons-devel + kdbusaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + shared-mime-info + extra-cmake-modules + python3 + mesa-devel + kdesignerplugin + + desktop/kde/games/kpat/pspec.xml + + + kpat + + qt5-base + kdelibs4-support + libkdegames + knewstuff + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + kguiaddons + kcompletion + kcoreaddons + kdbusaddons + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-23 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-08-16 + 15.04.3 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + krunner + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + Krunner Framework for providing different actions given a string query + Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. + mirrors://kde/stable/frameworks/5.17/portingAids/krunner-5.17.0.tar.xz + + qt5-base-devel + gettext-devel + kdoctools-devel + qt5-declarative-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + plasma-framework-devel + solid-devel + threadweaver-devel + extra-cmake-modules + + desktop/kde/porting-aids/krunner/pspec.xml + + + krunner + + qt5-base + qt5-declarative + libgcc + kconfig + kcoreaddons + ki18n + kio + kservice + plasma-framework + solid + threadweaver + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + krunner-devel + Development files for krunner + + krunner + qt5-base-devel + qt5-declarative-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + plasma-framework-devel + solid-devel + threadweaver-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdelibs4-support + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + Code and utilities to ease the transition to KDE Frameworks 5 + KDELibs4Support provides libraries to port KDE4 programs to QT5/KDE5 + mirrors://kde/stable/frameworks/5.17/portingAids/kdelibs4support-5.17.0.tar.xz + + qt5-base-devel + qt5-svg-devel + perl-URI + libSM-devel + docbook-xml + openssl-devel + libX11-devel + kio-devel + kauth-devel + kcrash-devel + kdesignerplugin + intltool + kdoctools-devel + kglobalaccel-devel + kguiaddons-devel + kparts-devel + ktextwidgets-devel + sonnet-devel + kunitconversion-devel + NetworkManager-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kdelibs4-support/pspec.xml + + + kdelibs4-support + + qt5-base + libICE + libgcc + libX11 + qt5-svg + qt5-x11extras + libSM + kauth + solid + kcodecs + kcoreaddons + kjobwidgets + kcompletion + kconfig + kconfigwidgets + kcrash + kdbusaddons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemviews + knotifications + kparts + kservice + ktextwidgets + kxmlgui + kwindowsystem + kwidgetsaddons + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kdelibs4-support-devel + Development files for kdelibs4-support + + kdelibs4-support + qt5-base-devel + libICE-devel + libX11-devel + qt5-svg-devel + qt5-x11extras-devel + libSM-devel + kauth-devel + solid-devel + kcodecs-devel + kcoreaddons-devel + kjobwidgets-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcrash-devel + kdbusaddons-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + knotifications-devel + kparts-devel + kservice-devel + ktextwidgets-devel + kxmlgui-devel + kwindowsystem-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kross-interpreters + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.porting-aids + Kross interpreter plugins for programming languages + Language interpreters to enable in-process scripting with Kross. + mirrors://kde/stable/applications/15.08.0/src/kross-interpreters-15.08.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kross-devel + kunitconversion-devel + python-devel + + desktop/kde/porting-aids/kross-interpreters/pspec.xml + + + kross-interpreters + + qt5-base + libgcc + python + kross + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-08-29 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmediaplayer + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.porting-aids + KDE5 media player Plugin interface for media player features + KMediaPlayer builds on the KParts framework to provide a common interface for KParts that can play media files. + mirrors://kde/stable/frameworks/5.17/portingAids/kmediaplayer-5.17.0.tar.xz + + qt5-base-devel + kio-devel + kauth-devel + kparts-devel + ktextwidgets-devel + sonnet-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/porting-aids/kmediaplayer/pspec.xml + + + kmediaplayer + + qt5-base + libgcc + kparts + kxmlgui + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmediaplayer-devel + Development files for kmediaplayer + + kmediaplayer + qt5-base-devel + kparts-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kjsembed + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.porting-aids + JavaScript support for HTML rendering engine on KDE5 + The KJSEmbed library is an easy-to-use wrapper around the KDE ECMAScript interpreter (kjs) that makes it easy to add scriptability to an application. + mirrors://kde/stable/frameworks/5.17/portingAids/kjsembed-5.17.0.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-designer-devel + kdoctools-devel + ki18n-devel + kjs-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kjsembed/pspec.xml + + + kjsembed + + qt5-base + qt5-svg + libgcc + ki18n + kjs + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + kjsembed-devel + Development files for kjsembed + + qt5-base-devel + qt5-svg-devel + ki18n-devel + kjs-devel + kjsembed + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kjs + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + JavaScript engine for KDE + This library provides an ECMAScript compatible interpreter. The ECMA standard is based on well known scripting languages such as Netscape's JavaScript and Microsoft's JScript. + mirrors://kde/stable/frameworks/5.17/portingAids/kjs-5.17.0.tar.xz + + qt5-base-devel + libpcre-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kjs/pspec.xml + + + kjs + + qt5-base + libgcc + libpcre + + + /usr/bin + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + kjs-devel + Development files for kjs + + libpcre-devel + qt5-base-devel + kjs + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + khtml + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + HTML rendering engine for KDE + KHTML is a web rendering engine, based on the KParts technology and using KJS for JavaScript support. + mirrors://kde/stable/frameworks/5.17/portingAids/khtml-5.17.0.tar.xz + + qt5-base-devel + libjpeg-turbo-devel + giflib-devel + libpng-devel + qt5-phonon-devel + libX11-devel + zlib-devel + kio-devel + kjs-devel + kglobalaccel-devel + kauth-devel + kparts-devel + ktextwidgets-devel + sonnet-devel + openssl-devel + extra-cmake-modules + + desktop/kde/porting-aids/khtml/pspec.xml + + + khtml + + qt5-base + qt5-x11extras + qt5-phonon + zlib + openssl + giflib + libX11 + libgcc + libpng + libjpeg-turbo + sonnet + kcodecs + kconfig + kjobwidgets + kwidgetsaddons + kcompletion + karchive + kconfigwidgets + kcoreaddons + kglobalaccel + ki18n + kiconthemes + kio + kjs + knotifications + kparts + kservice + ktextwidgets + kwallet + kwindowsystem + kxmlgui + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + khtml-devel + Development files for khtml + + khtml + qt5-base-devel + qt5-x11extras-devel + qt5-phonon-devel + zlib-devel + openssl-devel + giflib-devel + libX11-devel + libpng-devel + libjpeg-turbo-devel + sonnet-devel + kcodecs-devel + kconfig-devel + kjobwidgets-devel + kwidgetsaddons-devel + kcompletion-devel + karchive-devel + kconfigwidgets-devel + kcoreaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kio-devel + kjs-devel + knotifications-devel + kparts-devel + kservice-devel + ktextwidgets-devel + kwallet-devel + kwindowsystem-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kross + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.porting-aids + KDE5 application scripting helper + Kross is a scripting bridge to embed scripting functionality into an application. It supports QtScript as a scripting interpreter backend. + mirrors://kde/stable/frameworks/5.17/portingAids/kross-5.17.0.tar.xz + + qt5-base-devel + qt5-script-devel + kcoreaddons-devel + kdoctools-devel + kconfigwidgets-devel + ktextwidgets-devel + kparts-devel + sonnet-devel + kauth-devel + ki18n-devel + kcompletion-devel + kiconthemes-devel + kio-devel + kparts-devel + kwidgetsaddons-devel + kxmlgui-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kross/pspec.xml + + + kross + + qt5-base + qt5-script + libgcc + kcoreaddons + ki18n + kcompletion + kiconthemes + kio + kparts + kwidgetsaddons + kxmlgui + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kross-devel + Development files for kross + + kross + qt5-base-devel + qt5-script-devel + kcoreaddons-devel + ki18n-devel + kcompletion-devel + kiconthemes-devel + kio-devel + kparts-devel + kwidgetsaddons-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcrash + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Kcrash crash handling application + KCrash provides support for intercepting and handling application crashes. + mirrors://kde/stable/frameworks/5.17/kcrash-5.17.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + kcoreaddons-devel + kwindowsystem-devel + libX11-devel + extra-cmake-modules + + desktop/kde/framework/kcrash/pspec.xml + + + kcrash + + qt5-base + libX11 + libgcc + qt5-x11extras + kcoreaddons + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcrash-devel + Development files for kcrash + + qt5-base-devel + qt5-x11extras-devel + kcrash + kcoreaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kemoticons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE emoticon manager + KEmoticons converts emoticons from text to a graphical representation with images in HTML. + mirrors://kde/stable/frameworks/5.17/kemoticons-5.17.0.tar.xz + + qt5-base-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + kservice-devel + extra-cmake-modules + + desktop/kde/framework/kemoticons/pspec.xml + + + kemoticons + + qt5-base + libgcc + karchive + kcoreaddons + kconfig + kservice + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kemoticons-devel + Development files for kemoticons + + kemoticons + qt5-base-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + kservice-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + knewstuff + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework for downloading and sharing additional application data + The KNewStuff library implements collaborative data sharing for applications. + mirrors://kde/stable/frameworks/5.17/knewstuff-5.17.0.tar.xz + + qt5-base-devel + boost-devel + kauth-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/knewstuff/pspec.xml + + + knewstuff + + qt5-base + libgcc + kwidgetsaddons + ktextwidgets + kiconthemes + kcompletion + kitemviews + karchive + attica + kconfig + kcoreaddons + ki18n + kio + kservice + kxmlgui + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knewstuff-devel + Development files for knewstuff + + qt5-base-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + kxmlgui-devel + knewstuff + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kguiaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Utilities for graphical user interfaces + The KDE GUI addons provide utilities for graphical user interfaces in the areas of colors, fonts, text, images, keyboard input. Development files. + mirrors://kde/stable/frameworks/5.17/kguiaddons-5.17.0.tar.xz + + libX11-devel + libxcb-devel + qt5-base-devel + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kguiaddons/pspec.xml + + + kguiaddons + + libgcc + libX11 + qt5-base + qt5-x11extras + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kguiaddons-devel + Development files for kguiaddons + + kguiaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kapidox + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Frameworks API documentation tools. + KDE5 Frameworks API dokümantasyon araçları. + KDE5 Frameworks API documentation tools. + KDE5 Frameworks API dokümantasyon araçları. + mirrors://kde/stable/frameworks/5.17/kapidox-5.17.0.tar.xz + + python-Jinja2 + python-PyYAML + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/kapidox/pspec.xml + + + kapidox + + qt5-base /usr/bin /usr/lib /usr/share /usr/share/doc - /usr/share/locale - - 2015-10-19 - 2.2.7 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-02-11 - 2.2.5 + + 2015-12-12 + 5.17.0 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2013-03-05 - 2.2.4 - Version bump - Ertan Güven - ertan@pisilinux.org + 2015-06-20 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-01-10 - 2.2.3 - First release - Osman Erkan - osman.erkan@pisilinux.org + 2015-05-30 + 5.10.0 + First Release + Stefan Gronewold(groni) + groni@pisilinux.org - nano - http://www.nano-editor.org/ + kded + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 daemon + Kded runs in the background and performs a number of small tasks. + mirrors://kde/stable/frameworks/5.17/kded-5.17.0.tar.xz + + qt5-base-devel + kdoctools-devel + kinit-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + kdbusaddons-devel + kservice-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kded/pspec.xml + + + kded + + qt5-base + libgcc + kcoreaddons + kconfig + kcrash + kdbusaddons + kservice + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + kded-devel + Development files for kded + + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + kdbusaddons-devel + kservice-devel + kded + + + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kbookmarks + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Access and manipulate bookmarks stored using XBEL format + Framework which lets you access and manipulate bookmarks stored using XBEL format + mirrors://kde/stable/frameworks/5.17/kbookmarks-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kcoreaddons-devel + kauth-devel + kcodecs-devel + kconfig-devel + kconfigwidgets-devel + kiconthemes-devel + kwidgetsaddons-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/framework/kbookmarks/pspec.xml + + + kbookmarks + + qt5-base + libgcc + kcoreaddons + kcodecs + kconfig + kiconthemes + kwidgetsaddons + kxmlgui + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kbookmarks-devel + Development files for kbookmarks + + kbookmarks + qt5-base-devel + kcoreaddons-devel + kcodecs-devel + kconfig-devel + kiconthemes-devel + kwidgetsaddons-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ktexteditor + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 text editor libraries + KTextEditor provides a powerful text editor component that you can embed in your application. + mirrors://kde/stable/frameworks/5.17/ktexteditor-5.17.0.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-xmlpatterns-devel + kauth-devel + kguiaddons-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kparts-devel + libgit2-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/ktexteditor/pspec.xml + + + ktexteditor + + qt5-script + qt5-base + libgcc + libgit2 + ktextwidgets + kwidgetsaddons + kconfigwidgets + kjobwidgets + kiconthemes + kcoreaddons + kcompletion + kitemviews + kxmlgui + kcodecs + karchive + kguiaddons + kconfig + ki18n + kio + ki18n + kparts + sonnet + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ktexteditor-devel + Development files for ktexteditor + + qt5-script-devel + qt5-base-devel + libgit2-devel + ktextwidgets-devel + kwidgetsaddons-devel + kconfigwidgets-devel + kjobwidgets-devel + kiconthemes-devel + kcoreaddons-devel + kcompletion-devel + kitemviews-devel + kxmlgui-devel + kcodecs-devel + karchive-devel + kguiaddons-devel + kconfig-devel + ki18n-devel + kio-devel + ki18n-devel + kparts-devel + sonnet-devel + ktexteditor + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kxmlrpcclient + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + XML-RPC client library for KDE + This library contains simple XML-RPC Client support. It is used mainly by the egroupware module of kdepim, but is a complete client and is quite easy to use. Only one interface is exposed to the world, kxmlrpcclient/client.h and of that interface, you only need to use 3 methods: setUrl, setUserAgent and call. + mirrors://kde/stable/frameworks/5.17/kxmlrpcclient-5.17.0.tar.xz + + qt5-base-devel + kauth-devel + kio-devel + extra-cmake-modules + + desktop/kde/framework/kxmlrpcclient/pspec.xml + + + kxmlrpcclient + + qt5-base + libgcc + ki18n + kcoreaddons + kio + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kxmlrpcclient-devel + Development files for kdelibs4-support + + kxmlrpcclient + qt5-base-devel + ki18n-devel + kcoreaddons-devel + kio-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwidgetsaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 desktop widgets + KdeWidgetsAddons is a framework contains addon widgets and shared libraries for applications using Qt5-Widgets. + mirrors://kde/stable/frameworks/5.17/kwidgetsaddons-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-designer-devel + extra-cmake-modules + + desktop/kde/framework/kwidgetsaddons/pspec.xml + + + kwidgetsaddons + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kwidgetsaddons-devel + Development files for kwidgetsaddons + + qt5-base-devel + kwidgetsaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kxmlgui + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework for managing menu and toolbar actions + Kxmlgui provides a framework for managing menu and toolbar actions in an abstract way. + mirrors://kde/stable/frameworks/5.17/kxmlgui-5.17.0.tar.xz + + qt5-base-devel + attica-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kauth-devel + kcodecs-devel + sonnet-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kxmlgui/pspec.xml + + + kxmlgui + + qt5-base + libgcc + attica + kcoreaddons + kconfig + kconfigwidgets + kglobalaccel + ki18n + kiconthemes + kitemviews + ktextwidgets + kwidgetsaddons + kwindowsystem + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kxmlgui-devel + Development files for kxmlgui + + kxmlgui + qt5-base-devel + attica-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kactivities + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Library for KDE's Plasma Activities support + Kactivities provides an API for using and interacting with the Plasma Activities Manager. + mirrors://kde/stable/frameworks/5.17/kactivities-5.17.0.tar.xz + + qt5-base-devel + mesa-devel + boost-devel + kdbusaddons-devel + kdeclarative-devel + kpackage-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + kio-devel + kservice-devel + kbookmarks-devel + kwidgetsaddons-devel + kcompletion-devel + kjobwidgets-devel + kitemviews-devel + solid-devel + kauth-devel + kcodecs-devel + kconfigwidgets-devel + kxmlgui-devel + kwindowsystem-devel + kglobalaccel-devel + kcmutils-devel + qt5-declarative-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + extra-cmake-modules + + + build-source.patch + + desktop/kde/framework/kactivities/pspec.xml + + + kactivities + + qt5-base + qt5-declarative + libgcc + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + ki18n + kio + kglobalaccel + kservice + kxmlgui + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kactivities-devel + Development files for kactivities + + qt5-base-devel + qt5-declarative-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kwindowsystem-devel + kactivities + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + modemmanager-qt + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Qt wrapper for ModemManager DBus API + Qt wrapper for ModemManager DBus API + mirrors://kde/stable/frameworks/5.17/modemmanager-qt-5.17.0.tar.xz + + qt5-base-devel + ModemManager-devel + extra-cmake-modules + + desktop/kde/framework/modemmanager-qt/pspec.xml + + + modemmanager-qt + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + modemmanager-qt-devel + Development files for modemmanger-qt + + qt5-base-devel + modemmanager-qt + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kconfigwidgets + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.framework + Kconfig widgets + KConfigWidgets provides easy-to-use classes to create configuration dialogs, as well as a set of widgets which uses KConfig to store their settings. + mirrors://kde/stable/frameworks/5.17/kconfigwidgets-5.17.0.tar.xz + + qt5-base-devel + ki18n-devel + kauth-devel + kcodecs-devel + kconfig-devel + kcoreaddons-devel + kguiaddons-devel + kwidgetsaddons-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kconfigwidgets/pspec.xml + + + kconfigwidgets + + libgcc + qt5-base + kauth + kcodecs + kconfig + kcoreaddons + kguiaddons + ki18n + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kconfigwidgets-devel + Development files for kconfigwidgets + + kconfigwidgets + qt5-base-devel + kauth-devel + kcodecs-devel + kconfig-devel + kcoreaddons-devel + kguiaddons-devel + ki18n-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kauth + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Abstraction to system policy and authentication features + Framework which lets applications perform actions as a privileged user + mirrors://kde/stable/frameworks/5.17/kauth-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + polkit-qt-devel + kcoreaddons-devel + extra-cmake-modules + + desktop/kde/framework/kauth/pspec.xml + + + kauth + + qt5-base + polkit-qt + kcoreaddons + libgcc + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kauth-devel + Development files for kauth + + kauth + kcoreaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdeclarative + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Integration of QML and KDE workspaces + KDeclarative provides integration of QML and KDE workspaces. + mirrors://kde/stable/frameworks/5.17/kdeclarative-5.17.0.tar.xz + + qt5-base-devel + mesa-devel + libepoxy-devel + qt5-declarative-devel + kauth-devel + kcodecs-devel + kpackage-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + kguiaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kio-devel + kbookmarks-devel + kcompletion-devel + kconfigwidgets-devel + kitemviews-devel + kjobwidgets-devel + solid-devel + kxmlgui-devel + kwidgetsaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kdeclarative/pspec.xml + + + kdeclarative + + qt5-base + libgcc + libepoxy + qt5-declarative + kpackage + kconfig + kservice + kcoreaddons + kglobalaccel + ki18n + kiconthemes + kio + kwidgetsaddons + kwindowsystem + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdeclarative-devel + Development files for kdeclarative + + qt5-base-devel + libepoxy-devel + qt5-declarative-devel + kpackage-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kio-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdeclarative + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kio + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Resource and network access abstraction + Network transparent access to files and data + mirrors://kde/stable/frameworks/5.17/kio-5.17.0.tar.xz + + qt5-base-devel + acl-devel + attr-devel + mit-kerberos + karchive-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kservice-devel + solid-devel + sonnet-devel + kdoctools-devel + kbookmarks-devel + kwidgetsaddons-devel + kcompletion-devel + kconfigwidgets-devel + kauth-devel + kcodecs-devel + kiconthemes-devel + kitemviews-devel + kjobwidgets-devel + kwindowsystem-devel + qt5-x11extras-devel + kwallet-devel + kxmlgui-devel + ktextwidgets-devel + knotifications-devel + libxslt-devel + qt5-script-devel + zlib-devel + docbook-sgml4_5 + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kio/pspec.xml + + + kio + + qt5-base + acl + attr + libxml2 + libxslt + libgcc + mit-kerberos + knotifications + qt5-script + qt5-x11extras + karchive + kconfig + kcodecs + kbookmarks + kcompletion + kconfigwidgets + kcoreaddons + kdbusaddons + ki18n + kiconthemes + kitemviews + kjobwidgets + kservice + ktextwidgets + kwallet + kwidgetsaddons + kwindowsystem + kxmlgui + solid + + + /etc/ + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kio-devel + Development files for kio + + qt5-base-devel + kio + qt5-base-devel + acl-devel + attr-devel + libxml2-devel + libxslt-devel + knotifications-devel + qt5-script-devel + qt5-x11extras-devel + karchive-devel + kconfig-devel + kcodecs-devel + kbookmarks-devel + kcompletion-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kjobwidgets-devel + kservice-devel + ktextwidgets + kwallet-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + solid-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kplotting + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Data plotting + Kplotting contains data plotting classes for QT 5 and KDE + mirrors://kde/stable/frameworks/5.17/kplotting-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/kplotting/pspec.xml + + + kplotting + + qt5-base + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kplotting-devel + Development files for kplotting + + qt5-base-devel + kplotting + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kfilemetadata + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 library for extracting meta data from files. + KDE library for extracting meta data from files. + mirrors://kde/stable/frameworks/5.17/kfilemetadata-5.17.0.tar.xz + + qt5-base-devel + attr-devel + ebook-tools-devel + karchive-devel + ki18n-devel + extra-cmake-modules + + desktop/kde/framework/kfilemetadata/pspec.xml + + + kfilemetadata + + qt5-base + ebook-tools + libgcc + exiv2-libs + taglib + ffmpeg + poppler-qt5 + karchive + ki18n + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kfilemetadata-devel + Development files for kfilemetadata + + kfilemetadata + qt5-base-devel + ebook-tools-devel + exiv2-devel + taglib-devel + ffmpeg-devel + poppler-qt5-devel + karchive-devel + ki18n-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-26 + 5.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-07-01 + 5.9.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-03 + 5.9.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kpackage + https://userbase.kde.org/KPackage + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPL + app:library + desktop.kde.framework + Framework that lets applications manage user installable packages of non-binary assets + KPackage is dependent on the Smart package manager. + mirrors://kde/stable/frameworks/5.17/kpackage-5.17.0.tar.xz + + qt5-base-devel + libX11-devel + kconfig-devel + ki18n-devel + kcoreaddons-devel + karchive-devel + kdoctools-devel + docbook-sgml4_5 + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kpackage/pspec.xml + + + kpackage + + qt5-base + libgcc + kconfig + ki18n + kcoreaddons + karchive + + + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man/man1 + + + + kpackage-devel + Development files for kpackage + + kpackage + qt5-base-devel + kconfig-devel + ki18n-devel + kcoreaddons-devel + karchive-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kimageformats + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Image formats addons for QT 5 + This framework provides additional image format plugins for QtGui. + mirrors://kde/stable/frameworks/5.17/kimageformats-5.17.0.tar.xz + + qt5-base-devel + openexr-devel + ilmbase-devel + extra-cmake-modules + + desktop/kde/framework/kimageformats/pspec.xml + + + kimageformats + + qt5-base + libgcc + openexr-libs + ilmbase + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + solid + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 hardware integration framework + Solid is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system. + mirrors://kde/stable/frameworks/5.17/solid-5.17.0.tar.xz + + qt5-base-devel + eudev-devel + qt5-linguist + qt5-declarative-devel + udisks2-devel + upower-devel + media-player-info + extra-cmake-modules + + desktop/kde/framework/solid/pspec.xml + + + solid + + qt5-base + qt5-declarative + media-player-info + libgcc + eudev + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + solid-devel + Development files for solid + + qt5-base-devel + solid + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kparts + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Plugin framework for user interface components + This library implements the framework for KDE parts, which are elaborate widgets with a user-interface defined in terms of actions (menu items, toolbar icons). + mirrors://kde/stable/frameworks/5.17/kparts-5.17.0.tar.xz + + qt5-base-devel + kauth-devel + knotifications-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/kparts/pspec.xml + + + kparts + + qt5-base + libgcc + kjobwidgets + kconfig + kcoreaddons + ki18n + kiconthemes + knotifications + kservice + kwidgetsaddons + kxmlgui + kio + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kparts-devel + Development files for kparts + + qt5-base-devel + kjobwidgets-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kservice-devel + kwidgetsaddons-devel + kxmlgui-devel + kio-devel + kparts + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdesu + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + User interface for running shell commands with root privileges + kdesu provides functionality for building GUI front ends for (password asking) console mode programs. + mirrors://kde/stable/frameworks/5.17/kdesu-5.17.0.tar.xz + + qt5-base-devel + kcoreaddons-devel + kpty-devel + kservice-devel + ki18n-devel + kconfig-devel + libX11-devel + extra-cmake-modules + + desktop/kde/framework/kdesu/pspec.xml + + + kdesu + + qt5-base + kcoreaddons + kpty + kservice + ki18n + kconfig + libgcc + libX11 + + + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdesu-devel + Development files for kdesu + + kdesu + qt5-base-devel + kcoreaddons-devel + kpty-devel + kservice-devel + ki18n-devel + kconfig-devel + libX11-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + sonnet + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE spell schecking library + This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. + mirrors://kde/stable/frameworks/5.17/sonnet-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + hunspell-devel + aspell-devel + extra-cmake-modules + + desktop/kde/framework/sonnet/pspec.xml + + + sonnet + + qt5-base + libgcc + aspell + hunspell + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + sonnet-devel + Development files for sonnet + + qt5-base-devel + sonnet + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ki18n + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE Gettext-based UI text internationalization. + KDE grafik arabirim yerelleştirme kitaplığı + KI18n provides functionality for internationalizing user interface text in applications, based on the GNU Gettext translation system. + ki18n, KDE Frameworks 5 için, Gettext tabanlı bir grafik arabirim yerelleştirme kitaplığıdır + mirrors://kde/stable/frameworks/5.17/ki18n-5.17.0.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/ki18n/pspec.xml + + + ki18n + + libgcc + qt5-base + qt5-script + qt5-declarative + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + ki18n-devel + Development files for kde5-ki18n + ki18n için geliştirme dosyaları + + ki18n + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcoreaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Utilities for core application functionality and accessing the OS + KCoreAddons provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more. + mirrors://kde/stable/frameworks/5.17/kcoreaddons-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + shared-mime-info + extra-cmake-modules + mesa-devel + + desktop/kde/framework/kcoreaddons/pspec.xml + + + kcoreaddons + + qt5-base + libgcc + shared-mime-info + docbook-xsl + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcoreaddons-devel + Development files for kcoreaddons + + qt5-base-devel + kcoreaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + System.Package + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + threadweaver + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Multi-threaded programming framework for KDE + ThreadWeaver is a helper for multithreaded programming. It uses a job-based interface to queue tasks and execute them in an efficient way. + mirrors://kde/stable/frameworks/5.17/threadweaver-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/threadweaver/pspec.xml + + + threadweaver + + qt5-base + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + threadweaver-devel + Development files for threadweaver + + qt5-base-devel + threadweaver + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdoctools + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 document generator + kdoctools is an application aims to generate documents from DocBook. + mirrors://kde/stable/frameworks/5.17/kdoctools-5.17.0.tar.xz + + qt5-base-devel + perl-URI + python + libxml2-devel + libxslt-devel + docbook-xml + docbook-xsl + docbook-sgml4_5 + ki18n-devel + karchive-devel + extra-cmake-modules + + desktop/kde/framework/kdoctools/pspec.xml + + + kdoctools + + qt5-base + libxml2 + libgcc + libxslt + karchive + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + kdoctools-devel + Development files for kdoctools + + qt5-base-devel + kdoctools + karchive-devel + libgcc + libxml2-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kinit + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE applications initialization utility + Process launcher to speed up launching KDE applications. + mirrors://kde/stable/frameworks/5.17/kinit-5.17.0.tar.xz + + qt5-base-devel + kdoctools-devel + libX11-devel + libcap-devel + libgcc + kcrash-devel + kcoreaddons-devel + kitemviews-devel + solid-devel + kxmlgui-devel + kjobwidgets-devel + kcompletion-devel + kwidgetsaddons-devel + kconfig-devel + kcodecs-devel + kauth-devel + kconfigwidgets-devel + kio-devel + ki18n-devel + kservice-devel + kbookmarks-devel + kwindowsystem-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kinit/pspec.xml + + + kinit + + qt5-base + libX11 + libcap + libgcc + kio + kcrash + kcoreaddons + kconfig + ki18n + kservice + kwindowsystem + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/locale + /usr/bin + /usr/share/doc + /usr/share/man + + + + kinit-devel + Development files for kinit + + qt5-base-devel + libX11-devel + libcap-devel + kio-devel + kcrash-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kservice-devel + kwindowsystem-devel + kinit + + + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcompletion + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Addon with auto completion widgets and classes + KCompletion provides widgets with advanced completion support as well as a lower-level completion class which can be used with your own widgets. + mirrors://kde/stable/frameworks/5.17/kcompletion-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kconfig-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/kcompletion/pspec.xml + + + kcompletion + + qt5-base + libgcc + kconfig + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcompletion-devel + Development files for kcompletion + + qt5-base-devel + kcompletion + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kglobalaccel + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Global desktop keyboard shortcuts + KGlobalAccel allows you to have global accelerators that are independent of the focused window. + mirrors://kde/stable/frameworks/5.17/kglobalaccel-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-base + libxcb-devel + kcrash-devel + kconfig-devel + qt5-x11extras-devel + kcoreaddons-devel + kdbusaddons-devel + xcb-util-keysyms-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kglobalaccel/pspec.xml + + + kglobalaccel + + qt5-base + libgcc + libxcb + kcrash + kconfig + qt5-x11extras + kcoreaddons + kdbusaddons + xcb-util-keysyms + kwindowsystem + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kglobalaccel-devel + Development files for kglobalaccel + + kglobalaccel + qt5-base-devel + libxcb-devel + kcrash-devel + kconfig-devel + qt5-x11extras-devel + kcoreaddons-devel + kdbusaddons-devel + xcb-util-keysyms-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kitemmodels + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Set of item models extending the Qt model-view framework + KItemModels provides a set of item models extending the Qt model-view framework. + mirrors://kde/stable/frameworks/5.17/kitemmodels-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/kitemmodels/pspec.xml + + + kitemmodels + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kitemmodels-devel + Development files for kitemmodels + + qt5-base-devel + kitemmodels + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcmutils + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Utilities for interacting with KCModules + KCMUtils provides various classes to work with KCModules. KCModules can be created with the KConfigWidgets framework. + mirrors://kde/stable/frameworks/5.17/kcmutils-5.17.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + mesa-devel + kcodecs-devel + kpackage-devel + kdeclarative-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kservice-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/framework/kcmutils/pspec.xml + + + kcmutils + + qt5-base + qt5-declarative + libgcc + kdeclarative + kconfigwidgets + kwidgetsaddons + kconfig + kauth + kcoreaddons + ki18n + kiconthemes + kitemviews + kservice + kxmlgui + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcmutils-devel + Development files for kcmutils + + kcmutils + qt5-base-devel + qt5-declarative-devel + kdeclarative-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kservice-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kidletime + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Idle time reporting utility + KIdleTime is a singleton reporting information on idle time. It is useful not only for finding out about the current idle time of the PC, but also for getting notified upon idle time events, such as custom timeouts, or user activity. + mirrors://kde/stable/frameworks/5.17/kidletime-5.17.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libX11-devel + libXext-devel + libXScrnSaver-devel + libxcb-devel + extra-cmake-modules + + desktop/kde/framework/kidletime/pspec.xml + + + kidletime + + qt5-base + libX11 + libgcc + libxcb + libXScrnSaver + libXext + qt5-x11extras + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kidletime-devel + Development files for kidletime + + kidletime + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ktextwidgets + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 text editing widgets + KTextWidgets provides widgets for displaying and editing text. It supports rich text as well as plain text. + mirrors://kde/stable/frameworks/5.17/ktextwidgets-5.17.0.tar.xz + + qt5-base-devel + kconfig-devel + kcompletion-devel + kcodecs-devel + kauth-devel + kconfigwidgets-devel + kiconthemes-devel + kwidgetsaddons-devel + ki18n-devel + sonnet-devel + kservice-devel + kcoreaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/ktextwidgets/pspec.xml + + + ktextwidgets + + qt5-base + libgcc + kconfig + kcompletion + kconfigwidgets + kiconthemes + kwidgetsaddons + ki18n + sonnet + kservice + kcoreaddons + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ktextwidgets-devel + Development files for ktextwidgets + + ktextwidgets + qt5-base-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kiconthemes-devel + kwidgetsaddons-devel + ki18n-devel + sonnet-devel + kservice-devel + kcoreaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwallet + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE password storage framework + This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. + mirrors://kde/stable/frameworks/5.17/kwallet-5.17.0.tar.xz + + libxslt + docbook-xsl + qt5-base-devel + libgcrypt-devel + kconfig-devel + kdoctools-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kwallet/pspec.xml + + + kwallet + + qt5-base + libgcc + libgcrypt + kconfig + kcoreaddons + kdbusaddons + ki18n + kiconthemes + knotifications + kservice + kwidgetsaddons + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + kwallet-devel + Development files for kwallet + + kwallet + qt5-base-devel + libgcrypt-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-14 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdbusaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Extra modules for Qt-DBus + KDE5-KDBusAddons provides convenience classes on top of QtDBus, as well as an API to create KDED modules. + mirrors://kde/stable/frameworks/5.17/kdbusaddons-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kdbusaddons/pspec.xml + + + kdbusaddons + + libgcc + qt5-base + qt5-x11extras + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdbusaddons-devel + Development files for kdbusaddons + + qt5-base-devel + kdbusaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcodecs + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Plugins allowing Qt applications to access further types of images + KDE5 KCodecs provide a collection of methods to manipulate strings using various encodings. + mirrors://kde/stable/frameworks/5.17/kcodecs-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + extra-cmake-modules + + desktop/kde/framework/kcodecs/pspec.xml + + + kcodecs + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcodecs-devel + Development files for kcodecs + + qt5-base-devel + kcodecs + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kpty + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Libraries for pseudo terminal devices + Kpty provides primitives to interface with pseudo terminal devices as well as a KProcess derived class for running child processes and communicating with them using kpty. + mirrors://kde/stable/frameworks/5.17/kpty-5.17.0.tar.xz + + qt5-base-devel + utempter-devel + kcoreaddons-devel + ki18n-devel + extra-cmake-modules + + desktop/kde/framework/kpty/pspec.xml + + + kpty + + qt5-base + utempter + libgcc + kcoreaddons + ki18n + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kpty-devel + Development files for kpty + + qt5-base-devel + utempter-devel + kcoreaddons-devel + ki18n-devel + kpty + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdesignerplugin + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + QT Designer integration for KDE5 Frameworks widgets + This framework provides plugins for Qt Designer that allow it to display the widgets provided by various KDE frameworks, as well as a utility (kgendesignerplugin) that can be used to generate other such plugins from ini-style description files. + mirrors://kde/stable/frameworks/5.17/kdesignerplugin-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kdoctools-devel + kio-devel + kauth-devel + kconfigwidgets-devel + kxmlgui-devel + kplotting-devel + ktextwidgets-devel + sonnet-devel + kdewebkit-devel + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kdesignerplugin/pspec.xml + + + kdesignerplugin + + qt5-base + libgcc + kdewebkit + kcoreaddons + kitemviews + kconfig + sonnet + kcompletion + kconfigwidgets + kiconthemes + kio + kplotting + ktextwidgets + kwidgetsaddons + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kjobwidgets + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Widgets for showing progress of asynchronous jobs + KJobWIdgets provides widgets for showing progress of asynchronous jobs. + mirrors://kde/stable/frameworks/5.17/kjobwidgets-5.17.0.tar.xz + + libX11-devel + qt5-base-devel + qt5-linguist + kcoreaddons-devel + kwidgetsaddons-devel + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kjobwidgets/pspec.xml + + + kjobwidgets + + qt5-base + libgcc + kcoreaddons + kwidgetsaddons + qt5-x11extras + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kjobwidgets-devel + Development files for kjobwidgets + + qt5-base-devel + kjobwidgets + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdnssd + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Network service discovery using Zeroconf + KDNSSD is a library for handling the DNS-based Service Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, such as printers, to be discovered without any user intervention or centralized infrastructure. + mirrors://kde/stable/frameworks/5.17/kdnssd-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + avahi-devel + avahi-compat-libdns_sd-devel + extra-cmake-modules + + desktop/kde/framework/kdnssd/pspec.xml + + + kdnssd + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdnssd-devel + Development files for kdnssd. + + qt5-base-devel + kdnssd + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + baloo + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Framework for searching and managing metadata + Baloo is a framework for searching and managing metada + mirrors://kde/stable/frameworks/5.17/baloo-5.17.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kdbusaddons-devel + kauth-devel + kconfig-devel + kcrash-devel + ki18n-devel + kidletime-devel + kio-devel + solid-devel + kfilemetadata-devel + kdoctools-devel + lmdb-devel + extra-cmake-modules + + desktop/kde/framework/baloo/pspec.xml + + + baloo + + qt5-base + qt5-declarative + kcoreaddons + kdbusaddons + kauth + libgcc + kconfig + kcrash + ki18n + kidletime + kio + solid + kfilemetadata + lmdb + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + baloo-devel + Development files for baloo-widgets + + baloo + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kdbusaddons-devel + kauth-devel + kconfig-devel + kcrash-devel + ki18n-devel + kidletime-devel + kio-devel + solid-devel + kfilemetadata-devel + lmdb-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-20 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-26 + 5.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-07-01 + 5.9.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.9.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kservice + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 Desktop Services + Kservice Provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. + mirrors://kde/stable/frameworks/5.17/kservice-5.17.0.tar.xz + + qt5-base-devel + kdoctools-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kservice/pspec.xml + + + kservice + + qt5-base + libgcc + kconfig + kcoreaddons + kcrash + kdbusaddons + ki18n + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + kservice-devel + Development files for kservice + + kservice + qt5-base-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + bluez-qt + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.framework + Qt wrapper for KDE 5 Bluez DBus API + Qt wrapper for KDE 5 DBus API. + mirrors://kde/stable/frameworks/5.17/bluez-qt-5.17.0.tar.xz + + bluez + bluez-libs-devel + qt5-base-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/bluez-qt/pspec.xml + + + bluez-qt + + bluez + qt5-base + qt5-declarative + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + bluez-qt-devel + Development files for bluez-qt + + qt5-base-devel + qt5-declarative-devel + bluez-qt + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-14 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-26 + 5.13.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + knotifications + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Desktop notifications + KNotification is used to notify the user of an event. It covers feedback and persistent events. + mirrors://kde/stable/frameworks/5.17/knotifications-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kwindowsystem-devel + qt5-x11extras-devel + kservice-devel + kconfig-devel + kcoreaddons-devel + kiconthemes-devel + kcodecs-devel + libdbusmenu-qt-devel + qt5-phonon-devel + extra-cmake-modules + + desktop/kde/framework/knotifications/pspec.xml + + + knotifications + + qt5-base + qt5-phonon + libgcc + qt5-x11extras + kconfig + kcodecs + kcoreaddons + kiconthemes + kservice + libdbusmenu-qt + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knotifications-devel + Development files for knotifications + + knotifications + qt5-base-devel + qt5-phonon-devel + qt5-x11extras-devel + kconfig-devel + kcodecs-devel + kcoreaddons-devel + kiconthemes-devel + kservice-devel + kwindowsystem-devel + libdbusmenu-qt-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-03 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kpeople + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + A contact aggregation library for KDE + KPeople is a Framework for fetching contacts from different sources (Telepathy, Akonadi, Facebook, etc) and unifying them into a same model. + mirrors://kde/stable/frameworks/5.17/kpeople-5.17.0.tar.xz + + qt5-base-devel + kconfig-devel + qt5-declarative-devel + kcoreaddons-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + kservice-devel + kwidgetsaddons-devel + ki18n-devel + kitemviews-devel + extra-cmake-modules + + desktop/kde/framework/kpeople/pspec.xml + + + kpeople + + qt5-base + qt5-declarative + libgcc + kconfig + kcoreaddons + kservice + kwidgetsaddons + ki18n + kitemviews + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kpeople-devel + Development files for kpeople + + qt5-base-devel + qt5-declarative-devel + kconfig-devel + kcoreaddons-devel + kwidgetsaddons-devel + kservice-devel + ki18n-devel + kitemviews-devel + kpeople + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kiconthemes + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 icon utilities + This library contains classes to improve the handling of icons in applications using the KDE Frameworks. + mirrors://kde/stable/frameworks/5.17/kiconthemes-5.17.0.tar.xz + + qt5-base-devel + qt5-svg-devel + ki18n-devel + kauth-devel + kcodecs-devel + kconfig-devel + kitemviews-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/kiconthemes/pspec.xml + + + kiconthemes + + libgcc + qt5-base + qt5-svg + kconfigwidgets + ki18n + kitemviews + kwidgetsaddons + kconfig + kcoreaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kiconthemes-devel + Development files for kiconthemes + + kiconthemes + qt5-base-devel + qt5-svg-devel + kconfigwidgets-devel + ki18n-devel + kitemviews-devel + kwidgetsaddons-devel + kconfig-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-22 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kitemviews + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Set of item models extending the Qt model-view framework + KItemViews includes a set of views, which can be used with item models. It includes views for categorizing lists and to add search filters to flat and hierarchical lists. + mirrors://kde/stable/frameworks/5.17/kitemviews-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + extra-cmake-modules + + desktop/kde/framework/kitemviews/pspec.xml + + + kitemviews + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kitemviews-devel + Development files for kitemviews + + qt5-base-devel + kitemviews + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwindowsystem + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 window manager access framework + KWindowSystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes. + mirrors://kde/stable/frameworks/5.17/kwindowsystem-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + libX11-devel + libgcc + libxcb-devel + libXrender-devel + libXfixes-devel + xcb-util-devel + xcb-util-keysyms-devel + extra-cmake-modules + + desktop/kde/framework/kwindowsystem/pspec.xml + + + kwindowsystem + + qt5-base + libX11 + libgcc + libxcb + qt5-x11extras + libXfixes + xcb-util-keysyms + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + kwindowsystem-devel + Development files for kwindowsystem + + qt5-base-devel + libXrender-devel + libXfixes-devel + xcb-util-devel + xcb-util-keysyms-devel + kwindowsystem + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-framework + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Plasma library and runtime components based upon KDE Frameworks 5 and Qt5 + Plasma library and runtime components based upon KF5 and Qt5 + mirrors://kde/stable/frameworks/5.17/plasma-framework-5.17.0.tar.xz + + qt5-base-devel + qt5-quickcontrols + kdoctools-devel + qt5-svg-devel + qt5-script-devel + qt5-quick1-devel + qt5-x11extras-devel + qt5-declarative-devel + mesa-devel + libX11-devel + libxcb-devel + kauth-devel + kcodecs-devel + kwidgetsaddons-devel + kbookmarks-devel + kcompletion-devel + kactivities-devel + kitemviews-devel + kjobwidgets-devel + solid-devel + knotifications-devel + kpackage-devel + karchive-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kparts-devel + kservice-devel + kwindowsystem-devel + kxmlgui-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/plasma-framework/pspec.xml + + + plasma-framework + + qt5-base + qt5-svg + qt5-script + qt5-x11extras + qt5-declarative + qt5-quickcontrols + qt5-quick1 + mesa + libgcc + libX11 + libxcb + kactivities + knotifications + kpackage + karchive + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kservice + kwindowsystem + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + plasma-framework-devel + Development files for plasma-framework + + plasma-framework + qt5-base-devel + qt5-svg-devel + qt5-script-devel + qt5-x11extras-devel + qt5-declarative-devel + mesa-devel + libX11-devel + libxcb-devel + kactivities-devel + knotifications-devel + kpackage-devel + karchive-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kservice-devel + kwindowsystem-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + networkmanager-qt + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + A QT wrapper around the NetworkManager libraries + A QT wrapper around the NetworkManager libraries + mirrors://kde/stable/frameworks/5.17/networkmanager-qt-5.17.0.tar.xz + + qt5-base-devel + NetworkManager-devel + extra-cmake-modules + + desktop/kde/framework/networkmanager-qt/pspec.xml + + + networkmanager-qt + + qt5-base + NetworkManager + libgcc + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + networkmanager-qt-devel + Development files for networkmanager-qt + + qt5-base-devel + networkmanager-qt + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kconfig + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.framework + Advanced configuration system for KDE Frameworks 5 + Kconfig provides advanced libraries and tools for accessing configuration files. + mirrors://kde/stable/frameworks/5.17/kconfig-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + extra-cmake-modules + + desktop/kde/framework/kconfig/pspec.xml + + + kconfig + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kconfig-devel + Development files for kconfig + + qt5-base-devel + kconfig + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + attica + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Open Collaboration Service client library, based on Qt 5 + Attica is a library to access Open Collaboration Service servers, based on Qt 5. + mirrors://kde/stable/frameworks/5.17/attica-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/attica/pspec.xml + + + attica + + qt5-base + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + attica-devel + Development files for attica5 + + qt5-base-devel + attica + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-20 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + knotifyconfig + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Configuration dialog for desktop notifications + KNotifyConfig provides a configuration dialog for desktop notifications which can be embedded in your application.. + mirrors://kde/stable/frameworks/5.17/knotifyconfig-5.17.0.tar.xz + + qt5-base-devel + qt5-phonon-devel + kauth-devel + kconfig-devel + kcompletion-devel + ki18n-devel + kio-devel + extra-cmake-modules + + desktop/kde/framework/knotifyconfig/pspec.xml + + + knotifyconfig + + qt5-base + qt5-phonon + libgcc + kconfig + kcompletion + ki18n + kio + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knotifyconfig-devel + Development files for knotifyconfig + + knotifyconfig + qt5-base-devel + qt5-phonon-devel + kauth-devel + kconfig-devel + kcompletion-devel + ki18n-devel + kio-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kunitconversion + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE unit conversion framework + KUnitConversion provides functions to convert values in different physical units. + mirrors://kde/stable/frameworks/5.17/kunitconversion-5.17.0.tar.xz + + qt5-base-devel + ki18n-devel + extra-cmake-modules + + desktop/kde/framework/kunitconversion/pspec.xml + + + kunitconversion + + qt5-base + libgcc + ki18n + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kunitconversion-devel + Development files for kunitconversion + + qt5-base-devel + ki18n-devel + kunitconversion + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + frameworkintegration + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework providing components to allow applications to integrate with a KDE Workspace + Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. + mirrors://kde/stable/frameworks/5.17/frameworkintegration-5.17.0.tar.xz + + libxcb-devel + libXcursor-devel + qt5-base-devel + qt5-declarative-devel + qt5-x11extras-devel + oxygen-fonts + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kjobwidgets-devel + kconfigwidgets-devel + kiconthemes-devel + ki18n-devel + kauth-devel + kio-devel + knotifications-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/frameworkintegration/pspec.xml + + + frameworkintegration + + libgcc + qt5-base + libxcb + libXcursor + qt5-x11extras + kconfig + kxmlgui + kcompletion + kcoreaddons + kjobwidgets + kconfigwidgets + kiconthemes + ki18n + kio + knotifications + kwidgetsaddons + oxygen-fonts + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + frameworkintegration-devel + Development files for framework-integration + + frameworkintegration + qt5-base-devel + libxcb-devel + libXcursor-devel + qt5-x11extras-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kjobwidgets-devel + kconfigwidgets-devel + kiconthemes-devel + ki18n-devel + kio-devel + knotifications-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + New Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + extra-cmake-modules + http://www.kde.org + + Pisi Linux Admins + admin@gmail.com + + LGPLv2 + library + desktop.kde.framework + Extra cmake modules for KDE5 + Extra cmake modules KDE5 + mirrors://kde/stable/frameworks/5.17/extra-cmake-modules-5.17.0.tar.xz + + cmake + + desktop/kde/framework/extra-cmake-modules/pspec.xml + + + extra-cmake-modules + programming.build + + cmake + + + /usr/share + /usr/lib + /usr/share/man/man7 + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-01 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-20 + 5.11.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + karchive + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Qt 5 addon providing access to numerous types of archives + KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR. + mirrors://kde/stable/frameworks/5.17/karchive-5.17.0.tar.xz + + qt5-base-devel + xz-devel + zlib-devel + bzip2 + extra-cmake-modules + + desktop/kde/framework/karchive/pspec.xml + + + karchive + + qt5-base + xz + zlib + bzip2 + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + karchive-devel + Development files for karchive + + qt5-base-devel + karchive + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-20 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + breeze-icons + https://projects.kde.org/projects/kde/workspace/breeze + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.framework + Breeze icon themes + İcon themes breeze + http://download.kde.org/stable/frameworks/5.17/breeze-icons-5.17.0.tar.xz + + extra-cmake-modules + qt5-base-devel + + desktop/kde/framework/breeze-icons/pspec.xml + + + breeze-icons + Breeze icon themes + + /usr/share + /usr/share/doc + + + + + 2015-12-26 + 5.17.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kdewebkit + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 WebKit integration + KdeWebkit provides KDE integration of the QtWebKit library. + mirrors://kde/stable/frameworks/5.17/kdewebkit-5.17.0.tar.xz + + qt5-base-devel + qt5-webkit-devel + qt5-webkit + kauth-devel + sonnet-devel + kconfig-devel + ktextwidgets-devel + kjobwidgets-devel + kcoreaddons-devel + kparts-devel + kservice-devel + kwallet-devel + kio-devel + extra-cmake-modules + + desktop/kde/framework/kdewebkit/pspec.xml + + + kdewebkit + + qt5-webkit + libgcc + kconfig + kjobwidgets + qt5-base + kcoreaddons + kparts + kservice + kwallet + kio + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/mkspecs/modules/ + /usr/share/doc + + + + kdewebkit-devel + Development files for kdewebkit + + kdewebkit + qt5-webkit-devel + kconfig-devel + kjobwidgets-devel + qt5-base-devel + kcoreaddons-devel + kparts-devel + kservice-devel + kwallet-devel + kio-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libdmtx + http://www.libdmtx.org PisiLinux Community admins@pisilinux.org - GPLv3 - app:console - editor - GNU GPL'd Pico clone with more functionality - Konsol ortamında kullanabileceğiniz bir metin düzenleyicidir. - Nano est un petit éditeur libre et convivial qui a pour but de remplacer Pico, l'éditeur par défaut inclus dans le paquet non-libre Pine. Plutôt que juste copier l'apparence et le ressenti de Pico, nan implémente également certaines fonctionnalité manquantes (ou désactivées par défaut), tel que "rechercher et remplacer" ou "allez à la ligne numéro". - Nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "go to line number". - Nano özgür olmayan Pine paketinin içindeki metin düzenleme programı olan Pico'nun yerine geçme hedefini güden küçük, özgür ve kullanışlı bir metin düzenleme programıdır. Pico'nun görünüşünü ve işlevini kopyalamaktan çok, Nano aynı zamanda "ara ve değiştir" ve "satır numarasına git" gibi Pico'da olmayan (veya ön tanımlı olarak kapalı) bazı özellikleri sunar. - http://www.nano-editor.org/dist/v2.5/nano-2.5.0.tar.gz - - ncurses-devel - gettext-devel - - editor/nano/pspec.xml + LGPLv2+ + library + desktop.kde.addon + A Library for working with Data Matrix 2D bar-codes + Data Matrix 2D barkodlarıyla çalışmak için kitaplık + libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. + libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. + http://sourceforge.net/projects/libdmtx/files/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz + desktop/kde/addon/libdmtx/pspec.xml - nano + libdmtx + + /usr/lib + /usr/share/doc + + + + libdmtx-devel + Development files for libdmtx + libdmtx için geliştirme dosyaları - ncurses - file + libdmtx - /etc - /usr/share/locale - /usr/share/doc/nano - /usr/share/man - /usr/share/info - /usr/share/nano - /usr/bin - /bin + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 - - 2014-07-11 - 2.5.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-07-11 - 2.3.5 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-11 - 2.3.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-07-26 - 2.3.1 - Fix dep, release bump. - Serdar Soytetir - kaptan@pisilinux.org + 2015-06-05 + 0.7.4 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org - 2011-06-27 - 2.3.1 + 2011-08-09 + 0.7.4 First release Pisi Linux Admins admins@pisilinux.org @@ -58567,96 +82493,591 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - medit - http://mooedit.sourceforge.net/ + qrencode + http://fukuchi.org/works/qrencode/index.en.html - Stefan Gronewold(groni) - groni@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - GPLv2 - app:gui - editor - Multiplatform GTK text editor - Sekme özelliğine sahip bir metin düzenleyicisi - Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. - Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. - medit - mirrors://sourceforge/mooedit/medit-1.2.0.tar.bz2 + LGPLv2.1 + library + desktop.kde.addon + A C library for encoding data in a QR code symbol + QR kod sembolüne veri gömmek için bir kitaplık + qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. + qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. + http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz - python-gtk-devel - python-devel - intltool - gtk2-devel - atk-devel - cairo-devel + libsdl-devel + m4 gettext-devel - pkgconfig - glib2-devel - libX11-devel - python3-devel - libxml2-devel - gtk2-devel - pango-devel - lua-devel - libSM-devel - libICE-devel - gdk-pixbuf-devel + libpng-devel - - desktop-tr.patch - fix_help_dir.patch - - editor/medit/pspec.xml + desktop/kde/addon/qrencode/pspec.xml - medit + qrencode - gtk2 - atk - glib2 - libX11 - libgcc - python - libxml2 - cairo - pango - libSM - libICE - gdk-pixbuf + libpng - /usr/bin /usr/lib - /usr/share/locale - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/medit - /usr/share/pixmaps + /usr/bin/qrencode + /usr/share/man/man1 /usr/share/doc - /usr/share/man + + + + qrencode-devel + Development files for qrencode + qrencode için geliştirme dosyaları + + qrencode + + + /usr/include + /usr/lib/pkgconfig - 2014-06-04 - 1.2.0 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org + 2015-02-22 + 3.4.4 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com - 2013-11-20 - 1.1.96 - Update + 2015-02-22 + 3.3.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2012-04-05 + 3.3.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + prison-qt5 + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + desktop.kde.addon + A barcode API to produce QRCode barcodes and DataMatrix barcode + A barcode API to produce QRCode barcodes and DataMatrix barcode. + ftp://ftp.gnome.org/mirror/ubuntu/pool/universe/p/prison-kf5/prison-kf5_1.2~git20150223.orig.tar.gz + + qt5-base-devel + libdmtx-devel + qrencode-devel + extra-cmake-modules + mesa-devel + + desktop/kde/addon/prison-qt5/pspec.xml + + + prison-qt5 + + qt5-base + libgcc + mesa + libdmtx + qrencode + + + /usr/lib/*.so.* + /usr/lib/qt5/mkspecs/modules + /usr/share/doc + + + + prison-qt5-devel + Development files for libepoxy + + prison-qt5 + + + /usr/include/KF5/prison_version.h + /usr/include/KF5/PRISON/prison + /usr/lib/*.so + /usr/lib/cmake/KF5Prison/*.cmake + + + + + 2015-12-24 + 1.2.1_20150831 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-22 + 1.1.1_20150821 + First Release. Stefan Gronewold(groni) groni@pisilinux.org + + + + + lokalize + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + Lokalize is the localization tool for KDE and other open source software + Uygulama yerelleştirme yardımcısı. + Lokalize is also a general computer-aided translation system (CAT) with which you can translate OpenDocument files (*.odt). + Lokalize, uygulamalar için kolaylıkla yerelleştirme yapabileceğiniz bir programdır. + mirrors://kde/stable/applications/15.12.0/src/lokalize-15.12.0.tar.xz + + qt5-base-devel + hunspell-devel + extra-cmake-modules + kdoctools-devel + kio-devel + kitemviews-devel + ki18n-devel + kross-devel + kparts-devel + sonnet-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kdbusaddons-devel + ktextwidgets-devel + kconfigwidgets-devel + knotifications-devel + kwidgetsaddons-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + + desktop/kde/sdk/lokalize/pspec.xml + + + lokalize + + qt5-base + kio + kitemviews + ki18n + kross + kparts + libgcc + sonnet + kconfig + kxmlgui + kcompletion + kcoreaddons + kdbusaddons + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + hunspell + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + - 2013-01-10 - 1.1.92 - First release - Osman Erkan - osman.erkan@pisilinux.org + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kompare + http://www.kde.org/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + File difference viewer + Dosya karşılaştırma göstericisi. + Diff/Patch Frontend. + Dosya karşılaştırma göstericisi. + mirrors://kde/stable/applications/15.12.0/src/kompare-15.12.0.tar.xz + + extra-cmake-modules + kdoctools-devel + qt5-base-devel + gettext-devel + libkomparediff2-devel + kcoreaddons-devel + kcodecs-devel + kiconthemes-devel + kjobwidgets-devel + kconfig-devel + kparts-devel + ktexteditor-devel + kwidgetsaddons-devel + + desktop/kde/sdk/kompare/pspec.xml + + + kompare + + qt5-base + libkomparediff2 + kio + ki18n + kparts + libgcc + kcodecs + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + ktexteditor + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/include + + + kdesdk + + + kdesdk + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-07 + 15.08.2 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kapptemplate + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + Application template generator + Uygulama şablon oluşturucu. + KAppTemplate is a shell script that will create the necessary framework to develop several types of applications, including applications based on the KDE development platform. + Kapptemplate, çeşitli uygulamaları geliştirmek için gerekli olabilecek şablonlar oluşturmayı sağlar. + mirrors://kde/stable/applications/15.12.0/src/kapptemplate-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + gettext + kcoreaddons-devel + kconfigwidgets-devel + kcompletion-devel + karchive-devel + kio-devel + ki18n-devel + kdoctools-devel + + desktop/kde/sdk/kapptemplate/pspec.xml + + + kapptemplate + + qt5-base + kio + ki18n + libgcc + kconfig + karchive + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-19 + 15.08.2 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + umbrello + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.sdk + UML modelling tool and code generator + UML modelleme aracı ve kod üreticisi. + Umbrello UML Modeller is a Unified Modelling Language diagram editor for KDE. + umbrello UML (Unified Modellin Language) modelleme ve diyagram editörüdür. + mirrors://kde/stable/applications/15.12.0/src/umbrello-15.12.0.tar.xz + + qt5-base-devel + libxslt-devel + qt5-svg-devel + kio-devel + kparts-devel + kinit-devel + kcompletion-devel + kxmlgui-devel + kauth-devel + kconfig-devel + ktexteditor-devel + kcoreaddons-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + kwindowsystem-devel + + desktop/kde/sdk/umbrello/pspec.xml + + + umbrello + + qt5-base + kio + ki18n + libgcc + kconfig + kxmlgui + libxml2 + qt5-svg + karchive + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + ktextwidgets + kconfigwidgets + kwidgetsaddons + ktexteditor + libxslt + kwindowsystem + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkomparediff2 + https://projects.kde.org/projects/kde/kdesdk/libkomparediff2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.sdk + Library to compare files and strings + Library to compare files and strings + mirrors://kde/stable/applications/15.12.0/src/libkomparediff2-15.12.0.tar.xz + + qt5-base-devel + extra-cmake-modules + python3-devel + gettext-devel + kcoreaddons-devel + kcodecs-devel + kconfig-devel + kxmlgui-devel + ki18n-devel + kio-devel + kparts-devel + + desktop/kde/sdk/libkomparediff2/pspec.xml + + + libkomparediff2 + + qt5-base + kio + ki18n + libgcc + kcodecs + kconfig + kxmlgui + kcoreaddons + kconfigwidgets + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + libkomparediff2-devel + Shared libraries for libkomparediff2. + + libkomparediff2 + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-18 + 15.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org @@ -59088,7 +83509,5752 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-image + scim + http://www.scim-im.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + x11.im + Smart Common Input Method - framework for Input Methods + Smart Common Input Method - Girdi Metodları sistemi + Smart Common Input Method – ogólna metoda wprowadzania + Smart Common Input Method (SCIM - Méthode commune intelligente d'entrée) est un framework (cadre de développement) pour méthodes d'entrée. Il s'agit d'une approche modulaire et flexible pour créer ou utiliser des méthodes d'entrée pour la plateforme X11. + Smart Common Input Method (SCIM) is a framework for Input Methods. It is a modular and flexible approach for authoring and using Input Methods for X11 platform. + Smart Common Input Method (SCIM), X11 platformu için Girdi Metodlarının yönetilmesi ve kullanılması için modüler ve esnek Girdi Metodları sistemi + scim to główny pakiet projektu SCIM, udostępniający podstawowe funkcje i typy danych. + mirrors://sourceforge/scim/scim-1.4.14.tar.gz + + scim-system-config + scim-system-global + + + libXt-devel + libX11-devel + intltool + + + scim-1.4.14-compile.patch + scim-1.4.7-support-more-utf8-locales.patch + scim-initial-locale-hotkey-20070922.patch + scim_panel_gtk-emacs-cc-style.patch + scim-add-restart.patch + + x11/im/scim/pspec.xml + + + scim-core + Core of SCIM for users + + libX11 + libgcc + scim-libs + + + /etc + /usr/bin + /usr/lib/scim-1.0 + /usr/share/scim + /usr/share/doc + /usr/share/locale + + + scim.session + scim.env + + + + scim-libs + Libraries of SCIM + + libX11 + libgcc + libtool-ltdl + + + /usr/lib/libscim-* + /usr/lib/scim-1.0/*/Config + /usr/lib/scim-1.0/*/IMEngine + + + + scim-devel + Includes and pkgconfig for scim development + + scim-core + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-16 + 1.4.14 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-11 + 1.4.14 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-25 + 1.4.14 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-02 + 1.4.14 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + font-util + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + x11.util + Utilitaires de fontes de X.Org + X.Org font utilities + X.Org font araçları + X.Org Schrift Werkzeuge + font-util package contains core font utilities for the Xorg XWindow system. + mirrors://xorg/individual/font/font-util-1.3.1.tar.bz2 + + zlib-devel + + x11/util/font-util/pspec.xml + + + font-util + + /usr/bin + /usr/lib/pkgconfig + /usr/share/fonts + /usr/share/aclocal + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.3.1 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-05-16 + 1.3.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 1.3.0 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.3.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 1.3.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-video-mga + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org mga video driver + X.Org mga ekran kartı sürücüsü + xorg-video-mga contains the X.Org driver for Matrox cards. + xorg-video-mga, Matrox ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-mga-1.6.3.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + + mga-1.4.5-no-hal-advertising.patch + mga-1.4.12-bigendian.patch + mga-1.6.2-shadowfb.patch + + x11/driver/xorg-video-mga/pspec.xml + + + xorg-video-mga + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.6.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.6.3 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.6.3 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.6.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.6.3 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.6.2 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.6.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.6.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.6.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-fbdev + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org fbdev video driver + X.Org fbdev ekran kartı sürücüsü + xorg-video-fbdev contains the X.Org driver for Linux framebuffer device. + xorg-video-fbdev, Linux framebuffer aygıtı için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-fbdev-0.4.4.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-fbdev/pspec.xml + + + xorg-video-fbdev + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 0.4.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 0.4.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.4.4 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.4.4 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.4.3 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.4.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.4.3 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.4.3 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.4.3 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-intel + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org intel video driver + X.Org intel ekran kartı sürücüsü + xorg-video-intel contains the X.Org driver for Intel video chipsets. + xorg-video-intel, Intel ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-intel-2.99.917.tar.bz2 + + libX11-devel + libxcb-devel + libXv-devel + libdrm-devel + pixman-devel + libXext-devel + libXtst-devel + libXvMC-devel + xcb-util-devel + libXrandr-devel + libXfixes-devel + libXcursor-devel + libXrender-devel + libXdamage-devel + libXinerama-devel + libdrm-intel + eudev-devel + util-macros + libpciaccess-devel + xorg-server-devel + libxshmfence-devel + + x11/driver/xorg-video-intel/pspec.xml + + + xorg-video-intel + + libX11 + libxcb + libXv + libdrm + pixman + libXext + libXtst + libXvMC + xcb-util + libXrandr + libXfixes + libXcursor + libXrender + libXdamage + libXinerama + libdrm-intel + libpciaccess + eudev + libxshmfence + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2015-05-10 + 2.99.917 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 2.99.917 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.99.914 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.99.911 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-12 + 2.21.15 + Add xserver 1.15 xompat patch. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.21.15 + Version bump for xorg-server 1.15. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-06 + 2.21.9 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 2.21.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.21.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.21.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-08 + 2.21.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 2.20.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-evdev + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org evdev input driver + X.Org evdev giriş aygıtı sürücüsü + xorg-input-evdev contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-evdev, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-evdev-2.9.2.tar.bz2 + + xorg-server-devel + libmtdev-devel + libevdev + util-macros + eudev-devel + + x11/driver/xorg-input-evdev/pspec.xml + + + xorg-input-evdev + + libmtdev + libevdev + eudev + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + xorg-input-evdev-devel + Development files for evdev driver + evdev sürücüsü için geliştirme dosyaları + + xorg-input-evdev + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 2.9.2 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 2.9.1 + Version bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-31 + 2.9.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.8.4 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 2.8.2 + Rebuild for xserver 1.15. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-06 + 2.8.2 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-11 + 2.8.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 2.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.8.0 + Add patch + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.8.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 2.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 2.7.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-dummy + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org dummy video driver + X.Org dummy ekran kartı sürücüsü + xorg-video-dummy is a dummy video driver for X.Org. + xorg-video-dummy, X.Org için sahte bir ekran kartı sürücüsü içerir. + mirrors://xorg/individual/driver/xf86-video-dummy-0.3.7.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-dummy/pspec.xml + + + xorg-video-dummy + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + + + + + 2015-05-08 + 0.3.7 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 0.3.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.3.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.3.7 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.3.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.3.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-rendition + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org rendition video driver + X.Org rendition ekran kartı sürücüsü + xorg-video-rendition contains the X.Org driver for Rendition (Micron) cards. + xorg-video-rendition, Rendition (Micron) ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-rendition-4.2.5.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-rendition/pspec.xml + + + xorg-video-rendition + + xorg-server + + + /usr/lib/xorg/modules/drivers + /usr/lib/xorg/modules/*.uc + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 4.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 4.2.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 4.2.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 4.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 4.2.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 4.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 4.2.5 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 4.2.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 4.2.5 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 4.2.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-geode + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org geode video driver + X.Org geode ekran kartı sürücüsü + xorg-video-geode contains the X.Org driver for AMD Geode video cards. + xorg-video-geode, AMD Geode ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-geode-2.11.16.tar.bz2 + + xorg-server-devel + + + xf86-video-geode-2.11.16-glibc-2.20.patch + build-fix-1.17.patch + + x11/driver/xorg-video-geode/pspec.xml + + + xorg-video-geode + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + + + + + 2015-05-10 + 2.11.16 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-02-10 + 2.11.16 + Rebuild xorg-server 1.6.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.11.16 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.11.15 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.11.15 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 2.11.14 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.11.14 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.11.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 2.11.14 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 2.11.13 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-cirrus + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org cirrus video driver + X.Org cirrus ekran kartı sürücüsü + xorg-video-cirrus contains the X.Org driver for Cirrus Logic cards. + xorg-video-cirrus, Cirrus Logic ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-cirrus-1.5.3.tar.bz2 + + libpciaccess-devel + xorg-server-devel + + x11/driver/xorg-video-cirrus/pspec.xml + + + xorg-video-cirrus + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.5.3 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.5.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.5.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.5.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.5.2 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.5.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.5.2 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.5.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.5.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.5.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-mouse + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org mouse input driver + X.Org mouse giriş aygıtı sürücüsü + xorg-input-mouse contains the X.Org driver for mice. + xorg-input-mouse, fareler için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-mouse-1.9.1.tar.bz2 + + xorg-server-devel + util-macros + + + 0001-Don-t-disable-3-button-emulation-if-third-mouse-butt.patch + + x11/driver/xorg-input-mouse/pspec.xml + + + xorg-input-mouse + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + xorg-input-mouse-devel + Development files for xorg-input-mouse + + xorg-input-mouse + + + /usr/include/xorg/xf86-mouse-properties.h + /usr/lib/pkgconfig/xorg-mouse.pc + + + + + 2015-05-08 + 1.9.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.9.1 + Rebuild xorg-server 1.6.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-31 + 1.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.9.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.9.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.9.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.9.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.9.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.9.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.8.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-s3virge + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org s3virge video driver + X.Org s3virge ekran kartı sürücüsü + xorg-video-s3virge contains the X.Org driver for S3 Virge cards. + xorg-video-s3virge, S3 Virge ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-s3virge-1.10.6.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-s3virge/pspec.xml + + + xorg-video-s3virge + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.10.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.10.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.10.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.10.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.10.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.10.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.10.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.10.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 1.10.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xvba-video + http://www.splitted-desktop.com/~gbeauchesne/xvba-video/ + + PisiLinux Community + admins@pisilinux.org + + freedist + driver + x11.driver + XvBA backend for VA API + VA API için XvBA arka ucu + xvba-video is a backend for the VA API in order to use XvBA video acceleration drivers available for some ATI cards. + xvba-video, bazı ATI kartlar için mevcut olan XvBA video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. + http://source.pisilinux.org/1.0/xvba-video-0.7.8.i686.tar.gz + http://source.pisilinux.org/1.0/xvba-video-0.7.8.x86_64.tar.gz + x11/driver/xvba-video/pspec.xml + + + xvba-video + + libva + libXext + mesa + + + /usr/lib + /usr/share/doc + + + + xvba-video-32bit + 32-bit shared libraries for xvba-video + xvba-video için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + libX11-32bit + libXext-32bit + + + mesa-32bit + xvba-video + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2015-05-08 + 0.7.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 0.7.8 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.7.8 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.7.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.7.8 + Rebuild for xserver 1.15. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-26 + 0.7.8 + Fix emul32. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.7.8 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-31 + 0.7.8 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + xorg-video-trident + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org trident video driver + X.Org trident ekran kartı sürücüsü + xorg-video-trident contains the X.Org driver for Trident cards. + xorg-video-trident, Trident ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-trident-1.3.7.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-trident/pspec.xml + + + xorg-video-trident + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.3.7 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.3.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.3.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.3.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 1.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-i128 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org i128 video driver + X.Org i128 ekran kartı sürücüsü + xorg-video-i128 contains the X.Org driver for Number Nine chipsets. + xorg-video-i128, Number Nine ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-i128-1.3.6.tar.bz2 + + xorg-server-devel + + + git-fixes.diff + 1600sw-range-hack.patch + + x11/driver/xorg-video-i128/pspec.xml + + + xorg-video-i128 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.3.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.3.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.3.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.3.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-voodoo + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org voodoo video driver + X.Org voodoo ekran kartı sürücüsü + xorg-video-voodoo contains the X.Org driver for Voodoo1 and Voodoo2 video adapters. + xorg-video-voodoo, Voodoo1 ve Voodoo2 video bağdaştırıcıları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-voodoo/pspec.xml + + + xorg-video-voodoo + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.2.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.5 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-12 + 1.2.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-openchrome + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org openchrome video driver + X.Org openchrome ekran kartı sürücüsü + xorg-video-openchrome contains the X.Org driver for VIA video chipsets. + xorg-video-openchrome, VIA ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-openchrome-0.3.3.tar.bz2 + + libdrm-devel + libXext-devel + libXv-devel + libXvMC-devel + xorg-server-devel + + + openchrome-0.2.904-fix_tvout_flickering.patch + fixed.patch + + x11/driver/xorg-video-openchrome/pspec.xml + + + xorg-video-openchrome + + libX11 + libdrm + libXext + libXv + libXvMC + xorg-server + + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2015-05-08 + 0.3.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-02-10 + 0.3.3 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.3.3 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.3.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.3.3 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-02 + 0.3.3 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-25 + 0.3.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.3.1 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 0.3.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-mach64 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org mach64 video driver + X.Org mach64 ekran kartı sürücüsü + xorg-video-mach64 contains the X.Org driver for ATI Mach64 (Rage) video cards. + xorg-video-mach64, ATI Mach64 (Rage) ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-mach64-6.9.5.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-mach64/pspec.xml + + + xorg-video-mach64 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 6.9.5 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 6.9.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 6.9.4 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 6.9.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 6.9.4 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 6.9.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 6.9.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 6.9.3 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 6.9.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libva-intel-driver + http://freedesktop.org/wiki/Software/vaapi + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + driver + x11.driver + VA-API implementation for Intel G45 and HD Graphics family + libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family. + http://freedesktop.org/software/vaapi/releases/libva-intel-driver/libva-intel-driver-1.5.1.tar.bz2 + + libdrm-devel + libX11-devel + libva-devel + + x11/driver/libva-intel-driver/pspec.xml + + + libva-intel-driver + + libdrm + libdrm-intel + libva + + + /usr/lib + /usr/share/doc + + + + + 2015-05-08 + 1.5.1 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.5.0 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 1.3.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + xorg-video-siliconmotion + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org siliconmotion video driver + X.Org siliconmotion ekran kartı sürücüsü + xorg-video-siliconmotion contains the X.Org driver for Silicon Motion cards. + xorg-video-siliconmotion, Silicon Motion ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-siliconmotion-1.7.8.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-siliconmotion/pspec.xml + + + xorg-video-siliconmotion + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.7.8 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.7.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.7.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.7.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.7.7 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.7.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.7.7 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.7.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 1.7.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-apm + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org apm video driver + X.Org apm ekran kartı sürücüsü + xorg-video-apm contains the X.Org driver for Alliance Promotion cards. + xorg-video-apm, Alliance Promotion ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-apm-1.2.5.tar.bz2 + + xorg-server-devel + util-macros + xorg-proto + + + git-fix.diff + + x11/driver/xorg-video-apm/pspec.xml + + + xorg-video-apm + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.2.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.5 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.5 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.2.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-savage + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org savage video driver + X.Org savage ekran kartı sürücüsü + xorg-video-savage contains the X.Org driver for S3 Savage cards. + xorg-video-savage, S3 Savage ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-savage-2.3.8.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-savage/pspec.xml + + + xorg-video-savage + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 2.3.8 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 2.3.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.3.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.3.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.3.7 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 2.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 2.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-nouveau + http://nouveau.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org nouveau video driver + X.Org nouveau ekran kartı sürücüsü + xorg-video-nouveau contains the X.Org driver for NVIDIA cards. + xorg-video-nouveau, NVIDIA ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-nouveau-1.0.11.tar.bz2 + + libdrm-nouveau + libpciaccess-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-nouveau/pspec.xml + + + xorg-video-nouveau + + libdrm + libdrm-nouveau + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.0.11 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.0.11 + Rebuild for xorg-server 1.6.3 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-04 + 1.0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-09-01 + 1.0.10 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.0.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.0.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 1.0.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.0.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.0.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-10 + 1.0.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-tdfx + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org tdfx video driver + X.Org tdfx ekran kartı sürücüsü + xorg-video-tdfx contains the X.Org driver for Voodoo cards. + xorg-video-tdfx, Voodoo ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-tdfx-1.4.6.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-tdfx/pspec.xml + + + xorg-video-tdfx + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.4.6 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.4.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.4.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.4.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.4.5 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.4.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.4.5 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 1.4.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-joystick + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org joystick input driver + X.Org joystick giriş aygıtı sürücüsü + xorg-input-joystick contains the X.Org driver for joysticks. + xorg-input-joystick, oyun çubukları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-joystick-1.6.2.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-joystick/pspec.xml + + + xorg-input-joystick + + /usr/lib/xorg + /usr/share/man + + + + xorg-input-joystick-devel + Development files for xorg-input-joystick + xorg-input-joystick için geliştirme dosyaları + + xorg-input-joystick + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 1.6.2 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.6.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + poyraz76@pisilinux.org + + + 2014-09-01 + 1.6.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.6.2 + Rebuild for xserver 1.15. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.6.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.6.1 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-30 + 1.6.1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-input-void + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org void input driver + X.Org void giriş aygıtı sürücüsü + xorg-input-void is a null input driver which allows the X server to operate without a core pointer and/or core keyboard. + xorg-input-void, X sunucusunun herhangi bir ana işaretçi ve/veya ana klavye olmadan çalışabilmesini sağlayan işlevsiz bir giriş aygıtı sürücüsüdür. + mirrors://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-input-void/pspec.xml + + + xorg-input-void + + /usr/lib/xorg + /usr/share/man + + + + + 2015-05-08 + 1.4.1 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.4.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.4.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.4.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.4.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.4.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-30 + 1.4.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-video-i740 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org i740 video driver + X.Org i740 ekran kartı sürücüsü + xorg-video-i740 contains the X.Org driver for Intel i740 cards. + xorg-video-i740, Intel i740 ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-i740-1.3.4.tar.bz2 + + xorg-server-devel + + + git-fix.diff + + x11/driver/xorg-video-i740/pspec.xml + + + xorg-video-i740 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.3.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.3.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.4 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.3.4 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.3.4 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.3.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.3.4 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.3.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-sisusb + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org sisusb video driver + X.Org sisusb ekran kartı sürücüsü + xorg-video-sisusb contains the X.Org driver for SiS video chips connected via a Net2280-based USB dongle. + xorg-video-sisusb, Net2280 tabanlı USB dongle ile bağlı SiS ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-sisusb-0.9.6.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-sisusb/pspec.xml + + + xorg-video-sisusb + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 0.9.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 0.9.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.9.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.9.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.9.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.9.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.9.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.9.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.9.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-acecad + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org acecad tablet input driver + X.Org acecad tablet giriş aygıtı sürücüsü + xorg-input-acecad contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-acecad, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-acecad-1.5.0.tar.bz2 + + xorg-server-devel + libmtdev-devel + sysfsutils-devel + util-macros + + + assign-local-private-after-allocating.patch + + x11/driver/xorg-input-acecad/pspec.xml + + + xorg-input-acecad + + sysfsutils + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + xorg-input-acecad-devel + Development files for ececad driver + acecad sürücüsü için geliştirme dosyaları + + xorg-input-acecad + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 1.5.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.5.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.5.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.5.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.5.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xorg-video-r128 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org r128 video driver + X.Org r128 ekran kartı sürücüsü + xorg-video-r128 contains the X.Org driver for ATI Rage128 video cards. + xorg-video-r128, ATI Rage128 ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-r128-6.10.0.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-r128/pspec.xml + + + xorg-video-r128 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 6.10.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 6.9.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 6.9.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 6.9.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 6.9.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 6.9.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 6.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 6.8.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 6.8.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-vmmouse + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vmmouse input driver + X.Org vmmouse giriş aygıtı sürücüsü + xorg-input-vmmouse contains the X.Org driver for mice in VMware virtual machines. + xorg-input-vmmouse, VMware sanal makinelerinde fare uyumu için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-vmmouse-13.0.0.tar.bz2 + + xorg-server-devel + + + xf86-input-vmmouse-13.0.0-build_fix-1.patch + + x11/driver/xorg-input-vmmouse/pspec.xml + + + xorg-input-vmmouse + + /lib/udev + /usr/bin + /usr/libexec + /usr/lib/xorg + /usr/share/X11 + /usr/share/man + + + + + 2015-05-08 + 13.0.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-27 + 13.0.0 + Rebuild for xorg-server-1.16.3 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-01 + 13.0.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 13.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 13.0.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 13.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 13.0.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 12.9.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-30 + 12.9.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-video-glint + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org glint video driver + X.Org glint ekran kartı sürücüsü + xorg-video-glint contains the X.Org driver for 3DLabs Permedia cards. + xorg-video-glint, 3DLabs Permedia ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-glint-1.2.8.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + + git-fix.diff + + x11/driver/xorg-video-glint/pspec.xml + + + xorg-video-glint + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.2.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.2.8 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.8 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.8 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.8 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.8 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.8 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.2.8 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-aiptek + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org Aiptek USB Digital Tablet input driver + X.Org aiptek Dijital Tablet giriş aygıtı sürücüsü + xorg-input-aiptek contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-aiptek, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-aiptek-1.4.1.tar.bz2 + + libX11-devel + libmtdev-devel + util-macros + + x11/driver/xorg-input-aiptek/pspec.xml + + + xorg-input-aiptek + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.4.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.4.1 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.1 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.4.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xorg-video-tga + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org tga video driver + X.Org tga ekran kartı sürücüsü + xorg-video-tga contains the X.Org driver for DEC Tga cards. + xorg-video-tga, DEC Tga ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-tga-1.2.2.tar.bz2 + + xorg-server-devel + + + xf86-video-tga-1.2.2-remove-mibstore_h.patch + + x11/driver/xorg-video-tga/pspec.xml + + + xorg-video-tga + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + + + + + 2015-05-08 + 1.2.2 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.2.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.2 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.2 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 1.2.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-kbd + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org kbd input driver + X.Org kbd giriş aygıtı sürücüsü + xorg-input-kbd contains the X.Org driver for keyboards. + xorg-input-kbd, klavyeler için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-keyboard-1.8.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-kbd/pspec.xml + + + xorg-input-kbd + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.8.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.8.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.8.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.8.0 + Rebuild for xserver 1.15. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 1.8.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 1.7.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.7.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.7.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.7.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-elographics + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org Elographics TouchScreen input driver + X.Org Elographics dokunmatik ekran sürücüsü + xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-elographics, Linux için Elographics dokunamtik ekran X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-elographics-1.4.1.tar.bz2 + + xorg-server-devel + libmtdev-devel + util-macros + + x11/driver/xorg-input-elographics/pspec.xml + + + xorg-input-elographics + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.4.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.4.1 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.1 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.4.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + xorg-input-synaptics + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org synaptics input driver + X.Org synaptics giriş aygıtı sürücüsü + xorg-input-synaptics contains the X.Org driver for Synaptics touchpad devices. + xorg-input-synaptics, Synaptics dokunmatik aygıtlar için X.Org sürücüsünü içerir. + http://ftp.x.org/pub/individual/driver/xf86-input-synaptics-1.8.2.tar.bz2 + + libXi-devel + libXtst-devel + libmtdev-devel + xorg-server-devel + libevdev + util-macros + + + add_tapbuttons.diff + + x11/driver/xorg-input-synaptics/pspec.xml + + + xorg-input-synaptics + + libXi + libXtst + libX11 + libevdev + + + /lib/udev + /usr/bin + /usr/lib/xorg + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + 50-synaptics.conf + 70-touchpad-quirks.rules + + + + xorg-input-synaptics-devel + Development files for xorg-input-synaptics + xorg-input-synaptics için geliştirme dosyaları + + xorg-input-synaptics + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 1.8.2 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.8.1 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-31 + 1.7.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.7.5 + version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 1.7.3 + Rebuild for xserver 1.15. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 1.7.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 1.7.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-26 + 1.7.1 + Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-21 + 1.7.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.7.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.7.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + vdpau-video + http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + driver + x11.driver + VDPAU backend for VA API + VA API için VDPAU arka ucu + vdpau-video is a backend for the VA API in order to use VDPAU video acceleration drivers available for some NVIDIA and S3 cards. + vdpau-video, bazı NVIDIA ve S3 kartlar için mevcut olan VDPAU video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. + http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/libva-vdpau-driver-0.7.4.tar.bz2 + + libvdpau-devel + libva-devel + mesa-devel + libX11-devel + + + libva-vdpau-driver-0.7.4-libvdpau-0.8.patch + libva-vdpau-driver-0.7.4-glext-85.patch + libva-vdpau-driver-0.7.4-drop-h264-api.patch + + x11/driver/vdpau-video/pspec.xml + + + vdpau-video + + libX11 + libvdpau + mesa + + + /usr/lib + /usr/share/doc + + + + + 2015-05-08 + 0.7.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 0.7.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.7.4 + Rebuild for xorg-server-1.16.0 and libvdpau-0.8 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.7.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 0.7.4 + Rebuild for xserver 1.15 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-08 + 0.7.4 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-06 + 0.7.4 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.7.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.7.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 0.7.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-radeon + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org radeon video driver + X.Org radeon ekran kartı sürücüsü + xorg-video-radeon contains the X.Org driver for ATI video chipsets. + xorg-video-radeon, ATI ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-ati-7.5.0.tar.bz2 + + libdrm-devel + libpciaccess-devel + mesa-devel + pixman-devel + xorg-server-devel + + x11/driver/xorg-video-radeon/pspec.xml + + + xorg-video-radeon + + libdrm-radeon + libpciaccess + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 7.5.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 7.5.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-10-18 + 7.5.0 + Version bump + Ergün Salman + poyraz76@pisilinux.org + + + 2014-09-01 + 7.4.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 7.3.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 7.3.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-02 + 7.1.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-06 + 7.1.0 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 7.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 7.1.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 6.14.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 6.14.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-vesa + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vesa video driver + X.Org vesa ekran kartı sürücüsü + xorg-input-vesa contains the X.Org driver for Generic VESA cards. + xorg-input-vesa, VESA uyumlu ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-vesa-2.3.3.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-vesa/pspec.xml + + + xorg-video-vesa + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 2.3.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 2.3.3 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.3.2 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 2.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.3.2 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.3.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 2.3.2 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 2.3.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-vmware + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vmware video driver + X.Org vmware ekran kartı sürücüsü + xorg-video-vmware contains the X.Org driver for VMWare virtual machines. + xorg-video-vmware, VMWare sanal makineleri için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-vmware-13.1.0.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-vmware/pspec.xml + + + xorg-video-vmware + + mesa + libdrm + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 13.1.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 13.1.0 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 13.0.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 13.0.2 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 13.0.1 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 13.0.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 13.0.1 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-21 + 13.0.1 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 13.0.1 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 13.0.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 12.0.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-v4l + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org v4l video driver + X.Org v4l ekran kartı sürücüsü + v4l is an Xorg driver for video4linux cards. It provides a Xvideo extension port for video overlay. + v4l, video4linux kartları için Xorg sürücüsü içerir. Video yerpaylaşımı (overlay) için bir Xvideo kapısı sağlar. + mirrors://xorg/individual/driver/xf86-video-v4l-0.2.0.tar.bz2 + + xorg-server-devel + + + xorg-x11-drv-v4l-support_v4l2_only_drivers.patch + xf86-video-v4l-0.2.0-build-fix.patch + + x11/driver/xorg-video-v4l/pspec.xml + + + xorg-video-v4l + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-15 + 0.2.0 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-01-23 + 0.2.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.2.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.2.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.2.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.2.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.2.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.2.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-31 + 0.2.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-input-wacom + http://linuxwacom.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + driver + x11.driver + Input driver for Wacom tablets and drawing devices + Wacom tabletleri ve çizim aygıtları için giriş sürücüsü + xorg-input-wacom includes the drivers and tools for Wacom devices. + xorg-input-wacom, Wacom aygıtlarını kullanmak için sürücü ve araçları içerir. + mirrors://sourceforge/linuxwacom/xf86-input-wacom/xf86-input-wacom-0.29.0.tar.bz2 + + libXi-devel + libXrandr-devel + xorg-server-devel + libXinerama-devel + eudev-devel + + x11/driver/xorg-input-wacom/pspec.xml + + + xorg-input-wacom + + libX11 + libXi + libXrandr + libXinerama + xorg-server + eudev + + + /lib/udev + /usr/bin + /usr/lib/xorg + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + 70-wacom.rules + + + + xorg-input-wacom-devel + Development files for xorg-input-wacom + xorg-input-wacom için geliştirme dosyaları + + xorg-input-wacom + + + /usr/bin/isdv4-serial-debugger + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 0.29.0 + Version bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2015-01-23 + 0.24.0 + Version bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.24.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.24.0 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.23.0 + Rebuild for xserver 1.15. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 0.23.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 0.22.1 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.22.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-21 + 0.22.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-21 + 0.21.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.17.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 0.17.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-sis + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org sis video driver + X.Org sis ekran kartı sürücüsü + xorg-video-sis contains the X.Org driver for SiS cards. + xorg-video-sis, SiS ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-sis-0.10.7.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + + 0001-Disable-UploadToScreen-and-DownloadFromScreen.patch + git-fixes.patch + Xi.patch + + x11/driver/xorg-video-sis/pspec.xml + + + xorg-video-sis + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 0.10.7 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 0.10.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.10.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.10.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.10.7 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.10.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.10.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.10.7 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.10.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-neomagic + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org neomagic video driver + X.Org neomagic ekran kartı sürücüsü + xorg-video-neomagic contains the X.Org driver for NeoMagic cards. + xorg-video-neomagic, NeoMagic ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-neomagic-1.2.9.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-neomagic/pspec.xml + + + xorg-video-neomagic + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.2.9 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.2.8 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.8 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.8 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.2.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.7 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.7 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.2.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xinit + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + x11.misc + X Window System session initializer + X Pencere Sistemi oturum hazırlayıcı + xinit initializes X Window System server and runs the first client application. + xinit, X Pencere Sistemi sunucusunu hazırlar ve ilk istemci uygulamayı başlatır. + mirrors://xorg/individual/app/xinit-1.3.4.tar.bz2 + + util-macros + xorg-proto + libX11-devel + + + 06_move_serverauthfile_into_tmp.diff + fs25361.patch + + x11/misc/xinit/pspec.xml + + + xinit + + libX11 + xorg-app + dbus-x11 + + + /etc/X11/Xresources + /etc/X11/Xdefaults + /etc/X11/xinit + /usr/bin + /usr/lib/X11/xinit + /usr/share/doc + /usr/share/man + + + Xsession + xinitrc + xserverrc + xserverrc + Xresources + Xdefaults + xinitrc.d/localuser.sh + xinitrc.d/xdg-runtime-dir.sh + xinitrc.d/Xresources.sh + xinitrc.d/Xdefaults.sh + xinitrc.d/xkb.sh + xinitrc.d/startup.sh + xinitrc.d/environment.sh + xinitrc.d/dbus.sh + xinitrc.d/ssh-agent.sh + + + + + 2015-11-30 + 1.3.4 + add patchs. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-10 + 1.3.4 + Version Bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-28 + 1.3.3 + add xdg runtime dir fix localuser dir + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-16 + 1.3.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-12 + 1.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-26 + 1.3.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-app + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + app:gui + x11.misc + Applications de X.Org + X.Org applications + X.Org uygulamaları + X.Org Anwendungen + xorg-app contains base Xorg applications. + mirrors://xorg/individual/app/appres-1.0.4.tar.bz2 + mirrors://xorg/individual/app/bdftopcf-1.0.5.tar.bz2 + mirrors://xorg/individual/app/beforelight-1.0.5.tar.bz2 + mirrors://xorg/individual/app/bitmap-1.0.8.tar.bz2 + mirrors://xorg/individual/app/editres-1.0.6.tar.bz2 + mirrors://xorg/individual/app/fonttosfnt-1.0.4.tar.bz2 + mirrors://xorg/individual/app/fslsfonts-1.0.5.tar.bz2 + mirrors://xorg/individual/app/fstobdf-1.0.6.tar.bz2 + mirrors://xorg/individual/app/iceauth-1.0.7.tar.bz2 + mirrors://xorg/individual/app/ico-1.0.4.tar.bz2 + mirrors://xorg/individual/app/listres-1.0.3.tar.bz2 + mirrors://xorg/individual/app/luit-1.1.1.tar.bz2 + mirrors://xorg/individual/app/mkcomposecache-1.2.1.tar.bz2 + mirrors://xorg/individual/app/mkfontdir-1.0.7.tar.bz2 + mirrors://xorg/individual/app/mkfontscale-1.1.2.tar.bz2 + mirrors://xorg/individual/app/oclock-1.0.3.tar.bz2 + mirrors://xorg/individual/app/rendercheck-1.4.tar.bz2 + mirrors://xorg/individual/app/rgb-1.0.6.tar.bz2 + mirrors://xorg/individual/app/rstart-1.0.5.tar.bz2 + mirrors://xorg/individual/app/scripts-1.0.1.tar.bz2 + mirrors://xorg/individual/app/sessreg-1.1.0.tar.bz2 + mirrors://xorg/individual/app/setxkbmap-1.3.0.tar.bz2 + mirrors://xorg/individual/app/showfont-1.0.5.tar.bz2 + mirrors://xorg/individual/app/smproxy-1.0.5.tar.bz2 + mirrors://xorg/individual/app/twm-1.0.8.tar.bz2 + mirrors://xorg/individual/app/viewres-1.0.4.tar.bz2 + mirrors://xorg/individual/app/x11perf-1.5.4.tar.bz2 + mirrors://xorg/individual/app/xauth-1.0.9.tar.bz2 + mirrors://xorg/individual/app/xbacklight-1.2.1.tar.bz2 + mirrors://xorg/individual/app/xbiff-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xcalc-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xclipboard-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xclock-1.0.7.tar.bz2 + mirrors://xorg/individual/app/xcmsdb-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xcompmgr-1.1.6.tar.bz2 + mirrors://xorg/individual/app/xconsole-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xcursorgen-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xdbedizzy-1.1.0.tar.bz2 + mirrors://xorg/individual/app/xditview-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xdpyinfo-1.3.1.tar.bz2 + mirrors://xorg/individual/app/xedit-1.2.2.tar.bz2 + mirrors://xorg/individual/app/xev-1.2.2.tar.bz2 + mirrors://xorg/individual/app/xeyes-1.1.1.tar.bz2 + mirrors://xorg/individual/app/xf86dga-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xfd-1.1.2.tar.bz2 + mirrors://xorg/individual/app/xfindproxy-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xfontsel-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xfs-1.1.4.tar.bz2 + mirrors://xorg/individual/app/xfsinfo-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xfwp-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xgamma-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xgc-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xhost-1.0.7.tar.bz2 + mirrors://xorg/individual/app/xinput-1.6.1.tar.bz2 + mirrors://xorg/individual/app/xkbcomp-1.3.0.tar.bz2 + mirrors://xorg/individual/app/xkbevd-1.1.4.tar.bz2 + mirrors://xorg/individual/app/xkbprint-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xkbutils-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xkill-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xload-1.1.2.tar.bz2 + mirrors://xorg/individual/app/xlogo-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xlsatoms-1.1.2.tar.bz2 + mirrors://xorg/individual/app/xlsclients-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xlsfonts-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xmag-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xman-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xmessage-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xmh-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xmodmap-1.0.9.tar.bz2 + mirrors://xorg/individual/app/xmore-1.0.2.tar.bz2 + mirrors://xorg/individual/app/xpr-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xprop-1.2.2.tar.bz2 + mirrors://xorg/individual/app/xrandr-1.4.3.tar.bz2 + mirrors://xorg/individual/app/xrdb-1.1.0.tar.bz2 + mirrors://xorg/individual/app/xrefresh-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xset-1.2.3.tar.bz2 + mirrors://xorg/individual/app/xsetmode-1.0.0.tar.bz2 + mirrors://xorg/individual/app/xsetpointer-1.0.1.tar.bz2 + mirrors://xorg/individual/app/xsetroot-1.1.1.tar.bz2 + mirrors://xorg/individual/app/xsm-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xstdcmap-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xvidtune-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xvinfo-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xwd-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xwininfo-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xwud-1.0.4.tar.bz2 + + fontconfig-devel + libdmx-devel + libfontenc-devel + libFS-devel + libICE-devel + libpng-devel + libSM-devel + libXaw-devel + libXcomposite-devel + libXcursor-devel + libXdamage-devel + libXext-devel + libXfixes-devel + libXfont-devel + libXft-devel + libXi-devel + libXinerama-devel + libxkbfile-devel + libXmu-devel + libXrandr-devel + libXrender-devel + libXScrnSaver-devel + libXt-devel + libXtst-devel + libXv-devel + libXxf86dga-devel + libXxf86vm-devel + xbitmaps + xcb-util-devel + libXxf86misc-devel + xorg-proto + util-macros + xtrans + + x11/misc/xorg-app/pspec.xml + + + xorg-app + + zlib + libX11 + libXau + libpng + libxcb + freetype + libFS + libSM + libXi + libXt + libXv + libdmx + libXmu + libXaw + libICE + libXft + libXtst + libXext + xcb-util + libXfont + libXrandr + libXfixes + libXrender + fontconfig + libfontenc + libXxf86vm + libXcursor + libXdamage + libxkbfile + libXxf86dga + libXinerama + libXxf86misc + libXcomposite + libXScrnSaver + + + /etc + /usr/bin + /usr/include + /usr/lib + /usr/sbin + /usr/share/X11 + /usr/share/man + + + System.PackageHandler + + + + xorg-app-devel + + libxkbfile-devel + xorg-app + + + /usr/lib/pkgconfig + + + + + 2015-05-10 + 7.6 + Update. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-08-31 + 7.6 + Update. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 7.6 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-06 + 7.6 + Split devel package to prevent lots of devel pack installation. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 7.6 + Update: xfwp, xload, xprop, xset, xwd, xclipboard, twm, xman, xclock, xfindproxy, xkill, xlsclients, xmodmap, xrdb + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-05 + 7.6 + Add missing method to pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-17 + 7.6 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-31 + 7.6 + Update some apps, fix build luit + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 7.6 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 7.6 + Update + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-13 + 7.6 + Update + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 7.6 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xbitmaps + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.misc + Utilitaire Xbitmaps de X.Org + X.Org static graphics + X.Org statik grafikleri + X.Org xbitmaps Werkzeug + xbitmaps provides static graphics needed by Xorg applications to draw screen elements. + xbitmaps, ekran öğeleri çizmek için Xorg uygulamaları tarafından ihtiyaç duyulan statik grafikleri içerir. + mirrors://xorg/individual/data/xbitmaps-1.1.1.tar.bz2 + x11/misc/xbitmaps/pspec.xml + + + xbitmaps + + /usr/include/X11/bitmaps + /usr/lib/pkgconfig + /usr/share/pkgconfig + + + + + 2014-05-15 + 1.1.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-25 + 1.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-12-14 + 1.1.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + xorg-font + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + data:font + x11.misc + Fichiers de fontes d'écrans graphiques (X.Org) + X.Org font files + X.Org yazı tipi dosyaları + Grafische Oberfläche (X.Org) Schrift Dateien + xorg-font contains base X.Org fonts. + mirrors://xorg/individual/font/encodings-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-alias-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2 + mirrors://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2 + mirrors://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2 + + font-util + xorg-app + + x11/misc/xorg-font/pspec.xml + + + xorg-font + + xorg-app + + + /etc/X11/fontpath.d + /usr/share/fonts + /etc/fonts/conf.avail/42-luxi-mono.conf + /etc/fonts/conf.d/42-luxi-mono.conf + + + + xorg-font-extra + X.Org additional font files + X.Org ek yazı tipi dosyaları + + xorg-app + + + /etc/X11/fontpath.d/75dpi:unscaled + /etc/X11/fontpath.d/100dpi:unscaled + /usr/share/fonts/75dpi + /usr/share/fonts/100dpi + + + + + 2015-11-17 + 7.6 + Release Bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-05-16 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-01 + 7.6 + Add fonts. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-11-01 + 7.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + xkeyboard-config + http://freedesktop.org/wiki/Software/XKeyboardConfig + + PisiLinux Community + admins@pisilinux.org + + MIT + data + x11.misc + X keyboard configuration database + X klavye yapılandırma veritabanı + xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations. + xkeyboard-config, X Pencere Sistemi için tutarlı ve iyi tasarlanmış X klavye yapılandırma verisi sağlamayı amaçlar. + mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.14.tar.bz2 + + intltool + xorg-proto + xorg-app + libxslt-devel + libX11-devel + + + xkeyboard-config-1.4-jp-tilde.patch + + x11/misc/xkeyboard-config/pspec.xml + + + xkeyboard-config + + xorg-app + libxslt + libX11 + + + /etc/X11/xorg.conf.d + /lib/udev/rules.d + /usr/share/X11/xkb + /usr/share/doc + /usr/share/locale + /usr/share/pkgconfig + /usr/share/man + + + 10-keyboard.conf + 95-xkb.rules + + + + + 2015-05-14 + 2.14 + Release bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-29 + 2.14 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-21 + 2.13 + Version bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2014-08-31 + 2.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-15 + 2.11 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-25 + 2.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 2.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + vte + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + x11.terminal + Widget terminal utilisant Xft + Xft powered terminal widget + The VTE package contains a termcap file implementation for terminal emulators. + Vte paketi, terminal emülatörleri için termcap uygulama dosyası içerir. + mirrors://gnome/vte/0.28/vte-0.28.2.tar.xz + + gobject-introspection-devel + fontconfig-devel + gtk2-devel + pango-devel + cairo-devel + gtk-doc + gdk-pixbuf-devel + atk-devel + ncurses-devel + glib2-devel + libX11-devel + + + vte-0.28.2-limit-arguments.patch + vte-alt-meta-confusion.patch + vte-python-bugfixes.patch + vte-0.28.0-link.patch + vte-0.28.2-scale.patch + + x11/terminal/vte/pspec.xml + + + vte + library + + gobject-introspection + gtk2 + atk + cairo + gdk-pixbuf + pango + ncurses + glib2 + libX11 + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/locale + /usr/share/vte + /usr/share/pygtk + /usr/share/gir-1.0/Vte-0.0.gir + + + + vte-docs + GTK reference documents for vte + data:doc + + /usr/share/gtk-doc + + + + vte-devel + Development files for vte + vte için geliştirme dosyaları + + vte + gtk2-devel + pango-devel + cairo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-16 + 0.28.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-25 + 0.28.2 + rebuild for unused + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-06 + 0.28.2 + Fix deps + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.28.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 0.28.2 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-24 + 0.28.2 + First release + Osman Erkan + namso-0"@hotmail.it + + + + + + xterm + http://invisible-island.net/xterm + + PisiLinux Community + admins@pisilinux.org + + MIT + app:gui + x11.terminal + Terminal emulator for the X Window System + X Pencere Sistemi için uçbirim emülatörü + The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can't use the window system directly. + xterm programı, X Pencere Sistemi için bir uçbirim emülatörüdür. Pencere sistemini doğrudan kullanamayan programlar için DEC VT102 ve Tektronix 4014 uyumlu uçbirimler sağlar. + terminal + ftp://invisible-island.net/xterm/xterm-304.tgz + + fontconfig-devel + libICE-devel + libXaw-devel + libXft-devel + libXmu-devel + libXt-devel + utempter-devel + xorg-app + libXpm-devel + ncurses-devel + libX11-devel + + + 16colors.txt.diff + defaults.patch + + x11/terminal/xterm/pspec.xml + + + xterm + + fontconfig + libICE + libXaw + libXft + libXmu + libXt + utempter + xorg-app + libXpm + ncurses + libX11 + + + /usr/bin + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + + + 2014-05-13 + 304 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-25 + 287 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-12 + 287 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + xcb-util-keysyms http://xcb.freedesktop.org PisiLinux Community @@ -59099,20 +89265,18 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol x11.library A number of libraries which sit on top of libxcb libxcb temelli birtakım kitaplıklar - The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-image modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2 + The xcb-util-keysyms module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-keysyms modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2 util-macros libxcb-devel - xcb-util-devel - x11/library/xcb-util-image/pspec.xml + x11/library/xcb-util-keysyms/pspec.xml - xcb-util-image + xcb-util-keysyms - xcb-util libxcb @@ -59121,11 +89285,11 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-image-devel - Development files for xcb-util - xcb-util-image için geliştirme dosyaları + xcb-util-keysyms-devel + Development files for xcb-util-keysyms + xcb-util-keysyms için geliştirme dosyaları - xcb-util-image + xcb-util-keysyms libxcb-devel @@ -59135,61 +89299,52 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-image-32bit - 32-bit shared libraries for xcb-util - xcb-util-image için 32-bit paylaşımlı kitaplıklar + xcb-util-keysyms-32bit + 32-bit shared libraries for xcb-util-keysyms emul32 emul32 libxcb-32bit - xcb-util-32bit glibc-32bit - glibc-32bit - xcb-util-32bit + xcb-util-keysyms libxcb-32bit + glibc-32bit /usr/lib32 - + 2015-12-13 0.4.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2014-05-16 0.3.9 Release bump. Marcin Bojara marcin@pisilinux.org - + 2013-10-07 0.3.9 Clean actions.py emul32 build. Serdar Soytetir kaptan@pisilinux.org - + 2013-08-25 0.3.9 Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-07-30 - 0.3.9 - Rebuild - PisiLinux Community - admins@pisilinux.org - 2012-12-08 0.3.9 @@ -59201,97 +89356,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libexplain - http://libexplain.sourceforge.net/ - - erdinc gültekin - admins@pisilinux.org - - LGPLv2 - library - x11.library - Explain errno values returned by libc functions - Libc fonksiyonları tarafından döndürülen errno değerleri açıklar - The libexplain package provides a library which may be used to explain Unix and Linux system call errors - Libexplain paketi, Unix ve Linux sistem çağrısı hataları açıklamak için kullanılan bir kütüphane sunar. - http://sourceforge.net/projects/libexplain/files/1.4/libexplain-1.4.tar.gz - - acl-devel - libcap-devel - lsof - libtool - bison - groff - - x11/library/libexplain/pspec.xml - - - libexplain - - acl - libcap - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/locale - /usr/share/doc - - - - libexplain-devel - Development files for libexplain. - libexplain için geliştirme dosyaları - - libexplain - - - /usr/lib/pkgconfig - /usr/include - - - - - 2014-11-24 - 1.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-07 - 1.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-05-27 - 1.2 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-05-27 - 1.0 - First release - erdinc gültekin - admins@pisilinux.org - - - - - - libXi + libpciaccess http://www.x.org/ PisiLinux Community @@ -59300,21 +89365,266 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie Xi de X.Org - X.Org Xi library - X.Org Xi kitaplığı - X.Org Xi Bibliothek - LibXi provides an X Window System client interface to the XINPUT extension to the X protocol. - mirrors://xorg/individual/lib/libXi-1.7.4.tar.bz2 + X.Org PCI access library + X.Org PCI erişim kitaplığı + libpciaccess is the Xorg library for portable PCI access routines across multiple operating systems. + libpciaccess, değişik işletim sistemleri için taşınabilir PCI erişim rutinleri içeren Xorg kitaplığıdır. + mirrors://xorg/individual/lib/libpciaccess-0.13.4.tar.bz2 - libXext-devel - libXfixes-devel util-macros - x11/library/libXi/pspec.xml + x11/library/libpciaccess/pspec.xml - libXi + libpciaccess + + /usr/lib + /usr/share/doc + + + + libpciaccess-devel + Development files for libpciaccess + libpciaccess için geliştirme dosyaları + + libpciaccess + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libpciaccess-32bit + 32-bit shared libraries for libpciaccess + libpciaccess için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libpciaccess + + + /usr/lib32 + + + + + 2015-05-05 + 0.13.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.13.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 0.13.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.13.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-21 + 0.13.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-01 + 0.13.1 + rebuild + Erdinc Gültekin + erdincgultekin@pisilinux.org + + + 2012-11-22 + 0.13.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXmu + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xmu de X.Org + X.Org Xmu library + X.Org Xmu kitaplığı + X.Org Xmu Bibliothek + libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. + LibXmu, X kitaplıklarında kullanmak için çeşitli yardımcı fonksiyonlar içerir. + mirrors://xorg/individual/lib/libXmu-1.1.2.tar.bz2 + + util-macros + libXt-devel + libICE-devel + libSM-devel + libXext-devel + + x11/library/libXmu/pspec.xml + + + libXmu + + libXt + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXmu-devel + Development files for libXmu + libXmu için geliştirme dosyaları + + libXmu + libXt-devel + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXmu-32bit + 32-bit shared libraries for libXmu + libXmu için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXt-32bit + libXext-32bit + glibc-32bit + + + libXmu + glibc-32bit + libXt-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.1.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 1.1.1 + Revert back to 1.1.1. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.1.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.1.1 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 1.1.1 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + + + 2012-06-01 + 1.1.1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libdmx + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie dmx de X.Org + X.Org dmx library + X.Org dmx kitaplığı + X.Org dmx Bibliothek + libdmx is the X Window System DMX (Distributed Multihead X) extension library. + mirrors://xorg/individual/lib/libdmx-1.1.3.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libdmx/pspec.xml + + + libdmx libXext libX11 @@ -59325,313 +89635,54 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXi-devel - Development files for libXi - libXi için geliştirme dosyaları + libdmx-devel + Development files for libdmx + libdmx için geliştirme dosyaları - libXi + libdmx libXext-devel - libX11-devel - libXfixes-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXi-32bit - 32-bit shared libraries for libXi - libXi için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libXext-32bit - libX11-32bit - - - glibc-32bit - libXi - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2014-08-31 - 1.7.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.7.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.7.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.7.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.7.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.7.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-17 - 1.6.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.6.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libXrender - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xrender de X.Org - X.Org Xrender library - X.Org Xrender kitaplığı - X.Org Xrender Bibliothek - The X Rendering Extension (Render) introduces digital image composition as the foundation of a new rendering model within the X Window System. Rendering geometric figures is accomplished by client-side tesselation into either triangles or trapezoids. - mirrors://xorg/individual/lib/libXrender-0.9.9.tar.bz2 - - libX11-devel - xorg-proto - util-macros - - x11/library/libXrender/pspec.xml - - - libXrender - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXrender-devel - Development files for libXrender - libXrender için geliştirme dosyaları - - libXrender - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/libXrender/libXrender.txt - - - - libXrender-32bit - 32-bit shared libraries for libXrender - libXrender için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - - - libXrender - glibc-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2015-08-15 - 0.9.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-16 - 0.9.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 0.9.8 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.9.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.9.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 0.9.7 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xcb-util-renderutil - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-renderutil module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-renderutil modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util-renderutil/pspec.xml - - - xcb-util-renderutil - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-renderutil-devel - Development files for xcb-util-renderutil - xcb-util-renderutil için geliştirme dosyaları - - xcb-util-renderutil /usr/include /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-renderutil-32bit - 32-bit shared libraries for xcb-util-renderutil - xcb-util-renderutil için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libxcb-32bit - - - glibc-32bit - libxcb-32bit - - - /usr/lib32 + /usr/share/man - 2014-09-01 - 0.3.9 - Version bump. + 2014-05-16 + 1.1.3 + Release bump. Marcin Bojara marcin@pisilinux.org - 2014-05-16 - 0.3.8 + 2013-10-07 + 1.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.3 Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-10-07 - 0.3.8 - Clean actions.py emul32 build. - Serdar Soytetir - kaptan@pisilinux.org - - 2013-08-25 - 0.3.8 - Release bump. + 2013-06-21 + 1.1.3 + Version bump. Marcin Bojara marcin@pisilinux.org - 2012-12-08 - 0.3.8 + 2012-06-01 + 1.1.2 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Erdem Artan + admins@pisilinux.org @@ -59890,6 +89941,2424 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + libXcomposite + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie composite X.Org + X.Org composite library + X.Org composite kitaplığı + X.Org composite Bibliothek + libXcomposite is the X Composite library. Compositing allows modification of the window system's base elements like window borders, window buttons and window titlebars. + libXcomposite, X Birleşiklik kitaplığıdır. Birleşiklik, pencerelere ait kenarlar, butonlar ve başlık çubukları gibi pencere sisteminin temel elemanlarını değiştirmeye izin verir. + mirrors://xorg/individual/lib/libXcomposite-0.4.4.tar.bz2 + + libX11-devel + libXfixes-devel + util-macros + + x11/library/libXcomposite/pspec.xml + + + libXcomposite + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXcomposite-devel + Development files for libXcomposite + libXcomposite için geliştirme dosyaları + + libXcomposite + libXfixes-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXcomposite-32bit + 32-bit shared libraries for libXcomposite + libXcomposite için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + glibc-32bit + + + libXcomposite + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 0.4.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 0.4.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.4.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-17 + 0.4.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 0.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libX11 + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie X11 de X.Org. + X.Org X11 library + X.Org X11 kitaplığı + X.Org X11 Bibliothek + Core X11 protocol client library. + mirrors://xorg/individual/lib/libX11-1.6.3.tar.bz2 + + libxcb-devel + xorg-proto + util-macros + xtrans + + x11/library/libX11/pspec.xml + + + libX11 + + libxcb + + + /usr/lib/libX11* + /usr/lib/X11 + /usr/share/X11 + /usr/share/doc/libX11 + + + + libX11-devel + Development files for X11 library + libX11 için geliştirme dosyaları + + libX11 + libxcb-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libX11-32bit + 32-bit shared libraries for libX11 + libX11 için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + glibc-32bit + + + libX11 + libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-05-22 + 1.6.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.6.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.6.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.6.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.6.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-24 + 1.5.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libXp + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xp de X.Org. + X.Org Xp library + X.Org Xp kitaplığı. + X.Org Xp Bibliothek + X.Org X11 libXp runtime library + mirrors://xorg/individual/lib/libXp-1.0.3.tar.bz2 + + libXext-devel + xorg-proto + libXau-devel + libX11-devel + util-macros + + x11/library/libXp/pspec.xml + + + libXp + + libXext + libXau + libX11 + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + libXp-devel + Development files for libXp + libXp için geliştirme dosyaları + + libXp + libXext-devel + + + /usr/include/X11 + /usr/lib/libdeprecatedXp.so + /usr/lib32/libdeprecatedXp.so + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXp-32bit + 32-bit shared libraries for libXp + libXp için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXp + libXext-32bit + libXau-32bit + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-11-13 + 1.0.3 + Release bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-05-16 + 1.0.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.0.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.0.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.2 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 1.0.2 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + + + 2013-06-21 + 1.0.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-15 + 1.0.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libSM + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie SM de X.Org. + X.Org SM library + X.Org SM kitaplığı. + X.Org SM Bibliothek + libSM is the X Session Management library. + mirrors://xorg/individual/lib/libSM-1.2.2.tar.bz2 + + libICE-devel + libutil-linux-devel + util-macros + xorg-proto + xtrans + + x11/library/libSM/pspec.xml + + + libSM + + libutil-linux + libICE + + + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libSM-devel + Development files for libSM + libSM için geliştirme dosyaları + + libICE-devel + libSM + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/*.xml + + + + libSM-32bit + 32-bit shared libraries for libSM + libSM için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libICE-32bit + libutil-linux-32bit + + + glibc-32bit + libICE-32bit + libutil-linux-32bit + libSM + + + /usr/lib32 + + + + + 2014-05-16 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.2.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-06 + 1.2.1 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 1.2.1 + Revert back to 1.2.1, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.2.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.2.1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXvMC + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie XvMC de X.Org + X.Org XvMC library + X.Org XvMC kitaplığı + X.Org XvMC Bibliothek + LibXvMC is the X-Video Motion Compensation Library. + mirrors://xorg/individual/lib/libXvMC-1.0.8.tar.bz2 + + libX11-devel + libXext-devel + libXv-devel + xorg-proto + util-macros + + x11/library/libXvMC/pspec.xml + + + libXvMC + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXvMC-devel + Development files for libXvMC + libXvMC için geliştirme dosyaları + + libXv-devel + libXext-devel + libXvMC + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libXvMC/XvMC_API.txt + + + + libXvMC-32bit + 32-bit shared libraries for libXvMC + libXvMC için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXv-32bit + libX11-32bit + libXext-32bit + + + libX11-32bit + libXext-32bit + libXvMC + + + /usr/lib32 + + + + + 2014-05-16 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-19 + 1.0.8 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-06 + 1.0.8 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 1.0.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-02 + 1.0.8 + Split 32bit. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.0.8 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 1.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.0.7 + First release + Erdem Artan + admins@pisilinux.org + + + + + + mesa-glu + http://www.mesa3d.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Mesa OpenGL Utility library + Mesa implementation of the standard GLU OpenGL utility API. + ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.0.tar.gz + + mesa-devel + libgcc + + x11/library/mesa-glu/pspec.xml + + + mesa-glu + + mesa + libgcc + + + /usr/lib + + + + mesa-glu-devel + Development files for mesa-glu + mesa-glu için geliştirme dosyaları + + mesa-glu + mesa-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + mesa-glu-32bit + 32-bit shared libraries for mesa-glu + mesa-glu için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + libgcc + glibc-32bit + + + mesa-glu + mesa-32bit + libgcc + glibc-32bit + + + /usr/lib32 + + + + + 2015-01-22 + 9.0.0 + Release bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-05-16 + 9.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 9.0.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 9.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 9.0.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + glew + http://glew.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + BSD + GLX + SGI-B + GPLv2 + app:console + library + x11.library + OpenGL Extension Wrangler Library + OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığı + OpenGL Extension Wrangler Library (GLEW) is a cross-platform C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file. + OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığıdır. + mirrors://sourceforge/glew/1.12.0/glew-1.12.0.tgz + + mesa-glu-devel + + + add_bin_target.patch + + x11/library/glew/pspec.xml + + + glew + + mesa + libX11 + + + /usr/lib + /usr/share/doc + /usr/bin + + + + glew-devel + Development files for glew + glew için geliştirme dosyaları + + mesa-glu-devel + glew + + + /usr/include/GL + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + glew-32bit + 32-bit shared libraries for glew + glew için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + libX11-32bit + + + mesa-32bit + glibc-32bit + libX11-32bit + glew + + + /usr/lib32 + + + + + 2015-08-15 + 1.12.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-01-27 + 1.10.0 + Release bump + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-16 + 1.10.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-06 + 1.9.0 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-08 + 1.9.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.9.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.9.0 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-10-30 + 1.9.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libfontenc + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie fontenc de X.Org + X.Org fontenc library + X.Org fontenc kitaplığı + X.Org fontenc Bibliothek + libfontenc is the X Window System font encoding library. + mirrors://xorg/individual/lib/libfontenc-1.1.3.tar.bz2 + + zlib-devel + util-macros + font-util + xorg-proto + + x11/library/libfontenc/pspec.xml + + + libfontenc + + zlib + + + /usr/lib + /usr/share/doc + + + + libfontenc-devel + Development files for libfontenc + libfontenc için geliştirme dosyaları + + libfontenc + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2015-08-15 + 1.1.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 1.1.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1.1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXaw + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X Athena Widgets Library + X Athena Parçacıkları kitaplığı + Xaw is a widget set based on the X Toolkit Intrinsics (Xt) Library. + mirrors://xorg/individual/lib/libXaw-1.0.13.tar.bz2 + + libXext-devel + libXmu-devel + libXpm-devel + libXt-devel + util-macros + libICE-devel + libSM-devel + libX11-devel + + x11/library/libXaw/pspec.xml + + + libXaw + + libX11 + libXext + libXmu + libXpm + libXt + + + /usr/lib + /usr/share/doc + + + + libXaw-devel + Development files for libXaw + libXaw için geliştirme dosyaları + + libXaw + libXext-devel + libXmu-devel + libXpm-devel + libXt-devel + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXaw-32bit + 32-bit shared libraries for libSM + libXaw için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXmu-32bit + libXpm-32bit + libXt-32bit + libX11-32bit + glibc-32bit + + + libXaw + libXext-32bit + libXmu-32bit + libXpm-32bit + libXt-32bit + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-08-15 + 1.0.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 1.0.12 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.0.12 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 1.0.11 + Revert back to 1.0.11. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.0.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.0.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.11 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 1.0.11 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + + + 2012-11-22 + 1.0.11 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXxf86misc + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie libXxf86misc de X.Org + X.Org Xxf86misc library + X.Org libXxf86misc kitaplığı + X.Org libXxf86misc Bibliothek + LibXxf86misc is the client library for the XFree86-misc extension. + http://source.pisilinux.org/1.0/libXxf86misc-1.0.3.tar.gz + + libXext-devel + libXxf86miscproto-devel + xorg-proto + util-macros + + x11/library/libXxf86misc/pspec.xml + + + libXxf86misc + + libXext + libXxf86miscproto + + + /usr/lib + /usr/share/doc + + + + libXxf86misc-devel + Development files for libXxf86misc + libXxf86misc için geliştirme dosyaları + + libXxf86misc + libXext-devel + libXxf86miscproto-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86misc-32bit + 32-bit shared libraries for libXxf86misc + libXxf86misc için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86misc + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.0.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.0.3 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.0.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.0.3 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-10-23 + 1.0.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libepoxy + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + MIT + library + x11.library + OpenGL function pointer management library + Epoxy is a library for handling OpenGL function pointer management for you. + https://github.com/anholt/libepoxy/archive/v1.2.tar.gz + + libX11-devel + mesa-devel + util-macros + + x11/library/libepoxy/pspec.xml + + + libepoxy + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + libepoxy-devel + Development files for libepoxy + + libepoxy + + + /usr/include + /usr/lib/pkgconfig + + + + libepoxy-32bit + 32-bit shared libraries for libeproxy + emul32 + emul32 + + glibc-32bit + libX11-32bit + mesa-32bit + + + glibc-32bit + + + /lib32 + /usr/lib32 + + + + + 2015-05-27 + 1.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libICE + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org ICE library + X.Org ICE kitaplığı + Utilitaire ICE de X.Org. + libICE is the Inter-Client Exchange library. + libICE, Inter-Client Exchange protokolüne bir arayüz sağlayan X.Org kitaplığıdır. + X.Org ICE Bibliothek + mirrors://xorg/individual/lib/libICE-1.0.9.tar.bz2 + + libbsd-devel + util-macros + xorg-proto + xtrans + libxslt + + x11/library/libICE/pspec.xml + + + libICE + + libbsd + + + /usr/lib + /usr/share/doc + + + + libICE-devel + Development files for libICE + libICE için geliştirme dosyaları + + libICE + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libICE-32bit + 32-bit shared libraries for libICE + libICE için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libICE + + + /usr/lib32 + + + + + 2014-08-31 + 1.0.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.0.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.0.8 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libva + http://www.freedesktop.org/wiki/Software/vaapi + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Video Acceleration (VA) API for Linux + Linux için video hızlandırma API'si + libva is a library providing the VA API video acceleration API. + libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır. + http://www.freedesktop.org/software/vaapi/releases/libva/libva-1.5.1.tar.bz2 + + libdrm-devel + libXext-devel + libXfixes-devel + mesa-devel + wayland-devel + + x11/library/libva/pspec.xml + + + libva + + libX11 + libdrm + libXext + libXfixes + mesa + wayland-client + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libva-devel + Development files for libva + libva için geliştirme dosyaları + + libva + wayland-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libva-32bit + 32-bit shared libraries for libva + libva için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-32bit + wayland-32bit + libXext-32bit + libXfixes-32bit + mesa-32bit + libX11-32bit + glibc-32bit + + + libva + libdrm-32bit + wayland-32bit + libXext-32bit + libXfixes-32bit + libX11-32bit + mesa-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-05-10 + 1.5.1 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.5.0 + Version bump + Ergün Salman + poyraz76@pisilinux.org + + + 2014-05-16 + 1.3.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 1.3.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-02-20 + 1.2.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-07 + 1.2.1 + Version bump, clean actions.py. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-10 + 1.1.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxkbcommon + http://xkbcommon.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + x11.library + Library to convert evdev keycodes to keysyms + Evdev keycode'larını keysms türüne çeviren bir kitaplık + Library to convert evdev keycodes to keysyms + Evdev keycode'larını keysms türüne çeviren bir kitaplık + https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.5.0.tar.gz + + util-macros + libxcb-devel + + x11/library/libxkbcommon/pspec.xml + + + libxkbcommon + + libxcb + + + /usr/share/doc/libxkbcommon/ + /usr/lib/lib*.so* + + + + libxkbcommon-devel + Development files for libxkbcommon + libxkbcommon için geliştirme dosyaları + + libxkbcommon + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libxkbcommon-32bit + 32-bit shared libraries for libxkbcommon + emul32 + emul32 + + libxcb-32bit + glibc-32bit + + + libxkbcommon + libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-03-04 + 0.5.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-16 + 0.4.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-07 + 0.3.1 + Rebuild, clean emul32 installation. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-02 + 0.3.1 + First release. + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libXt + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xt de X.Org + X.Org Xt library + X.Org Xt kitaplığı + X.Org Xt Bibliothek + LibXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif. + mirrors://xorg/individual/lib/libXt-1.1.5.tar.bz2 + + libICE-devel + libSM-devel + xorg-proto + libX11-devel + util-macros + + x11/library/libXt/pspec.xml + + + libXt + + libICE + libSM + libX11 + + + /usr/bin + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libXt-devel + Development files for libXt + libXt için geliştirme dosyaları + + libXt + libICE-devel + libSM-devel + xorg-proto + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXt-32bit + 32-bit shared libraries for libXt + libXt için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libX11-32bit + libSM-32bit + + + glibc-32bit + libXt + libX11-32bit + libSM-32bit + libICE-32bit + + + /usr/lib32 + + + + + 2015-08-15 + 1.1.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.1.4 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 1.1.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1.3 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXinerama + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + librairie Xinerama de X.Org + X.Org Xinerama library + X.Org Xinerama kitaplığı + X.Org Xinerama Bibliothek + Xorg Xinerama library. Xinerama is an extension to the X Window System which enables applications and window managers to use two (or more) physical displays as one large virtual display. + mirrors://xorg/individual/lib/libXinerama-1.1.3.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXinerama/pspec.xml + + + libXinerama + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXinerama-devel + Development files for libXinerama + libXinerama için geliştirme dosyaları + + libXinerama + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXinerama-32bit + 32-bit shared libraries for libXinerama + libXinerama için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libX11-32bit + glibc-32bit + + + libXinerama + libX11-32bit + libXext-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.1.3 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 1.1.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 1.1.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxcb + http://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + The X protocol C-language Binding (XCB) + X protokolü için C dili bağlayıcısı (XCB) + The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. + http://xcb.freedesktop.org/dist/libxcb-1.11.1.tar.bz2 + + libXau-devel + libXdmcp-devel + libxslt + util-macros + xcb-proto + + + libxcb-1.1-no-pthread-stubs.patch + + x11/library/libxcb/pspec.xml + + + libxcb + + libXau + libXdmcp + glibc + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libxcb-devel + Development files for libxcb + libxcb için geliştirme dosyaları + + libxcb + libXau-devel + libXdmcp-devel + + + /usr/include/xcb + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + pthread-stubs.pc + + + + libxcb-32bit + 32-bit shared libraries for libxcb + libxcb için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXau-32bit + libXdmcp-32bit + glibc-32bit + + + libxcb + libXau-32bit + libXdmcp-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-12-13 + 1.11.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2015-05-22 + 1.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-11 + 1.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-08 + 1.9.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-28 + 1.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-18 + 1.9 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + libXxf86vm + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xxf86vm de X.Org + X.Org Xxf86vm library + X.Org Xxf86vm kitaplığı + X.Org Xxf86vm Bibliothek + LibXxf86vm is the client library for the XFree86-VidMode X extension. + mirrors://xorg/individual/lib/libXxf86vm-1.1.3.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXxf86vm/pspec.xml + + + libXxf86vm + + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXxf86vm-devel + Development files for libXxf86vm + libXxf86vm için geliştirme dosyaları + + libXxf86vm + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig/ + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86vm-32bit + 32-bit shared libraries for libXxf86vm + libXxf86vm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86vm + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-26 + 1.1.3 + Move pc files to devel pack, rebuild. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-06-21 + 1.1.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xcb-util + http://xcb.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2 + + util-macros + libxcb-devel + + x11/library/xcb-util/pspec.xml + + + xcb-util + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-devel + Development files for xcb-util + xcb-util için geliştirme dosyaları + + xcb-util + libxcb-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-32bit + 32-bit shared libraries for xcb-util + xcb-util için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + glibc-32bit + + + xcb-util + libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-12-13 + 0.4.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2013-10-07 + 0.3.9 + Clean actions.py emul32 build. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.3.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 0.3.9 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXScrnSaver + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie XScrnSaver de X.Org + X.Org XScrnSaver library + X.Org XScrnSaver kitaplığı + X.Org XScrnSaver Bibliothek + LibXScrnSaver allows using screensavers in X clients. + mirrors://xorg/individual/lib/libXScrnSaver-1.2.2.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXScrnSaver/pspec.xml + + + libXScrnSaver + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXScrnSaver-devel + Development files for libXScrnSaver + libXScrnSaver için geliştirme dosyaları + + libXScrnSaver + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXScrnSaver-32bit + 32-bit shared libraries for libXScrnSaver + libXScrnSaver için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libX11-32bit + libXext-32bit + + + libXScrnSaver + glibc-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.2.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.2.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libxshmfence + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org libxshmfence library + libxshmfence is the X Window System video extension library. + mirrors://xorg/individual/lib/libxshmfence-1.2.tar.bz2 + + libXext-devel + util-macros + + x11/library/libxshmfence/pspec.xml + + + libxshmfence + + libXext + + + /usr/lib + /usr/share/doc + + + + libxshmfence-devel + Development files for libxshmfence + + libxshmfence + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libxshmfence-32bit + 32-bit shared libraries for libxshmfence + emul32 + emul32 + + glibc-32bit + libX11-32bit + libXext-32bit + + + libxshmfence + glibc-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2015-05-05 + 1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + libXfont @@ -60305,103 +92774,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util/pspec.xml - - - xcb-util - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-devel - Development files for xcb-util - xcb-util için geliştirme dosyaları - - xcb-util - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-32bit - 32-bit shared libraries for xcb-util - xcb-util için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - xcb-util - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-12-13 - 0.4.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2013-10-07 - 0.3.9 - Clean actions.py emul32 build. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.3.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 0.3.9 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libxshmfence + libXau http://www.x.org/ PisiLinux Community @@ -60410,1309 +92783,52 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - X.Org libxshmfence library - libxshmfence is the X Window System video extension library. - mirrors://xorg/individual/lib/libxshmfence-1.2.tar.bz2 - - libXext-devel - util-macros - - x11/library/libxshmfence/pspec.xml - - - libxshmfence - - libXext - - - /usr/lib - /usr/share/doc - - - - libxshmfence-devel - Development files for libxshmfence - - libxshmfence - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libxshmfence-32bit - 32-bit shared libraries for libxshmfence - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - - - libxshmfence - glibc-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2015-05-05 - 1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xcb-util-cursor - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - XCB cursor library - The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.2.tar.bz2 + Librairie Au de X.Org. + X.Org Au library + X.Org Au kitaplığı. + X.Org Au Bibliothek + libXau provides functions to manage X authorization files + libXau, X yetkilendirme dosyalarını yönetmek için işlevler sağlar. + http://xorg.freedesktop.org/archive/individual/lib/libXau-1.0.8.tar.gz util-macros - libxcb-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-renderutil-devel - - x11/library/xcb-util-cursor/pspec.xml - - - xcb-util-cursor - - libxcb - xcb-util-image - xcb-util-renderutil - - - /usr/lib - /usr/share/doc - - - - xcb-util-cursor-devel - Development files for xcb-util - - xcb-util-cursor - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-cursor-32bit - 32-bit shared libraries for xcb-util - emul32 - emul32 - - libxcb-32bit - glibc-32bit - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - glibc-32bit - libxcb-32bit - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - /usr/lib32 - - - - - 2015-08-26 - 0.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libevdev - http://www.freedesktop.org/wiki/Software/libevdev/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv1 - library - x11.library - Wrapper library for evdev devices - Wrapper library for evdev devices - Wrapper library for evdev devices - Wrapper library for evdev devices - http://www.freedesktop.org/software/libevdev/libevdev-1.3.2.tar.xz - - 0001-Revert-Drop-deprecated-functions.patch - 0001-Revert-Drop-some-leftover-deprecated-constants.patch - - x11/library/libevdev/pspec.xml - - - libevdev - - /usr/bin - /usr/lib - /usr/include - /usr/share - /usr/share/doc - - - - - 2015-01-25 - 1.3.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-16 - 1.2 - version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-30 - 0.6 - Revert back to 0.6 version. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-30 - 0.9.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-10-11 - 0.4 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libxkbcommon - http://xkbcommon.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - x11.library - Library to convert evdev keycodes to keysyms - Evdev keycode'larını keysms türüne çeviren bir kitaplık - Library to convert evdev keycodes to keysyms - Evdev keycode'larını keysms türüne çeviren bir kitaplık - https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.5.0.tar.gz - - util-macros - libxcb-devel - - x11/library/libxkbcommon/pspec.xml - - - libxkbcommon - - libxcb - - - /usr/share/doc/libxkbcommon/ - /usr/lib/lib*.so* - - - - libxkbcommon-devel - Development files for libxkbcommon - libxkbcommon için geliştirme dosyaları - - libxkbcommon - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libxkbcommon-32bit - 32-bit shared libraries for libxkbcommon - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - libxkbcommon - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-03-04 - 0.5.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-16 - 0.4.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-07 - 0.3.1 - Rebuild, clean emul32 installation. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-02 - 0.3.1 - First release. - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libXaw - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X Athena Widgets Library - X Athena Parçacıkları kitaplığı - Xaw is a widget set based on the X Toolkit Intrinsics (Xt) Library. - mirrors://xorg/individual/lib/libXaw-1.0.13.tar.bz2 - - libXext-devel - libXmu-devel - libXpm-devel - libXt-devel - util-macros - libICE-devel - libSM-devel - libX11-devel - - x11/library/libXaw/pspec.xml - - - libXaw - - libX11 - libXext - libXmu - libXpm - libXt - - - /usr/lib - /usr/share/doc - - - - libXaw-devel - Development files for libXaw - libXaw için geliştirme dosyaları - - libXaw - libXext-devel - libXmu-devel - libXpm-devel - libXt-devel - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXaw-32bit - 32-bit shared libraries for libSM - libXaw için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libXmu-32bit - libXpm-32bit - libXt-32bit - libX11-32bit - glibc-32bit - - - libXaw - libXext-32bit - libXmu-32bit - libXpm-32bit - libXt-32bit - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-08-15 - 1.0.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-16 - 1.0.12 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.0.12 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-07 - 1.0.11 - Revert back to 1.0.11. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.0.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.0.11 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.11 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 1.0.11 - Move .pc files to devel package - Fatih Turgel - hitaf@pisilinux.org - - - 2012-11-22 - 1.0.11 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXxf86dga - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xxf86dga de X.Org - X.Org Xxf86dga library - X.Org Xxf86dga kitaplığı - X.Org Xxf86dga Bibliothek - LibXxf86dga is the client library for the XFree86-DGA extension. - mirrors://xorg/individual/lib/libXxf86dga-1.1.4.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXxf86dga/pspec.xml - - - libXxf86dga - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXxf86dga-devel - Development files for libXxf86dga - libXxf86dga için geliştirme dosyaları - - libXxf86dga - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86dga-32bit - 32-bit shared libraries for libXxf86dga - libXxf86dga için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86dga - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.1.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1.3 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libXmu - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xmu de X.Org - X.Org Xmu library - X.Org Xmu kitaplığı - X.Org Xmu Bibliothek - libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. - LibXmu, X kitaplıklarında kullanmak için çeşitli yardımcı fonksiyonlar içerir. - mirrors://xorg/individual/lib/libXmu-1.1.2.tar.bz2 - - util-macros - libXt-devel - libICE-devel - libSM-devel - libXext-devel - - x11/library/libXmu/pspec.xml - - - libXmu - - libXt - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXmu-devel - Development files for libXmu - libXmu için geliştirme dosyaları - - libXmu - libXt-devel - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libXmu-32bit - 32-bit shared libraries for libXmu - libXmu için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXt-32bit - libXext-32bit - glibc-32bit - - - libXmu - glibc-32bit - libXt-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.1.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-07 - 1.1.1 - Revert back to 1.1.1. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.1.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.1.1 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 1.1.1 - Move .pc files to devel package - Fatih Turgel - hitaf@pisilinux.org - - - 2012-06-01 - 1.1.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libpciaccess - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X.Org PCI access library - X.Org PCI erişim kitaplığı - libpciaccess is the Xorg library for portable PCI access routines across multiple operating systems. - libpciaccess, değişik işletim sistemleri için taşınabilir PCI erişim rutinleri içeren Xorg kitaplığıdır. - mirrors://xorg/individual/lib/libpciaccess-0.13.4.tar.bz2 - - util-macros - - x11/library/libpciaccess/pspec.xml - - - libpciaccess - - /usr/lib - /usr/share/doc - - - - libpciaccess-devel - Development files for libpciaccess - libpciaccess için geliştirme dosyaları - - libpciaccess - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libpciaccess-32bit - 32-bit shared libraries for libpciaccess - libpciaccess için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libpciaccess - - - /usr/lib32 - - - - - 2015-05-05 - 0.13.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.13.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 0.13.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.13.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-21 - 0.13.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-01 - 0.13.1 - rebuild - Erdinc Gültekin - erdincgultekin@pisilinux.org - - - 2012-11-22 - 0.13.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pixman - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Pixel manipulation library - Piksel işleme kitaplığı - Pixman contains lowlevel pixel manipulation routines. - Pixman, düşük düzey piksel işleme yordamlarını içerir. - mirrors://xorg/individual/lib/pixman-0.32.6.tar.bz2 - x11/library/pixman/pspec.xml - - - pixman - - /usr/lib - /usr/share/doc - - - - pixman-devel - Development files for pixman - pixman için geliştirme dosyaları - - pixman - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - pixman-32bit - 32-bit shared libraries for pixman - pixman için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - pixman - glibc-32bit - - - /usr/lib32 - - - - - 2014-08-31 - 0.32.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.32.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 0.32.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-07 - 0.30.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 0.30.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.30.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.30.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 0.28.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXfixes - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xfixes de X.Org - X.Org Xfixes library - X.Org Xfixes kitaplığı - X.Org Xfixes Bibliothek - libXfixes is a library to provide augmented versions of core protocol requests. - mirrors://xorg/individual/lib/libXfixes-5.0.1.tar.bz2 - xorg-proto - libX11-devel - util-macros - - x11/library/libXfixes/pspec.xml - - - libXfixes - - /usr/lib - /usr/share/doc - - - - libXfixes-devel - Development files for libXfixes - libXfixes için geliştirme dosyaları - - libXfixes - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXfixes-32bit - 32-bit shared libraries for libXfixes - libXfixes için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - glibc-32bit - - - libXfixes - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 5.0.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 5.0.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 5.0.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 5.0.1 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 5.0.1 - Move .pc files to devel package - Fatih Turgel - hitaf@pisilinux.org - - - 2013-06-21 - 5.0.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 5.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libXt - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xt de X.Org - X.Org Xt library - X.Org Xt kitaplığı - X.Org Xt Bibliothek - LibXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif. - mirrors://xorg/individual/lib/libXt-1.1.5.tar.bz2 - - libICE-devel - libSM-devel - xorg-proto - libX11-devel - util-macros - - x11/library/libXt/pspec.xml - - - libXt - - libICE - libSM - libX11 - - - /usr/bin - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libXt-devel - Development files for libXt - libXt için geliştirme dosyaları - - libXt - libICE-devel - libSM-devel - xorg-proto - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXt-32bit - 32-bit shared libraries for libXt - libXt için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libSM-32bit - - - glibc-32bit - libXt - libX11-32bit - libSM-32bit - libICE-32bit - - - /usr/lib32 - - - - - 2015-08-15 - 1.1.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-16 - 1.1.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.1.4 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 1.1.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1.3 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libomxil-bellagio - http://omxil.sourceforge.net - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2.1 - library - x11.library - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - http://downloads.sourceforge.net/project/omxil/omxil/Bellagio%200.9.3/libomxil-bellagio-0.9.3.tar.gz - - glibc-devel - fedora-fixes.patch + visibility.patch - x11/library/libomxil-bellagio/pspec.xml + x11/library/libXau/pspec.xml - libomxil-bellagio - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - libomxil-bellagio-devel - Development files for mesa - - libomxil-bellagio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-07 - 0.9.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libXdmcp - http://x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xdmcp de X.Org. - X.Org Xdmcp library - X.Org Xdmcp kitaplığı. - X.Org Xdmcp Bibliothek - LibXdmcp is the X Display Manager Control Protocol library. - LibXdmcp, X Ekran Yöneticisi Denetim Protokolü kitaplığıdır. - http://xorg.freedesktop.org/archive/individual/lib/libXdmcp-1.1.2.tar.bz2 - - libxslt - util-macros - xorg-proto - libbsd-devel - - x11/library/libXdmcp/pspec.xml - - - libXdmcp - - libbsd - + libXau /usr/lib - /usr/share/doc - libXdmcp-devel - Development files for libXdmcp - libXdmcp için geliştirme dosyaları + libXau-devel + Development files for libXau + libXau için geliştirme dosyaları - xorg-proto - libXdmcp + libXau /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/share/doc/*/*.xml + /usr/share/man - libXdmcp-32bit - 32-bit shared libraries for libXdmcp - libXdmcp için 32-bit paylaşımlı kitaplıklar + libXau-32bit + 32-bit shared libraries for libXau + libXau için 32-bit paylaşımlı kitaplıklar emul32 emul32 glibc-32bit - libXdmcp glibc-32bit @@ -61720,1349 +92836,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - 2015-06-06 - 1.1.2 - Runtime dep fixed. - Osman Erkan - osman.erkan@yandex.com - - 2015-05-22 - 1.1.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2014-06-01 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org - 2014-05-11 - 1.1.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-08 - 1.1.1 - Rebuild, clean actions.py. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-23 - 1.1.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libXp - http://x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xp de X.Org. - X.Org Xp library - X.Org Xp kitaplığı. - X.Org Xp Bibliothek - X.Org X11 libXp runtime library - mirrors://xorg/individual/lib/libXp-1.0.3.tar.bz2 - - libXext-devel - xorg-proto - libXau-devel - libX11-devel - util-macros - - x11/library/libXp/pspec.xml - - - libXp - - libXext - libXau - libX11 - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - libXp-devel - Development files for libXp - libXp için geliştirme dosyaları - - libXp - libXext-devel - - - /usr/include/X11 - /usr/lib/libdeprecatedXp.so - /usr/lib32/libdeprecatedXp.so - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libXp-32bit - 32-bit shared libraries for libXp - libXp için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXp - libXext-32bit - libXau-32bit - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-11-13 - 1.0.3 - Release bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-05-16 - 1.0.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-10-07 - 1.0.2 + 1.0.8 Rebuild. Serdar Soytetir kaptan@pisilinux.org - - 2013-08-25 - 1.0.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.2 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 1.0.2 - Move .pc files to devel package - Fatih Turgel - hitaf@pisilinux.org - - - 2013-06-21 - 1.0.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-15 - 1.0.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - glew - http://glew.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - BSD - GLX - SGI-B - GPLv2 - app:console - library - x11.library - OpenGL Extension Wrangler Library - OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığı - OpenGL Extension Wrangler Library (GLEW) is a cross-platform C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file. - OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığıdır. - mirrors://sourceforge/glew/1.12.0/glew-1.12.0.tgz - - mesa-glu-devel - - - add_bin_target.patch - - x11/library/glew/pspec.xml - - - glew - - mesa - libX11 - - - /usr/lib - /usr/share/doc - /usr/bin - - - - glew-devel - Development files for glew - glew için geliştirme dosyaları - - mesa-glu-devel - glew - - - /usr/include/GL - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - glew-32bit - 32-bit shared libraries for glew - glew için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - libX11-32bit - - - mesa-32bit - glibc-32bit - libX11-32bit - glew - - - /usr/lib32 - - - - - 2015-08-15 - 1.12.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-01-27 - 1.10.0 - Release bump + Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-16 - 1.10.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-06 - 1.9.0 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-08 - 1.9.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.9.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.9.0 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-10-30 - 1.9.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libfontenc - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie fontenc de X.Org - X.Org fontenc library - X.Org fontenc kitaplığı - X.Org fontenc Bibliothek - libfontenc is the X Window System font encoding library. - mirrors://xorg/individual/lib/libfontenc-1.1.3.tar.bz2 - - zlib-devel - util-macros - font-util - xorg-proto - - x11/library/libfontenc/pspec.xml - - - libfontenc - - zlib - - - /usr/lib - /usr/share/doc - - - - libfontenc-devel - Development files for libfontenc - libfontenc için geliştirme dosyaları - - libfontenc - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2015-08-15 - 1.1.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-16 - 1.1.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libXinerama - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - librairie Xinerama de X.Org - X.Org Xinerama library - X.Org Xinerama kitaplığı - X.Org Xinerama Bibliothek - Xorg Xinerama library. Xinerama is an extension to the X Window System which enables applications and window managers to use two (or more) physical displays as one large virtual display. - mirrors://xorg/individual/lib/libXinerama-1.1.3.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXinerama/pspec.xml - - - libXinerama - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXinerama-devel - Development files for libXinerama - libXinerama için geliştirme dosyaları - - libXinerama - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXinerama-32bit - 32-bit shared libraries for libXinerama - libXinerama için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libX11-32bit - glibc-32bit - - - libXinerama - libX11-32bit - libXext-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.1.3 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 1.1.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 1.1.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - freeglut - http://freeglut.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - The OpenGL Utility Toolkit (Freeglut) - OpenGL Araç Kiti (Freeglut) - Freeglut est la boîte à outils utilitaire d'OpenGL, une boîte à outils indépendante du système de fenêtrage pour écrire des programmes OpenGL. Il implémente une Interface de Programmation d'Application (API) de fenêtrage pour OpenGL. Freeglut facilite considérablement l'apprentissage et l'exploration de la programmation en OpenGL. - Freeglut is the OpenGL Utility Toolkit, a window system independent toolkit for writing OpenGL programs. It implements a simple windowing application programming interface (API) for OpenGL. Freeglut makes it considerably easier to learn about and explore OpenGL Programming. - Freeglut, OpenGL programlarını yazmak için bağımsız araç kutusu pencere sistemin olan bir OpenGL Hizmeti Araç Takımıdır. OpenGl için basit bir pencere uygulama proglaması arayüzü (API) sağlar. Freeglut, OpenGL Programlamasını keşfetmek öğrenmek isteyenler için kolaylıklar sağlar. - Freeglut es la caja de herramientas de OpenGL, con herramientas para crear programas OpenGL, independientemente del sistema de ventanas. Facilita una simple interfaz de programación de aplicaciones (API) con ventanas para OpanGL. Freeglut facilita considerablemente el aprendizaje y exploración de la programación OpenGL. - mirrors://sourceforge/freeglut/freeglut-3.0.0.tar.gz - - mesa-devel - mesa-glu-devel - libX11-devel - libXi-devel - libXxf86vm-devel - libXext-devel - libXrandr-devel - cmake - - x11/library/freeglut/pspec.xml - - - freeglut - - mesa - libX11 - libXi - libXxf86vm - libXrandr - - - /usr/lib - /usr/share/doc/freeglut - - - - freeglut-devel - Development files for freeglut - freeglut için geliştirme dosyaları - - freeglut - - - /usr/include - - - - freeglut-32bit - 32-bit shared libraries for freeglut - freeglut için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - mesa-glu-32bit - libXi-32bit - libX11-32bit - libXxf86vm-32bit - libXrandr-32bit - - - freeglut - glibc-32bit - mesa-32bit - libXi-32bit - libXxf86vm-32bit - libX11-32bit - libXrandr-32bit - - - /usr/lib32 - - - - - 2015-04-27 - 3.0.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-16 - 2.8.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-25 - 2.8.1 - rebuild unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-08 - 2.8.1 - verbump to 2.8.1 , Rebuild, clean emul32 installation. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 2.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 2.8.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXxf86vm - http://x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xxf86vm de X.Org - X.Org Xxf86vm library - X.Org Xxf86vm kitaplığı - X.Org Xxf86vm Bibliothek - LibXxf86vm is the client library for the XFree86-VidMode X extension. - mirrors://xorg/individual/lib/libXxf86vm-1.1.3.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXxf86vm/pspec.xml - - - libXxf86vm - - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXxf86vm-devel - Development files for libXxf86vm - libXxf86vm için geliştirme dosyaları - - libXxf86vm - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig/ - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86vm-32bit - 32-bit shared libraries for libXxf86vm - libXxf86vm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86vm - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-26 - 1.1.3 - Move pc files to devel pack, rebuild. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-06-21 - 1.1.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libXxf86miscproto - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie libXxf86miscproto de X.Org - X.Org Xxf86miscproto library - X.Org libXxf86miscproto kitaplığı - X.Org libXxf86miscproto Bibliothek - LibXxf86miscproto is the client library for the XFree86-miscproto extension. - mirrors://xorg/individual/proto/xf86miscproto-0.9.3.tar.bz2 - - util-macros - libXext-devel - xorg-proto - - x11/library/libXxf86miscproto/pspec.xml - - - libXxf86miscproto - - /usr/lib - /usr/share/doc - - - - libXxf86miscproto-devel - Development files for libXxf86miscproto - libXxf86miscproto için geliştirme dosyaları - - libXxf86miscproto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - - 2014-05-16 - 0.9.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-06 - 0.9.3 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-07 - 0.9.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.9.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-17 - 0.9.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-23 - 0.9.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libXxf86misc - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie libXxf86misc de X.Org - X.Org Xxf86misc library - X.Org libXxf86misc kitaplığı - X.Org libXxf86misc Bibliothek - LibXxf86misc is the client library for the XFree86-misc extension. - http://source.pisilinux.org/1.0/libXxf86misc-1.0.3.tar.gz - - libXext-devel - libXxf86miscproto-devel - xorg-proto - util-macros - - x11/library/libXxf86misc/pspec.xml - - - libXxf86misc - - libXext - libXxf86miscproto - - - /usr/lib - /usr/share/doc - - - - libXxf86misc-devel - Development files for libXxf86misc - libXxf86misc için geliştirme dosyaları - - libXxf86misc - libXext-devel - libXxf86miscproto-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86misc-32bit - 32-bit shared libraries for libXxf86misc - libXxf86misc için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86misc - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.0.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.3 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.0.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.0.3 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-10-23 - 1.0.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libXrandr - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X.Org Xrandr library - Librairie Xrand de X.Org. - Xrandr is a simple library designed to interface the X Resize and Rotate Extension. This allows clients to change the size and rotation of the root window of a screen, along with the ability to reflect the screen about either axis. - X.Org Xrand kitaplığı. - X.Org Xrand Bibliothek - mirrors://xorg/individual/lib/libXrandr-1.5.0.tar.bz2 - - libXext-devel - libXrender-devel - libX11-devel - util-macros - - x11/library/libXrandr/pspec.xml - - - libXrandr - - libXext - libXrender - libX11 - - - /usr/lib - /usr/share/doc - - - - libXrandr-devel - Development files for libXrandr - libXrandr için geliştirme dosyaları - - libXrandr - libXrender-devel - libXext-devel - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXrandr-32bit - 32-bit shared libraries for libXrandr - libXrandr için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - libXrender-32bit - - - libXrandr - glibc-32bit - libX11-32bit - libXext-32bit - libXrender-32bit - - - /usr/lib32 - - - - - 2015-08-15 - 1.5.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-15 - 1.4.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-07 - 1.4.1 - Revert back to 1.4.1. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.4.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.4.1 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 1.4.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 1.4.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXft - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xft de X.Org - X.Org Xft library - X.Org Xft kitaplığı - X.Org Xft Bibliothek - libXft is the X FreeType interface library. - mirrors://xorg/individual/lib/libXft-2.3.2.tar.bz2 - - util-macros - freetype-devel - expat-devel - fontconfig-devel - libXrender-devel - - x11/library/libXft/pspec.xml - - - libXft - - libX11 - freetype - fontconfig - libXrender - - - /usr/lib - /usr/share/doc - - - - libXft-devel - Development files for libXft - libXft için geliştirme dosyaları - - libXft - freetype-devel - fontconfig-devel - libXrender-devel - - - /usr/bin - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXft-32bit - 32-bit shared libraries for libXft - libXft için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - freetype-32bit - fontconfig-32bit - libXrender-32bit - zlib-32bit - libX11-32bit - glibc-32bit - - - libXft - freetype-32bit - fontconfig-32bit - libXrender-32bit - zlib-32bit - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-08-31 - 2.3.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.3.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-01 - 2.3.1 - Rebuild for freetype. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-07 - 2.3.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.3.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 2.3.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXv - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xv de X.Org - X.Org Xv library - X.Org Xv kitaplığı - X.Org Xv Bibliothek - LibXv is the X Window System video extension library. - mirrors://xorg/individual/lib/libXv-1.0.10.tar.bz2 - - libX11-devel - libXext-devel - util-macros - - x11/library/libXv/pspec.xml - - - libXv - - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXv-devel - Development files for libXv - libXv için geliştirme dosyaları - - libXv - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXv-32bit - 32-bit shared libraries for libXv - libXv için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - - - libXv - glibc-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.0.10 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.10 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.0.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.0.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.0.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - 2013-06-21 1.0.8 @@ -63071,10 +92858,10 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol marcin@pisilinux.org - 2012-06-01 + 2012-08-23 1.0.7 First release - Erdem Artan + PisiLinux Community admins@pisilinux.org @@ -63209,6 +92996,419 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + xcb-util-cursor + http://xcb.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + XCB cursor library + The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.2.tar.bz2 + + util-macros + libxcb-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-renderutil-devel + + x11/library/xcb-util-cursor/pspec.xml + + + xcb-util-cursor + + libxcb + xcb-util-image + xcb-util-renderutil + + + /usr/lib + /usr/share/doc + + + + xcb-util-cursor-devel + Development files for xcb-util + + xcb-util-cursor + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-cursor-32bit + 32-bit shared libraries for xcb-util + emul32 + emul32 + + libxcb-32bit + glibc-32bit + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + glibc-32bit + libxcb-32bit + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + /usr/lib32 + + + + + 2015-08-26 + 0.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXpm + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xpm de X.Org + X.Org Xpm library + X.Org Xpm kitaplığı + X.Org Xpm Bibliothek + LibXpm is the X pixmap library. + mirrors://xorg/individual/lib/libXpm-3.5.11.tar.bz2 + + util-macros + libXext-devel + libXt-devel + + x11/library/libXpm/pspec.xml + + + libXpm + + libXext + libXt + libX11 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libXpm-devel + Development files for libXpm + libXpm için geliştirme dosyaları + + libXpm + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXpm-32bit + 32-bit shared libraries for libXpm + libXpm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXt-32bit + libX11-32bit + glibc-32bit + + + libXpm + libXext-32bit + libXt-32bit + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 3.5.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 3.5.11 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-12 + 3.5.10 + Revert back to 3.5.10. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 3.5.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 3.5.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 3.5.10 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xcb-util-renderutil + http://xcb.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-renderutil module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-renderutil modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2 + + util-macros + libxcb-devel + + x11/library/xcb-util-renderutil/pspec.xml + + + xcb-util-renderutil + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-renderutil-devel + Development files for xcb-util-renderutil + xcb-util-renderutil için geliştirme dosyaları + + xcb-util-renderutil + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-renderutil-32bit + 32-bit shared libraries for xcb-util-renderutil + xcb-util-renderutil için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libxcb-32bit + + + glibc-32bit + libxcb-32bit + + + /usr/lib32 + + + + + 2014-09-01 + 0.3.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.3.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 0.3.8 + Clean actions.py emul32 build. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.3.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-08 + 0.3.8 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXext + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xext de X.Org + X.Org Xext library + X.Org Xext kitaplığı + X.Org Xext Bibliothek + LibXext provides an X Window System client interface to several extensions to the X protocol. + LibXext, çeşitli X protokolü uzantıları için X Pencere Sistemi istemci arayüzü sunar. + mirrors://xorg/individual/lib/libXext-1.3.3.tar.bz2 + + xorg-proto + util-macros + libX11-devel + libxslt + + x11/library/libXext/pspec.xml + + + libXext + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXext-devel + Development files for libXext + libXext için geliştirme dosyaları + + libX11-devel + libXext + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXext-32bit + 32-bit shared libraries for libXext + libXext için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + glibc-32bit + + + libXext + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-08-31 + 1.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.3.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.3.1 + First release + Erdem Artan + admins@pisilinux.org + + + libxkbfile @@ -63303,8 +93503,78 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libva - http://www.freedesktop.org/wiki/Software/vaapi + libevdev + http://www.freedesktop.org/wiki/Software/libevdev/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv1 + library + x11.library + Wrapper library for evdev devices + Wrapper library for evdev devices + Wrapper library for evdev devices + Wrapper library for evdev devices + http://www.freedesktop.org/software/libevdev/libevdev-1.3.2.tar.xz + + 0001-Revert-Drop-deprecated-functions.patch + 0001-Revert-Drop-some-leftover-deprecated-constants.patch + + x11/library/libevdev/pspec.xml + + + libevdev + + /usr/bin + /usr/lib + /usr/include + /usr/share + /usr/share/doc + + + + + 2015-01-25 + 1.3.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-16 + 1.2 + version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-30 + 0.6 + Revert back to 0.6 version. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-30 + 0.9.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-10-11 + 0.4 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXdamage + http://www.x.org/ PisiLinux Community admins@pisilinux.org @@ -63312,43 +93582,262 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Video Acceleration (VA) API for Linux - Linux için video hızlandırma API'si - libva is a library providing the VA API video acceleration API. - libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır. - http://www.freedesktop.org/software/vaapi/releases/libva/libva-1.5.1.tar.bz2 + Librairie damege de X.Org. + X.Org damage library + X.Org damege kitaplığı. + X.Org damege Bibliothek + LibXdamage provides an X Window System client interface to the DAMAGE extension to the X protocol. The Damage extension provides for notification of when on-screen regions have been 'damaged' (altered). + LibXdamage, X protokolü uzantısı DAMAGE için istemci kitaplığıdır. Damage uzantısı ekranda herhangi bir bölümde bozulma (değişiklik) meydana geldiğinde bildirim yapılmasını sağlar. + mirrors://xorg/individual/lib/libXdamage-1.1.4.tar.bz2 - libdrm-devel - libXext-devel libXfixes-devel - mesa-devel - wayland-devel + util-macros - x11/library/libva/pspec.xml + x11/library/libXdamage/pspec.xml - libva + libXdamage - libX11 - libdrm - libXext libXfixes - mesa - wayland-client + libX11 - /usr/bin /usr/lib /usr/share/doc - libva-devel - Development files for libva - libva için geliştirme dosyaları + libXdamage-devel + Development files for libXdamage + libXdamage için geliştirme dosyaları - libva - wayland-devel + libXdamage + libXfixes-devel + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXdamage-32bit + 32-bit shared libraries for libXdamage + libXdamage için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libX11-32bit + libXfixes-32bit + + + glibc-32bit + libXdamage + libXfixes-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-20 + 1.1.4 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-07 + 1.1.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.1.4 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-02-17 + 1.1.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1.3 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXrender + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xrender de X.Org + X.Org Xrender library + X.Org Xrender kitaplığı + X.Org Xrender Bibliothek + The X Rendering Extension (Render) introduces digital image composition as the foundation of a new rendering model within the X Window System. Rendering geometric figures is accomplished by client-side tesselation into either triangles or trapezoids. + mirrors://xorg/individual/lib/libXrender-0.9.9.tar.bz2 + + libX11-devel + xorg-proto + util-macros + + x11/library/libXrender/pspec.xml + + + libXrender + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXrender-devel + Development files for libXrender + libXrender için geliştirme dosyaları + + libXrender + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libXrender/libXrender.txt + + + + libXrender-32bit + 32-bit shared libraries for libXrender + libXrender için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libX11-32bit + + + libXrender + glibc-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2015-08-15 + 0.9.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 0.9.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 0.9.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.9.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.9.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 0.9.7 + First release + Erdem Artan + admins@pisilinux.org + + + + + + pixman + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Pixel manipulation library + Piksel işleme kitaplığı + Pixman contains lowlevel pixel manipulation routines. + Pixman, düşük düzey piksel işleme yordamlarını içerir. + mirrors://xorg/individual/lib/pixman-0.32.6.tar.bz2 + x11/library/pixman/pspec.xml + + + pixman + + /usr/lib + /usr/share/doc + + + + pixman-devel + Development files for pixman + pixman için geliştirme dosyaları + + pixman /usr/include @@ -63357,28 +93846,16 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libva-32bit - 32-bit shared libraries for libva - libva için 32-bit paylaşımlı kitaplıklar + pixman-32bit + 32-bit shared libraries for pixman + pixman için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libdrm-32bit - wayland-32bit - libXext-32bit - libXfixes-32bit - mesa-32bit - libX11-32bit glibc-32bit - libva - libdrm-32bit - wayland-32bit - libXext-32bit - libXfixes-32bit - libX11-32bit - mesa-32bit + pixman glibc-32bit @@ -63387,57 +93864,57 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2015-05-10 - 1.5.1 - Version bump - Burak Ertürk - burakerturk@pisilinux.org + 2014-08-31 + 0.32.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org - 2015-01-21 - 1.5.0 - Version bump - Ergün Salman - poyraz76@pisilinux.org - - 2014-05-16 - 1.3.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 1.3.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2014-02-20 - 1.2.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-07 - 1.2.1 - Version bump, clean actions.py. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.0 + 0.32.4 Release bump. Marcin Bojara marcin@pisilinux.org + + 2014-03-07 + 0.32.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 0.30.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 0.30.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.30.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.30.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + - 2012-10-10 - 1.1.0 + 2012-11-22 + 0.28.0 First release Marcin Bojara marcin@pisilinux.org @@ -63446,7 +93923,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libdmx + libXi http://www.x.org/ PisiLinux Community @@ -63455,21 +93932,21 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie dmx de X.Org - X.Org dmx library - X.Org dmx kitaplığı - X.Org dmx Bibliothek - libdmx is the X Window System DMX (Distributed Multihead X) extension library. - mirrors://xorg/individual/lib/libdmx-1.1.3.tar.bz2 + Librairie Xi de X.Org + X.Org Xi library + X.Org Xi kitaplığı + X.Org Xi Bibliothek + LibXi provides an X Window System client interface to the XINPUT extension to the X protocol. + mirrors://xorg/individual/lib/libXi-1.7.4.tar.bz2 libXext-devel - libX11-devel + libXfixes-devel util-macros - x11/library/libdmx/pspec.xml + x11/library/libXi/pspec.xml - libdmx + libXi libXext libX11 @@ -63480,249 +93957,96 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libdmx-devel - Development files for libdmx - libdmx için geliştirme dosyaları + libXi-devel + Development files for libXi + libXi için geliştirme dosyaları - libdmx + libXi libXext-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man - - - - - 2014-05-16 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.1.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libepoxy - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - MIT - library - x11.library - OpenGL function pointer management library - Epoxy is a library for handling OpenGL function pointer management for you. - https://github.com/anholt/libepoxy/archive/v1.2.tar.gz - libX11-devel - mesa-devel - util-macros - - x11/library/libepoxy/pspec.xml - - - libepoxy - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - libepoxy-devel - Development files for libepoxy - - libepoxy - - - /usr/include - /usr/lib/pkgconfig - - - - libepoxy-32bit - 32-bit shared libraries for libeproxy - emul32 - emul32 - - glibc-32bit - libX11-32bit - mesa-32bit - - - glibc-32bit - - - /lib32 - /usr/lib32 - - - - - 2015-05-27 - 1.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libSM - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie SM de X.Org. - X.Org SM library - X.Org SM kitaplığı. - X.Org SM Bibliothek - libSM is the X Session Management library. - mirrors://xorg/individual/lib/libSM-1.2.2.tar.bz2 - - libICE-devel - libutil-linux-devel - util-macros - xorg-proto - xtrans - - x11/library/libSM/pspec.xml - - - libSM - - libutil-linux - libICE - - - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libSM-devel - Development files for libSM - libSM için geliştirme dosyaları - - libICE-devel - libSM + libXfixes-devel /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/share/doc/*.xml + /usr/share/man - libSM-32bit - 32-bit shared libraries for libSM - libSM için 32-bit paylaşımlı kitaplıklar + libXi-32bit + 32-bit shared libraries for libXi + libXi için 32-bit paylaşımlı kitaplıklar emul32 emul32 glibc-32bit - libICE-32bit - libutil-linux-32bit + libXext-32bit + libX11-32bit glibc-32bit - libICE-32bit - libutil-linux-32bit - libSM + libXi + libXext-32bit + libX11-32bit /usr/lib32 + + 2014-08-31 + 1.7.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + 2014-05-16 - 1.2.2 + 1.7.2 Release bump. Marcin Bojara marcin@pisilinux.org - 2014-03-07 - 1.2.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-10-07 + 1.7.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org - 2013-11-06 - 1.2.1 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org + 2013-08-25 + 1.7.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org - 2013-10-07 - 1.2.1 - Revert back to 1.2.1, cleanup. - Serdar Soytetir - kaptan@pisilinux.org + 2013-07-30 + 1.7.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org - 2013-09-12 - 1.2.2 + 2013-06-21 + 1.7.1 Version bump. Marcin Bojara marcin@pisilinux.org - 2013-08-25 - 1.2.1 - Release bump. + 2013-02-17 + 1.6.2 + Version bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 1.2.1 + 1.6.1 First release Erdem Artan admins@pisilinux.org @@ -63731,7 +94055,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libICE + libXcursor http://www.x.org/ PisiLinux Community @@ -63740,26 +94064,27 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - X.Org ICE library - X.Org ICE kitaplığı - Utilitaire ICE de X.Org. - libICE is the Inter-Client Exchange library. - libICE, Inter-Client Exchange protokolüne bir arayüz sağlayan X.Org kitaplığıdır. - X.Org ICE Bibliothek - mirrors://xorg/individual/lib/libICE-1.0.9.tar.bz2 + Librairie Xcursor de X.Org + X.Org Xcursor library + X.Org Xcursor kitaplığı + X.Org Xcursor Bibliothek + libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor. + mirrors://xorg/individual/lib/libXcursor-1.1.14.tar.bz2 - libbsd-devel util-macros + libX11-devel xorg-proto - xtrans - libxslt + libXfixes-devel + libXrender-devel - x11/library/libICE/pspec.xml + x11/library/libXcursor/pspec.xml - libICE + libXcursor - libbsd + libX11 + libXfixes + libXrender /usr/lib @@ -63767,73 +94092,180 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libICE-devel - Development files for libICE - libICE için geliştirme dosyaları + libXcursor-devel + Development files for libXcursor + libXcursor için geliştirme dosyaları - libICE + libXcursor + libXfixes-devel + libX11-devel + libXrender-devel /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig + /usr/share/man - libICE-32bit - 32-bit shared libraries for libICE - libICE için 32-bit paylaşımlı kitaplıklar + libXcursor-32bit + 32-bit shared libraries for libXcursor + libXcursor için 32-bit paylaşımlı kitaplıklar emul32 emul32 glibc-32bit + libX11-32bit + libXfixes-32bit + libXrender-32bit + libXcursor glibc-32bit - libICE + libX11-32bit + libXfixes-32bit + libXrender-32bit /usr/lib32 - - 2014-08-31 - 1.0.9 - Version bump. + + 2014-05-16 + 1.1.14 + Release bump. Marcin Bojara marcin@pisilinux.org + + 2013-10-07 + 1.1.14 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + - 2014-05-16 - 1.0.8 + 2013-08-25 + 1.1.14 Release bump. Marcin Bojara marcin@pisilinux.org - 2013-10-07 - 1.0.8 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org + 2013-07-30 + 1.1.14 + Rebuild + PisiLinux Community + admins@pisilinux.org - 2013-08-25 - 1.0.8 - Release bump. + 2013-06-21 + 1.1.14 + Version bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 1.0.8 + 1.1.13 First release Erdem Artan admins@pisilinux.org + + + libexplain + http://libexplain.sourceforge.net/ + + erdinc gültekin + admins@pisilinux.org + + LGPLv2 + library + x11.library + Explain errno values returned by libc functions + Libc fonksiyonları tarafından döndürülen errno değerleri açıklar + The libexplain package provides a library which may be used to explain Unix and Linux system call errors + Libexplain paketi, Unix ve Linux sistem çağrısı hataları açıklamak için kullanılan bir kütüphane sunar. + http://sourceforge.net/projects/libexplain/files/1.4/libexplain-1.4.tar.gz + + acl-devel + libcap-devel + lsof + libtool + bison + groff + + x11/library/libexplain/pspec.xml + + + libexplain + + acl + libcap + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/locale + /usr/share/doc + + + + libexplain-devel + Development files for libexplain. + libexplain için geliştirme dosyaları + + libexplain + + + /usr/lib/pkgconfig + /usr/include + + + + + 2014-11-24 + 1.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-07 + 1.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-05-27 + 1.2 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-05-27 + 1.0 + First release + erdinc gültekin + admins@pisilinux.org + + + wayland @@ -63999,610 +94431,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - libXext - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xext de X.Org - X.Org Xext library - X.Org Xext kitaplığı - X.Org Xext Bibliothek - LibXext provides an X Window System client interface to several extensions to the X protocol. - LibXext, çeşitli X protokolü uzantıları için X Pencere Sistemi istemci arayüzü sunar. - mirrors://xorg/individual/lib/libXext-1.3.3.tar.bz2 - - xorg-proto - util-macros - libX11-devel - libxslt - - x11/library/libXext/pspec.xml - - - libXext - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXext-devel - Development files for libXext - libXext için geliştirme dosyaları - - libX11-devel - libXext - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXext-32bit - 32-bit shared libraries for libXext - libXext için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - glibc-32bit - - - libXext - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-08-31 - 1.3.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.3.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xcb-util-keysyms - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-keysyms module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-keysyms modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util-keysyms/pspec.xml - - - xcb-util-keysyms - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-keysyms-devel - Development files for xcb-util-keysyms - xcb-util-keysyms için geliştirme dosyaları - - xcb-util-keysyms - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-keysyms-32bit - 32-bit shared libraries for xcb-util-keysyms - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - xcb-util-keysyms - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-12-13 - 0.4.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-16 - 0.3.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 0.3.9 - Clean actions.py emul32 build. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.3.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-08 - 0.3.9 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - mesa-glu - http://www.mesa3d.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Mesa OpenGL Utility library - Mesa implementation of the standard GLU OpenGL utility API. - ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.0.tar.gz - - mesa-devel - libgcc - - x11/library/mesa-glu/pspec.xml - - - mesa-glu - - mesa - libgcc - - - /usr/lib - - - - mesa-glu-devel - Development files for mesa-glu - mesa-glu için geliştirme dosyaları - - mesa-glu - mesa-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mesa-glu-32bit - 32-bit shared libraries for mesa-glu - mesa-glu için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - libgcc - glibc-32bit - - - mesa-glu - mesa-32bit - libgcc - glibc-32bit - - - /usr/lib32 - - - - - 2015-01-22 - 9.0.0 - Release bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-05-16 - 9.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 9.0.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 9.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 9.0.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXau - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Au de X.Org. - X.Org Au library - X.Org Au kitaplığı. - X.Org Au Bibliothek - libXau provides functions to manage X authorization files - libXau, X yetkilendirme dosyalarını yönetmek için işlevler sağlar. - http://xorg.freedesktop.org/archive/individual/lib/libXau-1.0.8.tar.gz - - util-macros - xorg-proto - - - visibility.patch - - x11/library/libXau/pspec.xml - - - libXau - - /usr/lib - - - - libXau-devel - Development files for libXau - libXau için geliştirme dosyaları - - libXau - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXau-32bit - 32-bit shared libraries for libXau - libXau için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - - - /usr/lib32 - - - - - 2014-06-01 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.8 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-06-21 - 1.0.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-23 - 1.0.7 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libXScrnSaver - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie XScrnSaver de X.Org - X.Org XScrnSaver library - X.Org XScrnSaver kitaplığı - X.Org XScrnSaver Bibliothek - LibXScrnSaver allows using screensavers in X clients. - mirrors://xorg/individual/lib/libXScrnSaver-1.2.2.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXScrnSaver/pspec.xml - - - libXScrnSaver - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXScrnSaver-devel - Development files for libXScrnSaver - libXScrnSaver için geliştirme dosyaları - - libXScrnSaver - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXScrnSaver-32bit - 32-bit shared libraries for libXScrnSaver - libXScrnSaver için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - - - libXScrnSaver - glibc-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.2.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.2.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libFS - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie FS de X.Org - X.Org FS library - X.Org FS kitaplığı - X.Org FS Bibliothek - libFS is the interface library to the X Font Server. - mirrors://xorg/individual/lib/libFS-1.0.7.tar.bz2 - - util-macros - xorg-proto - xtrans - - x11/library/libFS/pspec.xml - - - libFS - - /usr/lib - /usr/share/doc - - - - libFS-devel - Development files for libFS - libFS için geliştirme dosyaları - - libFS - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2015-08-15 - 1.0.7 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-16 - 1.0.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-07 - 1.0.5 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.0.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.0.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.0.4 - First release - Erdem Artan - admins@pisilinux.org - - - xcb-util-wm @@ -64705,6 +94533,384 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + freeglut + http://freeglut.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + The OpenGL Utility Toolkit (Freeglut) + OpenGL Araç Kiti (Freeglut) + Freeglut est la boîte à outils utilitaire d'OpenGL, une boîte à outils indépendante du système de fenêtrage pour écrire des programmes OpenGL. Il implémente une Interface de Programmation d'Application (API) de fenêtrage pour OpenGL. Freeglut facilite considérablement l'apprentissage et l'exploration de la programmation en OpenGL. + Freeglut is the OpenGL Utility Toolkit, a window system independent toolkit for writing OpenGL programs. It implements a simple windowing application programming interface (API) for OpenGL. Freeglut makes it considerably easier to learn about and explore OpenGL Programming. + Freeglut, OpenGL programlarını yazmak için bağımsız araç kutusu pencere sistemin olan bir OpenGL Hizmeti Araç Takımıdır. OpenGl için basit bir pencere uygulama proglaması arayüzü (API) sağlar. Freeglut, OpenGL Programlamasını keşfetmek öğrenmek isteyenler için kolaylıklar sağlar. + Freeglut es la caja de herramientas de OpenGL, con herramientas para crear programas OpenGL, independientemente del sistema de ventanas. Facilita una simple interfaz de programación de aplicaciones (API) con ventanas para OpanGL. Freeglut facilita considerablemente el aprendizaje y exploración de la programación OpenGL. + mirrors://sourceforge/freeglut/freeglut-3.0.0.tar.gz + + mesa-devel + mesa-glu-devel + libX11-devel + libXi-devel + libXxf86vm-devel + libXext-devel + libXrandr-devel + cmake + + x11/library/freeglut/pspec.xml + + + freeglut + + mesa + libX11 + libXi + libXxf86vm + libXrandr + + + /usr/lib + /usr/share/doc/freeglut + + + + freeglut-devel + Development files for freeglut + freeglut için geliştirme dosyaları + + freeglut + + + /usr/include + + + + freeglut-32bit + 32-bit shared libraries for freeglut + freeglut için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + mesa-glu-32bit + libXi-32bit + libX11-32bit + libXxf86vm-32bit + libXrandr-32bit + + + freeglut + glibc-32bit + mesa-32bit + libXi-32bit + libXxf86vm-32bit + libX11-32bit + libXrandr-32bit + + + /usr/lib32 + + + + + 2015-04-27 + 3.0.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-16 + 2.8.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-25 + 2.8.1 + rebuild unused + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-08 + 2.8.1 + verbump to 2.8.1 , Rebuild, clean emul32 installation. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 2.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 2.8.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXxf86miscproto + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie libXxf86miscproto de X.Org + X.Org Xxf86miscproto library + X.Org libXxf86miscproto kitaplığı + X.Org libXxf86miscproto Bibliothek + LibXxf86miscproto is the client library for the XFree86-miscproto extension. + mirrors://xorg/individual/proto/xf86miscproto-0.9.3.tar.bz2 + + util-macros + libXext-devel + xorg-proto + + x11/library/libXxf86miscproto/pspec.xml + + + libXxf86miscproto + + /usr/lib + /usr/share/doc + + + + libXxf86miscproto-devel + Development files for libXxf86miscproto + libXxf86miscproto için geliştirme dosyaları + + libXxf86miscproto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + + 2014-05-16 + 0.9.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 0.9.3 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 0.9.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.9.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-17 + 0.9.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-23 + 0.9.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libomxil-bellagio + http://omxil.sourceforge.net + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2.1 + library + x11.library + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + http://downloads.sourceforge.net/project/omxil/omxil/Bellagio%200.9.3/libomxil-bellagio-0.9.3.tar.gz + + glibc-devel + + + fedora-fixes.patch + + x11/library/libomxil-bellagio/pspec.xml + + + libomxil-bellagio + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + libomxil-bellagio-devel + Development files for mesa + + libomxil-bellagio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-07 + 0.9.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXxf86dga + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xxf86dga de X.Org + X.Org Xxf86dga library + X.Org Xxf86dga kitaplığı + X.Org Xxf86dga Bibliothek + LibXxf86dga is the client library for the XFree86-DGA extension. + mirrors://xorg/individual/lib/libXxf86dga-1.1.4.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXxf86dga/pspec.xml + + + libXxf86dga + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXxf86dga-devel + Development files for libXxf86dga + libXxf86dga için geliştirme dosyaları + + libXxf86dga + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86dga-32bit + 32-bit shared libraries for libXxf86dga + libXxf86dga için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86dga + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.1.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1.3 + First release + Erdem Artan + admins@pisilinux.org + + + libXtst @@ -64828,7 +95034,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXvMC + libXrandr http://www.x.org/ PisiLinux Community @@ -64837,25 +95043,25 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie XvMC de X.Org - X.Org XvMC library - X.Org XvMC kitaplığı - X.Org XvMC Bibliothek - LibXvMC is the X-Video Motion Compensation Library. - mirrors://xorg/individual/lib/libXvMC-1.0.8.tar.bz2 + X.Org Xrandr library + Librairie Xrand de X.Org. + Xrandr is a simple library designed to interface the X Resize and Rotate Extension. This allows clients to change the size and rotation of the root window of a screen, along with the ability to reflect the screen about either axis. + X.Org Xrand kitaplığı. + X.Org Xrand Bibliothek + mirrors://xorg/individual/lib/libXrandr-1.5.0.tar.bz2 - libX11-devel libXext-devel - libXv-devel - xorg-proto + libXrender-devel + libX11-devel util-macros - x11/library/libXvMC/pspec.xml + x11/library/libXrandr/pspec.xml - libXvMC + libXrandr libXext + libXrender libX11 @@ -64864,110 +95070,121 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXvMC-devel - Development files for libXvMC - libXvMC için geliştirme dosyaları + libXrandr-devel + Development files for libXrandr + libXrandr için geliştirme dosyaları - libXv-devel + libXrandr + libXrender-devel libXext-devel - libXvMC + libX11-devel /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/share/doc/libXvMC/XvMC_API.txt + /usr/share/man - libXvMC-32bit - 32-bit shared libraries for libXvMC - libXvMC için 32-bit paylaşımlı kitaplıklar + libXrandr-32bit + 32-bit shared libraries for libXrandr + libXrandr için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libXv-32bit + glibc-32bit libX11-32bit libXext-32bit + libXrender-32bit + libXrandr + glibc-32bit libX11-32bit libXext-32bit - libXvMC + libXrender-32bit /usr/lib32 + + 2015-08-15 + 1.5.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2014-05-16 - 1.0.8 + 2014-09-15 + 1.4.2 Release bump. Marcin Bojara marcin@pisilinux.org - 2014-02-19 - 1.0.8 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org + 2014-05-16 + 1.4.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org - 2013-11-06 - 1.0.8 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org + 2014-03-07 + 1.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org 2013-10-07 - 1.0.8 - Rebuild. + 1.4.1 + Revert back to 1.4.1. Serdar Soytetir kaptan@pisilinux.org - 2013-09-02 - 1.0.8 - Split 32bit. - PisiLinux Community - admins@pisilinux.org + 2013-09-12 + 1.4.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org 2013-08-25 - 1.0.8 + 1.4.1 Release bump. Marcin Bojara marcin@pisilinux.org 2013-07-30 - 1.0.8 + 1.4.1 Rebuild PisiLinux Community admins@pisilinux.org 2013-06-21 - 1.0.8 + 1.4.1 Version bump. Marcin Bojara marcin@pisilinux.org - 2012-06-01 - 1.0.7 + 2012-11-22 + 1.4.0 First release - Erdem Artan - admins@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - libXdamage + libXfixes http://www.x.org/ PisiLinux Community @@ -64976,61 +95193,55 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie damege de X.Org. - X.Org damage library - X.Org damege kitaplığı. - X.Org damege Bibliothek - LibXdamage provides an X Window System client interface to the DAMAGE extension to the X protocol. The Damage extension provides for notification of when on-screen regions have been 'damaged' (altered). - LibXdamage, X protokolü uzantısı DAMAGE için istemci kitaplığıdır. Damage uzantısı ekranda herhangi bir bölümde bozulma (değişiklik) meydana geldiğinde bildirim yapılmasını sağlar. - mirrors://xorg/individual/lib/libXdamage-1.1.4.tar.bz2 + Librairie Xfixes de X.Org + X.Org Xfixes library + X.Org Xfixes kitaplığı + X.Org Xfixes Bibliothek + libXfixes is a library to provide augmented versions of core protocol requests. + mirrors://xorg/individual/lib/libXfixes-5.0.1.tar.bz2 - libXfixes-devel + xorg-proto + libX11-devel util-macros - x11/library/libXdamage/pspec.xml + x11/library/libXfixes/pspec.xml - libXdamage - - libXfixes - libX11 - + libXfixes /usr/lib /usr/share/doc - libXdamage-devel - Development files for libXdamage - libXdamage için geliştirme dosyaları + libXfixes-devel + Development files for libXfixes + libXfixes için geliştirme dosyaları - libXdamage - libXfixes-devel + libXfixes libX11-devel /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig + /usr/share/man - libXdamage-32bit - 32-bit shared libraries for libXdamage - libXdamage için 32-bit paylaşımlı kitaplıklar + libXfixes-32bit + 32-bit shared libraries for libXfixes + libXfixes için 32-bit paylaşımlı kitaplıklar emul32 emul32 - glibc-32bit libX11-32bit - libXfixes-32bit + glibc-32bit - glibc-32bit - libXdamage - libXfixes-32bit + libXfixes libX11-32bit + glibc-32bit /usr/lib32 @@ -65039,49 +95250,49 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2014-05-16 - 1.1.4 + 5.0.1 Release bump. Marcin Bojara marcin@pisilinux.org - 2014-02-20 - 1.1.4 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - 2013-10-07 - 1.1.4 + 5.0.1 Rebuild. Serdar Soytetir kaptan@pisilinux.org - + 2013-08-25 - 1.1.4 + 5.0.1 Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-07-30 - 1.1.4 - Rebuild + + 2013-07-27 + 5.0.1 + Move pc files to devel pack, rebuild PisiLinux Community admins@pisilinux.org + + 2013-07-27 + 5.0.1 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + - 2013-02-17 - 1.1.4 + 2013-06-21 + 5.0.1 Version bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 1.1.3 + 5.0 First release Erdem Artan admins@pisilinux.org @@ -65090,7 +95301,120 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXcursor + xcb-util-image + http://xcb.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-image modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2 + + util-macros + libxcb-devel + xcb-util-devel + + x11/library/xcb-util-image/pspec.xml + + + xcb-util-image + + xcb-util + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-image-devel + Development files for xcb-util + xcb-util-image için geliştirme dosyaları + + xcb-util-image + libxcb-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-image-32bit + 32-bit shared libraries for xcb-util + xcb-util-image için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + xcb-util-32bit + glibc-32bit + + + glibc-32bit + xcb-util-32bit + libxcb-32bit + + + /usr/lib32 + + + + + 2015-12-13 + 0.4.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-16 + 0.3.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 0.3.9 + Clean actions.py emul32 build. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.3.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 0.3.9 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-12-08 + 0.3.9 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXft http://www.x.org/ PisiLinux Community @@ -65099,26 +95423,27 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie Xcursor de X.Org - X.Org Xcursor library - X.Org Xcursor kitaplığı - X.Org Xcursor Bibliothek - libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor. - mirrors://xorg/individual/lib/libXcursor-1.1.14.tar.bz2 + Librairie Xft de X.Org + X.Org Xft library + X.Org Xft kitaplığı + X.Org Xft Bibliothek + libXft is the X FreeType interface library. + mirrors://xorg/individual/lib/libXft-2.3.2.tar.bz2 util-macros - libX11-devel - xorg-proto - libXfixes-devel + freetype-devel + expat-devel + fontconfig-devel libXrender-devel - x11/library/libXcursor/pspec.xml + x11/library/libXft/pspec.xml - libXcursor + libXft libX11 - libXfixes + freetype + fontconfig libXrender @@ -65127,16 +95452,17 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXcursor-devel - Development files for libXcursor - libXcursor için geliştirme dosyaları + libXft-devel + Development files for libXft + libXft için geliştirme dosyaları - libXcursor - libXfixes-devel - libX11-devel + libXft + freetype-devel + fontconfig-devel libXrender-devel + /usr/bin /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig @@ -65144,23 +95470,27 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXcursor-32bit - 32-bit shared libraries for libXcursor - libXcursor için 32-bit paylaşımlı kitaplıklar + libXft-32bit + 32-bit shared libraries for libXft + libXft için 32-bit paylaşımlı kitaplıklar emul32 emul32 - glibc-32bit - libX11-32bit - libXfixes-32bit + freetype-32bit + fontconfig-32bit libXrender-32bit + zlib-32bit + libX11-32bit + glibc-32bit - libXcursor - glibc-32bit - libX11-32bit - libXfixes-32bit + libXft + freetype-32bit + fontconfig-32bit libXrender-32bit + zlib-32bit + libX11-32bit + glibc-32bit /usr/lib32 @@ -65168,281 +95498,43 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2014-05-16 - 1.1.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.14 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.1.14 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 1.1.14 + 2014-08-31 + 2.3.2 Version bump. Marcin Bojara marcin@pisilinux.org - - 2012-06-01 - 1.1.13 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libxcb - http://xcb.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - The X protocol C-language Binding (XCB) - X protokolü için C dili bağlayıcısı (XCB) - The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. - http://xcb.freedesktop.org/dist/libxcb-1.11.1.tar.bz2 - - libXau-devel - libXdmcp-devel - libxslt - util-macros - xcb-proto - - - libxcb-1.1-no-pthread-stubs.patch - - x11/library/libxcb/pspec.xml - - - libxcb - - libXau - libXdmcp - glibc - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libxcb-devel - Development files for libxcb - libxcb için geliştirme dosyaları - - libxcb - libXau-devel - libXdmcp-devel - - - /usr/include/xcb - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - pthread-stubs.pc - - - - libxcb-32bit - 32-bit shared libraries for libxcb - libxcb için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXau-32bit - libXdmcp-32bit - glibc-32bit - - - libxcb - libXau-32bit - libXdmcp-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-12-13 - 1.11.1 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2015-05-22 - 1.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-11 - 1.10 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.10 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-08 - 1.9.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-28 - 1.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-18 - 1.9 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libXcomposite - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie composite X.Org - X.Org composite library - X.Org composite kitaplığı - X.Org composite Bibliothek - libXcomposite is the X Composite library. Compositing allows modification of the window system's base elements like window borders, window buttons and window titlebars. - libXcomposite, X Birleşiklik kitaplığıdır. Birleşiklik, pencerelere ait kenarlar, butonlar ve başlık çubukları gibi pencere sisteminin temel elemanlarını değiştirmeye izin verir. - mirrors://xorg/individual/lib/libXcomposite-0.4.4.tar.bz2 - - libX11-devel - libXfixes-devel - util-macros - - x11/library/libXcomposite/pspec.xml - - - libXcomposite - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXcomposite-devel - Development files for libXcomposite - libXcomposite için geliştirme dosyaları - - libXcomposite - libXfixes-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXcomposite-32bit - 32-bit shared libraries for libXcomposite - libXcomposite için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - glibc-32bit - - - libXcomposite - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - 2014-05-16 - 0.4.4 + 2.3.1 Release bump. Marcin Bojara marcin@pisilinux.org - 2013-10-07 - 0.4.4 - Rebuild. + 2014-02-01 + 2.3.1 + Rebuild for freetype. Serdar Soytetir kaptan@pisilinux.org - 2013-08-25 - 0.4.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2013-10-07 + 2.3.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org - 2013-02-17 - 0.4.4 - Version bump. + 2013-08-25 + 2.3.1 + Release bump. Marcin Bojara marcin@pisilinux.org 2012-11-22 - 0.4.3 + 2.3.1 First release Marcin Bojara marcin@pisilinux.org @@ -65451,8 +95543,8 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXpm - http://www.x.org/ + libXdmcp + http://x.org/ PisiLinux Community admins@pisilinux.org @@ -65460,63 +95552,57 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie Xpm de X.Org - X.Org Xpm library - X.Org Xpm kitaplığı - X.Org Xpm Bibliothek - LibXpm is the X pixmap library. - mirrors://xorg/individual/lib/libXpm-3.5.11.tar.bz2 + Librairie Xdmcp de X.Org. + X.Org Xdmcp library + X.Org Xdmcp kitaplığı. + X.Org Xdmcp Bibliothek + LibXdmcp is the X Display Manager Control Protocol library. + LibXdmcp, X Ekran Yöneticisi Denetim Protokolü kitaplığıdır. + http://xorg.freedesktop.org/archive/individual/lib/libXdmcp-1.1.2.tar.bz2 + libxslt util-macros - libXext-devel - libXt-devel + xorg-proto + libbsd-devel - x11/library/libXpm/pspec.xml + x11/library/libXdmcp/pspec.xml - libXpm + libXdmcp - libXext - libXt - libX11 + libbsd - /usr/bin /usr/lib /usr/share/doc - /usr/share/man - libXpm-devel - Development files for libXpm - libXpm için geliştirme dosyaları + libXdmcp-devel + Development files for libXdmcp + libXdmcp için geliştirme dosyaları - libXpm + xorg-proto + libXdmcp /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig + /usr/share/doc/*/*.xml - libXpm-32bit - 32-bit shared libraries for libXpm - libXpm için 32-bit paylaşımlı kitaplıklar + libXdmcp-32bit + 32-bit shared libraries for libXdmcp + libXdmcp için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libXext-32bit - libXt-32bit - libX11-32bit glibc-32bit - libXpm - libXext-32bit - libXt-32bit - libX11-32bit + libXdmcp glibc-32bit @@ -65524,46 +95610,39 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - 2014-05-16 - 3.5.11 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - 2014-03-07 - 3.5.11 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2015-06-06 + 1.1.2 + Runtime dep fixed. + Osman Erkan + osman.erkan@yandex.com - 2013-09-12 - 3.5.10 - Revert back to 3.5.10. - Serdar Soytetir - kaptan@pisilinux.org + 2015-05-22 + 1.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2013-09-12 - 3.5.11 - Version bump. + 2014-05-11 + 1.1.1 + Release bump. Marcin Bojara marcin@pisilinux.org - 2013-08-25 - 3.5.10 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2013-10-08 + 1.1.1 + Rebuild, clean actions.py. + Serdar Soytetir + kaptan@pisilinux.org - 2012-06-01 - 3.5.10 + 2012-08-23 + 1.1.1 First release - Erdem Artan + PisiLinux Community admins@pisilinux.org @@ -65657,7 +95736,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libX11 + libFS http://www.x.org/ PisiLinux Community @@ -65666,40 +95745,125 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie X11 de X.Org. - X.Org X11 library - X.Org X11 kitaplığı - X.Org X11 Bibliothek - Core X11 protocol client library. - mirrors://xorg/individual/lib/libX11-1.6.3.tar.bz2 + Librairie FS de X.Org + X.Org FS library + X.Org FS kitaplığı + X.Org FS Bibliothek + libFS is the interface library to the X Font Server. + mirrors://xorg/individual/lib/libFS-1.0.7.tar.bz2 - libxcb-devel - xorg-proto util-macros + xorg-proto xtrans - x11/library/libX11/pspec.xml + x11/library/libFS/pspec.xml - libX11 - - libxcb - + libFS - /usr/lib/libX11* - /usr/lib/X11 - /usr/share/X11 - /usr/share/doc/libX11 + /usr/lib + /usr/share/doc - libX11-devel - Development files for X11 library - libX11 için geliştirme dosyaları + libFS-devel + Development files for libFS + libFS için geliştirme dosyaları - libX11 - libxcb-devel - xorg-proto + libFS + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2015-08-15 + 1.0.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 1.0.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-07 + 1.0.5 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.0.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.0.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.0.4 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXv + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xv de X.Org + X.Org Xv library + X.Org Xv kitaplığı + X.Org Xv Bibliothek + LibXv is the X Window System video extension library. + mirrors://xorg/individual/lib/libXv-1.0.10.tar.bz2 + + libX11-devel + libXext-devel + util-macros + + x11/library/libXv/pspec.xml + + + libXv + + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXv-devel + Development files for libXv + libXv için geliştirme dosyaları + + libXv + libXext-devel /usr/include/X11 @@ -65709,19 +95873,21 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libX11-32bit - 32-bit shared libraries for libX11 - libX11 için 32-bit paylaşımlı kitaplıklar + libXv-32bit + 32-bit shared libraries for libXv + libXv için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libxcb-32bit glibc-32bit + libX11-32bit + libXext-32bit - libX11 - libxcb-32bit + libXv glibc-32bit + libX11-32bit + libXext-32bit /usr/lib32 @@ -65729,880 +95895,50 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2015-05-22 - 1.6.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-11 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.6.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.6.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.6.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.6.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-24 - 1.5.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - xorg-video-nouveau - http://nouveau.freedesktop.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org nouveau video driver - X.Org nouveau ekran kartı sürücüsü - xorg-video-nouveau contains the X.Org driver for NVIDIA cards. - xorg-video-nouveau, NVIDIA ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-nouveau-1.0.11.tar.bz2 - - libdrm-nouveau - libpciaccess-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-nouveau/pspec.xml - - - xorg-video-nouveau - - libdrm - libdrm-nouveau - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.0.11 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.0.11 - Rebuild for xorg-server 1.6.3 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-04 - 1.0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-09-01 - 1.0.10 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - 2014-05-16 1.0.10 Release bump. Marcin Bojara marcin@pisilinux.org - - 2014-03-08 + + 2013-10-07 + 1.0.10 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 1.0.10 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - - 2013-09-05 + + 2013-08-25 + 1.0.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 1.0.9 Version bump. Marcin Bojara marcin@pisilinux.org - - 2013-08-25 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - + 2013-06-21 1.0.8 Version bump. Marcin Bojara marcin@pisilinux.org - - 2013-05-29 + + 2012-06-01 1.0.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 1.0.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-10 - 1.0.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-trident - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org trident video driver - X.Org trident ekran kartı sürücüsü - xorg-video-trident contains the X.Org driver for Trident cards. - xorg-video-trident, Trident ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-trident-1.3.7.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-trident/pspec.xml - - - xorg-video-trident - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.3.7 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.3.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.3.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.3.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 1.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-dummy - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org dummy video driver - X.Org dummy ekran kartı sürücüsü - xorg-video-dummy is a dummy video driver for X.Org. - xorg-video-dummy, X.Org için sahte bir ekran kartı sürücüsü içerir. - mirrors://xorg/individual/driver/xf86-video-dummy-0.3.7.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-dummy/pspec.xml - - - xorg-video-dummy - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - - - - - 2015-05-08 - 0.3.7 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 0.3.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.3.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.3.7 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.3.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.3.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libva-intel-driver - http://freedesktop.org/wiki/Software/vaapi - - Osman Erkan - osman.erkan@pisilinux.org - - MIT - driver - x11.driver - VA-API implementation for Intel G45 and HD Graphics family - libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family. - http://freedesktop.org/software/vaapi/releases/libva-intel-driver/libva-intel-driver-1.5.1.tar.bz2 - - libdrm-devel - libX11-devel - libva-devel - - x11/driver/libva-intel-driver/pspec.xml - - - libva-intel-driver - - libdrm - libdrm-intel - libva - - - /usr/lib - /usr/share/doc - - - - - 2015-05-08 - 1.5.1 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.5.0 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 1.3.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xorg-video-neomagic - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org neomagic video driver - X.Org neomagic ekran kartı sürücüsü - xorg-video-neomagic contains the X.Org driver for NeoMagic cards. - xorg-video-neomagic, NeoMagic ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-neomagic-1.2.9.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-neomagic/pspec.xml - - - xorg-video-neomagic - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.2.9 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.2.8 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.8 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.8 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.2.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.7 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.7 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.2.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-sis - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org sis video driver - X.Org sis ekran kartı sürücüsü - xorg-video-sis contains the X.Org driver for SiS cards. - xorg-video-sis, SiS ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-sis-0.10.7.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - - 0001-Disable-UploadToScreen-and-DownloadFromScreen.patch - git-fixes.patch - Xi.patch - - x11/driver/xorg-video-sis/pspec.xml - - - xorg-video-sis - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 0.10.7 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 0.10.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.10.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.10.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.10.7 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.10.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.10.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.10.7 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.10.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-rendition - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org rendition video driver - X.Org rendition ekran kartı sürücüsü - xorg-video-rendition contains the X.Org driver for Rendition (Micron) cards. - xorg-video-rendition, Rendition (Micron) ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-rendition-4.2.5.tar.bz2 - - xorg-server-devel - - - git-fixes.patch - - x11/driver/xorg-video-rendition/pspec.xml - - - xorg-video-rendition - - xorg-server - - - /usr/lib/xorg/modules/drivers - /usr/lib/xorg/modules/*.uc - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 4.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 4.2.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 4.2.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 4.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 4.2.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 4.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 4.2.5 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 4.2.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 4.2.5 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 4.2.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-vmmouse - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vmmouse input driver - X.Org vmmouse giriş aygıtı sürücüsü - xorg-input-vmmouse contains the X.Org driver for mice in VMware virtual machines. - xorg-input-vmmouse, VMware sanal makinelerinde fare uyumu için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-vmmouse-13.0.0.tar.bz2 - - xorg-server-devel - - - xf86-input-vmmouse-13.0.0-build_fix-1.patch - - x11/driver/xorg-input-vmmouse/pspec.xml - - - xorg-input-vmmouse - - /lib/udev - /usr/bin - /usr/libexec - /usr/lib/xorg - /usr/share/X11 - /usr/share/man - - - - - 2015-05-08 - 13.0.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-27 - 13.0.0 - Rebuild for xorg-server-1.16.3 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-01 - 13.0.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 13.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 13.0.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 13.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 13.0.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 12.9.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-30 - 12.9.0 First release Erdem Artan admins@pisilinux.org @@ -66611,3864 +95947,421 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xorg-input-evdev - http://www.x.org + bluefish + http://bluefish.openoffice.nl/index.html - PisiLinux Community - admins@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - MIT - driver - x11.driver - X.Org evdev input driver - X.Org evdev giriş aygıtı sürücüsü - xorg-input-evdev contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-evdev, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-evdev-2.9.2.tar.bz2 + GPLv3 + app:gui + programming.environment + Bluefish is a powerful editor targeted towards programmers and webdevelopers + Deneyimli web tasarımcıları ve programcıları için güçlü bir düzenleyici + Bluefish is a powerful editor targeted towards programmers and webdevelopers, with many options to write websites, scripts and programming code. Bluefish supports many programming and markup languages. + Bluefish web sayfası tasarım ve hazırlanmasında kullanılan güçlü bir düzenleyicidir. + mirrors://sourceforge/bluefish/2.2.7/bluefish-2.2.7.tar.gz - xorg-server-devel - libmtdev-devel - libevdev - util-macros - eudev-devel + enchant + glib2-devel + gtk2-devel + libxml2-devel + intltool + gettext-devel - x11/driver/xorg-input-evdev/pspec.xml + editor/bluefish/pspec.xml - xorg-input-evdev + Bluefish - libmtdev - libevdev - eudev + atk + desktop-file-utils + cairo + gdk-pixbuf + gtk3 + pango - /usr/lib/xorg + /usr/bin + /usr/lib + /usr/share /usr/share/doc - /usr/share/man - - - - xorg-input-evdev-devel - Development files for evdev driver - evdev sürücüsü için geliştirme dosyaları - - xorg-input-evdev - - - /usr/include - /usr/lib/pkgconfig + /usr/share/locale - - 2015-05-08 - 2.9.2 + + 2015-10-19 + 2.2.7 Version bump. - Burak Ertürk - burakerturk@pisilinux.org + Stefan Gronewold (groni) + groni@pisilinux.org - - 2015-01-22 - 2.9.1 + + 2014-02-11 + 2.2.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-05 + 2.2.4 Version bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-31 - 2.9.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.8.4 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 2.8.2 - Rebuild for xserver 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-06 - 2.8.2 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-11 - 2.8.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 2.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.8.0 - Add patch - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.8.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 2.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org + Ertan Güven + ertan@pisilinux.org - 2012-10-11 - 2.7.3 + 2013-01-10 + 2.2.3 First release - Marcin Bojara - marcin@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - xorg-video-apm - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org apm video driver - X.Org apm ekran kartı sürücüsü - xorg-video-apm contains the X.Org driver for Alliance Promotion cards. - xorg-video-apm, Alliance Promotion ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-apm-1.2.5.tar.bz2 - - xorg-server-devel - util-macros - xorg-proto - - - git-fix.diff - - x11/driver/xorg-video-apm/pspec.xml - - - xorg-video-apm - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.2.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.5 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.5 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.2.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-vesa - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vesa video driver - X.Org vesa ekran kartı sürücüsü - xorg-input-vesa contains the X.Org driver for Generic VESA cards. - xorg-input-vesa, VESA uyumlu ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-vesa-2.3.3.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-vesa/pspec.xml - - - xorg-video-vesa - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 2.3.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 2.3.3 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.3.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.3.2 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 2.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.3.2 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.3.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 2.3.2 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 2.3.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-elographics - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org Elographics TouchScreen input driver - X.Org Elographics dokunmatik ekran sürücüsü - xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-elographics, Linux için Elographics dokunamtik ekran X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-elographics-1.4.1.tar.bz2 - - xorg-server-devel - libmtdev-devel - util-macros - - x11/driver/xorg-input-elographics/pspec.xml - - - xorg-input-elographics - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.4.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.4.1 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.1 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.4.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - vdpau-video - http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/ + vim + http://www.vim.org/ PisiLinux Community admins@pisilinux.org GPLv2 - driver - x11.driver - VDPAU backend for VA API - VA API için VDPAU arka ucu - vdpau-video is a backend for the VA API in order to use VDPAU video acceleration drivers available for some NVIDIA and S3 cards. - vdpau-video, bazı NVIDIA ve S3 kartlar için mevcut olan VDPAU video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. - http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/libva-vdpau-driver-0.7.4.tar.bz2 + editor.vi + Vi IMproved, an advanced text editor + Vi Improved, gelişmiş metin editörü + Vi IMproved – klon edytora Vi + Vim, which stands for Vi IMproved, is an open-source, multiplatform text editor extended from vi. It was first released by Bram Moolenaar in 1991. Since then, numerous features have been added to Vim, many of which are helpful in editing program source code. + VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. Çok geniş bir kullanıcı kitlesi olan VIM metin düzenleyicisi yüksek oranda özelleştirilebilir bir yazılımdır. Ayrıca VIM için pek çok destekleyici betik (script) bulunmaktadır. + Edytor tekstu podobny do Vi. Ważne ulepszenia: możliwość pracy w wielu oknach, wielopoziomowa opcja ‚cofnij’, bloki, podświetlanie składni, folding i wiele innych. + https://github.com/vim/vim/archive/v7.4.909.tar.gz - libvdpau-devel - libva-devel - mesa-devel - libX11-devel + gpm + ctags + python-devel + acl-devel + gtk2-devel + libSM-devel + libXt-devel + pango-devel + libICE-devel + ruby-devel + ncurses-devel - libva-vdpau-driver-0.7.4-libvdpau-0.8.patch - libva-vdpau-driver-0.7.4-glext-85.patch - libva-vdpau-driver-0.7.4-drop-h264-api.patch + vim-fix-xml-crash.patch + pisilinux/grub_conf.patch + pisilinux/xorg_conf.patch + vim-7.0-warning.patch + vim-7.3-interix-link.patch - x11/driver/vdpau-video/pspec.xml + editor/vi/vim/pspec.xml - vdpau-video + vim + app:console - libX11 - libvdpau - mesa + gpm + ctags + perl + ruby + acl + ncurses - /usr/lib - /usr/share/doc - - - - - 2015-05-08 - 0.7.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 0.7.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.7.4 - Rebuild for xorg-server-1.16.0 and libvdpau-0.8 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.7.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 0.7.4 - Rebuild for xserver 1.15 - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-08 - 0.7.4 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-06 - 0.7.4 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.7.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.7.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 0.7.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-i128 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org i128 video driver - X.Org i128 ekran kartı sürücüsü - xorg-video-i128 contains the X.Org driver for Number Nine chipsets. - xorg-video-i128, Number Nine ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-i128-1.3.6.tar.bz2 - - xorg-server-devel - - - git-fixes.diff - 1600sw-range-hack.patch - - x11/driver/xorg-video-i128/pspec.xml - - - xorg-video-i128 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.3.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.3.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.3.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.3.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-mga - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mga video driver - X.Org mga ekran kartı sürücüsü - xorg-video-mga contains the X.Org driver for Matrox cards. - xorg-video-mga, Matrox ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-mga-1.6.3.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - - mga-1.4.5-no-hal-advertising.patch - mga-1.4.12-bigendian.patch - mga-1.6.2-shadowfb.patch - - x11/driver/xorg-video-mga/pspec.xml - - - xorg-video-mga - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.6.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.6.3 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.6.3 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.6.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.6.3 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.6.2 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.6.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.6.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.6.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-void - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org void input driver - X.Org void giriş aygıtı sürücüsü - xorg-input-void is a null input driver which allows the X server to operate without a core pointer and/or core keyboard. - xorg-input-void, X sunucusunun herhangi bir ana işaretçi ve/veya ana klavye olmadan çalışabilmesini sağlayan işlevsiz bir giriş aygıtı sürücüsüdür. - mirrors://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-input-void/pspec.xml - - - xorg-input-void - - /usr/lib/xorg - /usr/share/man - - - - - 2015-05-08 - 1.4.1 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.4.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.4.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.4.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.4.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.4.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-30 - 1.4.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-video-tga - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org tga video driver - X.Org tga ekran kartı sürücüsü - xorg-video-tga contains the X.Org driver for DEC Tga cards. - xorg-video-tga, DEC Tga ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-tga-1.2.2.tar.bz2 - - xorg-server-devel - - - xf86-video-tga-1.2.2-remove-mibstore_h.patch - - x11/driver/xorg-video-tga/pspec.xml - - - xorg-video-tga - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - - - - - 2015-05-08 - 1.2.2 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.2.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.2 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.2 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 1.2.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xvba-video - http://www.splitted-desktop.com/~gbeauchesne/xvba-video/ - - PisiLinux Community - admins@pisilinux.org - - freedist - driver - x11.driver - XvBA backend for VA API - VA API için XvBA arka ucu - xvba-video is a backend for the VA API in order to use XvBA video acceleration drivers available for some ATI cards. - xvba-video, bazı ATI kartlar için mevcut olan XvBA video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. - http://source.pisilinux.org/1.0/xvba-video-0.7.8.i686.tar.gz - http://source.pisilinux.org/1.0/xvba-video-0.7.8.x86_64.tar.gz - x11/driver/xvba-video/pspec.xml - - - xvba-video - - libva - libXext - mesa - - - /usr/lib - /usr/share/doc - - - - xvba-video-32bit - 32-bit shared libraries for xvba-video - xvba-video için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - libX11-32bit - libXext-32bit - - - mesa-32bit - xvba-video - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2015-05-08 - 0.7.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 0.7.8 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.7.8 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.7.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.7.8 - Rebuild for xserver 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-26 - 0.7.8 - Fix emul32. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.7.8 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-31 - 0.7.8 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - xorg-video-radeon - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org radeon video driver - X.Org radeon ekran kartı sürücüsü - xorg-video-radeon contains the X.Org driver for ATI video chipsets. - xorg-video-radeon, ATI ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-ati-7.5.0.tar.bz2 - - libdrm-devel - libpciaccess-devel - mesa-devel - pixman-devel - xorg-server-devel - - x11/driver/xorg-video-radeon/pspec.xml - - - xorg-video-radeon - - libdrm-radeon - libpciaccess - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 7.5.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 7.5.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-10-18 - 7.5.0 - Version bump - Ergün Salman - poyraz76@pisilinux.org - - - 2014-09-01 - 7.4.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 7.3.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 7.3.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-02 - 7.1.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-06 - 7.1.0 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 7.1.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 7.1.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 6.14.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 6.14.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-geode - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org geode video driver - X.Org geode ekran kartı sürücüsü - xorg-video-geode contains the X.Org driver for AMD Geode video cards. - xorg-video-geode, AMD Geode ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-geode-2.11.16.tar.bz2 - - xorg-server-devel - - - xf86-video-geode-2.11.16-glibc-2.20.patch - build-fix-1.17.patch - - x11/driver/xorg-video-geode/pspec.xml - - - xorg-video-geode - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - - - - - 2015-05-10 - 2.11.16 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-02-10 - 2.11.16 - Rebuild xorg-server 1.6.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.11.16 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.11.15 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.11.15 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.11.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.11.14 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.11.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 2.11.14 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 2.11.13 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-joystick - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org joystick input driver - X.Org joystick giriş aygıtı sürücüsü - xorg-input-joystick contains the X.Org driver for joysticks. - xorg-input-joystick, oyun çubukları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-joystick-1.6.2.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-input-joystick/pspec.xml - - - xorg-input-joystick - - /usr/lib/xorg - /usr/share/man - - - - xorg-input-joystick-devel - Development files for xorg-input-joystick - xorg-input-joystick için geliştirme dosyaları - - xorg-input-joystick - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 1.6.2 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.6.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - poyraz76@pisilinux.org - - - 2014-09-01 - 1.6.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.6.2 - Rebuild for xserver 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.6.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.6.1 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-30 - 1.6.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-video-tdfx - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org tdfx video driver - X.Org tdfx ekran kartı sürücüsü - xorg-video-tdfx contains the X.Org driver for Voodoo cards. - xorg-video-tdfx, Voodoo ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-tdfx-1.4.6.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-tdfx/pspec.xml - - - xorg-video-tdfx - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.4.6 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.4.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.4.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.4.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.4.5 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.4.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.4.5 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 1.4.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-aiptek - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org Aiptek USB Digital Tablet input driver - X.Org aiptek Dijital Tablet giriş aygıtı sürücüsü - xorg-input-aiptek contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-aiptek, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-aiptek-1.4.1.tar.bz2 - - libX11-devel - libmtdev-devel - util-macros - - x11/driver/xorg-input-aiptek/pspec.xml - - - xorg-input-aiptek - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.4.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.4.1 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.1 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 1.4.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xorg-video-glint - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org glint video driver - X.Org glint ekran kartı sürücüsü - xorg-video-glint contains the X.Org driver for 3DLabs Permedia cards. - xorg-video-glint, 3DLabs Permedia ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-glint-1.2.8.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - - git-fix.diff - - x11/driver/xorg-video-glint/pspec.xml - - - xorg-video-glint - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.2.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.2.8 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.8 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.8 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.8 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.8 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.8 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.2.8 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-mach64 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mach64 video driver - X.Org mach64 ekran kartı sürücüsü - xorg-video-mach64 contains the X.Org driver for ATI Mach64 (Rage) video cards. - xorg-video-mach64, ATI Mach64 (Rage) ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-mach64-6.9.5.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-mach64/pspec.xml - - - xorg-video-mach64 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 6.9.5 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 6.9.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 6.9.4 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 6.9.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 6.9.4 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 6.9.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 6.9.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 6.9.3 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 6.9.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-siliconmotion - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org siliconmotion video driver - X.Org siliconmotion ekran kartı sürücüsü - xorg-video-siliconmotion contains the X.Org driver for Silicon Motion cards. - xorg-video-siliconmotion, Silicon Motion ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-siliconmotion-1.7.8.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-siliconmotion/pspec.xml - - - xorg-video-siliconmotion - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.7.8 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.7.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.7.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.7.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.7.7 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.7.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.7.7 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.7.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 1.7.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-openchrome - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org openchrome video driver - X.Org openchrome ekran kartı sürücüsü - xorg-video-openchrome contains the X.Org driver for VIA video chipsets. - xorg-video-openchrome, VIA ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-openchrome-0.3.3.tar.bz2 - - libdrm-devel - libXext-devel - libXv-devel - libXvMC-devel - xorg-server-devel - - - openchrome-0.2.904-fix_tvout_flickering.patch - fixed.patch - - x11/driver/xorg-video-openchrome/pspec.xml - - - xorg-video-openchrome - - libX11 - libdrm - libXext - libXv - libXvMC - xorg-server - - - /usr/bin - /usr/sbin - /usr/lib + /usr/bin/vi* + /usr/bin/rvi* + /usr/bin/ex + /usr/bin/xxd + /bin + /usr/share/vim /usr/share/man /usr/share/doc - - - - - 2015-05-08 - 0.3.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-02-10 - 0.3.3 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.3.3 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.3.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.3.3 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-02 - 0.3.3 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-25 - 0.3.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.3.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.3.1 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 0.3.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-intel - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org intel video driver - X.Org intel ekran kartı sürücüsü - xorg-video-intel contains the X.Org driver for Intel video chipsets. - xorg-video-intel, Intel ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-intel-2.99.917.tar.bz2 - - libX11-devel - libxcb-devel - libXv-devel - libdrm-devel - pixman-devel - libXext-devel - libXtst-devel - libXvMC-devel - xcb-util-devel - libXrandr-devel - libXfixes-devel - libXcursor-devel - libXrender-devel - libXdamage-devel - libXinerama-devel - libdrm-intel - eudev-devel - util-macros - libpciaccess-devel - xorg-server-devel - libxshmfence-devel - - x11/driver/xorg-video-intel/pspec.xml - - - xorg-video-intel - - libX11 - libxcb - libXv - libdrm - pixman - libXext - libXtst - libXvMC - xcb-util - libXrandr - libXfixes - libXcursor - libXrender - libXdamage - libXinerama - libdrm-intel - libpciaccess - eudev - libxshmfence - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2015-05-10 - 2.99.917 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 2.99.917 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.99.914 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.99.911 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-12 - 2.21.15 - Add xserver 1.15 xompat patch. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.21.15 - Version bump for xorg-server 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-06 - 2.21.9 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.21.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.21.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.21.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-08 - 2.21.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 2.20.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-cirrus - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org cirrus video driver - X.Org cirrus ekran kartı sürücüsü - xorg-video-cirrus contains the X.Org driver for Cirrus Logic cards. - xorg-video-cirrus, Cirrus Logic ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-cirrus-1.5.3.tar.bz2 - - libpciaccess-devel - xorg-server-devel - - x11/driver/xorg-video-cirrus/pspec.xml - - - xorg-video-cirrus - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.5.3 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.5.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.5.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.5.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.5.2 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.5.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.5.2 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.5.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.5.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.5.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-vmware - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vmware video driver - X.Org vmware ekran kartı sürücüsü - xorg-video-vmware contains the X.Org driver for VMWare virtual machines. - xorg-video-vmware, VMWare sanal makineleri için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-vmware-13.1.0.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-vmware/pspec.xml - - - xorg-video-vmware - - mesa - libdrm - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 13.1.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 13.1.0 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 13.0.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 13.0.2 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 13.0.1 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 13.0.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 13.0.1 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-21 - 13.0.1 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 13.0.1 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 13.0.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 12.0.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-mouse - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mouse input driver - X.Org mouse giriş aygıtı sürücüsü - xorg-input-mouse contains the X.Org driver for mice. - xorg-input-mouse, fareler için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-mouse-1.9.1.tar.bz2 - - xorg-server-devel - util-macros - - - 0001-Don-t-disable-3-button-emulation-if-third-mouse-butt.patch - - x11/driver/xorg-input-mouse/pspec.xml - - - xorg-input-mouse - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - xorg-input-mouse-devel - Development files for xorg-input-mouse - - xorg-input-mouse - - - /usr/include/xorg/xf86-mouse-properties.h - /usr/lib/pkgconfig/xorg-mouse.pc - - - - - 2015-05-08 - 1.9.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.9.1 - Rebuild xorg-server 1.6.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-31 - 1.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.9.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.9.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.9.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.9.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.9.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 1.9.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.8.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-s3virge - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org s3virge video driver - X.Org s3virge ekran kartı sürücüsü - xorg-video-s3virge contains the X.Org driver for S3 Virge cards. - xorg-video-s3virge, S3 Virge ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-s3virge-1.10.6.tar.bz2 - - xorg-server-devel - - - git-fixes.patch - - x11/driver/xorg-video-s3virge/pspec.xml - - - xorg-video-s3virge - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.10.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.10.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.10.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.10.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.10.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.10.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.10.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.10.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 1.10.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-savage - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org savage video driver - X.Org savage ekran kartı sürücüsü - xorg-video-savage contains the X.Org driver for S3 Savage cards. - xorg-video-savage, S3 Savage ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-savage-2.3.8.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-savage/pspec.xml - - - xorg-video-savage - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 2.3.8 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 2.3.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.3.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.3.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.3.7 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 2.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-fbdev - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org fbdev video driver - X.Org fbdev ekran kartı sürücüsü - xorg-video-fbdev contains the X.Org driver for Linux framebuffer device. - xorg-video-fbdev, Linux framebuffer aygıtı için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-fbdev-0.4.4.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-fbdev/pspec.xml - - - xorg-video-fbdev - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 0.4.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 0.4.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.4.4 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.4.4 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.4.3 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.4.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.4.3 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.4.3 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.4.3 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.4.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-v4l - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org v4l video driver - X.Org v4l ekran kartı sürücüsü - v4l is an Xorg driver for video4linux cards. It provides a Xvideo extension port for video overlay. - v4l, video4linux kartları için Xorg sürücüsü içerir. Video yerpaylaşımı (overlay) için bir Xvideo kapısı sağlar. - mirrors://xorg/individual/driver/xf86-video-v4l-0.2.0.tar.bz2 - - xorg-server-devel - - - xorg-x11-drv-v4l-support_v4l2_only_drivers.patch - xf86-video-v4l-0.2.0-build-fix.patch - - x11/driver/xorg-video-v4l/pspec.xml - - - xorg-video-v4l - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-15 - 0.2.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-01-23 - 0.2.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.2.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.2.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.2.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.2.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.2.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.2.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-31 - 0.2.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-video-i740 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org i740 video driver - X.Org i740 ekran kartı sürücüsü - xorg-video-i740 contains the X.Org driver for Intel i740 cards. - xorg-video-i740, Intel i740 ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-i740-1.3.4.tar.bz2 - - xorg-server-devel - - - git-fix.diff - - x11/driver/xorg-video-i740/pspec.xml - - - xorg-video-i740 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.3.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.3.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.4 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.3.4 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.4 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.3.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.3.4 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.3.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-acecad - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org acecad tablet input driver - X.Org acecad tablet giriş aygıtı sürücüsü - xorg-input-acecad contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-acecad, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-acecad-1.5.0.tar.bz2 - - xorg-server-devel - libmtdev-devel - sysfsutils-devel - util-macros - - - assign-local-private-after-allocating.patch - - x11/driver/xorg-input-acecad/pspec.xml - - - xorg-input-acecad - - sysfsutils - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - xorg-input-acecad-devel - Development files for ececad driver - acecad sürücüsü için geliştirme dosyaları - - xorg-input-acecad - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 1.5.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.5.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.5.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.5.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 1.5.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xorg-video-sisusb - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org sisusb video driver - X.Org sisusb ekran kartı sürücüsü - xorg-video-sisusb contains the X.Org driver for SiS video chips connected via a Net2280-based USB dongle. - xorg-video-sisusb, Net2280 tabanlı USB dongle ile bağlı SiS ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-sisusb-0.9.6.tar.bz2 - - xorg-server-devel - - - git-fixes.patch - - x11/driver/xorg-video-sisusb/pspec.xml - - - xorg-video-sisusb - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 0.9.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 0.9.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.9.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.9.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.9.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.9.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.9.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.9.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.9.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-synaptics - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org synaptics input driver - X.Org synaptics giriş aygıtı sürücüsü - xorg-input-synaptics contains the X.Org driver for Synaptics touchpad devices. - xorg-input-synaptics, Synaptics dokunmatik aygıtlar için X.Org sürücüsünü içerir. - http://ftp.x.org/pub/individual/driver/xf86-input-synaptics-1.8.2.tar.bz2 - - libXi-devel - libXtst-devel - libmtdev-devel - xorg-server-devel - libevdev - util-macros - - - add_tapbuttons.diff - - x11/driver/xorg-input-synaptics/pspec.xml - - - xorg-input-synaptics - - libXi - libXtst - libX11 - libevdev - - - /lib/udev - /usr/bin - /usr/lib/xorg - /usr/share/X11 - /usr/share/doc - /usr/share/man + /etc/vim - 50-synaptics.conf - 70-touchpad-quirks.rules + vimrc + pisilinux/actions.vim + pisilinux/pspec.vim + pisilinux/translations.vim + plugins/taglist.vim + plugins/kde-devel-vim.vim + plugins/newpythonfile.vim + plugins/redstring.vim - xorg-input-synaptics-devel - Development files for xorg-input-synaptics - xorg-input-synaptics için geliştirme dosyaları + gvim + app:gui + gvim + gui - xorg-input-synaptics + acl + perl + glib2 + libX11 + ncurses + gtk2 + gpm + libSM + libXt + pango + libICE + vim + ruby + gdk-pixbuf - /usr/include - /usr/lib/pkgconfig + /usr/bin/ggvi* + /usr/bin/gvi* + /usr/bin/egvi* + /usr/bin/rggvi* + /usr/bin/rgvi* + /usr/bin/gvimtutor + /usr/share/pixmaps + /usr/share/applications + + gvimtutor + gvim.xpm + gvim.desktop + - - 2015-05-08 - 1.8.2 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.8.1 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-31 - 1.7.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - 2014-05-16 - 1.7.5 - version bump. - Kamil Atlı - suvarice@gmail.com + 2015-11-05 + 0.7.4.909 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2014-03-08 - 1.7.3 - Rebuild for xserver 1.15. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2015-04-12 + 0.7.4.692 + Rebuild for ruby + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2014-03-08 - 1.7.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-09-28 + 0.7.4.461 + Update official patches to current 461. + Serdar Soytetir + kaptan@pisilinux.org - 2013-08-25 - 1.7.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2014-05-27 + 0.7.4.307 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org - 2013-06-26 - 1.7.1 - Fixed. + 2014-02-17 + 0.7.3.843 + Rebuild. Osman Erkan osman.erkan@pisilinux.org - 2013-06-21 - 1.7.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2013-07-28 + 7.3.843 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org - 2013-05-29 - 1.7.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-07-28 + 7.3.843 + Fix gvim desps. + Osman Erkan + osman.erkan@pisilinux.org - 2013-04-14 - 1.7.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2013-03-03 + 7.3.843 + Release no bump for ruby 2.0 + Osman Erkan + osman.erkan@pisilinux.org - 2012-10-11 - 1.6.2 + 2013-01-06 + 7.3.762 First release - Marcin Bojara - marcin@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - xorg-input-wacom - http://linuxwacom.sourceforge.net/ + medit + http://mooedit.sourceforge.net/ - PisiLinux Community - admins@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - GPLv2+ - driver - x11.driver - Input driver for Wacom tablets and drawing devices - Wacom tabletleri ve çizim aygıtları için giriş sürücüsü - xorg-input-wacom includes the drivers and tools for Wacom devices. - xorg-input-wacom, Wacom aygıtlarını kullanmak için sürücü ve araçları içerir. - mirrors://sourceforge/linuxwacom/xf86-input-wacom/xf86-input-wacom-0.29.0.tar.bz2 + GPLv2 + app:gui + editor + Multiplatform GTK text editor + Sekme özelliğine sahip bir metin düzenleyicisi + Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. + Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. + medit + mirrors://sourceforge/mooedit/medit-1.2.0.tar.bz2 - libXi-devel - libXrandr-devel - xorg-server-devel - libXinerama-devel - eudev-devel - - x11/driver/xorg-input-wacom/pspec.xml - - - xorg-input-wacom - - libX11 - libXi - libXrandr - libXinerama - xorg-server - eudev - - - /lib/udev - /usr/bin - /usr/lib/xorg - /usr/share/X11 - /usr/share/doc - /usr/share/man - - - 70-wacom.rules - - - - xorg-input-wacom-devel - Development files for xorg-input-wacom - xorg-input-wacom için geliştirme dosyaları - - xorg-input-wacom - - - /usr/bin/isdv4-serial-debugger - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 0.29.0 - Version bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2015-01-23 - 0.24.0 - Version bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.24.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.24.0 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.23.0 - Rebuild for xserver 1.15. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 0.23.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 0.22.1 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.22.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-21 - 0.22.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-21 - 0.21.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.17.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 0.17.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-r128 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org r128 video driver - X.Org r128 ekran kartı sürücüsü - xorg-video-r128 contains the X.Org driver for ATI Rage128 video cards. - xorg-video-r128, ATI Rage128 ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-r128-6.10.0.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-r128/pspec.xml - - - xorg-video-r128 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 6.10.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 6.9.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 6.9.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 6.9.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 6.9.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 6.9.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 6.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 6.8.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 6.8.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-voodoo - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org voodoo video driver - X.Org voodoo ekran kartı sürücüsü - xorg-video-voodoo contains the X.Org driver for Voodoo1 and Voodoo2 video adapters. - xorg-video-voodoo, Voodoo1 ve Voodoo2 video bağdaştırıcıları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 - - xorg-server-devel + python-gtk-devel + python-devel + intltool + gtk2-devel + atk-devel + cairo-devel + gettext-devel + pkgconfig + glib2-devel + libX11-devel + python3-devel + libxml2-devel + gtk2-devel + pango-devel + lua-devel + libSM-devel + libICE-devel + gdk-pixbuf-devel - git-fixes.patch + desktop-tr.patch + fix_help_dir.patch - x11/driver/xorg-video-voodoo/pspec.xml + editor/medit/pspec.xml - xorg-video-voodoo + medit - xorg-server + gtk2 + atk + glib2 + libX11 + libgcc + python + libxml2 + cairo + pango + libSM + libICE + gdk-pixbuf - /usr/lib/xorg + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/medit + /usr/share/pixmaps /usr/share/doc /usr/share/man - - 2015-05-10 - 1.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.2.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-06-21 - 1.2.5 - Rebuild. - Marcin Bojara - marcin@pisilinux.org + 2014-06-04 + 1.2.0 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-05-29 - 1.2.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-11-20 + 1.1.96 + Update + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-10-12 - 1.2.5 + 2013-01-10 + 1.1.92 First release - Marcin Bojara - marcin@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - xorg-input-kbd - http://www.x.org + nano + http://www.nano-editor.org/ PisiLinux Community admins@pisilinux.org - MIT - driver - x11.driver - X.Org kbd input driver - X.Org kbd giriş aygıtı sürücüsü - xorg-input-kbd contains the X.Org driver for keyboards. - xorg-input-kbd, klavyeler için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-keyboard-1.8.0.tar.bz2 + GPLv3 + app:console + editor + GNU GPL'd Pico clone with more functionality + Konsol ortamında kullanabileceğiniz bir metin düzenleyicidir. + Nano est un petit éditeur libre et convivial qui a pour but de remplacer Pico, l'éditeur par défaut inclus dans le paquet non-libre Pine. Plutôt que juste copier l'apparence et le ressenti de Pico, nan implémente également certaines fonctionnalité manquantes (ou désactivées par défaut), tel que "rechercher et remplacer" ou "allez à la ligne numéro". + Nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "go to line number". + Nano özgür olmayan Pine paketinin içindeki metin düzenleme programı olan Pico'nun yerine geçme hedefini güden küçük, özgür ve kullanışlı bir metin düzenleme programıdır. Pico'nun görünüşünü ve işlevini kopyalamaktan çok, Nano aynı zamanda "ara ve değiştir" ve "satır numarasına git" gibi Pico'da olmayan (veya ön tanımlı olarak kapalı) bazı özellikleri sunar. + http://www.nano-editor.org/dist/v2.5/nano-2.5.0.tar.gz - xorg-server-devel - util-macros + ncurses-devel + gettext-devel - x11/driver/xorg-input-kbd/pspec.xml + editor/nano/pspec.xml - xorg-input-kbd + nano + + ncurses + file + - /usr/lib/xorg - /usr/share/doc + /etc + /usr/share/locale + /usr/share/doc/nano /usr/share/man + /usr/share/info + /usr/share/nano + /usr/bin + /bin - - 2015-05-08 - 1.8.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.8.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.8.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 1.8.0 - Rebuild for xserver 1.15. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 1.8.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2013-08-25 - 1.7.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2014-07-11 + 2.5.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org - 2013-06-21 - 1.7.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.7.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 1.7.0 + 2014-07-11 + 2.3.5 Version bump. - Marcin Bojara - marcin@pisilinux.org + Vedat Demir + vedat@pisilinux.org - - 2012-10-11 - 1.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xbitmaps - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.misc - Utilitaire Xbitmaps de X.Org - X.Org static graphics - X.Org statik grafikleri - X.Org xbitmaps Werkzeug - xbitmaps provides static graphics needed by Xorg applications to draw screen elements. - xbitmaps, ekran öğeleri çizmek için Xorg uygulamaları tarafından ihtiyaç duyulan statik grafikleri içerir. - mirrors://xorg/individual/data/xbitmaps-1.1.1.tar.bz2 - x11/misc/xbitmaps/pspec.xml - - - xbitmaps - - /usr/include/X11/bitmaps - /usr/lib/pkgconfig - /usr/share/pkgconfig - - - - 2014-05-15 - 1.1.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-25 - 1.1.0 + 2014-05-11 + 2.3.1 Release bump. Marcin Bojara marcin@pisilinux.org + + 2013-07-26 + 2.3.1 + Fix dep, release bump. + Serdar Soytetir + kaptan@pisilinux.org + - 2010-12-14 - 1.1.0 + 2011-06-27 + 2.3.1 First release Pisi Linux Admins admins@pisilinux.org @@ -70477,422 +96370,509 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xorg-app - http://www.x.org/ + emacs-color-theme + http://www.emacswiki.org/cgi-bin/wiki?ColorTheme PisiLinux Community admins@pisilinux.org - MIT - app:console - app:gui - x11.misc - Applications de X.Org - X.Org applications - X.Org uygulamaları - X.Org Anwendungen - xorg-app contains base Xorg applications. - mirrors://xorg/individual/app/appres-1.0.4.tar.bz2 - mirrors://xorg/individual/app/bdftopcf-1.0.5.tar.bz2 - mirrors://xorg/individual/app/beforelight-1.0.5.tar.bz2 - mirrors://xorg/individual/app/bitmap-1.0.8.tar.bz2 - mirrors://xorg/individual/app/editres-1.0.6.tar.bz2 - mirrors://xorg/individual/app/fonttosfnt-1.0.4.tar.bz2 - mirrors://xorg/individual/app/fslsfonts-1.0.5.tar.bz2 - mirrors://xorg/individual/app/fstobdf-1.0.6.tar.bz2 - mirrors://xorg/individual/app/iceauth-1.0.7.tar.bz2 - mirrors://xorg/individual/app/ico-1.0.4.tar.bz2 - mirrors://xorg/individual/app/listres-1.0.3.tar.bz2 - mirrors://xorg/individual/app/luit-1.1.1.tar.bz2 - mirrors://xorg/individual/app/mkcomposecache-1.2.1.tar.bz2 - mirrors://xorg/individual/app/mkfontdir-1.0.7.tar.bz2 - mirrors://xorg/individual/app/mkfontscale-1.1.2.tar.bz2 - mirrors://xorg/individual/app/oclock-1.0.3.tar.bz2 - mirrors://xorg/individual/app/rendercheck-1.4.tar.bz2 - mirrors://xorg/individual/app/rgb-1.0.6.tar.bz2 - mirrors://xorg/individual/app/rstart-1.0.5.tar.bz2 - mirrors://xorg/individual/app/scripts-1.0.1.tar.bz2 - mirrors://xorg/individual/app/sessreg-1.1.0.tar.bz2 - mirrors://xorg/individual/app/setxkbmap-1.3.0.tar.bz2 - mirrors://xorg/individual/app/showfont-1.0.5.tar.bz2 - mirrors://xorg/individual/app/smproxy-1.0.5.tar.bz2 - mirrors://xorg/individual/app/twm-1.0.8.tar.bz2 - mirrors://xorg/individual/app/viewres-1.0.4.tar.bz2 - mirrors://xorg/individual/app/x11perf-1.5.4.tar.bz2 - mirrors://xorg/individual/app/xauth-1.0.9.tar.bz2 - mirrors://xorg/individual/app/xbacklight-1.2.1.tar.bz2 - mirrors://xorg/individual/app/xbiff-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xcalc-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xclipboard-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xclock-1.0.7.tar.bz2 - mirrors://xorg/individual/app/xcmsdb-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xcompmgr-1.1.6.tar.bz2 - mirrors://xorg/individual/app/xconsole-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xcursorgen-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xdbedizzy-1.1.0.tar.bz2 - mirrors://xorg/individual/app/xditview-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xdpyinfo-1.3.1.tar.bz2 - mirrors://xorg/individual/app/xedit-1.2.2.tar.bz2 - mirrors://xorg/individual/app/xev-1.2.2.tar.bz2 - mirrors://xorg/individual/app/xeyes-1.1.1.tar.bz2 - mirrors://xorg/individual/app/xf86dga-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xfd-1.1.2.tar.bz2 - mirrors://xorg/individual/app/xfindproxy-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xfontsel-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xfs-1.1.4.tar.bz2 - mirrors://xorg/individual/app/xfsinfo-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xfwp-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xgamma-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xgc-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xhost-1.0.7.tar.bz2 - mirrors://xorg/individual/app/xinput-1.6.1.tar.bz2 - mirrors://xorg/individual/app/xkbcomp-1.3.0.tar.bz2 - mirrors://xorg/individual/app/xkbevd-1.1.4.tar.bz2 - mirrors://xorg/individual/app/xkbprint-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xkbutils-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xkill-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xload-1.1.2.tar.bz2 - mirrors://xorg/individual/app/xlogo-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xlsatoms-1.1.2.tar.bz2 - mirrors://xorg/individual/app/xlsclients-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xlsfonts-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xmag-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xman-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xmessage-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xmh-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xmodmap-1.0.9.tar.bz2 - mirrors://xorg/individual/app/xmore-1.0.2.tar.bz2 - mirrors://xorg/individual/app/xpr-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xprop-1.2.2.tar.bz2 - mirrors://xorg/individual/app/xrandr-1.4.3.tar.bz2 - mirrors://xorg/individual/app/xrdb-1.1.0.tar.bz2 - mirrors://xorg/individual/app/xrefresh-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xset-1.2.3.tar.bz2 - mirrors://xorg/individual/app/xsetmode-1.0.0.tar.bz2 - mirrors://xorg/individual/app/xsetpointer-1.0.1.tar.bz2 - mirrors://xorg/individual/app/xsetroot-1.1.1.tar.bz2 - mirrors://xorg/individual/app/xsm-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xstdcmap-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xvidtune-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xvinfo-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xwd-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xwininfo-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xwud-1.0.4.tar.bz2 - - fontconfig-devel - libdmx-devel - libfontenc-devel - libFS-devel - libICE-devel - libpng-devel - libSM-devel - libXaw-devel - libXcomposite-devel - libXcursor-devel - libXdamage-devel - libXext-devel - libXfixes-devel - libXfont-devel - libXft-devel - libXi-devel - libXinerama-devel - libxkbfile-devel - libXmu-devel - libXrandr-devel - libXrender-devel - libXScrnSaver-devel - libXt-devel - libXtst-devel - libXv-devel - libXxf86dga-devel - libXxf86vm-devel - xbitmaps - xcb-util-devel - libXxf86misc-devel - xorg-proto - util-macros - xtrans - - x11/misc/xorg-app/pspec.xml + GPLv2 + data + editor.emacs + Emacs-Lisp color theme package + Emacs-List renk paketi + Colortheme is an Emacs-Lisp package with more than 50 color themes for your use. + Colortheme 50'den fazla renk temasını biraraya getiren bir Emacs-Lisp paketidir. + http://download.gna.org/color-theme/color-theme-6.6.0.tar.gz + editor/emacs/emacs-color-theme/pspec.xml - xorg-app + emacs-color-theme - zlib - libX11 - libXau - libpng - libxcb - freetype - libFS - libSM - libXi - libXt - libXv - libdmx - libXmu - libXaw - libICE - libXft - libXtst - libXext - xcb-util - libXfont - libXrandr - libXfixes - libXrender - fontconfig - libfontenc - libXxf86vm - libXcursor - libXdamage - libxkbfile - libXxf86dga - libXinerama - libXxf86misc - libXcomposite - libXScrnSaver + emacs + + + /usr/share/doc + /etc/emacs/site-lisp + /usr/share/emacs/site-lisp/color-theme + + + 80-color-theme.el + + + + + 2015-12-24 + 6.6.0 + Update to pisi-2.0. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 6.6.0 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 6.6.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 6.6.0 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + emacs-php-mode + http://php-mode.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + editor.emacs + PHP mode for Emacs + Emacs için PHP kipi + php-mode is an add-on for Emacs to help work with PHP files more efficiently. + php-mode, kullanıcının PHP dosyalarıyla daha hızlı çalışabilmesi için bir eklentidir. + http://stable.melpa.org/packages/php-mode-1.17.0.tar + + emacs + + editor/emacs/emacs-php-mode/pspec.xml + + + emacs-php-mode + + emacs /etc - /usr/bin - /usr/include + /usr/share/emacs + + + 80-php-mode.el + + + + + 2015-12-05 + 1.17.0 + Release bump. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 1.5.0 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 1.5.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 1.5.0 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + emacs-python + http://python-mode.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + editor.emacs + Emacs major mode for editing Python source code + Python kaynak kodlarını düzenlemek için emacs kipi + emacs-python makes a number of editing and debugging features available to Python programmers who use GNU Emacs or XEmacs. + Python programcıları için birçok kod düzenleme ve hata ayıklama özelliği sağlar. + https://launchpad.net/python-mode/trunk/6.2.1/+download/python-mode.el-6.2.1.tar.gz + editor/emacs/emacs-python/pspec.xml + + + emacs-python + + pymacs + emacs + + + /etc/emacs + /usr/share/emacs + + + 80-python.el + + + + + 2015-12-05 + 6.2.1 + Release bump. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 6.1.2 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 6.1.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-09 + 6.1.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + pymacs + http://pymacs.progiciels-bpi.ca/pymacs.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + editor.emacs + Interface between Emacs Lisp and Python + Emacs Lisp ve Python iletişimini sağlayan bir arayüz + Pymacs is a powerful tool which, once started from Emacs, allows two-way communication between Emacs Lisp and Python. + Pymacs, Emacs ile çalıştırıldığında, Emacs Lisp ve Python arasında çift yönlü iletişime olanak tanıyan güçlü bir araçtır. + https://github.com/pinard/Pymacs/archive/v0.25.tar.gz + editor/emacs/pymacs/pspec.xml + + + pymacs + /usr/lib - /usr/sbin - /usr/share/X11 + /usr/share/doc + /usr/share/emacs + /etc/emacs/site-lisp + + + 80-pymacs.el + + + + + 2015-12-24 + 0.25 + Moved to pisi-2.0. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 0.25 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-05 + 0.25 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-01 + 0.25 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + emacs + http://www.gnu.org/software/emacs + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:gui + app:console + editor.emacs + An extensible console-mode editor + Genişletilebilir bir metin düzenleyici + Emacs is the extensible, customizable, self-documenting real-time console-mode editor. It has many features to increase productivity when programming. + Emacs, gelişmiş, özelleştirilebilir ve esnek bir metin editörüdür. Özellikle program yazanlar tarafından çokça tercih edilen, fare kullanımına gerek bırakmadan çok hızlı çalışma imkânı sağlayan bir editördür. + emacs + ftp://mirrors.kernel.org/gnu/emacs/emacs-24.5.tar.xz + + gtk2-devel + alsa-lib-devel + fontconfig-devel + giflib-devel + gpm + libjpeg-turbo-devel + libICE-devel + libSM-devel + libXft-devel + libXpm-devel + libXrender-devel + libpng-devel + librsvg-devel + tiff-devel + + editor/emacs/emacs /pspec.xml + + + emacs + + gpm + tiff + gtk3 + cairo + pango + libSM + libXft + libICE + giflib + libXpm + gnutls + librsvg + alsa-lib + gdk-pixbuf + fontconfig + libXrender + imagemagick + libjpeg-turbo + + + /etc + /usr/share/doc /usr/share/man + /usr/bin + /usr/share/info + /usr/share/emacs + /usr/share/icons + /var/games/emacs + /usr/share/pixmaps + /usr/share/applications + /usr/libexec/emacs System.PackageHandler - - - xorg-app-devel - - libxkbfile-devel - xorg-app - - - /usr/lib/pkgconfig - + + site-start.el + pisi-spec.rnc + 80-nxml-mode.el + emacs.desktop + - - 2015-05-10 - 7.6 - Update. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-08-31 - 7.6 - Update. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 7.6 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-06 - 7.6 - Split devel package to prevent lots of devel pack installation. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 7.6 - Update: xfwp, xload, xprop, xset, xwd, xclipboard, twm, xman, xclock, xfindproxy, xkill, xlsclients, xmodmap, xrdb - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-05 - 7.6 - Add missing method to pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-08-17 - 7.6 - Dep Fixed - PisiLinux Community - admins@pisilinux.org + 2015-11-22 + 24.5 + Release bump. + Ilker Manap + ilkermanap@gmail.com - 2013-07-31 - 7.6 - Update some apps, fix build luit - Marcin Bojara - marcin@pisilinux.org + 2014-05-24 + 24.1 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org - 2013-07-30 - 7.6 - Rebuild - PisiLinux Community - admins@pisilinux.org + 2014-01-29 + 24.3 + Version bump + Osman Erkan + osman.erkan@pisilinux.org - 2013-06-21 - 7.6 - Update - Marcin Bojara - marcin@pisilinux.org + 2013-08-23 + 24.2 + Release bump + Osman Erkan + osman.erkan@pisilinux.org - 2013-02-13 - 7.6 - Update - Marcin Bojara - marcin@pisilinux.org + 2013-04-26 + 24.2 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org - 2012-09-25 - 7.6 + 2012-09-01 + 24.2 First release - Erdem Artan + Osman Erkan + osman.erkan@pisilinux.org + + + + + + emacs-mmm-mode + http://mmm-mode.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + editor.emacs + Multiple Major Mode module for Emacs + Emacs Çoklu Ana Kip eklentisi + MMM Mode is an emacs add-on package providing a minor mode that allows Multiple Major Modes to coexist in one buffer. + MMM (Multiple Major Mode), Emacs uygulamasının bir tamponda aynı anda birden fazla ana kip kullanılmasına imkân veren bir eklentidir. + http://skylink.dl.sourceforge.net/project/mmm-mode/mmm-mode-0.5.4.tar.gz + editor/emacs/emacs-mmm-mode/pspec.xml + + + emacs-mmm-mode + + emacs + + + /etc + /usr/share/doc + /usr/share/info + /usr/share/emacs + + + 80-mmm-mode.el + + + + + 2015-12-24 + 0.5.4 + Release bump. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 0.5.1 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 0.5.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.4.8 + First release + Gökcen Eraslan admins@pisilinux.org - xorg-font - http://www.x.org/ + libmms + http://sourceforge.net/projects/libmms PisiLinux Community admins@pisilinux.org - MIT - data:font - x11.misc - Fichiers de fontes d'écrans graphiques (X.Org) - X.Org font files - X.Org yazı tipi dosyaları - Grafische Oberfläche (X.Org) Schrift Dateien - xorg-font contains base X.Org fonts. - mirrors://xorg/individual/font/encodings-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-alias-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2 - mirrors://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2 - mirrors://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2 - - font-util - xorg-app - - x11/misc/xorg-font/pspec.xml + GPLv2 + library + multimedia.stream + A common library for accessing MMS media streaming protocol + MMS protokolüne erişim sağlayan bir kütüphane + libmms is a library for accessing Microsoft Media Server (MMS) media streaming protocol. + libmms, Microsoft Media Server(MMS) akış protokolünü kullanan ses kaynaklarına erişmek için kullanılan bir kütüphanedir. + mirrors://sourceforge/libmms/libmms-0.6.4.tar.gz + multimedia/stream/libmms/pspec.xml - xorg-font - - xorg-app - + libmms - /etc/X11/fontpath.d - /usr/share/fonts - /etc/fonts/conf.avail/42-luxi-mono.conf - /etc/fonts/conf.d/42-luxi-mono.conf + /usr/lib + /usr/share/doc - xorg-font-extra - X.Org additional font files - X.Org ek yazı tipi dosyaları + libmms-devel + Development files for libmms + libmms için geliştirme dosyaları - xorg-app + libmms + glib2-devel - /etc/X11/fontpath.d/75dpi:unscaled - /etc/X11/fontpath.d/100dpi:unscaled - /usr/share/fonts/75dpi - /usr/share/fonts/100dpi + /usr/include + /usr/lib/pkgconfig - - 2015-11-17 - 7.6 - Release Bump - Burak Ertürk - burakerturk@pisilinux.org - - 2014-05-16 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2015-10-23 + 0.6.4 + Version Bump. + Stefan Gronewold (groni) + groni@pisilinux.org - 2014-03-01 - 7.6 - Add fonts. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-26 + 0.6.2 + Rebuild + Kamil Atlı + suvarice@gmail.com - 2013-08-25 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2014-01-31 + 0.6.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2010-11-01 - 7.6 + 2011-01-24 + 0.6.2 First release Pisi Linux Admins admins@pisilinux.org @@ -70901,308 +96881,143 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xkeyboard-config - http://freedesktop.org/wiki/Software/XKeyboardConfig + rtmpdump + http://rtmpdump.mplayerhq.hu/ PisiLinux Community admins@pisilinux.org - MIT - data - x11.misc - X keyboard configuration database - X klavye yapılandırma veritabanı - xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations. - xkeyboard-config, X Pencere Sistemi için tutarlı ve iyi tasarlanmış X klavye yapılandırma verisi sağlamayı amaçlar. - mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.14.tar.bz2 - - intltool - xorg-proto - xorg-app - libxslt-devel - libX11-devel - - - xkeyboard-config-1.4-jp-tilde.patch - - x11/misc/xkeyboard-config/pspec.xml - - - xkeyboard-config - - xorg-app - libxslt - libX11 - - - /etc/X11/xorg.conf.d - /lib/udev/rules.d - /usr/share/X11/xkb - /usr/share/doc - /usr/share/locale - /usr/share/pkgconfig - /usr/share/man - - - 10-keyboard.conf - 95-xkb.rules - - - - - 2015-05-14 - 2.14 - Release bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-29 - 2.14 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-21 - 2.13 - Version bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2014-08-31 - 2.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-15 - 2.11 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-25 - 2.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 2.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xinit - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT + GPLv2 + LGPLv2 app:console - x11.misc - X Window System session initializer - X Pencere Sistemi oturum hazırlayıcı - xinit initializes X Window System server and runs the first client application. - xinit, X Pencere Sistemi sunucusunu hazırlar ve ilk istemci uygulamayı başlatır. - mirrors://xorg/individual/app/xinit-1.3.4.tar.bz2 + library + multimedia.stream + Toolkit for RTMP streams + RTMP yayınları araç takımı + rtmpdump is a tool for dumping media content streamed over RTMP. All forms of RTMP are supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps:// . + rtmpdump, RTMP üzerinden yayın yapan ortam içeriklerinin dökümünü yapmak için yazılmış bir araçtır. RTMP yayımının bütün biçimleri desteklenmektedir: rtmp://, rtmpt://, rtmpe://, rtmpte://, ve rtmps:// . + http://source.pisilinux.org/1.0/rtmpdump-15012015.tar.gz - util-macros - xorg-proto - libX11-devel + openssl-devel + zlib-devel - - 06_move_serverauthfile_into_tmp.diff - fs25361.patch - - x11/misc/xinit/pspec.xml + multimedia/stream/rtmpdump/pspec.xml - xinit + rtmpdump - libX11 - xorg-app - dbus-x11 + openssl + zlib - /etc/X11/Xresources - /etc/X11/Xdefaults - /etc/X11/xinit /usr/bin - /usr/lib/X11/xinit - /usr/share/doc + /usr/lib + /usr/share/doc/rtmpdump /usr/share/man - - Xsession - xinitrc - xserverrc - xserverrc - Xresources - Xdefaults - xinitrc.d/localuser.sh - xinitrc.d/xdg-runtime-dir.sh - xinitrc.d/Xresources.sh - xinitrc.d/Xdefaults.sh - xinitrc.d/xkb.sh - xinitrc.d/startup.sh - xinitrc.d/environment.sh - xinitrc.d/dbus.sh - xinitrc.d/ssh-agent.sh - + + + rtmpdump-devel + Development files for rtmpdump + rtmpdump için geliştirme dosyaları + + rtmpdump + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + - - 2015-11-30 - 1.3.4 - add patchs. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-10 - 1.3.4 - Version Bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-28 - 1.3.3 - add xdg runtime dir fix localuser dir - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-16 - 1.3.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-12 - 1.3.3 + + 2015-07-29 + 15012015 Version bump. - Marcin Bojara - marcin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2013-08-25 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2014-05-20 + 20130918 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org - 2013-08-25 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2014-02-11 + 2.3 + Rebuild + Alihan Öztürk + alihan@pisilinux.org - 2012-09-26 - 1.3.2 + 2011-01-19 + 2.3 First release - Erdem Artan + Pisi Linux Admins admins@pisilinux.org - xterm - http://invisible-island.net/xterm + live555 + http://www.live555.com PisiLinux Community admins@pisilinux.org - MIT - app:gui - x11.terminal - Terminal emulator for the X Window System - X Pencere Sistemi için uçbirim emülatörü - The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can't use the window system directly. - xterm programı, X Pencere Sistemi için bir uçbirim emülatörüdür. Pencere sistemini doğrudan kullanamayan programlar için DEC VT102 ve Tektronix 4014 uyumlu uçbirimler sağlar. - terminal - ftp://invisible-island.net/xterm/xterm-304.tgz - - fontconfig-devel - libICE-devel - libXaw-devel - libXft-devel - libXmu-devel - libXt-devel - utempter-devel - xorg-app - libXpm-devel - ncurses-devel - libX11-devel - + LGPLv2.1 + library + multimedia.stream + Multimedia streaming library + Çokluortam yayın kitaplığı + Live555 est un ensemble de librairies C++ pour le streaming (diffusion numérique) multimédia utilisant les protocoles de standards ouverts (RTP/RTCP, RTSP, SIP). + Live555 is a set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP) + Live555, açık standart protokolleri kullanan (RTP/RTCP, RTSP, SIP) çoklu ortam duraksız işlemleri (streaming) için C++ kütüphaneleridir. + http://distfiles.alpinelinux.org/distfiles/live.2014.05.08.tar.gz - 16colors.txt.diff - defaults.patch + shared-config.patch - x11/terminal/xterm/pspec.xml + multimedia/stream/live555/pspec.xml - xterm + live555 + + /usr/lib + /usr/share/doc + + + + live555-devel + Development files for live555 + live555 için geliştirme dosyaları - fontconfig - libICE - libXaw - libXft - libXmu - libXt - utempter - xorg-app - libXpm - ncurses - libX11 + live555 - /usr/bin - /usr/share/X11 - /usr/share/doc - /usr/share/man + /usr/include - 2014-05-13 - 304 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2014-05-25 + 2014.05.08 + version bump + Kamil Atlı + suvarice@gmail.com - 2013-08-25 - 287 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2013-10-09 + 0.0_20131009 + First release + Erdinç Gültekin + admins@pisilinux.org - 2012-12-12 - 287 + 2012-08-27 + 0.0_20121004 First release Erdinç Gültekin admins@pisilinux.org @@ -71211,672 +97026,736 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - vte - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - x11.terminal - Widget terminal utilisant Xft - Xft powered terminal widget - The VTE package contains a termcap file implementation for terminal emulators. - Vte paketi, terminal emülatörleri için termcap uygulama dosyası içerir. - mirrors://gnome/vte/0.28/vte-0.28.2.tar.xz - - gobject-introspection-devel - fontconfig-devel - gtk2-devel - pango-devel - cairo-devel - gtk-doc - gdk-pixbuf-devel - atk-devel - ncurses-devel - glib2-devel - libX11-devel - - - vte-0.28.2-limit-arguments.patch - vte-alt-meta-confusion.patch - vte-python-bugfixes.patch - vte-0.28.0-link.patch - vte-0.28.2-scale.patch - - x11/terminal/vte/pspec.xml - - - vte - library - - gobject-introspection - gtk2 - atk - cairo - gdk-pixbuf - pango - ncurses - glib2 - libX11 - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/locale - /usr/share/vte - /usr/share/pygtk - /usr/share/gir-1.0/Vte-0.0.gir - - - - vte-docs - GTK reference documents for vte - data:doc - - /usr/share/gtk-doc - - - - vte-devel - Development files for vte - vte için geliştirme dosyaları - - vte - gtk2-devel - pango-devel - cairo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-16 - 0.28.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-25 - 0.28.2 - rebuild for unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-06 - 0.28.2 - Fix deps - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.28.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 0.28.2 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-24 - 0.28.2 - First release - Osman Erkan - namso-0"@hotmail.it - - - - - - font-util - http://www.x.org/ + libnut + http://www.nut-container.org/ PisiLinux Community admins@pisilinux.org MIT app:console - x11.util - Utilitaires de fontes de X.Org - X.Org font utilities - X.Org font araçları - X.Org Schrift Werkzeuge - font-util package contains core font utilities for the Xorg XWindow system. - mirrors://xorg/individual/font/font-util-1.3.1.tar.bz2 - - zlib-devel - - x11/util/font-util/pspec.xml + library + multimedia.converter + NUT container tools and library + NUT dosya biçemi kitaplığı ve araçları + Library and tools to work with NUT multimedia files. + libnut NUT çokluortam sistemini kullanmak ve düzenlemek için gerekli olan kitaplıkları ve araçları içerir. + http://source.pisilinux.org/1.0/libnut-661.tar.bz2 + + shared.patch + + multimedia/converter/libnut/pspec.xml - font-util + libnut /usr/bin - /usr/lib/pkgconfig - /usr/share/fonts - /usr/share/aclocal + /usr/lib /usr/share/doc - /usr/share/man + + + + libnut-devel + Development files for libnut + libnut için geliştirme dosyaları + + libnut + + + /usr/include - - 2015-05-10 - 1.3.1 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-05-16 - 1.3.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-11-06 - 1.3.0 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org + 2014-05-22 + 0.0_661 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2013-08-25 - 1.3.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2014-02-01 + 0.0_661 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-09-25 - 1.3.0 + 2010-10-12 + 0.0_661 First release - Erdem Artan + Pisi Linux Admins admins@pisilinux.org - scim - http://www.scim-im.org + mkvtoolnix + http://www.bunkus.org/videotools/mkvtoolnix/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + app:gui + multimedia.converter + A set of tools to create, alter and inspect Matroska files + Matroska dosyalarını yaratmak, değiştirmek ve incelemek için araçlar + MKVToolnix is a set of tools (mkvmerge, mkvinfo and mkvextract) With these tools one can get information about (mkvinfo) Matroska files, extract tracks/data from (mkvextract) Matroska files and create (mkvmerge) Matroska files from other media files. + mkvtoolnix Matroska (MKV) dosyaları ile kullanılmak için bilgi edinme aracı (mkvinfo), veri/iz çıkarmak aracı (mkvextract) ve MKV oluşturma aracı (mkvmerge) içeren araç setidir. + mmg + https://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-8.5.2.tar.xz + + qt5-base-devel + zlib-devel + ruby-devel + flac-devel + boost-devel + libogg-devel + libebml-devel + libvorbis-devel + libmatroska-devel + file + imagemagick-devel + + multimedia/converter/mkvtoolnix/pspec.xml + + + mkvtoolnix + + flac + boost + libogg + file + libvorbis + zlib + qt5-base + libgcc + + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/pixmaps + /usr/share/mkvtoolnix + /usr/share/applications + /usr/share/locale + + + + + 2015-11-08 + 8.5.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-21 + 7.5.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-19 + 7.4.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-29 + 7.3.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-10-05 + 7.2.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-28 + 6.9.1 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-18 + 6.7.0 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-11-14 + 6.5.0 + v. bump rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 6.2.0 + add missing dep. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-09 + 6.2.0 + V.bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-08-27 + 5.7.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + vcdimager + http://www.vcdimager.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.converter + VCD and SVCD image file maker and converter + VCD ve SVDC görüntü dosyası oluşturucu ve çevirici + VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CD's and Super Video CD's. The core functionality consists of directly making Video CD BIN/CUE-style CD images from mpeg files. + VCDImager Video CD ve Super Video CD'leri yaratmaya, parçalarına ayırmaya ve analiz etmeye yarayan kapsamlı bir CD görüntüsü yazma uygulamasıdır. En temel özelliği .mpeg dosyalarından direk BIN/CUE uzantılı CD görüntüleri yaratabilmesidir. + http://ftp.gnu.org/gnu/vcdimager/vcdimager-0.7.24.tar.gz + + libcdio-devel + popt + + multimedia/converter/vcdimager/pspec.xml + + + vcdimager + + libcdio + popt + libxml2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + vcdimager-devel + Development files for vcdimager + vcdimager için geliştirme dosyaları + + vcdimager + libcdio-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.7.24 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-17 + 0.7.24 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 0.7.24 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2013-07-08 + 0.7.24 + rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-27 + 0.7.24 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + xawtv + http://linuxtv.org/downloads/xawtv/ + + Erdinc Gultekin + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.tv + TV application + TV uygulaması + xawtv is a TV application that supports many interfaces (analog video streams), such as Xvideo, v4l2 and bktr etc. It can display TV streams and record them. + xawtv Xvideo, v4l2, bktr gibi birçok arayüzü destekleyen bir TV uygulamasıdır. xawtv ayrıca video kayıt yeteneği ve birkaç yararlı konsol aracına sahiptir. + xawtv + http://linuxtv.org/downloads/xawtv/xawtv-3.103.tar.bz2 + + alsa-lib-devel + aalib-devel + libquicktime-devel + openmotif-devel + zvbi-devel + lirc-devel + libv4l-devel + xorg-font + libXxf86dga-devel + libdv + libXpm-devel + libXrender-devel + libXv-devel + mesa-devel + libXext-devel + libXrandr-devel + libXxf86vm-devel + libXmu-devel + libFS-devel + fontconfig-devel + libXt-devel + libXft-devel + libXaw-devel + zvbi-devel + libXinerama-devel + libSM-devel + libICE-devel + libexplain-devel + libjpeg-turbo-devel + gpm + zlib-devel + libX11-devel + libpng-devel + ncurses-devel + freetype-devel + + + v4l-conf_non-position-independent-executable_fix.patch + xawtv-3.95.patch + + multimedia/tv/xawtv/pspec.xml + + + xawtv + + zvbi + lirc + mesa + aalib + libSM + libdv + libXt + libXv + libXmu + libXaw + libICE + libv4l + libXpm + libXft + libXext + alsa-lib + libXrandr + libXrender + libXxf86vm + fontconfig + libexplain + libXxf86dga + libXinerama + libquicktime + libjpeg-turbo + gpm + zlib + libX11 + libpng + ncurses + freetype + + + /etc + /usr/bin + /usr/lib/xawtv + /usr/share/doc + /usr/share/man + /usr/share/xawtv + /usr/share/applications + /usr/share/pixmaps + + + xawtv.desktop + + + + + 2014-02-17 + 3.103 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 3.103 + version bump + Erdinc Gultekin + admins@pisilinux.org + + + 2013-07-28 + 3.102_201207 + First release + Erdinc Gultekin + admins@pisilinux.org + + + 2012-11-12 + 3.102_201207 + First release + Erdinc Gultekin + admins@pisilinux.org + + + + + + zvbi + http://zapping.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.tv + VBI Decoding Library for Zapping + Zapping uygulaması için VBI çözücü kütüphanesi + Zapping est un lecteur TV pour le bureau Gnome. Avec Zapping et une carte TV vous pouvez, voir la télévision, faire des copies d'écran et effectuer des enregistrements audio et vidéo. Zapping gère les sous-titres et le télétexte. + Zapping is a TV viewer for the Gnome desktop. With Zapping and a TV card you can watch TV, take screenshots, and record video and audio. Zapping supports Closed Caption and Teletext subtitles. + Zapping Gnome masaüstü için bir televizyon göstericisidir. Zapping ve bir TV kartı ile TV seyredebilir, ekran resmi çekebilir ve video ve audio kaydedebilirsiniz. Zapping Kapalı Çekim (Closed Capture) ve Teletex altyazılarını desteklemektedir. + Zapping es un visualizador de TV para el escritorio Gnome. Con Zapping y una tarjeta de TV puede mirar la tele, capturar pantallas, grabar video y audio. Zapping soporta subtitulos teletext y Closed Caption. + mirrors://sourceforge/zapping/zvbi-0.2.35.tar.bz2 + + libpng-devel + libX11-devel + + + zvbi-0.2.31-linkage_fix.diff + zvbi-0.2.7-fix-build.patch + + multimedia/tv/zvbi/pspec.xml + + + zvbi + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/doc/zvbi + /usr/share/man + /usr/share/locale + + + + zvbi-devel + Development files for zvbi + zvbi için geliştirme dosyaları + + zvbi + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/zvbi/html + + + + + 2014-05-27 + 0.2.35 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-16 + 0.2.35 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-11-12 + 0.2.33 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + mlt + http://www.mltframework.org/twiki/bin/view/MLT/ PisiLinux Community admins@pisilinux.org LGPLv2.1 - library - x11.im - Smart Common Input Method - framework for Input Methods - Smart Common Input Method - Girdi Metodları sistemi - Smart Common Input Method – ogólna metoda wprowadzania - Smart Common Input Method (SCIM - Méthode commune intelligente d'entrée) est un framework (cadre de développement) pour méthodes d'entrée. Il s'agit d'une approche modulaire et flexible pour créer ou utiliser des méthodes d'entrée pour la plateforme X11. - Smart Common Input Method (SCIM) is a framework for Input Methods. It is a modular and flexible approach for authoring and using Input Methods for X11 platform. - Smart Common Input Method (SCIM), X11 platformu için Girdi Metodlarının yönetilmesi ve kullanılması için modüler ve esnek Girdi Metodları sistemi - scim to główny pakiet projektu SCIM, udostępniający podstawowe funkcje i typy danych. - mirrors://sourceforge/scim/scim-1.4.14.tar.gz - - scim-system-config - scim-system-global - - - libXt-devel - libX11-devel - intltool - - - scim-1.4.14-compile.patch - scim-1.4.7-support-more-utf8-locales.patch - scim-initial-locale-hotkey-20070922.patch - scim_panel_gtk-emacs-cc-style.patch - scim-add-restart.patch - - x11/im/scim/pspec.xml - - - scim-core - Core of SCIM for users - - libX11 - libgcc - scim-libs - - - /etc - /usr/bin - /usr/lib/scim-1.0 - /usr/share/scim - /usr/share/doc - /usr/share/locale - - - scim.session - scim.env - - - - scim-libs - Libraries of SCIM - - libX11 - libgcc - libtool-ltdl - - - /usr/lib/libscim-* - /usr/lib/scim-1.0/*/Config - /usr/lib/scim-1.0/*/IMEngine - - - - scim-devel - Includes and pkgconfig for scim development - - scim-core - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-16 - 1.4.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-11 - 1.4.14 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-25 - 1.4.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-02 - 1.4.14 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - dconf - http://live.gnome.org/dconf - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 app:console - desktop.gnome.base - Simple low-level configuration system - Düşük seviyeli yapılandırma sistemi - dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. - FIXME - http://ftp.gnome.org/pub/gnome/sources/dconf/0.24/dconf-0.24.0.tar.xz + multimedia.tv + A multimedia framework, designed and developed for television broadcasting + Televizyon yayını için tasarlanmış bir çoklu ortam altyapısı + MLT is an open source multimedia framework, designed and developed for television broadcasting. + MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır. + http://sourceforge.net/projects/mlt/files/mlt/mlt-0.9.8.tar.gz - dbus-devel + alsa-lib-devel + swig + python-devel glib2-devel - docbook-xsl - libxslt - intltool - gtk-doc + frei0r-plugins-devel + fftw3-devel + jack-audio-connection-kit-devel + qt5-base-devel + qt5-svg-devel + perl + libxml2-devel + libsamplerate-devel + ladspa-sdk-devel + libexif-devel + ffmpeg-devel + sox-devel - desktop/gnome/base/dconf/pspec.xml + multimedia/tv/mlt/pspec.xml - dconf + perl-mlt + Perl bindings for MLT + MLT için Perl bağlayıcıları + programming.language.perl - dbus - glib2 + libgcc + perl + mlt + + + /usr/lib/perl* + + + + python-mlt + Python bindings for MLT + MLT için Python bağlayıcıları + programming.language.python + + libgcc + python + mlt + + + /usr/lib/python* + + + + mlt + + sox + fftw3 + glib2 + ffmpeg + libX11 + libgcc + libexif + libxml2 + qt5-svg + alsa-lib + qt5-base + libsamplerate + jack-audio-connection-kit - /usr/share - /usr/lib - /usr/share/doc /usr/bin - /usr/libexec - - - - dconf-devel - Development files for dconf - - dconf - dbus-devel - glib2-devel - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - - - - dconf-docs - Reference files for dconf - data:doc - - dconf - - - /usr/share/gtk-doc - - - - - 2015-08-12 - 0.24.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-14 - 0.20 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-29 - 0.18 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-07-31 - 0.16.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-21 - 0.15.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - accountsservice - http://www.freedesktop.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv3 - library - desktop.gnome.base - D-Bus Service to Manipulate User Account Information - accountsservice server provides a set of D-Bus interfaces for querying and manipulating user account information. - http://www.freedesktop.org/software/accountsservice/accountsservice-0.6.40.tar.xz - - intltool - glib2-devel - polkit-devel - - desktop/gnome/base/accountsservice/pspec.xml - - - accountsservice - - polkit - glib2 - - /usr/lib /usr/share/doc - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/gtk-doc - /usr/share/polkit-1 - /usr/share/vala/vapi - /etc/dbus-1/system.d - /usr/share/locale - /var/lib/AccountsService/ + /usr/share/mlt + /usr/share/mlt/modules + /usr/share/mlt/modules/lumas/PAL - accountsservice-devel - accountsservice için geliştirme dosyaları - accountsservice için geliştirme dosyaları + mlt-devel + Development files for mlt + mlt için geliştirme dosyaları - accountsservice + mlt /usr/include /usr/lib/pkgconfig + /usr/share/man/man3 - - 2015-10-11 - 0.6.40 + + 2015-11-16 + 0.9.8 Version bump. Alihan Öztürk alihan@pisilinux.org - - 2014-07-15 - 0.6.35 - Rebuild for gcc. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-11-08 - 0.6.35 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-30 - 0.6.34 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libsecret - http://projects.gnome.org/libsecret - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.base - The libsecret package contains a GObject based library - The libsecret package contains a GObject based library for accessing the Secret Service API. - mirrors://gnome/libsecret/0.18/libsecret-0.18.tar.xz - - gtk-doc - vala-devel - libxslt-devel - libgcrypt-devel - glib2-devel - xmlto - - desktop/gnome/base/libsecret/pspec.xml - - - libsecret - - libxslt - libgcrypt - glib2 - xmlto - - - /usr/share - /usr/lib - /usr/bin - - - - libsecret-devel - Development files for libsecret - libsecret için geliştirme dosyaları - - libsecret - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-06-14 - 0.18 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-04-23 - 0.18 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-05 - 0.16 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - 2014-02-20 - 0.16 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-09-05 - 0.16 - Release bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-26 - 0.15 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-03-30 - 0.15 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-21 - 0.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gnome-common - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.gnome.base - Common files for development of GNOME packages - GNOME uygulamalarının geliştirmede kullandığı yaygın dosyalar - gnome-common package contains aclocal macros, makefile headers and documents tools in order to build GNOME sources. - mirrors://gnome/gnome-common/3.10/gnome-common-3.10.0.tar.xz - desktop/gnome/base/gnome-common/pspec.xml - - - gnome-common - - /usr/share/doc - /usr/bin - /usr/share/aclocal - /usr/share/gnome-common - - - - - 2014-06-14 - 3.10.0 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-05-21 - 3.12.0 + 2014-12-30 + 0.9.2 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2013-11-28 + 0.9.0 + fix build and ver. bump. + Kamil Atlı + suvarice@gmail.com + - 2013-10-27 - 3.10.0 - V.Bump - PisiLinux Community - admins@pisilinux.org + 2013-07-28 + 0.8.8 + missing dep.. + Erdinç Gültekin + erdincgultekin@pisilinux.org - 2013-08-26 - 2.34.0 - Release bump. + 2013-01-29 + 0.8.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-18 + 0.8.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libogg + http://www.vorbis.com + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.sound + La librairie pour fichiers au format média Ogg. + The Ogg media file format library + Ogg dosya biçimi kütüphanesi + libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams. + libogg Ogg biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Ogg biçimli dosya oluşturmak için hem de Ogg dosyalarından paket ayıklamak için kullanılabilir. + http://downloads.xiph.org/releases/ogg/libogg-1.3.1.tar.xz + multimedia/sound/libogg/pspec.xml + + + libogg + + /usr/lib + /usr/share/doc + + + + libogg-devel + + libogg + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/aclocal + /usr/share/doc/libogg/*html + /usr/share/doc/libogg/*png + /usr/share/doc/libogg/ogg + + + + libogg-32bit + 32-bit shared libraries for libogg + libogg için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libogg + + + /usr/lib32 + + + + + 2014-05-20 + 1.3.1 + Rebuild. Serdar Soytetir kaptan@pisilinux.org + + 2013-11-16 + 1.3.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + - 2010-12-22 - 2.34.0 + 2012-08-31 + 1.3.0 First release PisiLinux Community admins@pisilinux.org @@ -71885,124 +97764,72 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - dconf-editor - http://live.gnome.org/dconf - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.base - Gui editor for dconf; simple low-level configuration system - dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. - ftp://ftp.gnome.org/pub/gnome/sources/dconf-editor/3.16/dconf-editor-3.16.1.tar.xz - - dconf-devel - libxml2-devel - gtk3-devel - pango-devel - docbook-xsl - libepoxy-devel - at-spi2-core-devel - vala-devel - libxslt - intltool - gtk-doc - - desktop/gnome/base/dconf-editor/pspec.xml - - - dconf-editor - - dconf - glib2 - libxml2 - gtk3 - pango - - - /etc - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/libexec - - - - - 2015-08-12 - 3.16.1 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libgnome-keyring - http://live.gnome.org/GnomeKeyring + speech-dispatcher + http://www.freebsoft.org/speechd PisiLinux Community admins@pisilinux.org + GPLv2+ GPLv2 + service + app:console library - desktop.gnome.base - Compatibility library for accessing gnome-keyring3 - gnome-keyring'e ulaşmak için uyumluluk kütüphanesidir. - libgnome-keyring is a library that used by applications to integrate with the gnome-keyring system. - libgnome-keyring, gnome-keyring sistemine uyumlu olmak için programlar tarafından kullanılan bir kütüphanedir. - http://ftp.acc.umu.se/mirror/gnome.org/sources/libgnome-keyring/3.12/libgnome-keyring-3.12.0.tar.xz + multimedia.sound + speech dispatcher: common interface to speech synthesis + Konuşma sentezi ortak arayüzü + Speech Dispatcher is a device independent layer for speech synthesis that provides a common easy to use interface for both client applications (programs that want to speak) and for software synthesizers (programs actually able to convert text to speech). + Speech Dispatcher, seslendirme yapılmak istenen veya konuşma sentezi yapan uygulamalar için ortak ve kolay kullanımlı bir arayüz sunan, cihaz-bağımsız bir katmandır. + http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.8.3.tar.gz - intltool glib2-devel - dbus-devel - libgcrypt-devel + libsndfile-devel + dotconf-devel + intltool + gettext-devel + pkgconfig + alsa-lib-devel + pulseaudio-libs-devel - desktop/gnome/base/libgnome-keyring/pspec.xml + multimedia/sound/speech-dispatcher/pspec.xml - libgnome-keyring + speech-dispatcher - libgcrypt glib2 - dbus + libtool-ltdl + dotconf + libsndfile + alsa-lib + pulseaudio-libs + /usr/share /usr/lib /usr/share/doc - /usr/share/locale + /usr/bin + /etc/speech-dispatcher + /var/log/speech-dispatcher + /usr/share/speech-dispatcher - libgnome-keyring-devel - Development files for libgnome-keyring - libgnome-keyring için geliştirme dosyaları + speech-dispatcher-devel + Development headers for speech-dispatcher + speech-dispatcher için geliştirme başlıkları - libgnome-keyring + speech-dispatcher glib2-devel /usr/include - /usr/lib/pkgconfig - - - - libgnome-keyring-docs - Referance documents for libgnome-keyring - libgnome-keyring için başvuru belgeleri - data:doc - - /usr/share/gtk-doc + /usr/lib/pkgconfig/ - 2015-08-25 - 3.12 + 2015-11-22 + 0.8.3 Version bump. Vedat Demir vedat@pisilinux.org @@ -72011,70 +97838,349 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libcroco - http://www.freespiders.org/projects/libcroco/ + flac + http://flac.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + multimedia.sound + An encoder/decoder for the Free Lossless Audio Codec + Özgür Kayıpsız Ses Kodlaması için kodlayıcı/çözücü araçları + flac is the Free Lossless Audio Codec. The FLAC format supports streaming, seeking, and archival, and gives 25-75% compression on typical CD audio. This package contains tools and libraries to work with and support for files in FLAC format. + flac bir Özgür Kayıpsız Ses Kodlaması'dır. (Free Lossless Audio Codec) FLAC biçemi akan görüntü, arama ve arşivleme ve tipik bir Ses CD'sinde %25-75 sıkıştırmayı destekler. + http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz + + libogg-devel + + multimedia/sound/flac/pspec.xml + + + flac + + libogg + libgcc + + + /usr/bin + /usr/lib + /usr/share/man + + + + flac-docs + Documentation for flac + flac ile ilgili belgeler + + flac + + + /usr/share/doc + + + + flac-devel + Development files for flac + flac için geliştirme dosyaları + + libogg-devel + flac + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + flac-32bit + 32-bit shared libraries for flac + flac için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libogg-32bit + glibc-32bit + + + libogg-32bit + libgcc + glibc-32bit + flac + + + /usr/lib32 + + + + + 2014-12-03 + 1.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-21 + 1.3.0 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-16 + 1.3.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2011-03-01 + 1.2.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + speex + http://www.speex.org/ + + PisiLinux Community + admins@pisilinux.org + + xiph + app:console + multimedia.sound + Audio compression format designed for speech and its converter application + Konuşma için tasarlanmış bir ses sıkıştırma biçimi kütüphanesi ve araçları + speex is an Open Source/Free Software patent-free audio compression format designed for speech. The Speex Project aims to lower the barrier of entry for voice applications by providing a free alternative to expensive proprietary speech codecs. The package also contains a command-line tool to convert to/from Speex codec. + speex, konuşma için tasarlanmış özgür ve açık kaynaklı bir ses sıkıştırma biçimidir. Paket kütüphanenin yanında speex biçimine/biçiminden dönüştürme yapmak için gerekli araçları içerir. + http://downloads.us.xiph.org/releases/speex/speex-1.2rc1.tar.gz + + libogg-devel + + + constant.patch + configure.patch + + multimedia/sound/speex/pspec.xml + + + speex + + libogg + + + /usr/bin + /usr/share/man + /usr/lib + /usr/share/doc + + + + speex-devel + Development files for speex + speex için geliştirme dosyaları + + speex + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + speex-32bit + 32-bit shared libraries for speex + speex için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + speex + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-20 + 1.2_rc1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2011-03-01 + 1.2_rc1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libcdaudio + http://libcdaudio.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.sound + A library for controlling CD-ROM devices + CD-ROM aygıtlarını kontrol etmeye yarayan bir kitaplık + libcdaudio is a portable library for controlling audio CDs. It is also able to manage transfers of information with the CDDB (http://www.freedb.org/) and CDIndex systems. + libcdaudio ses CDlerini kontrol etmekte kullanılan taşınabilir bir kitaplıktır. + mirrors://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz + + libcdaudio-0.99.10.config.patch + security-bug-8587.patch + + multimedia/sound/libcdaudio/pspec.xml + + + libcdaudio + + /usr/bin + /usr/lib + /usr/share/doc + + + + libcdaudio-devel + Development files for libcdaudio + libcdaudio için geliştirme dosyaları + + libcdaudio + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + + + + + 2014-05-26 + 0.99.12 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-08 + 0.99.12 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 0.99.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libsndfile + http://www.mega-nerd.com/libsndfile/ PisiLinux Community admins@pisilinux.org LGPLv2.1 library - desktop.gnome.base - Boîte à outils générique d'analyse et de manipulation de Cascading Style Sheet (CSS - feuilles de style). - Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit - CSS ayıklama kitaplığı - 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. - libcroco GNOME uygulamaları tarafından CSS desteği için kullanılan genel bir CSS ayıklama kitaplığıdır. - mirrors://gnome/libcroco/0.6/libcroco-0.6.8.tar.xz + app:console + multimedia.sound + A C library for reading and writing files containing sampled sound + Örneklenmiş ses verileri içeren dosyalar yazmak ve okumak için C dili kütüphanesi. + Libsndfile est une librairie C pour lire et écrire des fichiers contenant des échantillons sonores (tels que les fichiers aux formats MS Windows WAV et Apple/SGI AIFF) à travers une seule interface de librairie standard. + Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. + Libsndfile, standart bir kütüphane arayüzü vasıtası ile (MS Windows WAV ve Apple/SGI AIFF biçimi gibi)örneklenmiş ses içeren dosyalar yazmak ve okumak için bir C dili kütüphanesidir. + Libsndfile es una librería C de lectura y escritura para archivos de sonido (como MS Windows WAV y el formato Apple/SGI AIFF) con una interfaz estándar de libería. + http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.25.tar.gz - libxml2-devel - glib2-devel + flac-devel + libogg-devel + alsa-lib-devel + libvorbis-devel - multilib.patch + libsndfile-1.0.18-less_strict_tests.patch + libsndfile-1.0.17-regtests-need-sqlite.patch + m4dir.patch - desktop/gnome/base/libcroco/pspec.xml + multimedia/sound/libsndfile/pspec.xml - libcroco + libsndfile - glib2 - libxml2 + flac + libogg + alsa-lib + libvorbis - /usr/share - /usr/lib /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/octave - libcroco-devel - Development files for libcroco - libcroco için geliştirme dosyaları + libsndfile-devel + Development files for libsndfile + libsndfile için geliştirme dosyaları - libcroco + libsndfile /usr/include /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/bin/croco-*-config - libcroco-32bit - 32-bit shared libraries for libcroco + libsndfile-32bit + 32-bit shared libraries for libsndfile + libsndfile için 32-bit paylaşımlı kitaplıklar emul32 emul32 - glib2-32bit - libxml2-32bit + glibc-32bit + flac-32bit + alsa-lib-32bit + libogg-32bit + libvorbis-32bit - glib2-32bit glibc-32bit - libxml2-32bit - libcroco + flac-32bit + alsa-lib-32bit + libogg-32bit + libvorbis-32bit + libsndfile /usr/lib32 @@ -72082,22 +98188,188 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2014-08-11 - 0.6.8 - Release bump. + 2014-05-25 + 1.0.25 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 1.0.25 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-07-17 + 1.0.25 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lash + http://savannah.nongnu.org/projects/lash + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:gui + multimedia.sound + LASH Audio Session Handler + LASH Ses Oturum Yöneticisi + LASH is a session management system for JACK and ALSA audio applications on GNU/Linux. It allows you to save and restore audio sessions consisting of multiple interconneced applications, restoring program state (i.e. loaded patches) and the connections between them. + LASH GNU/Linux'taki JACK ve ALSA ses uygulamaları için bir ses oturumu yönetim sistemidir. Bir çok birbirine bağlı uygulamanın ses oturumunu kaydedip, geri yüklemenize, program durumunu (örneğin yüklenmiş yamalar) ve aralarındaki bağlantıları geri yüklemenize olanak tanır. + lash + http://download.savannah.gnu.org/releases/lash/lash-0.6.0~rc2.tar.bz2 + + alsa-lib-devel + gtk2-devel + jack-audio-connection-kit-devel + dmapi-devel + texi2html + + + makefile.patch + docs-Makefile.patch + + multimedia/sound/lash/pspec.xml + + + lash + + alsa-lib + gtk2 + jack-audio-connection-kit + dmapi + libxml2 + libutil-linux + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share + + + lash-panel.desktop + + + + lash-devel + Development files for lash + lash için geliştirme dosyaları + + dbus-devel + lash + alsa-lib-devel + libxml2-devel + libutil-linux-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-26 + 0.6.0_rc2 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-02-25 + 0.6.0_rc2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-29 + 0.6.0_rc2 + missing dep,update + Erdinç gültekin + erdincgultekin@pisilinux.org + + + 2012-12-29 + 0.6.0_rc2 + First release + PisiLinux Community + osman.erkan@yandex.xom + + + + + + libmodplug + http://modplug-xmms.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Librairie pour jouer les fichiers son de type MOD. + Library for playing MOD-like music files + MOD-like müzik dosyalarını çalmak için bir kütüphane + libmodplug is a library based on the mod rendering code from ModPlug, a popular windows mod player written by Olivier Lapicque. + http://sourceforge.net/projects/modplug-xmms/files/libmodplug/0.8.8.5/libmodplug-0.8.8.5.tar.gz + + libgcc + + + libmodplug-0.8.4-timidity-patches.patch + + multimedia/sound/libmodplug/pspec.xml + + + libmodplug + + libgcc + + + /usr/lib + /usr/share/doc + + + + libmodplug-devel + + libmodplug + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.8.8.5 + Version bump. Serdar Soytetir kaptan@pisilinux.org - 2013-08-26 - 0.6.8 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org + 2014-01-31 + 0.8.8.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - - 2010-12-22 - 0.6.8 + + 2012-08-31 + 0.8.8.4 First release PisiLinux Community admins@pisilinux.org @@ -72106,662 +98378,10643 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libbonobo - http://www.gnome.org/ + a52dec + http://liba52.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + DVD ATSC A/52 streams decoder library + DVD'de kullanılan ATSC A/52 akımını çözen kütüphane + liba52 is a free library for decoding ATSC A/52 streams. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3. + liba52 ATSC A/52 yayınlarının kodlarını çözen ücretsiz bir kütüphanedir. A/52 standart dijital televizyon ve DVD programlarını da içeren çeşitli uygulamalar tarafından kullanılmaktadır. + http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz + + glibc-devel + djbfft-devel + + + a52dec-0.7.4-build.patch + use-djbfft.patch + constant.patch + + multimedia/sound/a52dec/pspec.xml + + + a52dec + + djbfft + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + a52dec-devel + Development files for a52dec + a52dec için geliştirme dosyaları + + a52dec + + + /usr/include + + + + + 2014-05-20 + 0.7.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 0.7.4 + some fixes and rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-12 + 0.7.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libmpcdec + http://www.musepack.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.sound + Portable Musepack decoder library + Musepack SV7 kodlama kitaplığı + Librairie de décodage portable Musepack. + Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be able to hear differences between the original wave file and the much smaller MPC file. It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed and vastly improved and is now at an advanced stage in which it contains heavily optimized and patentless code. + libmpcdec, taşınabilir bir Musepack kodlama kitaplığıdır. + http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2 + multimedia/sound/libmpcdec/pspec.xml + + + libmpcdec + + /usr/lib + + + + libmpcdec-devel + Development files for libmpcdec + libmpcdec için geliştirme dosyaları + + libmpcdec + + + /usr/include + + + + + 2014-05-20 + 1.2.6 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 1.2.6 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.2.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + jack-audio-connection-kit + http://jackaudio.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + service + multimedia.sound + A low-latency audio server + Düşük gecikmeli bir ses sunucu + JACK is a low-latency audio server written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. + GNU/Linux gibi POSIX uyumlu işletim sistemleri için yazılmış, düşük gecikmeli bir ses sunucudur. Bir çok sayıdaki uygulamayı bir ses aygıtına bağlayıp aralarında ses alışverişi yapmaya olanak sağlamaktadır. + https://dl.dropboxusercontent.com/u/28869550/jack-1.9.10.tar.bz2 + + libsamplerate-devel + alsa-lib-devel + libffado-devel + celt-devel + pkgconfig + eigen3 + libopus-devel + doxygen + libfreebob-devel + libsndfile-devel + readline-devel + + multimedia/sound/jack-audio-connection-kit/pspec.xml + + + jack-audio-connection-kit + + alsa-lib + libsamplerate + libsndfile + libffado + readline + libgcc + celt + libopus + + + /etc/security + /usr/bin + /usr/lib + /usr/share/jack-audio-connection-kit + /usr/share/dbus-1 + /usr/share/doc + + + 99-jack.conf + 40-hpet-permissions.rules + 99-audio.conf + + + + jack-audio-connection-kit-devel + Development files for jack-audio-connection-kit + jack-audio-connection-kit için geliştirme dosyaları + + jack-audio-connection-kit + + + /usr/include + /usr/lib/pkgconfig + + + + jack-audio-connection-kit-docs + Help files and API documents for jack-audio-connection-kit + jack-audio-connection-kit için yardım dosyaları ve API belgeleri + + jack-audio-connection-kit + + + /usr/share/jack-audio-connection-kit/reference + /usr/share/man + + + + + 2015-08-24 + 1.9.10 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + + + + pulseaudio + http://pulseaudio.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + GPLv2 + BSD + app:console + library + multimedia.sound + A networked sound server with an advanced plugin system + Gelişmiş eklenti desteğine sahip ağ temelli bir ses sunucusu + pulseaudio is a sound server for POSIX and Win32 systems. It allows you to do advanced operations on your sound data as it passes between your application and your hardware. + pulseaudio, POSIX ve Win32 sistemler için tasarlanmış, donanım ve uygulamalar arasında gezinen ses verilerinin üzerinde gelişmiş işlemler yapılmasına olanak sağlayan bir ses sunucusudur. + http://freedesktop.org/software/pulseaudio/releases/pulseaudio-6.0.tar.xz + + orc-devel + sbc-devel + fftw3-devel + doxygen + xcb-proto + gtk2-devel + avahi-devel + speex-devel + libSM-devel + libtdb-devel + libICE-devel + libXtst-devel + xcb-util-devel + alsa-lib-devel + libsndfile-devel + libasyncns-devel + libatomic_ops-devel + eudev-devel + dbus-devel + intltool + libcap-devel + json-c-devel + + multimedia/sound/pulseaudio/pspec.xml + + + pulseaudio-libs + Libraries for PulseAudio clients + PulseAudio istemci kitaplığı + + dbus + glib2 + json-c + libX11 + libtdb + libxcb + eudev + libtool-ltdl + orc + sbc + fftw3 + libSM + speex + libICE + libXtst + alsa-lib + avahi-libs + libasyncns + libsndfile + bluez + + + /usr/bin/pa* + /etc/pulse/client.conf + /usr/lib/libpulse.so + /usr/lib/libpulse.so* + /usr/lib/libpulse-simple.so + /usr/lib/libpulse-simple.so* + /usr/lib/pulseaudio/libpulsecommon-* + /usr/lib/libpulse-mainloop-glib.so + /usr/lib/libpulse-mainloop-glib.so* + /usr/lib/pulseaudio/libpulsedsp.* + /usr/lib/pulse/modules + /usr/lib/udev/rules.d + /usr/lib/libpulsecore-*.so + + + + pulseaudio-libs-devel + Development files for pulseaudio-libs + pulseaudio-libs için geliştirme dosyaları + + pulseaudio-libs + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/vala/vapi + /usr/lib/cmake/PulseAudio + + + + pulseaudio-docs + doxygen generated API documentation for PulseAudio + Doxygen tarafından üretilmiş PulseAudio API belgeleri + + /usr/share/doc/pulseaudio/html + + + + pulseaudio + + dbus + libcap + libtool-ltdl + pulseaudio-libs + + + /usr/bin/pulseaudio + /usr/bin/qpaeq + /usr/bin/start-pulseaudio-kde + /usr/bin/esdcompat + /usr/bin/start-pulseaudio-x11 + /usr/lib/pm-utils/sleep.d + /usr/libexec + /usr/lib/pulse-5.0/modules + /etc + /usr/lib/tmpfiles.d/pulseaudio.conf + /lib/udev/rules.d + /usr/share/pulseaudio/alsa-mixer + /usr/share + /usr/share/icons + /var/lib/pulse + /run/pulse + + + System.Package + + + pulseaudio.conf + pisilinux/pulseaudio.sysconfig + mandriva/pulseaudio.svg + mandriva/pulseaudio.svg + mandriva/pulseaudio16.png + mandriva/pulseaudio22.png + mandriva/pulseaudio32.png + mandriva/pulseaudio48.png + mandriva/pulseaudio64.png + mandriva/pulseaudio128.png + mandriva/pulseaudio16.png + mandriva/pulseaudio22.png + mandriva/pulseaudio32.png + mandriva/pulseaudio48.png + mandriva/pulseaudio64.png + mandriva/pulseaudio128.png + + + + pulseaudio-libs-32bit + 32-bit shared libraries for pulseaudio-libs + pulseaudio-libs için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + json-c-32bit + dbus-32bit + glib2-32bit + speex-32bit + libcap-32bit + libsndfile-32bit + libtool-ltdl-32bit + glibc-32bit + + + pulseaudio-libs + dbus-32bit + glib2-32bit + libsndfile-32bit + json-c-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-02-20 + 6.0 + Version bump. Dep fixed + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-07-25 + 5.0 + Rebuild for smplayer + Vedat Demir + vedat@pisilinux.org + + + 2014-05-12 + 5.0 + version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-14 + 4.0 + add git version + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-11 + 4.0 + Add tmpfiles.con; add updates from git. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 4.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-16 + 3.99 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-12-18 + 3.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + fluidsynth + http://fluidsynth.resonance.org/trac + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + multimedia.sound + A realtime software synthesizer + Gerçek zamanlı bir yazılım birleştirici + FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications. + FluidSynth, SoundFort 2 özelliklerine sahip gerçek zamanlı bir yazılım bireştiricidir. + mirrors://sourceforge/fluidsynth/fluidsynth-1.1.6/fluidsynth-1.1.6.tar.bz2 + + lash-devel + alsa-lib-devel + ladspa-sdk-devel + libsndfile-devel + pulseaudio-libs-devel + jack-audio-connection-kit-devel + + multimedia/sound/fluidsynth/pspec.xml + + + fluidsynth + + lash + dbus + glib2 + readline + alsa-lib + ladspa-sdk + libsndfile + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + fluidsynth-devel + Development files for fluidsynth + fluidsynth için geliştirme dosyaları + + fluidsynth + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-26 + 1.1.6 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-24 + 1.1.6 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 1.1.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + lame + http://lame.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + A free MP3 encoder/decoder + MP3 ses çözümleme kütüphanesi + LAME is an MPEG Audio Layer III (MP3) encoder licensed under the LGPL. + Lame, Kısıtlı Genel Kamu lisansı altında lisanslanmış MPEG III(MP3) kod çözücüsüdür. + mirrors://sourceforge/lame/lame-3.99.5.tar.gz + + ncurses-devel + + multimedia/sound/lame/pspec.xml + + + lame + + ncurses + + + /usr/bin + /usr/lib + /usr/share/man + + + + lame-docs + + /usr/share/doc + + + + lame-devel + Development files for lame + lame için geliştirme dosyaları + + lame + + + /usr/include + /usr/share/man/man3 + + + + + 2014-12-14 + 3.99.5 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-21 + 3.99.5 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-29 + 3.99.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-31 + 3.99.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libmad + http://mad.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Librairie de "D"écompression "A"udio "M"peg ("M"peg "A"udio "D"ecoder") + "M"peg "A"udio "D"ecoder library + Yüksek kaliteli MPEG ses çözücü kütüphanesi + libmad is an audio decoder library for MPEG based content. + libmad MPEG tabanlı ses çözüm kitaplığıdır. + mirrors://sourceforge/mad/libmad-0.15.1b.tar.gz + + amd64-64bit.diff + libmad-0.15.1b-cflags-O2.patch + libmad-0.15.1b-cflags.patch + + multimedia/sound/libmad/pspec.xml + + + libmad + + /usr/lib + /usr/share/doc + + + + libmad-devel + Development files for libmad + libmad için geliştirme dosyaları + + libmad + + + /usr/include + /usr/lib/pkgconfig + + + mad.pc + + + + + 2014-05-20 + 0.15.1b + Rebuild, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 0.15.1b + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 0.15.1b + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + faad2 + http://www.audiocoding.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.sound + MPEG2 and MPEG4 AAC decoder + AAC yorumlayıcı + FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. + FAAD2 bir HE, LC, MAIN ve LTP profil, MPEG2 ve MPEG4 AAC çözücüdür. + mirrors://sourceforge/faac/faad2-2.7.tar.bz2 + + faad2-2.7-libmp4ff-shared-lib.patch + faad2-2.7-man1_MANS.patch + faad2-2.7-libmp4ff-install-mp4ff_int_types_h.patch + + multimedia/sound/faad2/pspec.xml + + + faad2 + + /usr/bin + /usr/lib + /usr/share/doc/faad2 + /usr/share/man + + + + faad2-devel + Development files for faad2 + faad2 için geliştirme dosyaları + + faad2 + + + /usr/include + + + + + 2014-05-20 + 2.7 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-23 + 2.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.7 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + portaudio + http://www.portaudio.com + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.sound + Portable audio library + Ses kütüphanesi + Une API audio multi-plateforme libre. + PortAudio is a free, cross platform, open-source, audio I/O library. + Birden çok platformda kullanılabilinen açıkkodlu ses kütüphanesi + http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz + + alsa-lib-devel + jack-audio-connection-kit-devel + + multimedia/sound/portaudio/pspec.xml + + + portaudio + + alsa-lib + jack-audio-connection-kit + + + /usr/lib + /usr/share/doc + + + + portaudio-devel + Development files for portaudio + portaudio için geliştirme dosyaları + + portaudio + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/portaudio/html + + + + + 2015-11-21 + 19.20140130 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-06-01 + 19.20140130 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-05 + 19.20140130 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-08-29 + 19 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + gsm + http://kbs.cs.tu-berlin.de/~jutta/toast.html + + PisiLinux Community + admins@pisilinux.org + + OSI-Approved + library + multimedia.sound + Lossy speech compression library and tool + Kayıplı ses sıkıştırması kitaplığı ve araçları + Gsm est une implémentation du brouillon final du standard GSM 06.10 pour un transcodage audio à plein régime. + Gsm is an implementation of the final draft GSM 06.10 standard for full-rate speech transcoding + GSM, tam oranlı konuşma kod çevrimi için GSM 06.10 standardı son taslak uyarlamasıdır + Gsm es una implementación del estándar GSM 06.10 final draft de codificación de voz full-rate + http://osxwinebuilder.googlecode.com/files/gsm-1.0.13.tar.gz + + gsm-1.0.10-dyn.patch + gsm-1.0-pl10-includes.patch + gsm-1.0-pl10-shared.diff + gsm-1.0-pl10-add-includefile.patch + pardusflags.patch + gsm-1.0.12-64bit.patch + + multimedia/sound/gsm/pspec.xml + + + gsm + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + gsm-devel + Development files for gsm + gsm için geliştirme dosyaları + + gsm + + + /usr/include + /usr/share/man/man3 + + + + gsm-32bit + 32-bit shared libraries for gsm + gsm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + gsm + glibc-32bit + + + /usr/lib32 + + + + + 2014-12-14 + 1.0.13 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-21 + 1.0.13 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-23 + 1.0.13 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2011-05-04 + 1.0.13 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + deadbeef + http://deadbeef.sourceforge.net + + PisiLİnux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.sound + Audio player for GNU/Linux systems with X11 + X1 ile GNU / Linux sistemleri için ses çalar + Lkki i przejrzysty odtwarzacz plików muzycznych + DeaDBeeF (as in 0xDEADBEEF) is an audio player for GNU/Linux systems with X11 (though now it also runs in plain console without X, in FreeBSD, and in OpenSolaris). + DeaDBeeF (0xDEADBEEF gibi) X11 ile GNU / Linux sistemleri (şimdi olsa da FreeBSD, X olmaksızın düz konsolda çalışır ve OpenSolaris) için bir ses oynatıcısıdır. + DeaDBeeF Program pozwala odtwarzać najpopularniejsze formaty muzyki, a także płyty Audio-CD i strumienie audio emitowane za pośrednictwem Internetu. Jego ogromną zaletą jest prostota, dopracowanie oraz minimalne zapotrzebowanie na zasoby systemowe. + deadbeef + https://github.com/Alexey-Yakovenko/deadbeef/archive/0.6.2.tar.gz + + atk-devel + gtk2-devel + gtk3-devel + flac-devel + faad2-devel + cairo-devel + pango-devel + ffmpeg-devel + libmad-devel + libzip-devel + imlib2-devel + wavpack-devel + libcddb-devel + alsa-lib-devel + libvorbis-devel + libsndfile-devel + cdparanoia-devel + gdk-pixbuf-devel + libsamplerate-devel + pulseaudio-libs-devel + libcdio-devel + curl-devel + dbus-devel + zlib-devel + glib2-devel + libX11-devel + intltool + + + plugins_vfs_zip_vfs_zip_c.patch + + multimedia/sound/deadbeef/pspec.xml + + + deadbeef + + atk + gtk2 + gtk3 + flac + faad2 + cairo + pango + ffmpeg + libmad + libzip + imlib2 + wavpack + libcddb + alsa-lib + libvorbis + cdparanoia + libogg + libsndfile + gdk-pixbuf + libsamplerate + pulseaudio-libs + libcdio + curl + dbus + zlib + glib2 + libgcc + libX11 + + + /usr/bin + /usr/include + /usr/lib/deadbeef + /usr/share/applications + /usr/share/deadbeef + /usr/share/doc/deadbeef + /usr/share/icons/hicolor/*/apps + /usr/share/locale + + + + + 2015-12-25 + 0.6.2 + Rebuild + Stefan Gronewold + groni@pisilinux.org + + + 2014-12-14 + 0.6.2_2014.12.14 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-11-12 + 0.6.2_2014.11.12 + Version bump from git source + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-28 + 0.6.2 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2014-06-04 + 0.6.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-04 + 0.6.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-29 + 0.5.6 + missing dep. + Erdinç gültekin + erdincgultekin@pisilinux.org + + + 2013-07-08 + 0.5.6 + Rebuild for new libcdio + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-09 + 0.5.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + sox + http://sox.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + The swiss army knife of sound processing programs + Bir çok ses formatını birbirine dönüştürebilen, çalabilen ve kaydedebilen bir yazılım + SoX is a command line utility that can convert various audio formats to other formats. It can also apply various effects to these sound files during the conversion. SoX can also play and record audio files. + SoX çeşitli ses dosyası formatlarını birbirine çevirebilen bir konsol aracıdır. Sox ayrıca bu çevirme esnasında ses dosyalarına çeşitli efektler uygulayabilir. Bunların yanı sıra ses kaydı yapabilir ve ses dosyalarını oynatabilir. + mirrors://sourceforge/sox/sox-14.4.2.tar.bz2 + + pulseaudio-libs-devel + opencore-amr-devel + libsndfile-devel + ladspa-sdk-devel + libid3tag-devel + libvorbis-devel + alsa-lib-devel + wavpack-devel + libmad-devel + ffmpeg-devel + libogg-devel + libao-devel + lame-devel + gsm-devel + twolame-devel + libgomp + + + sox-dynamic.patch + + multimedia/sound/sox/pspec.xml + + + sox + + gsm + file + lame + libao + libmad + libogg + libgomp + twolame + wavpack + alsa-lib + libvorbis + libsndfile + libtool-ltdl + opencore-amr + pulseaudio-libs + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/lib + + + + sox-devel + Development files for sox + sox için geliştirme dosyaları + + sox + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-11-17 + 14.4.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-02-21 + 14.4.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-02-11 + 14.4.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-26 + 14.4.1 + rebuild for ffmpeg + Kamil Atlı + suvarice@gmail.com + + + 2013-08-29 + 14.4.1 + missing dep. version bump + Erdinç gültekin + erdincgultekin@pisilinux.org + + + 2012-08-28 + 14.4.0 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + mpg123 + http://www.mpg123.de/ PisiLinux Community admins@pisilinux.org GPLv2 LGPLv2 - library - desktop.gnome.base - GNOME CORBA framework - GNOME CORBA geliştirme ortamı - Bonobo is a component system based on CORBA, used by the GNOME desktop. - mirrors://gnome/libbonobo/2.32/libbonobo-2.32.1.tar.bz2 + app:console + multimedia.sound + Console MP3 player + Gerçek zamanlı bir mp3 oynatıcı + mpg123 is a fast and free console MP3 player. It does not require high system resources, it can even run in a 100MHz computer. + mpg123 düşük konfigürasyonlu sistemlerde de rahatlıkla çalışabilen hızlı bir mp3 oynatıcısıdır. + mirrors://sourceforge/mpg123/mpg123-1.22.4.tar.bz2 - orbit2-devel - glib2-devel - libxml2-devel - flex - grep - popt-devel - intltool - perl - gettext-devel - gtk-doc + alsa-lib-devel - - libbonobo-2.32.1-srcdir-macro.patch - libbonobo-multishlib.patch - - desktop/gnome/base/libbonobo/pspec.xml + multimedia/sound/mpg123/pspec.xml - libbonobo + mpg123 - orbit2 - glib2 - libxml2 + alsa-lib + libtool-ltdl - /etc /usr/bin - /usr/sbin - /usr/libexec /usr/lib - /usr/share/man - /usr/share/locale /usr/share/doc - /usr/share/idl + /usr/share/man - libbonobo-devel - Development files for libbonobo - libbonobo için geliştirme dosyaları + mpg123-devel + Development files for mpg123 + mpg123 için geliştirme dosyaları - libbonobo - orbit2-devel - glib2-devel + mpg123 - /usr/lib/pkgconfig /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig - libbonobo-docs - Bonobo referance documents - data:doc + mpg123-32bit + 32-bit shared libraries for mpg123 + mpg123 için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + alsa-lib-32bit + + + mpg123 + glibc-32bit + - /usr/share/gtk-doc + /usr/lib32 + + 2015-11-13 + 1.22.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + - 2014-05-24 - 2.32.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + 2014-12-03 + 1.21.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-10-29 - 2.32.1 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-25 + 1.19.0 + Version bump + Kamil Atlı + suvarice@gmail.com - 2013-08-02 - 2.32.1 - Rebuild for RC. - Serdar Soytetir - kaptan@pisilinux.org + 2014-01-08 + 1.17.0 + Version bump + Richard de Bruin + richdb@pisilinux.org - 2013-03-30 - 2.32.1 + 2013-07-06 + 1.15.4 Version bump. Marcin Bojara marcin@pisilinux.org - 2010-10-18 - 2.32.0 + 2012-08-31 + 1.14.4 First release - Burak Çalışkan + Fatih Turgel admins@pisilinux.org - kcharselect - http://utils.kde.org/projects/kcharselect + openal + http://kcat.strangesoft.net/openal.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.sound + Open Audio Library is a vendor-neutral API for interactive spatialized audio + Açık ses kütüphanesi + OpenAL est une API audio 3D multi-plateforme utilisable pour les jeux et beaucoup d'autre types d'application audio. Les objets de base d'OpenAL sont le Listener (auditeur), a Source (source), et le Buffer (tampon). + OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. The basic OpenAL objects are a Listener, a Source, and a Buffer. + OpenAL, oyun uygulamaları ve diğer birçok audio uygulama tipleriyle kullanılmaya tahsisli bir üç boyutlu audio API(Uygulama Programlama Arayüzü) çapraz platformudur. + http://kcat.strangesoft.net/openal-releases/openal-soft-1.15.1.tar.bz2 + + alsa-lib-devel + pulseaudio-libs-devel + cmake + + + pthread.patch + no-fpuextended.patch + + multimedia/sound/openal/pspec.xml + + + openal + + alsa-lib + + + /usr/bin + /usr/lib + /usr/share/doc/openal + /usr/share/openal + + + + openal-devel + Development files for openal + openal için geliştirme dosyaları + + openal + pulseaudio + + + /usr/include + /usr/lib/pkgconfig/openal.pc + /usr/lib32/pkgconfig/openal.pc + + + + openal-32bit + 32-bit shared libraries for openal + openal için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + openal + + + /usr/lib32 + + + + + 2014-05-25 + 1.15.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 1.15.1 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-08-31 + 1.14 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + celt + http://www.celt-codec.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + multimedia.sound + An audio codec for use in low-delay speech and audio communication + Düşük gecikmeli konuşma ve ses iletişimde kullanılmak üzere tasarlanan ses kodeği + CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). + CELT (Constrained Energy Lapped Transform) yüksek kalitede konuşma ve ses görüşmesinin gerçek zamanlı iletiminde kullanılmak üzere tasarlanmış bir ses kodeğidir. + http://downloads.us.xiph.org/releases/celt/celt-0.11.3.tar.gz + + libogg-devel + + multimedia/sound/celt/pspec.xml + + + celt + app:console + library + + libogg + + + /usr/bin + /usr/lib + /usr/share/doc + + + + celt-devel + Development files for celt + celt için geliştirme dosyaları + library + + celt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-12-15 + 0.11.3 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-21 + 0.11.3 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-20 + 0.11.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-17 + 0.11.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libsamplerate + http://www.mega-nerd.com/SRC/ PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - desktop.kde.utils - A character selector - Bir karakter seçici - KCharSelect is a tool to select special characters from all installed fonts and copy them into the clipboard. - KCharSelect, tüm yüklü yazı tiplerinden özel karakterleri seçmek ve bunları panoya yapıştırmak için bir araçtır. - kcharselect - mirrors://kde/stable/applications/15.12.0/src/kcharselect-15.12.0.tar.xz + app:console + multimedia.sound + Secret Rabbit Code (alias libsamplerate) est un convertisseur audio de taux de Sample (Sample Rate Converter). + Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio + libsamplerate ses dosyaları için basit bir örnekleme oranı dönüştürücü + Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects. + libsamplerate (Seceret Rabbit Code) ses dosyaları için basit bir örnekleme oranı dönüştürücüsüdür. Zaman ya da tercih edilen başka bir yapıya bağlı olarak 12 kata kadar dönüşüm yapabilir. Örnekleme oranı değiştirebildiği gibi hızlandırma ve yavaşlatma filtreleri de uygulayabilir. + http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz - qt5-base-devel - kdoctools-devel - cmake - extra-cmake-modules - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - mesa-devel + libsndfile-devel - desktop/kde/utils/kcharselect/pspec.xml + + dontbuild-tests-examples.patch + + multimedia/sound/libsamplerate/pspec.xml - kcharselect + libsamplerate - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kcoreaddons - kconfigwidgets - kwidgetsaddons + libsndfile - /usr/share/doc /usr/bin - /usr/share + /usr/lib + /usr/share/doc + + + + libsamplerate-devel + Development files for libsamplerate + libsamplerate için geliştirme dosyaları + libsamplerate için geliştirme dosyaları + + libsamplerate + + + /usr/include + /usr/lib/pkgconfig - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-25 + 0.1.8 + Rebuild + Alihan Öztürk + alihan@pisilinux.org - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-02-01 + 0.1.8 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2014-08-20 - 15.08.0 + 2011-10-17 + 0.1.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + sayonara + http://sayonara.luciocarreras.de/index.html + + Pisi Linux Community + admins@pisilinux.org + + GPLv3 + app:gui + multimedia.sound + Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. + Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. + Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. + Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. + sayonara + http://sayonara-player.com/sw/sayonara-player-r195.tar.gz + + qt5-base-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + qt5-linguist + gstreamer-next-devel + taglib-devel + libnotify-devel + gst-plugins-bad-devel + gst-plugins-base-devel + gst-plugins-ugly-next + glib2-devel + cmake + gstreamer-next-devel + gst-plugins-base-next-devel + + multimedia/sound/sayonara/pspec.xml + + + sayonara + + qt5-base + gst-plugins-bad + gst-plugins-base-next + gst-plugins-good-next + gst-plugins-ugly-next + gstreamer + taglib + libnotify + glib2 + libgcc + gstreamer-next + gst-plugins-base-next + + + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/pixmaps + /usr/share/applications + /usr/share/doc + + + sayonara.desktop + sayonara.png + + + + + 2015-10-11 + 0.7.1 + Version Bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-09-26 + 0.7.0 First Release. - Stefan Gronewold (groni) + Stefan Gronewold(groni) groni@pisilinux.org - kwalletmanager - http://kde.org/applications/system/kwalletmanager + qmmp + http://qmmp.ylsoftware.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + multimedia.sound + An audio-player, written with Qt5 library + Qt tabanlı müzik oynatıcı + Qmmp is an audio-player, written with Qt5 library. It's similar to Winamp or Xmms. Also supports Xmms and Winamp skins. qmmp-skins package in Contrib repository is recommended, too. + Qmmp Qt tabanlı bir müzik oynatıcısıdır. Xmms ve Winamp temalarını destekler. Ayrıca Contrib deposunda bulunan ve Pisi Linux'a özel temalar da içeren qmmp-skins paketini de kurmanız önerilir. + qmmp + http://qmmp.ylsoftware.com/files/qmmp-1.0.1.tar.bz2 + + qt5-base-devel + libX11-devel + qt5-x11extras-devel + qt5-linguist + libsamplerate-devel + wavpack-devel + flac-devel + faad2-devel + libmodplug-devel + libmms-devel + libcdio-devel + libvorbis-devel + libsndfile-devel + pulseaudio-libs-devel + alsa-lib-devel + mesa-devel + libmad-devel + taglib-devel + ffmpeg-devel + libmpcdec-devel + libcddb-devel + cmake + + multimedia/sound/qmmp/pspec.xml + + + qmmp + + qt5-base + curl + libX11 + libgcc + qt5-x11extras + libsamplerate + wavpack + flac + faad2 + libmodplug + libmms + libvorbis + libsndfile + pulseaudio-libs + alsa-lib + libmad + taglib + ffmpeg + jack-audio-connection-kit + libmpcdec + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + qmmp-devel + qmmp development files + qmmp için geliştirme dosyaları + + qmmp + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/ + + + + + 2015-11-19 + 1.0.1 + Version bump ported to qt5. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-11 + 0.8.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-25 + 0.8.2 + Rebuild for ffmpeg + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-17 + 0.8.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2014-07-06 + 0.8.0 + Version bump + Nikolay Semenov + tribunal@pisilinux.org + + + 2014-06-04 + 0.7.7 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-30 + 0.7.3 + Rebuild for ffmpeg. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-10-19 + 0.7.3 + Version Bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-08-30 + 0.7.2 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-29 + 0.7.1 + missing dep. + Erdinç gültekin + erdincgultekin@pisilinux.org + + + 2013-07-27 + 0.7.1 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-08 + 0.7.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-01 + 0.6.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + twolame + http://www.twolame.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.sound + An optimised MPEG Audio Layer 2 + Optimize edilmiş bir MPEG Ses katman 2 çözücüsü + TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME. + TwoLame Mike Cheng'in tooLAME'ni taban olarak alan LAME'in ISO dist10 kodları ve parçaları üzerinde optimize edilmiş bir MPEG Ses Katman 2 çözücüsüdür. + mirrors://sourceforge/twolame/twolame-0.3.13.tar.gz + + libsndfile-devel + + multimedia/sound/twolame/pspec.xml + + + twolame + + libsndfile + + + /usr/bin + /usr/lib + /usr/share/doc/twolame + /usr/share/man + + + + twolame-devel + Development files for twolame + twolame için geliştirme dosyaları + + twolame + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/twolame/html + + + + + 2014-05-25 + 0.3.13 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-02-17 + 0.3.13 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-26 + 0.3.13 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-28 + 0.3.13 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + libcanberra + http://0pointer.de/lennart/projects/libcanberra/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + A library for generating event sounds on free desktops + Masaüstü üzerinde bildirim sesleri üretmek için kütüphane + libcanberra is an implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops, such as GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer, null) and is designed to be portable. + libcanberra, çeşitli arka uç (ALSA, PulseAudio, GStreamer, null) destekleri olan, XDG Ses Teması ve İsimlendirme standartlarına uygun, bildirim sesi çalma kütüphanesidir. + http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.30.tar.xz + + libogg-devel + pulseaudio-libs-devel + gstreamer-devel + libvorbis-devel + alsa-lib-devel + glib2-devel + gtk2-devel + gtk3-devel + at-spi2-core-devel + eudev-devel + atk-devel + cairo-devel + pango-devel + libogg-devel + libtdb-devel + libvorbis-devel + fontconfig-devel + gstreamer-next-devel + + + fix-pthread.patch + fix-underlinking.patch + + multimedia/sound/libcanberra/pspec.xml + + + libcanberra + + libtdb + libtool-ltdl + glib2 + alsa-lib + libvorbis + pulseaudio-libs + gstreamer-next + + + /usr/lib + /usr/share/doc + /usr/share/gdm + /usr/share/gnome/ + + + + libcanberra-devel + Development files for libcanberra + libcanberra için geliştirme dosyaları + + libcanberra + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + + + + libcanberra-gtk + GTK+ convenience API and utilities for libcanberra + GTK+ için libcanberra araçları ve programlama kitaplığı + + libcanberra + gtk2 + glib2 + libX11 + + + /usr/lib/gtk-2* + /usr/lib/libcanberra-gtk.so* + + + + libcanberra-gtk-devel + Development files for libcanberra-gtk + + libcanberra + libcanberra-devel + gtk2-devel + + + /usr/include/canberra-gtk.h + /usr/lib/pkgconfig/libcanberra-gtk.pc + /usr/share/vala/vapi/libcanberra-gtk.vapi + + + + libcanberra-gtk3-devel + Development files for libcanberra-gtk + + libcanberra-gtk-devel + gtk3-devel + + + /usr/lib/pkgconfig/libcanberra-gtk3.pc + + + + libcanberra-gtk3 + GTK+ convenience API and utilities for libcanberra + + gtk3 + glib2 + eudev + libX11 + libcanberra + + + /usr/lib/gtk-3* + /usr/lib/libcanberra-gtk3* + /usr/share/doc/libcanberra-gtk3 + /usr/bin/canberra-boot + /usr/bin/canberra-gtk-play + + + + + 2015-08-03 + 0.30 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-15 + 0.30 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-07 + 0.29 + Split Package + Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-17 + 0.29 + Release Bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 0.29 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-31 + 0.29 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + audiofile + http://www.68k.org/~michael/audiofile/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.sound + An elegant API for accessing audio files + Ses dosyalarına erişim için zarif bir UPA + audiofile provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. + audiofile; AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX ve NIST SPHERE gibi çeşitli ses dosyası biçimlerine erişim için düzenli ve gelişmiş bir uygulama programlama arayüzü sağlar. + http://audiofile.68k.org/audiofile-0.3.6.tar.gz + + alsa-lib-devel + flac-devel + + multimedia/sound/audiofile/pspec.xml + + + audiofile + + alsa-lib + flac + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + audiofile-devel + Development files for audiofile + audiofile için geliştirme dosyaları + + audiofile + + + /usr/bin/audiofile-config + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + audiofile-32bit + 32-bit shared libraries for audiofile + audiofile için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + alsa-lib-32bit + flac-32bit + glibc-32bit + + + alsa-lib-32bit + flac-32bit + audiofile + + + /usr/lib32 + + + + + 2014-05-20 + 0.3.4 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-18 + 0.3.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-01-14 + 0.3.4 + First release + Idris Kalp + admins@pisilinux.org + + + + + + libvorbis + http://www.vorbis.com + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.sound + Librairie de formatage de fichier son Ogg Vorbis libre. + The Vorbis general audio compression codec + Vorbis genel ses sıkıştırma kodlaması + libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel. + libvorbis tamamen açık, sahipsiz, genel amaçlı sıkıştırılmış ses biçimidir. + http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.xz + + libogg-devel + + multimedia/sound/libvorbis/pspec.xml + + + libvorbis + + libogg + + + /usr/lib + /usr/share/doc/libvorbis/AUTHORS + /usr/share/doc/libvorbis/README + + + + libvorbis-devel + + libvorbis + libogg-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/doc/libvorbis + + + + libvorbis-32bit + 32-bit shared libraries for libvorbis + libvorbis için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libogg-32bit + + + libvorbis + glibc-32bit + libogg-32bit + + + /usr/lib32 + + + + + 2014-05-20 + 1.3.4 + Rebuild, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 1.3.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-31 + 1.3.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + vorbis-tools + http://www.vorbis.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + multimedia.sound + Tools for using the Ogg Vorbis sound file format + Ogg Vorbis ses dosyaları için araçlar paketi. + This set of tools allow you to play and encode Ogg Vorbis files. + vorbis-tools Ogg Vorbis dosyaları oluşturabilmenize ve oynatabilmenize olanak tanır. + http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz + + libvorbis-devel + libao-devel + flac-devel + speex-devel + libogg-devel + libkate-devel + curl-devel + + multimedia/sound/vorbis-tools/pspec.xml + + + vorbis-tools + + libvorbis + libao + flac + speex + libogg + libkate + + + /usr/bin + /usr/share/doc + /usr/share/locale + /usr/share/man + + + + + 2014-01-28 + 1.4.0 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-12 + 1.4.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + faac + http://www.audiocoding.com/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + MPEG-4 audio codecs + Özgür MPEG-4 ses codecleri + Free MPEG-4 audio codecs by AudioCoding.com. + mirrors://sourceforge/faac/faac-1.28.tar.gz + + libmp4v2-devel + + + mp4v2-1.9.patch + mp4v2-2.0.0.patch + altivec.patch + + multimedia/sound/faac/pspec.xml + + + faac + + libmp4v2 + + + /usr/bin + /usr/lib + /usr/share/doc/faac + /usr/share/man + + + + faac-devel + Development files for faac + faac için geliştirme dosyaları + + faac + + + /usr/include + + + + + 2014-12-14 + 1.28 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-20 + 1.28 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-23 + 1.28 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.28 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libvisual + http://libvisual.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.sound + Abstraction library for audio visualisation plugins + Ses canlandırma eklentileri için kütüphane + Libvisual est une librairie d'abstraction venant entre les applications et les plugins (greffons) de visualisation audio. + libvisual is an abstraction library that comes between applications and audio visualisation plugins. + libvisual, uygulamalar ve ses canlandırma eklentileri arasında yer alan bir soyutlama kütüphanesidir. + Libvisual es una librería de abstracción que actúa entre aplicaciones y plugins con funciones audiovisuales. + mirrors://sourceforge/libvisual/libvisual-0.4.0.tar.bz2 + + disable_altivec.patch + libvisual-0.4.0-inlinedefineconflict.patch + + multimedia/sound/libvisual/pspec.xml + + + libvisual + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libvisual-32bit + 32-bit shared libraries for libvisual + emul32 + emul32 + + glibc-32bit + + + libvisual + glibc-32bit + + + /usr/lib32 + + + + libvisual-devel + Development files for libvisual + libvisual için geliştirme dosyaları + + libvisual + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man/man3 + + + + + 2014-05-20 + 0.4.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-14 + 0.4.0 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 0.4.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libmikmod + http://mikmod.raphnet.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.sound + A library to play a wide range of module formats + Bir çok modül formatını çalabilen bir kitaplık + libmikmod est une librairie son portable, qui était habituellement emballée avec le lecteur de module MikMod, mais qui est maintenant livrée de manière indépendante. Elle est capable de jouer des échantillons ainsi que des fichiers modules, utilisant aussi bien le pilote OSS, Alsa ou EsounD pour la sortie. Les formats de module gérés comprennent entre autres mod, s3m, xm, it, med, mtm et 669. + libmikmod is a portable sound library, which used to be packaged with the MikMod module player, but is now released independentely. It is capable of playing samples as well as module files, using the OSS driver for output, as well as Alsa and EsounD. Supported module format include mod, s3m, xm, it, med, mtm and 669, to name a few. + libmikmod, MikMod modül çalıcısı ile kullanmılması amacıyla paketlenmiş bir taşınabilir ses kitaplığıdır, fakat artık bağımsız olarak dağıtılmaktadır. Ses örneklerini ses çıkışı için OSS sürücünü kullanarak çalabildiği gibi, Alsa ve EsounD için de kullanmaktadır. Desteklenen modül kipleri mod, s3m, xm, it, med, mtm ve 669 gibi kiplerdir. + libmikmod es ina librería portable de sonido, que solía estar incluido con el MikMod module player, pero ahora fue lanzado independientemente. Es capaz de reproducir archivos de sonidos y de módulos, usando para la salida tanto un controlador OSS, como también Alsa y EsounD. Formatos de módulos soportados abarcan mod, s3m, xm, it, med, mtm and 669, para nombrar algunos. + http://sourceforge.net/projects/mikmod/files/libmikmod/3.3.7/libmikmod-3.3.7.tar.gz + + audiofile-devel + alsa-lib-devel + + multimedia/sound/libmikmod/pspec.xml + + + libmikmod + + pulseaudio-libs + + + /usr/lib + /usr/share/doc/libmikmod + /usr/share/info + /usr/share/man + + + + libmikmod-devel + Development files for libmikmod + libmikmod için geliştirme dosyaları + + libmikmod + + + /usr/bin/libmikmod-config + /usr/include + /usr/share/aclocal + + + + libmikmod-32bit + 32-bit shared libraries for libmikmod + libmikmod için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + audiofile-32bit + glibc-32bit + alsa-lib-32bit + pulseaudio-libs-32bit + + + libmikmod + audiofile-32bit + alsa-lib-32bit + pulseaudio-libs-32bit + + + /usr/lib32 + + + + + 2015-10-19 + 3.3.7 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-05-31 + 3.3.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 3.3.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-08-01 + 3.2.0_beta2 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + libdca + http://developers.videolan.org/libdca.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Library for decoding DTS Coherent Acoustics streams + libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane + libdts est une librairie libre pour décoder les flux DTS Coherent Acoustics. + libdts is a free library for decoding DTS Coherent Acoustics streams. + libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane + libdts es una librería libre para decodificar flujos acústicos coherentes DTS. + http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2 + + libdca-0.0.5-cflags.patch + libdca-0.0.5-constant.patch + + multimedia/sound/libdca/pspec.xml + + + libdca + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + libdca-devel + Development files for libdca + libdca için geliştirme dosyaları + + libdca + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.0.5 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 0.0.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.0.5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + soundtouch + http://www.surina.net/soundtouch + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + Audio Processing Library + Ses işleme kitaplığı + Librairie de traitement audio open-source (libre) pour changer le Tempo, le Pitch et la vitesse de lecture de flux audio ou de fichiers. + soundtouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or file. + soundtouch ses dosyalarının temposunu, oynatma hızını ve frekansını değiştirmek için kullanılabilen açık kaynaklı bir ses işleme kütüphanesidir. + Librería código libre para procesamiento de sonido para manipular Tempo, Pitch y Tasas de reproducción de flujos o archivos de audio + http://www.surina.net/soundtouch/soundtouch-1.8.0.tar.gz + multimedia/sound/soundtouch/pspec.xml + + + soundtouch + + /usr/bin + /usr/lib + /usr/share/doc + + + + soundtouch-devel + Development files for soundtouch + soundtouch için geliştirme dosyaları + + soundtouch + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2014-07-05 + 1.8.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 1.5.0 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2010-10-12 + 1.5.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libao + http://www.xiph.org/ao/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + La librairie de rendu (sortie) audio. + The audio output library + Ses çıktısı kütüphanesi + Libao is a cross platform audio output library. It currently supports ESD, OSS, Solaris, and IRIX. + http://downloads.xiph.org/releases/ao/libao-1.2.0.tar.gz + + alsa-lib-devel + pulseaudio-libs-devel + + multimedia/sound/libao/pspec.xml + + + libao + + alsa-lib + pulseaudio-libs + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + libao-devel + Development files for libao + libao için geliştirme dosyaları + + libao + + + /usr/include/ao + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/libao/html + + + + + 2014-05-26 + 1.2.0 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2014-02-25 + 1.1.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-14 + 1.1.0 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-08-31 + 1.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + wavpack + http://www.wavpack.com + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.sound + WavPack audio compression tools + WavPack ses sıkıştırma araçları. + WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. + WavPack, kayıpsız veya yüksek kaliteli kayıplı ve eşşsiz karışık sıkıştırma kipi sunan açık ses sıkıştırma biçimidir. + WavPack es un formato de compresión open audio con modos de compresión sin pérdida, de alta calidad con pérdida, y un modo híbrido. + http://www.wavpack.com/wavpack-4.75.0.tar.bz2 + multimedia/sound/wavpack/pspec.xml + + + wavpack + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + wavpack-devel + + wavpack + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-20 + 4.75.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-20 + 4.70.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-20 + 4.70.0 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2010-10-12 + 4.60.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + knowthelist + http://qt-apps.org/content/show.php/Knowthelist?content=165335 + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPLv3 + app:gui + multimedia.sound + Knowthelist the awesome party music player + Knowthelist the awesome party music player + Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) + Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) + knowthelist + https://github.com/knowthelist/knowthelist/archive/v2.3.0.tar.gz + + qt5-base-devel + qt5-xmlpatterns-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-linguist + glib2-devel + alsa-lib-devel + taglib-devel + gstreamer-next-devel + gst-plugins-bad-next-devel + gst-plugins-base-next-devel + + multimedia/sound/knowthelist/pspec.xml + + + knowthelist + + qt5-base + gstreamer-next + taglib + alsa-lib + glib2 + libgcc + + + /usr/bin + /usr/share + /usr/share/applications + /usr/share/icons + /usr/share/doc + + + + + 2015-11-11 + 2.3.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libpano13 + http://sourceforge.net/projects/panotools + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.misc + Library for manipulating panoramic images + Panoramik görüntü kitaplığı + libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs. + libpano13 panoramik görüntüleri yüksek kalitede düzeltip birleştirebilen bir kitaplıktır. + mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz + + zlib-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + + multimedia/misc/libpano13/pspec.xml + + + libpano13 + + tiff + libpng + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + libpano13-devel + Development files for libpano13 + libpano13 için geliştirme dosyaları + + libpano13 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-11-10 + 2.9.19 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-24 + 2.9.18 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-22 + 2.9.18 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 2.9.18 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-06-13 + 2.9.18 + First release + Ertuğrul Erata + admins@pisilinux.org + + + + + + libbluray + http://www.videolan.org/developers/libbluray.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.misc + Library to access Blu-Ray disks for video playback + Blu-Ray disklere ulaşmak için kitaplık + Libbluray package is aiming to provide a full portable free open source bluray library, which can be plugged into popular media players to allow full bluray navigation and playback on Linux. It will eventually be compatible with all current titles, and will be easily portable and embeddable in standard players such as mplayer and vlc. + Libbluray kitaplığı, Linux üzerinde bluray oynatmak için tam destek sağlayan, popüler çokluortam oynatıcılarına taşınabilir bir bağımsız açık kaynak bluray kitaplığı olma amacıyla ortaya çıkmıştır. Zaman içerisinde bütün güncel başlıklar ile uyumlu olması, kolay taşınabilmesi ve mplayer, vlc gibi standart oynatıcılara gömülebilir olması amaçlanmaktadır. + ftp://ftp.videolan.org/pub/videolan/libbluray/0.5.0/libbluray-0.5.0.tar.bz2 + + libxml2-devel + freetype-devel + + multimedia/misc/libbluray/pspec.xml + + + libbluray + + libxml2 + freetype + + + /usr/bin + /usr/lib + + + + libbluray-devel + Development files for libbluray + Libbluray için geliştirme dosyaları + + libbluray + + + /usr/include + /usr/lib/pkgconfig + + + + libbluray-docs + document files for libbluray + + libbluray + + + /usr/share/doc/ + + + + + 2014-05-20 + 0.5.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-03 + 0.5.0 + Rebuild for openjdk + PisiLinux Community + admins@pisilinux.org + + + 2014-02-23 + 0.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-06 + 0.3.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-11 + 0.2.3 + First release + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + + + + taglib + http://developer.kde.org/~wheeler/taglib.html + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv2 + library + multimedia.misc + A library for reading and editing audio meta data + Ses dosyalarının etiket bilgilerini okuma ve düzenleme kütüphanesi + TagLib est une librairie pour lire et éditer les méta-données de nombreux formats audio populaires. + TagLib is a library for reading and editing the meta data of several popular audio formats. + TagLib ses dosyalarının etiket bilgilerini okumak ve işlemek için kullanılan bir kütüphanedir. + http://taglib.github.io/releases/taglib-1.9.1.tar.gz + + cmake + zlib-devel + + multimedia/misc/taglib/pspec.xml + + + taglib + + zlib + libgcc + + + /usr/lib + /usr/bin + /usr/share/doc + + + + taglib-devel + Development files for taglib + taglib için geliştirme dosyaları + + taglib + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 1.9.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-24 + 1.9.1 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-22 + 1.8 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + orc + http://code.entropywave.com/projects/orc/ + + PisiLinux Community + admins@pisilinux.org + + BSD + BSD-2 + app:console + multimedia.misc + The Oil Runtime Compiler + Optimized Inner Loop Runtime Compiler + http://gstreamer.freedesktop.org/src/orc/orc-0.4.19.tar.gz + multimedia/misc/orc/pspec.xml + + + orc + + /usr/bin/ + /usr/lib/ + /usr/share/ + + + + orc-32bit + 32-bit shared libraries for orc + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + orc + + + /usr/lib32 + + + + orc-devel + orc için geliştirme dosyaları + orc için geliştirme dosyaları + + orc + + + /usr/include/ + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2014-05-20 + 0.4.19 + Version bump, fix version. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-24 + 4.18 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-02-14 + 4.16 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 4.16 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libass + http://code.google.com/p/libass/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + Subtitle rendering library + Altyazı çizim kitaplığı + libass is a portable subtitle rendering library for the ASS/SSA. + libass ASS/SSA altyazı çizim kitaplığıdır. + https://github.com/libass/libass/releases/download/0.11.2/libass-0.11.2.tar.xz + + fontconfig-devel + freetype-devel + fribidi-devel + + multimedia/misc/libass/pspec.xml + + + libass + + fontconfig + freetype + fribidi + + + /usr/lib + /usr/share/doc/libass + + + + libass-devel + Development files for libass + libass için geliştirme dosyaları + + libass + harfbuzz-devel + fontconfig-devel + freetype-devel + fribidi-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-22 + 0.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 0.10.1 + rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-07-07 + 0.10.1 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-25 + 0.10.1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + libdvdread + http://www.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + Provides a simple foundation for reading DVD-Video images + DVD videolarını okumak için basit bir kütüphane + Un lecteur DVD pour les environnements Solaris, Linux et BSD publié sous la licence publique GNU (GPL). Il gère les signets, les sauts dans le temps, les sorties audio sur plusieurs canaux, sortie SPDIF, le zoom et le crop (vision exclusive d'une zone) vidéo. Il gère également les menus DVD et la navigation, permet de lire depuis les DVD montés ou non montés, depuis un disque dur. Il peut lire les DVDs cryptés et non cryptés grâce à libdvdread/libdvdcss. + A DVD player for the Solaris, Linux and BSD environments released under the GNU Public License (GPL). It is includes bookmarks, time skipping, multichannel audio, SPDIF output, crop and zoom video. It supports DVD menus and navigation, reads from mounted, unmounted DVDs and hard drive and reads encrypted and unencrypted DVDs using libdvdread/libdvdcss. + GNU Public License (GPL) altındaki Solaris, Linux ve BSD ortamları için bir DVD oynatıcısıdır. Yerimi, zaman atlatma, çoklukanal ses çıktı, SPDIF çıktı, video kırpma ve büyütme özellikleri içerir. DVD menüleri ve dolaşma özelliğini destekler, bağlanmış (mount) ve bağlanmamış sabit diskleri okur ve libdvdread / libdvdcss kullanan şifreli ve şifresiz DVDleri oynatabilir. + DVD player para Solaris, Linux y BSD liberado bajo la licencia GNU Public License (GPL). incluye marcadores (bookmarks), time skipping, multichannel audio, salida SPDIF, video crop y zoom. soporta menús DVD y navegación, lee de DVDs y discos rígidos montados y no-montados y lee DVDs encriptados y no-encriptados usando libdvdread/libdvdcss. + http://download.videolan.org/pub/videolan/libdvdread/5.0.2/libdvdread-5.0.2.tar.bz2 + + libdvdcss-devel + git + + multimedia/misc/libdvdread/pspec.xml + + + libdvdread + + libdvdcss + glibc + + + /usr/lib + /usr/share/doc/libdvdread + + + + libdvdread-devel + Development files for libdvdread + libdvdread için geliştirme dosyaları + + libdvdread + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + + + + + 2015-01-31 + 5.0.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-28 + 5.0.1 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-29 + 5.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-24 + 4.9.9 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-03-08 + 4.2.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2010-10-12 + 0.0_20100819 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libebml + http://www.matroska.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie de format binaire extensible (un peu comme XML). + Extensible binary format library (kinda like XML) + Genişletilebilir ikilik biçimlendirme kütüphanesi + Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML. + http://dl.matroska.org/downloads/libebml/libebml-1.3.1.tar.bz2 + multimedia/misc/libebml/pspec.xml + + + libebml + + libgcc + + + /usr/lib + /usr/share/doc + + + + libebml-devel + Development files for libebml + libebml için geliştirme dosyaları + + libebml + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-08-20 + 1.3.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-24 + 1.3.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-16 + 1.3.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-07 + 1.2.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdvdnav + http://www.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + libdvdnav is a library for developers of multimedia applications + libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane + libdvdnav est une librairie pour les développeur d'applications multimédia. Elle permet l'utilisation de fonctionnalités sophistiquées de navigation DVD tels que les menus DVD, la lecture multi-angle et même des jeux interactifs DVD. + libdvdnav is a library for developers of multimedia applications. It allows easy use of sophisticated DVD navigation features such as DVD menus, multiangle playback and even interactive DVD games. + libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane. libdvdnav ile karmaşık DVD dolaşmalarını Örn: DVD menüleri, değişik açılı gösterimleri ve hatta etkileşimli DVD oyunlarını kullanabilirsiniz + libdvdnav es una librería para desarrollo de aplicaciones multimedia. Permite uso fácil de navegación avanzada en DVDs como en menús de DVDs, reproducción multi-ángulo, e incluso DVDs con juegos interactivos. + http://download.videolan.org/pub/videolan/libdvdnav/5.0.3/libdvdnav-5.0.3.tar.bz2 + + libdvdread-devel + + multimedia/misc/libdvdnav/pspec.xml + + + libdvdnav + + libdvdread + + + /usr/lib + /usr/share/doc/libdvdnav + + + + libdvdnav-devel + Development files for libdvdnav + libdvdnav için geliştirme dosyaları + + libdvdnav + libdvdread-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2015-01-31 + 5.0.3 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-28 + 5.0.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-29 + 5.0.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-24 + 4.2.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-08 + 4.2.0 + Rebuild. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-31 + 4.2.0 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-08 + 4.2.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2010-10-12 + 0.0_20100819 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libsdl + http://www.libsdl.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Simple Direct Media Layer (Couche Média Simple et Directe). + Simple Direct Media Layer + Basit bir direk ortam erişim katmanı + Einfachee direkte Medien-Schicht + libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. + libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. + http://www.libsdl.org/release/SDL-1.2.15.tar.gz + + DirectFB-devel + alsa-lib-devel + aalib-devel + libX11-devel + libusb-compat-devel + libXtst-devel + libICE-devel + libXrandr-devel + + + sdl-1.2.14-disable-mmx.patch + sdl_x11sym.patch + SDL-1.2.14-dont-propagate-lpthread.patch + SDL-1.2.14-noproc.patch + SDL-1.2.13-rh484362.patch + libsdl-1.2.15-sdl-config.patch + libsdl-1.2.15-resizing.patch + libsdl-1.2.15-joystick.patch + + multimedia/misc/libsdl/pspec.xml + + + libsdl-docs + libsdl reference documents + libsdl başvuru belgeleri + + libsdl + + + /usr/share/man + /usr/share/doc + + + + libsdl + + DirectFB + aalib + + + /usr/lib + + + + libsdl-devel + Development files for libsdl + libsdl için geliştirme dosyaları + + libsdl + DirectFB-devel + alsa-lib-devel + aalib-devel + libX11-devel + libusb-compat-devel + libXtst-devel + libICE-devel + libXrandr-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/lib/libSDLmain.a + /usr/share/aclocal + + + + libsdl-32bit + 32-bit shared libraries for libsdl + libsdl için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + libsdl + glibc-32bit + + + /usr/lib32 + + + + + 2015-12-30 + 1.2.15 + Rebuild, fix builddep. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-14 + 1.2.15 + rebuild for DirectFB. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 1.2.15 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libexif + http://libexif.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie pour analyser, éditer et sauvegarder des données EXIF. + Library for parsing, editing, and saving EXIF data + EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane + Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags. + mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2 + + doxygen + + + libexif-0.6.13-pkgconfig.patch + + multimedia/misc/libexif/pspec.xml + + + libexif + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libexif-devel + Development files for libexif + libexif için geliştirme dosyaları + + libexif + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/libexif/libexif-api.html + + + + + 2014-05-24 + 0.6.21 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-30 + 0.6.21 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 0.6.21 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libshout + http://www.icecast.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + multimedia.misc + A library for communicating with and sending data to an icecast server + Icecast sunucusuyla veri alış verişini sağlayan bir kütüphane + Libshout is a library for communicating with and sending data to an icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server. + Libshout, Icecast sunucusuyla iletişimi ve veri alış verişini sağlar. Verilerin zamanlamasını ve gerekli soket bağlantılarını kontrol ederek, sunucu üzerinde hatalı veri transferini önler. + http://downloads.us.xiph.org/releases/libshout/libshout-2.3.1.tar.gz + + libvorbis-devel + libogg-devel + libtheora-devel + speex-devel + + + pthread_flag.patch + + multimedia/misc/libshout/pspec.xml + + + libshout + + libvorbis + libogg + libtheora + speex + + + /usr/lib + /usr/share/doc + + + + libshout-devel + Development files for libshout + libshout için geliştirme dosyaları + + libshout + libtheora-devel + libvorbis-devel + libogg-devel + speex-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/*.c + + + + + 2014-05-25 + 2.3.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-20 + 2.3.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-31 + 2.3.1 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 2.3.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + openexr + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + library + multimedia.misc + A high dynamic-range (HDR) image file format library + OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible. + OpenEXR is a high dynamic-range (HDR) image file format for use in computer imaging applications. OpenEXR's features include: Higher dynamic range and color precision than existing 8- and 10-bit image file formats; support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels; multiple lossless image compression algorithms; extensibility. + OpenEXR, bilgisayar görüntüleme uygulamalarında kullanılan yüksek dinamik görüntü erimidir. OpenEXR özellikleri şunları içerir: Mevcut 8 ve 10 bitlik görüntü dosya formatlarından daha yüksek dinamik görüntü erişimi, 16 ya da 32 bit piksel desteği ve kayıpsız görüntü sıkıştırma algoritması + OpenEXR es un formato de archivo de imagen de alto fango dinámico (HDR) para uso en aplicaciones de computación de imágenes. OpenEXR contiene facilidades: rango dinámico y precisión de colores más alto que formatos existentes de 8- y 10-bit; soporta para punto flotante 16-bit, punto flotante 32-bit, y entero 32-bit pixels; algoritmos de compresión múltiple sin pérdida; extensible. + http://download.savannah.nongnu.org/releases/openexr/openexr-2.2.0.tar.gz + + ilmbase-devel + zlib-devel + mesa-glu-devel + + multimedia/misc/openexr/pspec.xml + + + openexr + + ilmbase + libgcc + openexr-libs + + + /usr/bin + + + + openexr-libs + OpenEXR runtime libraries + OpenEXR çalışma zamanı kitaplıkları + + ilmbase + zlib + libgcc + + + /usr/lib/lib* + /usr/share/doc + + + + openexr-docs + OpenEXR example files + OpenEXR örnek dosyalar + + /usr/share/doc/openexr/examples + + + + openexr-devel + Development files for openexr + OpenEXR için geliştirme dosyaları + + openexr + mesa-glu-devel + ilmbase-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2015-08-28 + 2.2.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 2.1.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-16 + 2.1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-12 + 1.7.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + exiv2 + http://www.exiv2.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.misc + Another library for parsing, editing, and saving EXIF data + EXIF verilerini ayrıştırmak, düzenlemek ve kaydetmek için bir diğer kitaplık + Exiv2 est une librairie C++ ainsi qu'un utilitaire en ligne de commande pour accéder aux méta-données d'images. Exiv2 est disponible en tant que logiciel libre ou avec une licence commerciale et est utilisée par un nombre croissant de projets. + exiv2 is a C++ library and a command line utility to access image metadata. Exiv2 is available as free software and with a commercial license, and is used in a growing number of projects. + Exiv2 resimlerin başlık bilgilerine ulaşmak için kullanılan bir C++ kütüphanesi ve komut satırı uygulamasıdır. Exiv2, hem özgür yazılım hem de ticari yazılım lisansıyla kullanılabilir. + Exiv2 es una librería C++ y una herramienta de línea de comandopara acceder metadatos de imágenes. Exiv2 está disponible como software libre y con licencia comercial, y se utiliza cada vez en más proyectos. + http://www.exiv2.org/exiv2-0.25.tar.gz + + zlib-devel + expat-devel + + + exiv2-0.18-deps.patch + + multimedia/misc/exiv2/pspec.xml + + + exiv2 + + exiv2-libs + + + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + exiv2-libs + + zlib + expat + libgcc + + + /usr/lib + + + + exiv2-devel + Development files for exiv2 + exiv2 için geliştirme dosyaları + + exiv2-libs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-02 + 0.25 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-23 + 0.24 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 0.23 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + sdl-image + http://www.libsdl.org/projects/SDL_image/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie SDL de chargement de fichier d'image. + SDL image file loading library + SDL resim yükleme kitaplığı + SDL_image is an image file loader for SDL. + SDL_image, SDL için resim yükleme kitaplığıdır. + http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz + + libsdl-devel + tiff-devel + libjpeg-turbo-devel + + + gif-overflow.patch + + multimedia/misc/sdl-image/pspec.xml + + + sdl-image + + libsdl + tiff + zlib + libpng + libjpeg-turbo + + + /usr/bin + /usr/lib/ + /usr/share/doc + + + + sdl-image-devel + Development files for sdl-image + sdl-image için geliştirme dosyaları + + sdl-image + libsdl-devel + tiff-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl-image-32bit + 32-bit shared libraries for sdl-image + sdl-image için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl-32bit + libpng-32bit + libjpeg-turbo-32bit + tiff-32bit + + + sdl-image + libsdl-32bit + libpng-32bit + libjpeg-turbo-32bit + tiff-32bit + zlib-32bit + glibc-32bit + + + /usr/lib32/ + + + + + 2014-05-31 + 1.2.12 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 1.2.12 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2012-08-29 + 1.2.12 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gd + http://www.libgd.org + + PisiLinux Community + admins@pisilinux.org + + as-is + BSD + library + multimedia.misc + Une librairie rapide pour créer des graphiques en images. + A fast library for creating graphic images + Hızlı bir şekilde resim oluşturmak için bir kütüphane + The gd graphics library allows your code to quickly draw images complete with lines, arcs, text, multiple colors, cut and paste from other images, and flood fills, and to write out the result as a PNG or JPEG file. This is particularly useful in Web applications, where PNG and JPEG are two of the formats accepted for inline images by most browsers. Note that gd is not a paint program. + https://github.com/libgd/libgd/archive/gd-2.1.1.tar.gz + + fontconfig-devel + zlib-devel + freetype-devel + libpng-devel + libjpeg-turbo-devel + tiff-devel + libvpx-devel + + + gd-2.1.1-libvpx-1.4.0.patch + + multimedia/misc/gd/pspec.xml + + + gd + + fontconfig + tiff + libvpx + libjpeg-turbo + zlib + freetype + libpng + + + /usr/bin + /usr/lib + /usr/share/doc/gd + + + + gd-devel + Development files for gd + gd için geliştirme dosyaları + + gd + + + /usr/include + /usr/lib/pkgconfig + /usr/bin/gdlib-config + + + + gd-docs + Documents for gd + gd için geliştirme belgeleri + + /usr/share/doc/gd/html + + + + + 2014-08-02 + 2.1.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-24 + 2.1.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-25 + 2.0.35 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.0.35 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libid3tag + http://mad.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + La librairie id3tag MAD. + The MAD id3tag library + MAD id3tag kütüphanesi + Die MAD id3tag Bibliothek + libid3tag is a library for reading and (eventually) writing ID3 tags, both ID3v1 and the various versions of ID3v2. + mirrors://sourceforge/mad/libid3tag-0.15.1b.tar.gz + + zlib-devel + + + libid3tag-0.15.1b-fix_overflow.patch + libid3tag-0.15.1b-unknown-encoding.patch + libid3tag-0.15.1b-utf16.patchlibid3tag-0.15.1b-utf16.patch + + multimedia/misc/libid3tag/pspec.xml + + + libid3tag + + zlib + + + /usr/lib + /usr/share/doc + + + + libid3tag-devel + + libid3tag + + + /usr/include + /usr/lib/pkgconfig + + + id3tag.pc + + + + + 2014-05-20 + 0.15.1b + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 0.15.1b + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 0.15.1b + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + musicbrainz5 + http://www.musicbrainz.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Client library to access metadata of mp3/vorbis/CD media + Mp3/Ogg Vorbis/Audio-Cd gibi ses dosyalarınızın etiketlerine erişiminizi sağlayan istemci kütüphanesidir. + MusicBrainz est un projet tentant de créer une encyclopédie de musique au contenu ouvert. C'est une base de données en ligne contenant des informations concernant les musiques enregistrées. La librairie client MusicBrainz capture les informations concernant les artistes, le nom de l'album, les titres des chansons, leur longueur et beaucoup d'autres données encore. + MusicBrainz is a project that aims to create an open content music encyclopedia. It is an online database of information about recorded music. MusicBrainz client library captures information about artists, the album title, track titles,the length of each track and many more. + MusicBrainz açık içerikli müzik ansiklopedisi oluşturmayı amaçlayan bir projedir. Kayıtlı albüm ve müzik parçaları hakkında çevrim içi veri tabanı sağlar. MusicBrainz kütüphanesi sanatçı, albüm, çalınan parça ve daha birçok konuda veri toplar. + MusicBrainz es un proyecto con la finalidad de crear una enciclopedia de contenido abierto sobre música. Es una base de datos de información en línea sobre grabaciones de música. La libreía de cliente MusicBrainz captura información de artista, título de album, título de las músicas, longitudes de cada música, y mucho más. + ftp://ftp.parrot.org/.1/blfs/svn/l/libmusicbrainz-5.1.0.tar.gz + + neon-devel + libxml2-devel + cmake + + multimedia/misc/musicbrainz5/pspec.xml + + + musicbrainz5 + + libgcc + libxml2 + neon + + + /usr/lib + /usr/share/doc + + + + musicbrainz5-devel + Development files for musicbrainz5 + musicbrainz5 için geliştirme dosyaları + + musicbrainz5 + neon-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-20 + 5.1.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-29 + 5.0.1 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2014-03-10 + 5.0.1 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-31 + 5.0.1 + missing dep + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-01-06 + 5.0.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + DirectFB + http://www.directfb.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Thin library on top of the Linux framebuffer devices + Linux framebuffer aygıtlarının üstünde çalışan hafif bir kütüphane + DirectFB is a thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system with support for translucent windows and multiple display layers. + DirectFB donanımsal grafik hızlandırması, giriş aygıtları işleme ve soyutlama sağlayan yarısaydam pencereler ve çoklu görüntü katmanlarını destekleyen pencere sistemi ile bütünleşik bir kütüphanedir. + http://www.directfb.org/downloads/Core/DirectFB-1.7/DirectFB-1.7.1.tar.gz + + libgcc + giflib-devel + libX11-devel + zlib-devel + tiff-devel + jasper-devel + freetype-devel + libpng-devel + libXext-devel + mesa-devel + webp-devel + mesa-glu-devel + libdrm-devel + libjpeg-turbo-devel + libmng-devel + lcms2-devel + libvdpau-devel + libmad-devel + libvorbis-devel + + multimedia/misc/DirectFB/pspec.xml + + + DirectFB-docs + + DirectFB + + + /usr/share/doc + + + + DirectFB + + zlib + libgcc + libpng + freetype + libX11 + libXext + mesa + libdrm + libjpeg-turbo + libvdpau + webp + tiff + jasper + libkms + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share + + + + DirectFB-devel + Development files for DirectFB + DirectFB için geliştirme dosyaları + + DirectFB + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-21 + 1.7.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-23 + 1.7.1 + Rebuild for webp + Kamil Atlı + suvarice@gmail.com + + + 2014-01-28 + 1.7.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-14 + 1.7.1 + version bump + Erdinç >Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 1.5.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + fribidi + http://fribidi.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.misc + A free implementation of the unicode bidirectional algorithm + Çift yönlü unikod algoritmanın özgür bir uyarlaması + GNU FriBidi est l'implémentation libre de l'algorithme bidirectionnel Unicode. + GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm. + GNU FriBidi, Çift Yönlü Unicode Algoritması'nın özgür uygulamasıdır. + GNU FriBidi es la implementación libre del algoritmo Unicode Bidirectional. + http://fribidi.org/download/fribidi-0.19.6.tar.bz2 + multimedia/misc/fribidi/pspec.xml + + + fribidi + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + fribidi-devel + Development files for fribidi + fribidi için geliştirme dosyaları + + fribidi + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + + 2014-02-23 + 0.19.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-07-06 + 0.19.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 0.19.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + liblqr + http://liblqr.wikidot.com + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + multimedia.misc + An easy to use C/C++ seam carving library + Görüntü boyutlandırma kütüphanesi + liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features. + liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir. + http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2 + + glib2-devel + + multimedia/misc/liblqr/pspec.xml + + + liblqr + + glib2 + + + /usr/lib + /usr/share/doc + + + + liblqr-devel + Development files for liblqr + liblqr için geliştirme dosyaları + + liblqr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 0.4.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 0.4.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.4.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libcdr + http://www.freedesktop.org/wiki/Software/libcdr + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + MPLv1.1 + library + multimedia.misc + Library parsing the Corel cdr documents + Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications. + http://dev-www.libreoffice.org/src/libcdr-0.1.0.tar.bz2 + + doxygen + zlib-devel + lcms2-devel + icu4c-devel + libwpd-devel + boost-devel + librevenge-devel + + multimedia/misc/libcdr/pspec.xml + + + libcdr + + lcms2 + icu4c + zlib + libgcc + librevenge + + + /usr/lib + /usr/bin + /usr/share/doc/libcdr + + + + libcdr-devel + Development files for libcdr + libcdr için geliştirme dosyaları + + icu4c-devel + zlib-devel + lcms2-devel + librevenge-devel + libcdr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-01-02 + 0.1.1 + Dep Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2014-09-26 + 0.1.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-24 + 0.0.16 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-25 + 0.0.11 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-14 + 0.0.11 + Rebuild for icu4c + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-31 + 0.0.11 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-14 + 0.0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-17 + 0.0.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-20 + 0.0.9 + First Release. + PisiLinux Community + admins@pisilinux.org + + + + + + libopus + http://www.opus-codec.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.misc + Opus is a totally open, royalty-free, highly versatile audio codec + Açık kaynak, telif ücretsiz, çok yönlü ses codec bileşenidir + Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec. + Opus Internet üzerinde etkileşimli ses ve müzik iletimi için eşsiz olan, ama aynı zamanda saklama ve akış uygulamaları için tasarlanmıştır. +Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 olarak Internet Engineering Task Force (IETF) tarafından standartlaştırılmıştır. + http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz + multimedia/misc/libopus/pspec.xml + + + libopus + + /usr/bin + /usr/lib + /usr/share + + + + libopus-devel + Development files for libopus + Libopus için geliştirme dosyaları + + libopus + + + /usr/include + /usr/lib/pkgconfig + + + + libopus-docs + document files for libopus + + libopus + + + /usr/share/doc/ + + + + + 2014-05-22 + 1.1 + enable-custom-modes. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-22 + 1.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-09 + 1.0.4 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-28 + 1.0.2 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-12-12 + 1.0.2 + First release + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + + + + libspnav + http://spacenav.sourceforge.net + + Osman Erkan + osman.erkan@pisilinux.org + + BSD + library + multimedia.misc + Open source alternative to 3DConnextion drivers + The spacenav project provides a free compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 6dof space navigation input devices. It provides both a replacement free user-space driver, and a replacement SDK library. + http://downloads.sourceforge.net/spacenav/libspnav-0.2.3.tar.gz + + libX11-devel + + + Makefile.patch + + multimedia/misc/libspnav/pspec.xml + + + libspnav + + libX11 + + + /usr/lib/ + /usr/share/doc + + + + libspnav-devel + Development files for libspnav + libspnav için geliştirme dosyaları + + libspnav + + + /usr/include + /usr/lib/libspnav.so + + + + + 2015-09-16 + 0.2.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 0.2.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.2.2 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-04-28 + 0.2.2 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-01-01 + 0.2.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + frei0r-plugins + http://www.piksel.org/frei0r + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + A plugin API for video sources and filters + Video kaynakları ve süzgeçleri için bir eklenti programlama arayüzü + frei0r-plugins is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. + frei0r-plugins video kaynakları ve süzgeçleri için basit bir eklenti programlama arayüzüdür. Efektlerin davranışları basit parametrelerle denetlenebilmektedir. + http://distfiles.macports.org/frei0r-plugins/frei0r-plugins-1.4.tar.gz + + libgcc + + + explicitly-link-with-lm.patch + + multimedia/misc/frei0r-plugins/pspec.xml + + + frei0r-plugins + + libgcc + + + /usr/lib + /usr/share/doc + + + + frei0r-plugins-devel + Development files for frei0r-plugins + frei0r-plugins için geliştirme dosyaları + + frei0r-plugins + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 1.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-01 + 1.4 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-30 + 1.4 + Rebuild for ffmpeg. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-31 + 1.4 + missing dep. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-28 + 1.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2011-09-13 + 1.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libdvdcss + http://www.videolan.org/libdvdcss/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + A portable abstraction library for DVD decryption + DVD çözmek için soyutlanmış taşınabilir bir kütüphane + libdvdcss est une librairie simple et portable d'abstraction conçue pour accéder auxDVDs comme des périphériques par blocs sans avoir à se soucier du décodage. On peut construire un lecteur DVD à partir de l'API de libdvdcss en 4 ou 5 appels. + libdvdcss is a simple and library portable abstraction library designed for accessing DVDs like a block device without having to bother about the decryption. A DVD player can be built around the libdvdcss API using no more than 4 or 5 library calls. + Libdvdcss, şifre çözme konusunda zahmete girmeden bir blok aygıt gibi DVD'lere erişim için düzenlenmiş basit ve soyutlanmış taşınabilir bir kütüphanedir. Bir DVD çalıcısı libdvdcss API etrafında 4 veya 5'ten fazla olmaksızın kütüphane çağrısı kullanarak kurulabilir. + libdvdcss es una liraría simple y portable de abstracción para acceder a DVDs como a dispositivos de bloques, sin preocuparse de decriptación. Se puede construir un reproductor DVD alrededor el API libdvdcss con no más de 4 o 5 llamadas de librería. + http://download.videolan.org/pub/libdvdcss/1.3.0/libdvdcss-1.3.0.tar.bz2 + multimedia/misc/libdvdcss/pspec.xml + + + libdvdcss + + /usr/lib + /usr/share/doc + + + + libdvdcss-devel + Development files for libdvdcss + libdvdcss için geliştirme dosyaları + + libdvdcss + + + /usr/include/dvdcss + /usr/lib/pkgconfig + + + + + 2014-09-29 + 1.3.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-21 + 1.2.13 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-29 + 1.2.13 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 1.2.12 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libkate + http://code.google.com/p/libkate + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + multimedia.misc + A text codec for embedding in Ogg + Ogg için karaoke ve metin kitaplığı + Kate is a codec for karaoke and text encapsulation for Ogg. + Kate, karaoke ve metinleri ogg dosyalara gömmek için kullanılan kitaplık ve konsol uygulamaları içerir. + http://libkate.googlecode.com/files/libkate-0.4.1.tar.gz + + libogg-devel + libpng-devel + doxygen + + multimedia/misc/libkate/pspec.xml + + + libkate + + libogg + libpng + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libkate-devel + Development files for libkate + libkate için geliştirme dosyaları + + libkate + libogg-devel + libpng-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libkate-docs + API documentation for libkate + libkate paketine ait API belgeleri + + libkate + + + /usr/share/doc/libkate/html + /usr/share/doc/libkate/examples + + + + + 2014-05-24 + 0.4.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.4.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-31 + 0.4.1 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 0.4.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + liboil + http://www.schleef.org/liboil/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Liboil is a library of simple functions that are optimized for various CPUs + Liboil, farklı işlemciler için optimize edilmiş temel fonksiyonlardan oluşan bir kütüphanedir + Liboil est une librairie de fonctions simples optimisées pour différents processeurs. Ces fonction sont en général des boucles implémentant des algorithmes simples, tel que convertir un tableau de N entiers en nombres à virgule flottante ou multiplier et additionner un tableau de N nombres. + Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-point numbers or multiplying and summing an array of N numbers. + liboil çeşitli CPU 'lar için en iyilenmiş basit fonksiyon kütüphanesidir. Bu fonksiyonlar genellikle döngüler için gerçekleştirilen yalın algoritmalardır, örneğin ; N integer elemanı olan bir diziyi float elemanlı diziye dönüştürmek yada N elemanlı bir dizi ile toplama yada çarpma yapmak gibi. + Liboil es una librería con funciones simples, optimizados para múltiples CPUs. Estas funciones son generalmente bucles realizando simples algoritmos, como conversión de arrays de N enteros a números de punto flotante o multiplicación y suma de un array de N números. + http://liboil.freedesktop.org/download/liboil-0.3.17.tar.gz + + 02_amd64-cpuid.patch + 03_stride-segfaults.patch + + multimedia/misc/liboil/pspec.xml + + + liboil + + /usr/lib + /usr/share/doc + + + + liboil-devel + Development files for liboil + liboil için geliştirme dosyaları + + liboil + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 0.3.17 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 0.3.17 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-01-05 + 0.3.17 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + taglib-extras + http://amarok.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.misc + Taglib extras library from Amarok team + Amarok takımından taglib ekstraları kütüphanesi + Taglib-extras delivers support for reading and editing the meta-data of audio formats not supported by taglib, including: asf, mp4v2, rmff, wav. + Taglib-extras taglib tarafından desteklenmeyen ses formatlarının (asf, mp4v2, rmff, wav vs.) meta verilerini okumak ve düzenlemek için gerekli desteği verir. + http://download.kde.org/stable/taglib-extras/1.0.1/src/taglib-extras-1.0.1.tar.gz + + pkgconfig + cmake + taglib-devel + + multimedia/misc/taglib-extras/pspec.xml + + + taglib-extras + + taglib + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + taglib-extras-devel + Development files for taglib-extras + taglib-extras için geliştirme dosyaları + + taglib-extras + + + /usr/include/taglib-extras + /usr/lib/pkgconfig + + + + + 2014-05-25 + 1.0.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 1.0.1 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2010-10-12 + 1.0.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + blender + http://www.blender.org/ PisiLinux Community admins@pisilinux.org GPLv2 app:gui - desktop.kde.utils - A wallet management tool - KWalletManager is a tool to manage the passwords on your system. By using the KDE wallet subsystem it not only allows you to keep your own secrets but also to access and manage the passwords of every application that integrates with the wallet. - kwallet - mirrors://kde/stable/applications/15.12.0/src/kwalletmanager-15.12.0.tar.xz + multimedia.editor + 3D modeling, animation, rendering and post-production application + 3D animasyon sistemi + blender is the essential software solution you need for 3D, from modeling, animation, rendering and post-production to interactive creation and playback. + Blender 3B modelleme ve animasyon yapmaya yarayan açık kaynak bir yazılımdır. + blender + http://download.blender.org/source/blender-2.75a.tar.gz - qt5-base - kdoctools-devel + boost-devel cmake - extra-cmake-modules - kcoreaddons-devel - kauth-devel - kwallet-devel - kservice-devel - kcmutils-devel - kdelibs4-support-devel - ki18n-devel - kxmlgui-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel + ffmpeg-devel + fftw3-devel + freetype-devel + glew-devel + icu4c-devel + ilmbase-devel + jack-audio-connection-kit-devel + libdc1394-devel + libgomp + libjpeg-turbo-devel + libpng-devel + libsdl-devel + libsndfile-devel + libspnav-devel + libX11-devel + libXi-devel + libXxf86vm-devel mesa-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel + mesa-glu-devel + openal-devel + openexr-devel + openjpeg-devel + python3-devel + tiff-devel + openimageio-devel + webp-devel + zlib-devel - desktop/kde/utils/kwalletmanager/pspec.xml + + 06-blender-2.68-fix-install-rules.patch + + multimedia/editor/blender/pspec.xml - kwalletmanager + blender - qt5-base - kcmutils - kdelibs4-support - kauth - ki18n + boost + ffmpeg + fftw3 + freetype + glew + ilmbase + jack-audio-connection-kit libgcc - kcodecs - kconfig - kwallet - kxmlgui - karchive - kservice - kitemviews - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons + libdc1394 + libgomp + libjpeg-turbo + libpng + libsdl + libsndfile + libspnav + libX11 + libXi + libXxf86vm + mesa + mesa-glu + openal + openexr-libs + openjpeg + python3 + tiff + openimageio + zlib - /etc/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf - /usr/lib - /usr/lib/qt5 - /usr/share/doc /usr/bin - /usr/share + /usr/lib/python3.3/ + /usr/share/blender/ + /usr/share/doc + /usr/share/pixmaps/ + /usr/share/man/man1 /usr/share/icons /usr/share/applications - /usr/share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy - /usr/share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service + /usr/share/mime + /usr/share/locale + + blender.xml + blender-wrapper + blender.desktop + - - 2015-12-18 - 15.12.0 + + 2015-07-24 + 2.75a Version bump. + Ali Algul + alialgul@pisilinux.org + + + 2015-01-24 + 2.75 + Version bump. + Ali Algul + alialgul@pisilinux.org + + + 2015-01-24 + 2.73a + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-08 + 2.73 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-30 + 2.72b + Rebuild, remove opencolorio dependency + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-10 + 2.72b + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-10-08 + 2.72 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-27 + 2.71 + Version bump. + Nikolay Semenov + tribunal@pisilinux.org + + + 2014-05-28 + 2.70a + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-04-23 + 2.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-25 + 2.7.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-26 + 2.69 + Rebuild for ffmpeg. + Kamil Atlı + suvarice@gmail.com + + + 2013-11-09 + 2.69 + Rebuild. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2013-10-31 + 2.69 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-10-14 + 2.68a + rebuild for icu4c. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2015-11-10 - 15.08.3 + 2013-08-17 + 2.68a Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - 2015-10-14 - 15.08.2 + 2013-07-25 + 2.68 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-04-20 + 2.66 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org - 2015-08-21 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org + 2013-01-01 + 2.65 + First release + Osman Erkan + osman.erkan@pisilinux.org - ktimer - http://kde.org/applications/utilities/ktimer + handbrake + http://handbrake.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv1 + app + multimedia.editor + Multithreaded video transcoder + Çoklu görev destekli video kodlama/düzenleme aracı + The program is also used to convert DVDs so they can be viewed on iPods, iPhones and most media players. + Handbrake,Video dosyalarını portatif medya oynatıcıları için düzenleyebilmenin yanısıra çözünürlülük değişimi desteğide sunan özgür video kodlama ve düzenleme aracıdır. + HandBrake + https://handbrake.fr/rotation.php?file=HandBrake-0.10.2.tar.bz2 + + bzip2 + python + intltool + gtk3-devel + lame-devel + gtk3-devel + x264-devel + libogg-devel + libass-devel + fribidi-devel + libxml2-devel + libbluray-devel + libnotify-devel + libvorbis-devel + libtheora-devel + dbus-glib-devel + fontconfig-devel + libsamplerate-devel + gst-plugins-base-next-devel + + multimedia/editor/handbrake/pspec.xml + + + handbrake + + gtk3 + lame + x264 + cairo + pango + libass + libogg + fribidi + libbluray + libnotify + gst-libav-next + libvorbis + libtheora + gdk-pixbuf + libsamplerate + gstreamer-next + gst-plugins-base-next + zlib + bzip2 + eudev + glib2 + libgcc + libxml2 + freetype + dbus-glib + + + /usr/share + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + /usr/lib/python2.7 + /usr/share/locale + + + + + 2015-09-26 + 0.10.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-04-30 + 0.10.1 + Version bump. + Idris KALP + idriskalp@gmail.com + + + 2015-02-20 + 0.10.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-18 + 0.9.9 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-07 + 0.9.9 + rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2013-12-05 + 0.9.9 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libmpeg2 + http://libmpeg2.sourceforge.net/ PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - desktop.kde.utils - A countdown launcher - A countdown launcher - KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. - KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. - ktimer - mirrors://kde/stable/applications/15.12.0/src/ktimer-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - cmake - extra-cmake-modules - ki18n-devel - kwidgetsaddons-devel - kio-devel - kiconthemes-devel - kdbusaddons-devel - knotifications-devel - mesa-devel - - desktop/kde/utils/ktimer/pspec.xml + library + multimedia.video + libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams + mpeg-2 ve mpeg-1 video görüntülerini çözmek için ücretsiz bir kütüphane + libmpeg2 est une librairie libre pour décoder les flux vidéos mpeg-2 et mpeg-1. libmpeg2 est capable de décoder tous les flux vidéos se conformant à certaines restrictions : "paramètres contraints (constrained parameters)" pour mpeg-1 et "profil principal (main profile)" pour mpeg-2. + libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. libmpeg2 is able to decode all mpeg streams that conform to certain restrictions: "constrained parameters" for mpeg-1, and "main profile" for mpeg-2. + libmpeg2, mpeg-1 ve mpeg-2 video akışlarının çözülerek okunması için ücretsiz bir kütüphanedir. Libmpeg-2, bir takım kısıtlayıcı kurallara (mpeg-1 için "kısıtlanmış parametreler" ve mpeg-2 için "ana profil") uyan bütün mpeg yayınlarını çözebilir. + libmpeg2 es una librería libre para decodificar flujos de video mpeg-2 y mpeg-1. libmpeg2 puede decodificar todo tipo de flujos mpeg que cumplen ciertos restricciones: "constrained parameters" para mpeg-1, y "main profile" para mpeg-2. + http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz + + libmpeg2-0.4.1-use-readelf-for-test.patch + + multimedia/video/libmpeg2/pspec.xml - ktimer + libmpeg2 + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libmpeg2-devel + Development files for libmpeg2 + libmpeg2 için geliştirme dosyaları - qt5-base - kio - ki18n - libgcc - kconfig - kcoreaddons - kdbusaddons - kconfigwidgets - knotifications - kwidgetsaddons + libmpeg2 - /usr/share/doc - /usr/bin - /usr/share + /usr/include + /usr/lib/pkgconfig + + 2014-05-25 + 0.5.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-31 + 0.5.1 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.5.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gstreamer + http://gstreamer.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.video + GStreamer streaming media framework runtime + GStreamer ses yayın altyapısı + GStreamer est la librairies principale. Elle contient les entêtes, les fichiers et les éléments centraux. + GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. + gstreamer bir ses yayın altyapısı kütüphanesidir. Bu kütüphaneyi kullanan uygulamalar, gerçek zamanlı ses işleme, görüntü oynatma gibi çokluortam ile ilgili birçok işlem gerçekleştirebilirler. + http://ftp.gnome.org/pub/gnome/sources/gstreamer/0.10/gstreamer-0.10.36.tar.xz + + glib2-devel + gobject-introspection-devel + libxml2-devel + + + wrapper-plugins.patch + bison3.patch + + multimedia/video/gstreamer/pspec.xml + + + gstreamer + + glib2 + libxml2 + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/gir-1.0 + /usr/share/doc + /usr/share/locale + /usr/share/man + + + + gstreamer-devel + Development files for gstreamer + gstreamer için geliştirme dosyaları + + gstreamer + glib2-devel + gobject-introspection-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + gstreamer-32bit + 32-bit shared libraries for gstreamer + gstreamer için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glib2-32bit + glibc-32bit + libxml2-32bit + + + gstreamer + glib2-32bit + glibc-32bit + libxml2-32bit + + + /usr/lib32 + + + + + 2015-06-26 + 0.10.36 + Rebuild, fixed. + Hakan Yıldız + hknyldz93@gmail.com + - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-19 + 0.10.36 + Release bump. + Alihan Öztürk + alihan@pisilinux.org - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-04-23 + 0.10.36 + Rebuild for webp + Kamil Atlı + suvarice@gmail.com - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-02-27 + 0.10.36 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org - 2015-09-16 - 15.08.1 - Version bump. + 2014-01-26 + 0.10.36 + Release Bump Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2015-08-21 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org + 2012-08-20 + 0.10.36 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - kfoldersync - http://ur1.ca/hq3ve + gstreamermm + http://gstreamer.freedesktop.org/bindings/cplusplus.html - Stefan Gronewold (groni) - groni@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org GPLv2 - system - Folder synchronization and backup tool for KDE - Smart folder comparison, It depends only on KDE Frameworks. - http://kde-apps.org/CONTENT/content-files/164092-kfoldersync-3.0.0.tar.xz + library + multimedia.video + GStreamer C++ bindings + Gstreamer C++ arayüzü + The GStreamer API C++ bindings are based on gtkmm, using the same lifecycle mechanism. + Gstreamer'ın C++ arayüzü gtkmm temel alınarak hazırlanmıştır, aynı yaşam ömrü mekanizmasını kullanır. + http://ftp.gnome.org/pub/gnome/sources/gstreamermm/0.10/gstreamermm-0.10.11.tar.xz - extra-cmake-modules - gettext-devel - cmake - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kio-devel - knotifications-devel - kxmlgui-devel - qt5-base-devel + glib2-devel + gstreamer-devel + libxml2-devel + gst-plugins-base-devel + glibmm-devel + libxmlpp-devel + libsigc++ + libgcc - desktop/kde/utils/kfoldersync/pspec.xml + multimedia/video/gstreamermm/pspec.xml - kfoldersync - Folder synchronization and backup tool for KDE + gstreamermm - kcoreaddons - ki18n - kio - qt5-base + glib2 libgcc - kconfig - kxmlgui - kitemviews - kdbusaddons - kconfigwidgets - kwidgetsaddons + libxml2 + gstreamer + gst-plugins-base + glibmm + libxmlpp + libsigc++ - /usr/bin - /usr/share + /usr/lib + /usr/share/devhelp/books/gstreamermm-0.10 /usr/share/doc + + gstreamermm-devel + gstreamermm için geliştirme dosyaları + gstreamermm için geliştirme dosyaları + + glibmm-devel + libxmlpp-devel + gstreamer-devel + gst-plugins-base-devel + gstreamermm + + + /usr/include/gstreamermm-0.10 + /usr/lib/pkgconfig + + + + 2014-05-28 + 0.10.11 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-27 + 0.10.11 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + - 2015-12-02 - 3.0.0 - Update to stable version - Stefan Gronewold (groni) + 2014-01-26 + 0.10.11 + Rebuild + Stefan Gronewold(groni) groni@pisilinux.org - 2015-11-05 - 3.0.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org + 2013-08-08 + 0.10.11 + First release + Osman Erkan + osman.erkan@pisilinux.org - kcalc - http://kde.org/applications/utilities/kcalc + ffmpeg + http://ffmpeg.org PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - desktop.kde.utils - A scientific calculator - Bir bilimsel hesap makinesi - KCalc is a calculator which offers many more mathematical functions than meet the eye on a first glance. - KCalc, pek çok matematik fonksiyonu barındıran bir hesap makinesi uygulamasıdır. - kcalc - mirrors://kde/stable/applications/15.12.0/src/kcalc-15.12.0.tar.xz + GPLv3 + LGPLv2 + LGPLv3 + app:console + multimedia.video + A command-line tool to record, convert and stream audio and video + FFmpeg ses ve görüntü dosyalarını kaydedebilen, dönüştürebilen ve açabilen yazılımdır + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu + FFmpeg is a complete solution to record, convert and stream audio and video. + FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. + http://ffmpeg.org/releases/ffmpeg-2.7.2.tar.bz2 - qt5-base-devel - kdoctools-devel - extra-cmake-modules - gmp-devel - cmake - kconfig-devel - kconfigwidgets-devel - kguiaddons-devel - ki18n-devel - kinit-devel - knotifications-devel - kxmlgui-devel - mesa-devel + freetype-devel + faac-devel + lame-devel + x264-devel + x265-devel + libva-devel + libsdl-devel + libvpx-devel + libass-devel + libopus-devel + alsa-lib-devel + libvdpau-devel + libtheora-devel + libvorbis-devel + gnutls-devel + celt-devel + gsm-devel + libbluray-devel + opencore-amr-devel + libmodplug-devel + pulseaudio-libs-devel + openjpeg-devel + frei0r-plugins-devel + rtmpdump-devel + schroedinger-devel + speex-devel + libv4l-devel + libvo-amrwbenc-devel + libvo-aacenc-devel + xvid-devel + libdc1394-devel + libnut-devel + libcdio-paranoia-devel + libXv-devel - desktop/kde/utils/kcalc/pspec.xml + multimedia/video/ffmpeg/pspec.xml - kcalc + ffmpeg - qt5-base - gmp - ki18n + gsm + celt + faac + lame + x264 + x265 + xvid + zlib + bzip2 + speex + libva + libXv + gnutls + libX11 + libnut + libsdl + libv4l + libvpx + libxcb + libass + libopus + libXext + alsa-lib + freetype + libvdpau + openjpeg + rtmpdump + libbluray + libdc1394 + libtheora + libvorbis + fontconfig + libmodplug + libvo-aacenc + opencore-amr + schroedinger + libvo-amrwbenc + pulseaudio-libs + libcdio-paranoia + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/ffmpeg + + + + ffmpeg-devel + Development files for ffmpeg + ffmpeg için geliştirme dosyaları + Pliki nagłówkowe ffmpeg + + ffmpeg + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-29 + 2.7.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-13 + 2.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-05 + 2.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-24 + 2.2.4 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-04 + 2.2.3 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-21 + 2.2.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-04-05 + 2.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-27 + 2.1.1 + fix dep + Kamil Atlı + suvarice@gmail.com + + + 2013-11-24 + 2.1.1 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-07-28 + 1.2.1 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-06 + 1.2.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-25 + 1.1.1 + Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2013-01-26 + 1.1.1 + Version bump to 1.1.1 + Idris Kalp + admins@pisilinux.org + + + 2012-09-29 + 1.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + vo-aacenc + http://sourceforge.net/projects/opencore-amr/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:cli + multimedia.video + VisualOn AAC encoder library + VisualOn AAC encoder library + http://sourceforge.net/projects/opencore-amr/files/vo-aacenc/vo-aacenc-0.1.3.tar.gz/download + multimedia/video/vo-aacenc/pspec.xml + + + libvo-aacenc + + /usr/lib + /usr/share/doc + + + + libvo-aacenc-devel + + libvo-aacenc + + + /usr/include + /usr/lib/pkgconfig/vo-aacenc.pc + + + + + 2014-06-18 + 1.3 + Rebuild, remove vo-aacenc binary package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 1.3 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-30 + 1.1.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + vo-amrwbenc + http://sourceforge.net/projects/opencore-amr/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:cli + multimedia.video + VisualOn AMR-WB encoder library + VisualOn AMR-WB encoder library + http://sourceforge.net/projects/opencore-amr/files/vo-amrwbenc/vo-amrwbenc-0.1.3.tar.gz + multimedia/video/vo-amrwbenc/pspec.xml + + + vo-amrwbenc + + libvo-amrwbenc + + + /usr/bin/amrwb-enc + + + + libvo-amrwbenc + + /usr/lib + /usr/share/doc + + + + libvo-amrwbenc-devel + + libvo-amrwbenc + + + /usr/include + /usr/lib/pkgconfig/vo-amrwbenc.pc + + + + + 2014-05-27 + 1.3 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-28 + 1.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-30 + 1.1.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + gst-plugins-good + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Ensemble de plug-ins (greffons) de bonne qualité sous la licence préférée de gstreamer. + A set of good-quality plugins for GStreamer + Gstreamer için temel eklentiler paketi + gst-plugins-good contains a set of mature plugins and elements for GStreamer. + http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.31.tar.bz2 + + gst-plugins-base-devel + gstreamer-devel + cairo-devel + flac-devel + gdk-pixbuf-devel + libjpeg-turbo-devel + libpng-devel + libsoup-devel + libvpx-devel + aalib-devel + libraw1394-devel + pulseaudio-libs-devel + libv4l-devel + libsoup-gnome + speex-devel + gtk2-devel + orc-devel + libXext-devel + valgrind + libXdamage-devel + libXfixes-devel + libXv-devel + libvorbis-devel + libtheora-devel + libogg-devel + libICE-devel + libSM-devel + + + 0001-fix-v4l2_munmap.patch + 0002-clear_DISCONT_flag.patch + 0003-v4l2src-fix.patch + 0004-v4l2object-Don-t-probe-UVC-devices-for-being-interla.patch + 0001-sys-v4l2-Some-blind-compilation-fixes.patch + + multimedia/video/gst-plugins-good/pspec.xml + + + gst-plugins-good + + orc + flac + zlib + speex + libX11 + libpng + libXv + cairo + glib2 + aalib + bzip2 + libv4l + libsoup + libxml2 + libXext + gstreamer + libXfixes + gdk-pixbuf + libXdamage + libjpeg-turbo + libsoup-gnome + pulseaudio-libs + gst-plugins-base + + + /etc/gconf + /usr/bin + /usr/lib + /usr/share/gstreamer-0.10/presets + /usr/share/doc + /usr/share/man + /usr/share/locale + + + + + 2014-05-28 + 0.10.31 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-27 + 0.10.31 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-0-26 + 0.10.31 + Rebuild + Erdinç Gültekin + admins@pisilinux.org + + + 2013-07-28 + 0.10.31 + missing dep. + Erdinç Gültekin + admins@pisilinux.org + + + 2013-05-09 + 0.10.31 + rebuild for libv4l + Erdinç Gültekin + admins@pisilinux.org + + + 2012-11-09 + 0.10.31 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gst-plugins-bad-next + http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.video + A set of GStreamer plug-ins that aren't up to par compared to the rest + GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. + http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.4.5.tar.xz + + gstreamermm-devel + gst-plugins-base-devel + libdvdread-devel + libdvdnav-devel + soundtouch-devel + faac-devel + valgrind + jasper-devel + libdca-devel + gsm-devel + mjpegtools-devel + libdvdnav-devel + libsndfile-devel + DirectFB-devel + libSM-devel + libICE-devel + celt-devel + libdc1394-devel + alsa-lib-devel + libsdl-devel + soundtouch-devel + libtheora-devel + libmodplug-devel + xvid-devel + libdvdread-devel + libvdpau-devel + rtmpdump-devel + schroedinger-devel + gdk-pixbuf-devel + libvo-aacenc-devel + libvo-amrwbenc-devel + + + 02_no-Werror.patch + remove_external_symbols.patch + gst-plugins-bad-0.10.7-wildmidi-timidity.cfg.patch + + multimedia/video/gst-plugins-bad-next/pspec.xml + + + gst-plugins-bad-next + + DirectFB + libdca libgcc - kconfig - kxmlgui - kguiaddons - kcoreaddons - kconfigwidgets - knotifications - kwidgetsaddons + libxml2 + faac + bzip2 + glib2 + libX11 + gsm + libmodplug + mjpegtools + soundtouch + libdvdnav + libsndfile + libdvdread + libvdpau + schroedinger + gstreamer-next + orc + libvo-aacenc + libvo-amrwbenc + wayland-client + gst-plugins-base-next + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/gstreamer-1.0 + /usr/share/gst-plugins-bad/1.0/ + /usr/share/gtk-doc + /usr/share/gir-1.0/ + /usr/share/doc + + + + gst-plugins-bad-next-devel + Development files for gst-plugins-bad + + gst-plugins-bad-next + gstreamer-next-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-23 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 1.2.3 + Rebuild for webp. + Kamil Atlı + suvarice@gmail.com + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-20 + 1.2.1 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2.0 + bump + Osman Erkan + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + x264 + http://developers.videolan.org/x264.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.video + Open source H264/AVC encoder + Açık kaynak kodlu H264/AVC çözücü + x264 is a free library for encoding H264/AVC video streams. + x264 H264/AVC görüntü dosyalarını açmak için kullanılan bir kütüphane + ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20141201-2245.tar.bz2 + + yasm-devel + + multimedia/video/x264/pspec.xml + + + x264 + + /usr/bin + /usr/lib + + + + x264-devel + Development files for x264 + x264 için geliştirme dosyaları + + x264 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-12-02 + 2245 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-18 + 2245 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-05 + 0.0_20140404 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-17 + 0.0_20130705 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-06 + 0.0_20130705 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-30 + 0.0_20120929 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libdvbpsi + http://www.videolan.org/libdvbpsi/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Librairie pour la génération et le décodage des tables PSI TS/DVB MPEG. + Library for MPEG TS/DVB PSI tables decoding and generation + MPEG TS/DVB PSI taslaklarını üretmek ve çözümlemek için kullanılan bir kitaplık + libdvbpsi is a simple library designed for decoding and generation of MPEG TS and DVB PSI tables. + libdvbpsi, MPEG TS ve DVB PSI tablolarının ürteimi ve çözümlenmesi için tasarlanmış basit bir kitaplıktır. + http://download.videolan.org/pub/libdvbpsi/1.1.2/libdvbpsi-1.1.2.tar.bz2 + multimedia/video/libdvbpsi/pspec.xml + + + libdvbpsi + + /usr/lib + /usr/share/doc + + + + libdvbpsi-devel + Development files for libdvbpsi + libdvbpsi için geliştirme dosyaları + + libdvbpsi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-31 + 1.1.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-20 + 1.1.2 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-08-29 + 0.2.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + opencore-amr + http://opencore-amr.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + multimedia.video + AMR speech codec implementation + AMR ses kodek sistemi + Opencore AMR is an implementation of Adaptive Multi Rate Narrowband and Wideband speech codec. + Opencore AMR, Adaptive Multi Rate Narrowband ve Wideband ses kodek sistemi altyapısıdır. + http://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-0.1.3.tar.gz + multimedia/video/opencore-amr/pspec.xml + + + opencore-amr + + /usr/lib + /usr/share/doc/opencore-amr + + + + opencore-amr-devel + Development files for opencore-amr + opencore-amr için geliştirme dosyaları + + opencore-amr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 0.1.3 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-08-29 + 0.1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + schroedinger + http://www.diracvideo.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Dirac codec library + Dirac kodek kitaplığı + C-based libraries and GStreamer plugins for the Dirac video codec. + C ile kodlanmış Dirac video kodeği kitaplıkları ve GStreamer eklentileri + http://www.diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz + + orc-devel + + + ltmain_as-needed.patch + + multimedia/video/schroedinger/pspec.xml + + + schroedinger + + orc /usr/lib /usr/share/doc - /usr/bin - /usr/share + + + + schroedinger-devel + Development files for schroedinger + schroedinger için geliştirme dosyaları + + schroedinger + orc-devel + + + /usr/include + /usr/lib/pkgconfig - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-20 + 1.0.11 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-03-10 + 1.0.11 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-07-29 + 1.0.11 + Rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-07-07 + 1.0.11 + Rebuild + Marcin Bojara + marcin@pisilinux.org - 2014-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org + 2012-08-29 + 1.0.11 + First release + PisiLinux Community + admins@pisilinux.org - filelight - http://utils.kde.org/projects/filelight + xine-lib + http://xine.sourceforge.net/ PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - desktop.kde.utils - View disk usage information - View disk usage information - Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. - Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. - filelight - mirrors://kde/stable/applications/15.12.0/src/filelight-15.12.0.tar.xz + library + multimedia.video + Librairies centrales pour le lecteur vidéo Xine. + Core libraries for Xine movie player + Xine çokluortam oynatıcısının çekirdek kitaplıkları + 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. + 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. + http://sourceforge.net/projects/xine/files/xine-lib/1.2.6/xine-lib-1.2.6.tar.xz + + accel_vaapi.h + - qt5-base-devel - qt5-script-devel - kdoctools-devel - extra-cmake-modules - kio-devel - kparts-devel - solid-devel - kxmlgui-devel - kcoreaddons-devel - ki18n-devel + libXext-devel + fontconfig-devel + freetype-devel + zlib-devel + libXinerama-devel + libXv-devel + libXvMC-devel + libogg-devel + libvorbis-devel mesa-devel - docbook-xsl + libdvdcss-devel + DirectFB-devel + flac-devel + libsdl-devel + alsa-lib-devel + aalib-devel + libtheora-devel + libvpx-devel + samba-devel + libmad-devel + speex-devel + libmodplug-devel + ffmpeg-devel + a52dec-devel + libv4l-devel + pulseaudio-libs-devel + libdca-devel + libbluray-devel + libmng-devel + libSM-devel + libICE-devel + libcdio-devel + mesa-glu-devel + libvdpau-devel - desktop/kde/utils/filelight/pspec.xml + + list.patch + multilib.patch + no_autopoint.patch + dmo.patch + tr_segfault_fix.patch + deepbind.patch + lpthread.patch + + multimedia/video/xine-lib/pspec.xml - filelight + xine-lib - qt5-base - kparts - kio - ki18n - solid - libgcc - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons + mesa + zlib + flac + speex + aalib + libXv + libmad + a52dec + libdca + libsdl + libogg + libv4l + ffmpeg + libX11 + libXvMC + libXext + libvpx + libxcb + alsa-lib + freetype + DirectFB + libvdpau + mesa-glu + libtheora + libbluray + libvorbis + fontconfig + libmodplug + pulseaudio-libs - /usr/lib - /usr/lib/qt5 - /usr/share/doc /usr/bin - /usr/share - /etc/xdg + /usr/lib + /usr/share/xine + /usr/share/xine-lib/fonts + /usr/share/man + /usr/share/doc/xine-lib + + + + xine-lib-devel + Development files for xine-lib + xine-lib için geliştirme dosyaları + xine-lib için geliştirme dosyaları + + xine-lib + + + /usr/bin/xine-config + /usr/lib/pkgconfig + /usr/include + /usr/share/aclocal - - 2015-12-18 - 15.12.0 + + 2014-07-07 + 1.2.6 + Rebuild for ffmpeg + Kamil Atlı + suvari@pisilinux.org + + + 2014-07-07 + 1.2.6 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Vedat Demir + vedat@pisilinux.org + + + 2014-05-20 + 1.2.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-20 + 1.2.3 + Fix unneeded dependencies, remove DirectBD-devel from runtime deps. + Serdar Soytetir + kaptan@pisilinux.org - 2015-11-10 - 15.08.3 + 2013-11-30 + 1.2.3 + Rebuild for ffmpeg. + PisiLinux Community + admins@pisilinux.org + + + 2013-10-14 + 1.2.3 + rebuild for DirectFB. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-07 + 1.2.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-30 + 1.2.2 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + xvid + http://www.xvid.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + High performance MPEG-4 video de-/encoding solution + Yüksek performanslı bir MPEG-4 video kodlayıcı/çözücü + Xvid is a codec which makes it possible to compress movies too much while still maintaining the original image quality. + Xvid videoları kalite kaybına neden olmadan yüksek oranlarda sıkıştırabilmeye olanak tanıyan bir kodlayıcıdır. + Xvid es un codec que posibilita una alta compresión de peliculas, manteniendo la calidad original de la imagen. + http://downloads.xvid.org/downloads/xvidcore-1.3.3.tar.gz + multimedia/video/xvid/pspec.xml + + + xvid + + /usr/lib + /usr/share/doc/xvid + + + + xvid-devel + + xvid + + + /usr/share/doc/xvid/examples + /usr/include + + + + + 2014-12-14 + 1.3.3 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2015-10-14 - 15.08.2 - Version bump. + 2014-05-22 + 1.3.2 + Rebuild Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-01-17 + 1.3.2 + Rebuild for 1.0 + Richard de Bruin + richdb@pisilinux.org + 2012-08-29 + 1.3.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libquicktime + http://libquicktime.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.video + A library based on quicktime4linux with extensions + quicktime4linux ve eklentileri tabanlı bir kütüphane + Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement. + Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development. + Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir. + Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo. + mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz + + mesa-devel + lame-devel + zlib-devel + glib2-devel + libX11-devel + libpng-devel + faac-devel + gtk2-devel + libdv + faad2-devel + libXt-devel + libXv-devel + ffmpeg-devel + libXaw-devel + libXext-devel + alsa-lib-devel + libvorbis-devel + libavc1394-devel + libraw1394-devel + schroedinger-devel + libjpeg-turbo-devel + x264-devel + + + libquicktime-1.2.4+libav-9.patch + libquicktime-1.2.4-ffmpeg2.patch + + multimedia/video/libquicktime/pspec.xml + + + libquicktime + + mesa + lame + zlib + glib2 + libX11 + libpng + faac + gtk2 + libdv + faad2 + libXt + libXv + ffmpeg + libXaw + libXext + alsa-lib + libvorbis + libavc1394 + libraw1394 + schroedinger + libjpeg-turbo + x264 + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/locale + + + + libquicktime-devel + Development files for libquicktime + libquicktime için geliştirme dosyaları + + libquicktime + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2015-11-13 + 1.2.4 + Rebuild version for Pisi 2.0 + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-18 + 1.2.4 + Rebuild version + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-12-16 + 1.2.4 + Rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 1.2.4 + Rebuild for x264 + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-29 + 1.2.4 + Rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2013-11-26 + 1.2.4 + Rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2013-07-08 + 1.2.4 + rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 1.2.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-plugins-ugly + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Other plugins for gstreamer + Gstreamer için diğer eklentiler + les Plug-ins (greffons) Ugly (horribles) de GStreamer est un ensemble de plug-ins de bonne qualité et fonctionnant correctement, mais dont la distribution pose problème. La licence du plug-in ou de librairies nécessaires au plug-in n'est pas forcément tel que l'on aimerait qu'elle soit. Le code peut également être notoirement connu pour présenter un problème patent. + GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. + GStreamer Ugly Plug-in'leri kaliteli ve güzel çalışan eklentiler içerir. Fakat bu eklentilerin lisanslarla ilgili sorunları bulunabilir. + http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-0.10.19.tar.bz2 + + glib2-devel + gstreamer-devel + gstreamermm-devel + gst-plugins-base-devel + libdvdread-devel + x264-devel + orc-devel + lame-devel + opencore-amr-devel + a52dec-devel + libmad-devel + libcdio-devel + libmpeg2-devel + + + cdio-cd-text-api.patch + opencore-amr.patch + + multimedia/video/gst-plugins-ugly/pspec.xml + + + gst-plugins-ugly + + orc + glib2 + gst-plugins-base + gstreamer + x264 + lame + opencore-amr + a52dec + libmad + libcdio + libmpeg2 + libdvdread + + + /usr/lib/gstreamer-0.10 + /usr/share/doc/gst-plugins-ugly + /usr/share/gstreamer-0.10 + /usr/share/locale + + + + + 2014-05-28 + 0.10.19 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-05 + 0.10.19 + Rebuild for x264 + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-27 + 0.10.19 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-26 + 0.10.19 + Rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-28 + 0.10.19 + missing dep + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-07 + 0.10.19 + Rebuild for libcdio and x264 + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-10 + 0.10.19 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmatroska + http://www.matroska.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Format de conteneur multimédia extensible basé sur EBML. + Extensible multimedia container format based on EBML + EBML üzerine konumlandırılmış genişletilebilir çokluortam taşıyıcısı + Matroska is an extensible open standard Audio/Video container. It aims to become THE standard of multimedia container formats. Matroska is usually found as .mkv files (matroska video) and .mka files (matroska audio). + http://dl.matroska.org/downloads/libmatroska/libmatroska-1.4.2.tar.bz2 + + libebml-devel + + multimedia/video/libmatroska/pspec.xml + + + libmatroska + + libebml + libgcc + + + /usr/lib + /usr/share/doc + + + + libmatroska-devel + Development files for libmatroska + libmatroska için geliştirme dosyaları + + libmatroska + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + 2015-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) + 1.4.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.4.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-16 + 1.4.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-08-29 + 1.3.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libv4l + http://freecode.com/projects/libv4l + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + multimedia.video + V4L wrapper for V4L2 + V4L kitaplığı + Warstwa abstrakcji dla urządzeń video4linux2 + A library to access V4L2 API with V4L1 alike calls. + V4L2 arabirimini V4L1 tarzı çağrılarla erişim sağlayan kitaplık. + libv4l to zestaw bibliotek dodający niewielką warstwę abstrakcji dla urządzeń video4linux2. Celem tej warstwy jest ułatwienie autorom aplikacji obsługi szerokiej gamy urządzeń bez pisania osobnego kodu dla różnych urządzeń tej samej klasy. + http://linuxtv.org/downloads/v4l-utils/v4l-utils-1.0.1.tar.bz2 + + qt5-base-devel + libjpeg-turbo-devel + glibc-devel + libgcc + + multimedia/video/libv4l/pspec.xml + + + libv4l + + libjpeg-turbo + + + /lib/udev/rules.d + /lib/udev/rc_keymaps + /usr/lib + /usr/share/doc + + + + v4l-utils + Utilities for libv4l + Zbiór narzędzi do urządzeń Video4Linux + + libgcc + libv4l + + + /etc + /usr/bin + /usr/sbin + /usr/share/man + /usr/share/applications + /usr/share/icons + + + + libv4l-devel + Development files for libv4l + libv4l için geliştirme dosyaları + Pliki nagłówkowe bibliotek libv4l + + libv4l + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libv4l/contrib + + + + libv4l-32bit + 32-bit shared libraries for libv4l + libv4l için 32-bit paylaşımlı kitaplıklar + 32-bitowe biblioteki libv4l + emul32 + emul32 + + libjpeg-turbo-32bit + + + libjpeg-turbo-32bit + glibc-32bit + libv4l + + + /usr/lib32 + + + + + 2014-05-20 + 1.0.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-20 + 23042013 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-17 + 23042013 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-17 + 23042013 + Release Bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 23042013 + missing dep + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-04-23 + 23042013 + bump frome gitsnapshot + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-02-17 + 0.9.3 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-12-03 + 0.8.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gst-plugins-good-next + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + A set of good-quality plugins for GStreamer + gst-plugins-good contains a set of mature plugins and elements for GStreamer. + http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.4.5.tar.xz + + gst-plugins-base-next-devel + pulseaudio-libs-devel + gstreamer-next-devel + libjpeg-turbo-devel + gdk-pixbuf-devel + libraw1394-devel + libXdamage-devel + libXfixes-devel + libsoup-devel + libXext-devel + libv4l-devel + libXv-devel + cairo-devel + aalib-devel + speex-devel + gtk2-devel + flac-devel + orc-devel + + multimedia/video/gst-plugins-good-next/pspec.xml + + + gst-plugins-good-next + + orc + flac + zlib + speex + libX11 + libpng + cairo + glib2 + aalib + bzip2 + libv4l + libXext + libsoup + libXfixes + gdk-pixbuf + libXdamage + libjpeg-turbo + gstreamer-next + pulseaudio-libs + gst-plugins-base-next + + + /etc/gconf + /usr/bin + /usr/lib + /usr/share/gstreamer-1.0/presets + /usr/share/doc + /usr/share/gtk-doc + /usr/share/man + /usr/share/locale + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-23 + 1.2.1 + version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2.0 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gstreamer-vaapi + http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ + + Osman Erkan + osman.erkan@pisilinux.org + + LGPLv2.1 + library + multimedia.video + GStreamer Multimedia Framework VA Plugins + gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. + http://freedesktop.org/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-0.6.0.tar.bz2 + + mesa-devel + libva-devel + libdrm-devel + wayland-devel + gstreamer-devel + libXrandr-devel + libXrender-devel + gstreamer-next-devel + gst-plugins-bad-devel + gst-plugins-base-devel + gst-plugins-bad-next-devel + gst-plugins-base-next-devel + + multimedia/video/gstreamer-vaapi/pspec.xml + + + gstreamer-vaapi + + mesa + libva + libdrm + gstreamer + libXrandr + libXrender + wayland-client + gst-plugins-bad + gst-plugins-base + + + /usr/share/doc + /usr/lib/gstreamer-0.10/ + /usr/lib/libgstvaapi*0.10* + + + + gstreamer-vaapi-next + GStreamer-next Multimedia Framework VA Plugins. + + mesa + libva + libdrm + libXrandr + libXrender + gstreamer-next + wayland-client + gst-plugins-bad-next + gst-plugins-base-next + + + /usr/lib/gstreamer-1.0/ + /usr/lib/libgstcodecparsers_vpx* + /usr/lib/libgstvaapi*1.4* + + + + gstreamer-vaapi-devel + Development files for gstreamer-vaapi + gstreamer için geliştirme dosyaları + + libva-devel + gstreamer-devel + gstreamer-vaapi + + + /usr/include/gstreamer-1.0/gst/vaapi/ + /usr/lib/pkgconfig/gstreamer-*0.10* + + + + gstreamer-vaapi-next-devel + Development files for gstreamer-vaapi-next + + libva-devel + gstreamer-next-devel + gstreamer-vaapi-next + + + /usr/include/gstreamer-1.4/ + /usr/lib/pkgconfig/gstreamer-vaapi-wayland-1.0.pc + /usr/lib/pkgconfig/gstreamer-vaapi-x11-1.0.pc + /usr/lib/pkgconfig/gstreamer-vaapi-1.0.pc + /usr/lib/pkgconfig/gstreamer-vaapi-glx-1.0.pc + + + + + 2015-07-23 + 0.6.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-28 + 0.5.8 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-24 + 0.5.8 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libtheora + http://www.theora.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.video + Le codec (compresseur / décompresseur) de compression vidéo Theora. + The Theora Video Compression Codec + Theora video sıkıştırma kodlaması + Der Theora Video Kompressions-Codec + libtheora is Xiph.Org's first publicly released video codec, intended for use within the Ogg's project's Ogg multimedia streaming system. + libtheora, Ogg projesi kapsamında Ogg çokluortam akış sistemi ile beraber kullanılmak üzere tasarlanmış bir video kodlamasıdır. + http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2 + + libogg-devel + libvorbis-devel + + + flags.patch + libtheora-1.1.1-libpng16.patch + + multimedia/video/libtheora/pspec.xml + + + libtheora + + libogg + libvorbis + + + /usr/lib + /usr/share/doc + + + + libtheora-32bit + 32-bit shared libraries for libtheora + emul32 + emul32 + + libogg-32bit + glibc-32bit + + + libtheora + libogg-32bit + glibc-32bit + + + /usr/lib32 + + + + libtheora-devel + Development files for libtheora + libtheora için geliştirme dosyaları + + libtheora + libogg-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2014-05-20 + 1.1.1 + Rebuild, add libpng16 patch. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-14 + 1.1.1 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 1.1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gst-plugins-ugly-next + http://gstreamer.net/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.video + Other plugins for gstreamer + GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. + http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.4.5.tar.xz + + gst-plugins-base-next-devel + gstreamer-next-devel + x264-devel + lame-devel + opencore-amr-devel + a52dec-devel + libmad-devel + libcdio-devel + libmpeg2-devel + libdvdcss-devel + libid3tag-devel + libdvdread-devel + orc-devel + + multimedia/video/gst-plugins-ugly-next/pspec.xml + + + gst-plugins-ugly-next + + gst-plugins-base-next + gstreamer-next + x264 + glib2 + lame + opencore-amr + a52dec + libmad + libcdio + libmpeg2 + libdvdread + orc + + + /usr/lib/gstreamer-1.0 + /usr/share/doc/ + /usr/share/gtk-doc/html/gst-plugins-ugly-plugins-1.0 + /usr/share/gstreamer-1.0 + /usr/share/locale + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-07 + 1.2.3 + Rebuild for x264. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-23 + 1.2.1 + version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2.0 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gst-libav-next + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Gstreamer plugin for the libav codec + Gstreamer plugin for the libav codec. + http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.4.5.tar.xz + + gst-plugins-base-next-devel + gstreamer-next-devel + liboil-devel + orc-devel + ffmpeg-devel + + multimedia/video/gst-libav-next/pspec.xml + + + gst-libav-next + + gst-plugins-base-next + gstreamer-next + bzip2 + glib2 + ffmpeg + liboil + + + /usr/lib + /usr/share/doc + /usr/share/gtk-doc + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-23 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-26 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-29 + 1.2.1 + Version bump + rebuild for ffmpeg + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-10-14 + 1.2.0 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + vlc + http://www.videolan.org/vlc + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:gui + multimedia.video + VLC media player + VLC çoklu ortam oynatıcısı + Odtwarzacz plików multimedialnych i serwer strumieni + VLC reproductor multimedia + VLC is a famous video player and streamer. + Media oynatıcısı ve yayın dinleyici + VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci. + VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia + vlc + http://download.videolan.org/pub/videolan/vlc/2.2.1/vlc-2.2.1.tar.xz + + libcdio + eudev-devel + lua-devel + libgcrypt + xcb-proto + zlib-devel + gtk2-devel + zvbi-devel + faac-devel + flac-devel + lirc-devel + mesa-devel + x265-devel + dbus-devel + avahi-devel + samba-devel + aalib-devel + faad2-devel + speex-devel + libva-devel + libXt-devel + libXv-devel + cairo-devel + util-macros + libxcb-devel + libXau-devel + libtar-devel + libvpx-devel + ffmpeg-devel + libass-devel + libXpm-devel + gnutls-devel + libv4l-devel + libdca-devel + libmtp-devel + libmad-devel + libogg-devel + libsdl-devel + taglib-devel + a52dec-devel + libebml-devel + libxml2-devel + libcddb-devel + libcaca-devel + libXext-devel + librsvg-devel + libcdio-devel + fribidi-devel + libupnp-devel + libkate-devel + freerdp-devel + twolame-devel + minizip-devel + live555-devel + libopus-devel + freetype-devel + libXdmcp-devel + kernel-headers + xcb-util-devel + libmpeg2-devel + alsa-lib-devel + libshout-devel + libdvbpsi-devel + libtheora-devel + libbluray-devel + libgcrypt-devel + libnotify-devel + libssh2-devel + openssl-devel + libvorbis-devel + libdc1394-devel + libid3tag-devel + sdl-image-devel + libmpcdec-devel + libdvdcss-devel + libdvdnav-devel + vcdimager-devel + libraw1394-devel + fluidsynth-devel + libdvdread-devel + fontconfig-devel + libavc1394-devel + libmodplug-devel + libXxf86vm-devel + gdk-pixbuf-devel + libmatroska-devel + libXinerama-devel + schroedinger-devel + crystalhd-firmware + libgpg-error-devel + libvncserver-devel + libsamplerate-devel + libjpeg-turbo-devel + qt5-base-devel + qt5-x11extras-devel + libchromaprint-devel + gstreamer-next-devel + pulseaudio-libs-devel + xcb-util-keysyms-devel + gst-plugins-base-next-devel + + + qt4-select.patch + lc-2.2.0-fix-xcb.patch + vlc-2.2.0-rdp-1.2.0.patch + vlc-2.1.1-desktop.patch + vlc-2.0.4-fix-definition.patch + vlc-2.1.0-TomWij-bisected-PA-broken-underflow.patch + + multimedia/video/vlc/pspec.xml + + + vlc + + qt5-base + qt5-x11extras + libtar + libXpm + fribidi + libXext + minizip + zlib + libX11 + libgcc + freetype + vlc-libs + libXinerama + dejavu-fonts + + + /usr/bin + /usr/lib/vlc/plugins/gui + /usr/share/vlc + /usr/share/applications + /usr/share/icons + /usr/share/kde4/apps/solid/actions + /usr/share/doc + /usr/share/man + /usr/share/locale + + + System.Package + + + + vlc-lua + Lua scripting for VLC + + lua + vlc-libs + + + /usr/lib/vlc/lua + /usr/lib/vlc/plugins/lua/liblua_plugin.so + + + + vlc-libs + Codec and plugin library files for VLC + vlc için codec ve eklenti kitaplık dosyaları + + libX11 + libgcc + freetype + dbus + zlib + gtk2 + lirc + flac + zvbi + x265 + mesa + libva + faad2 + samba + speex + aalib + cairo + glib2 + eudev + libpng + libxcb + libidn + libmad + libass + gnutls + libdca + libsdl + ffmpeg + a52dec + libmtp + taglib + libogg + libvpx + libxml2 + libssh2 + libcddb + freerdp + libopus + libcaca + twolame + libebml + libcdio + librsvg + live555 + minizip + fribidi + libkate + libupnp + libshout + alsa-lib + libvdpau + libmpeg2 + libdvbpsi + libdc1394 + sdl-image + vcdimager + libbluray + libnotify + libdvdnav + libmpcdec + libtheora + libvorbis + libgcrypt + fontconfig + libraw1394 + fluidsynth + libmodplug + libdvdread + gdk-pixbuf + libavc1394 + libmatroska + schroedinger + libvncserver + libgpg-error + libsamplerate + libjpeg-turbo + gstreamer-next + libchromaprint + pulseaudio-libs + xcb-util-keysyms + crystalhd-firmware + gst-plugins-base-next + + + /usr/lib/libvlc* + /usr/lib/vlc + + + + vlc-devel + Development files for vlc + vlc için geliştirme dosyaları + Pliki nagłówkowe vlc + + vlc-libs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-01 + 2.2.1 + Version Bump. + Vedat Demir + vedati@pisilinux.org + + + 2014-12-15 + 2.1.5 + Release Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-08-18 + 2.1.5 + Release Bump. + Vedat Demir + vedati@pisilinux.org + + + 2014-07-07 + 2.1.5 + Version Bump. + Vedat Demir + vedati@pisilinux.org + + + 2014-06-19 + 2.1.4 + Rebuild for libtar. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-31 + 2.1.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-07 + 2.1.4 + Rebuild for x264 + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-23 + 2.1.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-05 + 2.1.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-26 + 2.1.1 + Rebuild for ffmpeg. + PisiLinux Community + admins@pisilinux.org + + + 2013-11-16 + 2.1.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-11-10 + 2.1.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-05 + 2.0.8a + V.bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-01 + 2.0.8 + V.bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 2.0.7 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-06-21 + 2.0.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-01 + 2.0.6 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-06-01 + 2.0.6 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-11 + 2.0.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-12-15 + 2.0.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gstreamer-next + http://gstreamer.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.video + GStreamer streaming media framework runtime + GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. + http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.4.5.tar.xz + + check + valgrind + gobject-introspection-devel + libxml2-devel + ghostscript-devel + + multimedia/video/gstreamer-next/pspec.xml + + + gstreamer-next + + glib2 + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/gir-1.0 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/locale + /usr/share/man + + + + gstreamer-next-32bit + 32-bit shared libraries for gstreamer + emul32 + emul32 + + glib2-32bit + + + glib2-32bit + glibc-32bit + gstreamer-next + + + /usr/lib32 + + + + gstreamer-next-devel + Development files for gstreamer + + gstreamer-next + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-26 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-13 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-20 + 1.2.1 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-11 + 1.2.0 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-plugins-bad + http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + A set of GStreamer plug-ins that aren't up to par compared to the rest + Diğer eklentilerle karşılaştırıldığında çok iyi durumda olmayan gstreamer eklentileri + GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. + gst-plugins-bad, iyiye yakın kalitede olan ancak gerçek bir geliştirici, belgelendirme, test seti gibi eksikleri bulunan eklentilerdir. + http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-0.10.23.tar.bz2 + + gstreamermm-devel + gst-plugins-base-devel + libdvdread-devel + libdvdnav-devel + soundtouch-devel + faac-devel + valgrind + jasper-devel + libdca-devel + gsm-devel + mjpegtools-devel + libdvdnav-devel + libsndfile-devel + DirectFB-devel + libSM-devel + libICE-devel + celt-devel + libdc1394-devel + alsa-lib-devel + libsdl-devel + soundtouch-devel + libtheora-devel + libmodplug-devel + xvid-devel + libdvdread-devel + libvdpau-devel + rtmpdump-devel + schroedinger-devel + gdk-pixbuf-devel + libvo-aacenc-devel + libvo-amrwbenc-devel + + + directfb.patch + + multimedia/video/gst-plugins-bad/pspec.xml + + + gst-plugins-bad + + gst-plugins-base + gstreamer + DirectFB + celt + libdc1394 + libdca + libgcc + libpng + faac + bzip2 + glib2 + jasper + libX11 + gsm + libmodplug + mjpegtools + libsdl + soundtouch + libdvdnav + libsndfile + xvid + libdvdread + libvdpau + schroedinger + orc + libvo-aacenc + libvo-amrwbenc + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/gstreamer-0.10 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/glib-2.0/schemas + + + + gst-plugins-bad-devel + Development files for gst-plugins-bad + gst-plugins-bad için geliştirme dosyaları + + gst-plugins-bad + gstreamer-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2014-05-26 + 0.10.23 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-13 + 0.10.23 + Rebuild for mjpegtools + Kamil Atlı + suvarice@gmail.com + + + 2013-10-19 + 0.10.23 + Fix build dependency's. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-10-14 + 0.10.23 + clean build. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-10-14 + 0.10.23 + rebuild for DirectFB. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-28 + 0.10.23 + Dep Fixed. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-05-25 + 0.10.23 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-09 + 0.10.23 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmp4v2 + http://code.google.com/p/mp4v2 + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + library + app:console + multimedia.video + MPEG4 library + MPEG4 kütüphanesi + Librairie MPEG4 extraite de MPEG4IP, habituellement utilisée dans les sytèmes de son 3D. + MPEG4 library extracted from MPEG4IP, usually used in 3D sound systems. + Genellikle 3B ses işleme uygulamalarında kullanılan, MPEG4IP yazılımının parçası olan MPEG4 kütüphanesi. + Librería MPEG4 parte de MPEG4IP, comúnmente utilizado en sistemas de sonido 3D. + http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2 + + libgcc + + multimedia/video/libmp4v2/pspec.xml + + + libmp4v2 + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc/libmp4v2 + /usr/share/man + + + + libmp4v2-devel + Development files for libmp4v2 + libmp4v2 için geliştirme dosyaları + + libmp4v2 + + + /usr/include + + + + + 2014-05-20 + 2.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 2.0.0 + Rebuild + Stefan Gronewold(groni) groni@pisilinux.org + + 2012-11-14 + 2.0.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gst-plugins-base-next + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Basepack of plugins for gstreamer + GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. + http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.4.5.tar.xz + + gstreamer-next-devel + cdparanoia + pango-devel + cairo-devel + libXv-devel + libogg-devel + libXext-devel + alsa-lib-devel + libvorbis-devel + libtheora-devel + libvisual-devel + gobject-introspection-devel + orc-devel + + multimedia/video/gst-plugins-base-next/pspec.xml + + + gst-plugins-base-next + + zlib + glib2 + libX11 + gstreamer-next + cdparanoia + pango + cairo + libXv + libogg + libXext + alsa-lib + libvorbis + libvisual + libtheora + orc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/gtk-doc + /usr/share/gir-1.0 + /usr/share/man + /usr/share/locale + /usr/share/gst-plugins-base/1.0 + + + + gst-plugins-base-next-devel + Development files for gst-plugins-base + + gst-plugins-base-next + gstreamer-next-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-20 + 1.2.1 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-plugins-base + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Basepack of plugins for gstreamer + Gstreamer için temel eklentiler paketi + Les plug-ins (greffons) de base GStreamer est une collection bien peaufinée et bien maintenues de plug-ins et d'éléments GStreamer, couvrant l'éventail des types d'éléments que quelqu'un pourrait vouloir écrire pour GStreamer. Il contient également des librairies d'aide ainsi que les classes de bases utiles pour l'écriture d'éléments. Un grand nombre de décodeurs, d'encodeurs et de filtres audio et vidéos sont également inclus. + GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. + Bu paket, Gstreamer'ın rahatlıkla genişleyebilmesini sağlayan ve bakımları sürekli yapılan temel eklentileri içerir. Program parçacığı yazmak için yardımcı kütüphaneler ve temel sınıflar da bulunur. + http://ftp.gnome.org/pub/gnome/sources/gst-plugins-base/0.10/gst-plugins-base-0.10.36.tar.xz + + gstreamer-devel + gstreamer-next-devel + pango-devel + libXv-devel + libogg-devel + alsa-lib-devel + libvorbis-devel + libtheora-devel + libvisual-devel + gobject-introspection-devel + orc-devel + libxml2-devel + + multimedia/video/gst-plugins-base/pspec.xml + + + gst-plugins-base + + zlib + glib2 + libX11 + libxml2 + gstreamer + pango + cairo + libXv + libogg + libXext + alsa-lib + libvorbis + libvisual + libtheora + orc + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/gstreamer-0.10 + /usr/lib/libgst* + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/gst-plugins-base + /usr/share/man + /usr/share/locale + + + + gst-plugins-base-32bit + 32-bit shared libraries for gst-plugins-base + emul32 + emul32 + + orc-32bit + zlib-32bit + glib2-32bit + libXv-32bit + cairo-32bit + pango-32bit + libSM-32bit + libogg-32bit + libICE-32bit + libX11-32bit + libxml2-32bit + libXext-32bit + alsa-lib-32bit + gstreamer-32bit + libvorbis-32bit + + + gst-plugins-base + orc-32bit + zlib-32bit + glibc-32bit + glib2-32bit + libXv-32bit + cairo-32bit + pango-32bit + libogg-32bit + libX11-32bit + libxml2-32bit + libXext-32bit + alsa-lib-32bit + gstreamer-32bit + libvorbis-32bit + + + /usr/lib32/gstreamer-0.10 + /usr/lib32/libgst* + + + + gst-plugins-base-devel + Development files for gst-plugins-base + gst-plugins-base için geliştirme dosyaları + + gst-plugins-base + glib2-devel + gstreamer-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig/gstreamer*.pc + /usr/share/man/man3 + + + + + 2014-05-20 + 0.10.36 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-27 + 0.10.36 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-01 + 0.10.36 + Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 0.10.36 + Move pc files to devel pack, rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-07 + 0.10.36 + Rebuild for libcdio-0.90 + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-25 + 0.10.36 + configure fix. + PisiLinux Community + admins@pisilinux.org + + + 2013-02-14 + 0.10.36 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-09 + 0.10.36 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libvpx + http://www.webmproject.org + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + multimedia.video + WebM VP8 Codec SDK + WebM VP8 geliştirme altyapısı + libvpx is the VP8 development library usually used in WebM and similiar formats. + libvpx WebM ve benzeri çokluortam taşıyıcılarda kullanılan VP8 kodeği geliştirme kitaplığıdır. + http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-1.4.0.tar.bz2 + + libgcc + + multimedia/video/libvpx/pspec.xml + + + libvpx + + /usr/bin + /usr/lib + /usr/share/doc/libvpx + + + + libvpx-devel + libvpx header files + libvpx için başlık dosyaları + + libvpx + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-07-15 + 1.4.0 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-22 + 1.3.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-29 + 1.3.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-09 + 1.2.0 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-06 + 1.2.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdv + http://libdv.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.video + Software codec for dv-format video (camcorders etc) + Dijital video (kaydedici cihazlar vs) için çözümleme yazılımı + Le codec Quasar DV (libdv) est un codec logiciel pour la vidéo DV, le format d'encodage utilisé par la plupart des caméras numériques, typiquement celles gérant l'interface IEEE 1394 (a.k.a. FireWire ou i.Link). Libdv a été développé selon les standards officiels pour la vidéo DV : IEC 61834 et SMPTE 314M. + The Quasar DV codec (libdv) is a software codec for DV video, the encoding format used by most digital camcorders, typically those that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed according to the official standards for DV video: IEC 61834 and SMPTE 314M. + Quasar DV codec (libdv), DV video için çözümleyicidir. Bu dosya biçimi çoğu dijital kameralarda (özellikle de IEEE 1394) kullanılır. Libdv, DV videonun resmi standartları olan IEC 61834 ve SMPTE 314M'ye göre geliştirilmiştir. + El codec Quasar DV (libdv) es un codec de software para video DV, el formato de codificación usado en la mayoría de los camcorders digitales, que típicamente soportan la interfaz IEEE 1394 (alias FireWire o i.Link). Libdv fue desarrollado de conforme los estándares oficiales para video DV: IEC 61834 y SMPTE 314M. + mirrors://sourceforge/libdv/libdv-1.0.0.tar.gz + + libsdl-devel + popt-devel + + + libdv-0.99-2.6.patch + libdv-1.0.0-pic.patch + libdv-1.0.0-dso-linking.patch + libdv-mmxdetect-athlon.patch + + multimedia/video/libdv/pspec.xml + + + libdv + + popt + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libdv-devel + Development files for libdv + libdv için geliştirme dosyaları + + libdv + + + /usr/include/libdv + /usr/lib/pkgconfig + + + + + 2014-05-25 + 1.0.0 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-29 + 1.0.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.0.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + x265 + http://x265.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.video + Open source H265/EVC encoder + Açık kaynak kodlu H265/EVC çözücü + x265 is a commercially funded open source implementation of the H.265/High Efficiency Video Coding (HEVC) compression standard. + x265 H265/EVC görüntü dosyalarını açmak için kullanılan bir kütüphane + https://bitbucket.org/multicoreware/x265/get/1.7.tar.bz2 + + yasm-devel + cmake + + multimedia/video/x265/pspec.xml + + + x265 + + libgcc + + + /usr/bin + /usr/lib + + + + x265-devel + Development files for x265 + x265 için geliştirme dosyaları + + x265 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-23 + 1.7 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-02 + 1.4 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-18 + 1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-05 + 0.9 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + vokoscreen + http://www.kohaupt-online.de/hp/ + + Pisilinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.video + New desktop recording program + Yeni masaüstü kayıt programı + Vokoscreen is a new application you to record your desktop. It’s very simple and it uses a minimalistic GUI + Vokoscreen masaüstü kaydetmek için yeni bir uygulamadır.Çok basit kullanışlı bir arayüz sunar. + vokoscreen + https://github.com/vkohaupt/vokoscreen/archive/2.4.3-beta.tar.gz + + qt5-base-devel + qt5-x11extras-devel + qt5-linguist + qt5-qdbusviewer + libv4l-devel + ffmpeg-devel + opencv-devel + alsa-lib-devel + libX11-devel + opencv-devel + pkgconfig + + + qtlocalpeer.patch + datastream.patch + + multimedia/video/vokoscreen/pspec.xml + + + vokoscreen + + libX11 + libgcc + libv4l + qt5-base + qt5-x11extras + alsa-lib + + + /usr/bin + /usr/share/applications + /usr/share/doc + /usr/share/man + /usr/share/pixmaps + + + + + 2015-11-15 + 2.4.6 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-08-13 + 2.4.3 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + crystalhd + http://www.broadcom.com/support/crystal_hd/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + multimedia.video + Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD + Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri + Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD + Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri + http://source.pisilinux.org/1.0/crystalhd.tar.xz + multimedia/video/crystalhd/pspec.xml + + + libcrystalhd + Broadcom Crystal HD için kütüphane + + /usr/lib/libcrystalhd.so + /usr/lib/libcrystalhd.so.3 + /usr/lib/libcrystalhd.so.3.6 + /usr/share/doc + + + + libcrystalhd-devel + Broadcom Crystal HD için geliştirici dosyaları + + libcrystalhd + + + /usr/include/libcrystalhd/bc_dts_defs.h + /usr/include/libcrystalhd/bc_dts_types.h + /usr/include/libcrystalhd/libcrystalhd_if.h + /usr/include/libcrystalhd/libcrystalhd_version.h + + + + crystalhd-firmware + Broadcom Crystal HD firmware dosyaları + + /lib/firmware + + + + + 2014-05-20 + 20100703 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-21 + 20100703 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-10-24 + 20100703 + First release + Erdem Artan + erdem.artan@linux.org.tr + + + + + + smpeg + http://www.lokigames.com/development/smpeg.php3 + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:gui + multimedia.video + SDL MPEG kitaplığı + SDL MPEG + SDL MPEG library + SMPEG is a SDL MPEG decoding library. + SMPEG, MPEG formatını kullanabilen SDL kitaplığıdır. + http://source.pisilinux.org/1.0/smpeg-0.4.5.tar.xz + + libsdl-devel + freeglut-devel + mesa-devel + mesa-glu-devel + + + smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff + smpeg-0.4.5-fix-header.patch + smpeg-0.4.5-libsupc++.patch + smpeg-0.4.5-link.patch + + multimedia/video/smpeg/pspec.xml + + + smpeg + + libsdl + mesa + mesa-glu + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + smpeg-devel + Development files for smpeg + smpeg için geliştirme dosyaları + + smpeg + + + /usr/bin/smpeg-config + /usr/include + /usr/share/aclocal + + + + smpeg-32bit + 32-bit shared libraries for smpeg + smpeg için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + freeglut-32bit + mesa-32bit + libsdl-32bit + mesa-glu-32bit + + + smpeg + libsdl-32bit + + + /usr/lib32 + + + + + 2014-06-01 + 0.4.5 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.4.5 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-31 + 0.4.5 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 0.4.4 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-12-30 + 0.4.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libart_lgpl + http://www.levien.com/libart + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.graphics + A LGPL version of libart + libart'ın bir LGPL sürümü + Libart est une librairie pour graphiques 2D à hautes performances. Elle est actuellement utilisé comme moteur de rendu anti-aliassé pour le Canvas Gnome. Libart fournit le support pour un modèle image très puissant, simplement le même que SVG et l'API (Interface de Programmation d'Application) Java 2D. + Libart is a library for high-performance 2D graphics. It is currently being used as the antialiased rendering engine for the Gnome Canvas. Libart supports a very powerful imaging model, basically the same as SVG and the Java 2D API. + Libart, yüksek performanslı iki boyutlu grafikler için bir kütüphanedir. Halihazırda Gnome Canvas için kenarların yumuşatıldığı dönüştürme aracı olarak kullanılmaktadır. Libart, temelde Java 2D API ve SVG benzeri, çok güçlü bir görüntüleme modelini destekler. +  Libart es una librería para gráficos 2D de alta performance. Actualmente está usado como antialiased rendering engine para Gnome Canvas. Libart soporta un modelo de imagen muy potente, básicamente el mismo como SVG y el API 2D de Java. + http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.bz2 + + noartconfig.patch + libart_lgpl-2.3.21-crosscompile.patch + libart_lgpl-2.3.21-no-test-build.patch + + multimedia/graphics/libart_lgpl/pspec.xml + + + libart_lgpl + + /usr/lib + /usr/share/doc + + + + libart_lgpl-devel + Development files for libart_lgpl + libart_lgpl için geliştirme dosyaları + + libart_lgpl + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 2.3.21 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-29 + 2.3.21 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.3.21 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libwmf + http://wvware.sourceforge.net/libwmf.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics + Library for reading and converting WMF files + WMF (Windows metafile) okuma ve dönüştürme kitaplığı + Librairie pour convertir les fichiers WMF. + A library for reading and converting Windows MetaFile vector graphics (WMF). + Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir. + mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz + + libjpeg-turbo-devel + harfbuzz-devel + freetype-devel + libX11-devel + libxml2-devel + gettext-devel + gdk-pixbuf-devel + + multimedia/graphics/libwmf/pspec.xml + + + libwmf + + zlib + libX11 + libpng + libxml2 + freetype + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/libwmf + + + + libwmf-devel + Development files for libwmf + libwmf için geliştirme dosyaları + + libwmf + + + /usr/bin/libwmf-config + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 0.2.8.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 0.2.8.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.2.8.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libjpeg-turbo + http://www.libjpeg-turbo.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + multimedia.graphics + MMX, SSE, and SSE2 SIMD accelerated JPEG library + libjpeg-turbo is a derivative of libjpeg for x86 and x86-64 processors which +uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression and decompression. libjpeg-turbo is generally 2-4x as fast as the unmodified version of libjpeg v6b, all else being equal. + mirrors://sourceforge/libjpeg-turbo/1.3.1/libjpeg-turbo-1.3.1.tar.gz + + fix_doc.patch + + multimedia/graphics/libjpeg-turbo/pspec.xml + + + libjpeg-turbo + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + jpeg + + + + libjpeg-turbo-devel + Development files for libjpeg-turbo + libjpeg-turbo için geliştirme dosyaları + + libjpeg-turbo + + + /usr/include/ + + + jpeg-devel + + + + libjpeg-turbo-32bit + 32-bit shared libraries for jpeg + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libjpeg-turbo + + + /usr/lib32 + + + jpeg-32bit + + + + + 2014-05-15 + 1.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-05-15 + 1.2.1 + Switching from jpeg to libjpeg-turbo + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-12 + 1.2.1 + Source url write mirrors + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-21 + 1.2.1 + Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-07-31 + 1.2.1 + First Release + PisiLinux Community + admins@pisilinux.org + + + + + + libcaca + http://caca.zoy.org/ + + PisiLinux Community + admins@pisilinux.org + + WTFPL-2 + LGPLv2.1 + GPLv2 + library + multimedia.graphics + A library that creates colored ASCII-art graphics + Renkli ASCII-sanat grafikleri oluşturan bir kütüphane + libcaca est une librairie graphique qui génère du texte au lieu de pixels afin de pouvoir fonctionner sur de vieilles cartes graphique ou sur des terminaux texte. + libcaca is a graphics library that outputs text instead of pixels, so that it can work on older video cards or text terminals + libcaca piksel yerine metin üreten bir grafik kütüphanesidir, böylece eski video kart yada metin uçbirimleriyle çalışabilir. + libcaca es una librería gráfica que produce una salida de texto en vez de pixels, por lo tanto puede funcionar con tarjetas de video más antiguas y terminales de texto + http://caca.zoy.org/raw-attachment/wiki/libcaca/libcaca-0.99.beta19.tar.gz + + imlib2-devel + + multimedia/graphics/libcaca/pspec.xml + + + libcaca + + imlib2 + zlib + slang + ncurses + libX11 + + + /usr/bin + /usr/lib + /usr/share/libcaca + /usr/share/man + /usr/share/doc + + + + libcaca-devel + Development files for libcaca + libcaca için geliştirme dosyaları + + libcaca + + + /usr/bin/caca-config + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-21 + 0.99_beta19 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 0.99_beta18 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 0.99_beta18 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 0.99_beta17 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libmng + http://www.libmng.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.graphics + Multiple Image Networkgraphics lib (animated png's) + Çoklu resim Networkgraphics (Animasyonlu png) + Libmng - La librairie de référence pour lire, afficher, écrire et examiner des Multiple-Image Network Graphics (graphiques orientés réseaux composés d'images multiples). MNG est l'extension d'animation pour le format d'image populaire PNG. + Libmng -The reference library for reading, displaying, writing and examining Multiple-Image Network Graphics. MNG is the animation extension to the popular PNG image-format. + Libmng, Çoklu Görüntü Ağ Grafiklerini (MNG) okuma, görüntüleme, yazma ve denemek için başvuru kütüphanesidir. MNG popüler PNG görüntü formatı için animasyon uzantısıdır. + Libmng -librería de referencia para lectura, visualización, escritura y análisis de gráficos tipo Multiple-Image Network. MNG es la extensión de animación al formato popular de imágenes PNG. + http://sourceforge.net/projects/libmng/files/libmng-devel/2.0.2/libmng-2.0.2.tar.gz + + zlib-devel + lcms2-devel + libjpeg-turbo-devel + + multimedia/graphics/libmng/pspec.xml + + + libmng + + zlib + libjpeg-turbo + lcms2 + + + /usr/lib + + + + libmng-devel + + libmng + + + /usr/share/doc + /usr/share/man + /usr/include/ + + + + libmng-32bit + 32-bit shared libraries for libmng + emul32 + emul32 + + zlib-32bit + lcms2-32bit + libjpeg-turbo-32bit + glibc-32bit + + + zlib-32bit + lcms2-32bit + libjpeg-turbo-32bit + glibc-32bit + libmng + + + /usr/lib32 + + + + + 2014-05-19 + 2.0.2 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 2.0.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-12-16 + 1.0.10 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + imlib2 + http://enlightenment.org/Libraries/Imlib2 + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.graphics + Second version of the general image loading and rendering library + Genel resim yükleme ve tarama kütüphanesi'nin ikinci versiyonu + Imlib 2 est le successeur de Imlib. Il ne s'agit pas là juste d'une version plus récente d'imlib 1, mais vraiment d'une librairie complètement différente. S'agissant effectivement d'une différente librairie - même si elles ont des fonctionnalités similaires, Imlib2 peut être installée aux côtés de Imlib1.x sans aucun problème. + Imlib 2 is the successor to Imlib. It is not just a newer version - it is a completely new library. Imlib2 can be installed alongside Imlib 1.x without any problems since they are effectively different libraries - but they Have very similar functionality. + Imlib 2, Imlib'in gelişmişidir. Sadece ileri bir sürümü değildir, tamamen yeni bir kütüphanedir. Imlib2 ve Imlib 1.x tamamen farklı oldukları için bir arada kurulu bulunabilirler. İkisi de aynı amaçla yapılmıştır. + Imlib 2 es el sucesor de Imlib. no es simplemente una versión actualizada - es una librería completamente nueva. Imlib2 puede instalarse junto con Imlib 1.x sin problemas, ya que efectivamente son librerías diferentes - sin embargo tienen una funcionalidad similar. + http://sourceforge.net/projects/enlightenment/files/imlib2-src/1.4.6/imlib2-1.4.6.tar.gz + + giflib-devel + libid3tag-devel + libXext-devel + libjpeg-turbo-devel + tiff-devel + freetype-devel + + + imlib2-1.4.5-no-my-libs.patch + imlib2-giflib5.patch + + multimedia/graphics/imlib2/pspec.xml + + + imlib2 + + giflib + libid3tag + libXext + libjpeg-turbo + tiff + zlib + bzip2 + libX11 + libpng + freetype + + + /usr/bin + /usr/lib + /usr/share/imlib2 + /usr/share/doc + + + + imlib2-devel + Development files for imlib2 + imlib2 için geliştirme dosyaları + + imlib2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 1.4.6 + Fix build. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-21 + 1.4.6 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-26 + 1.4.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 1.4.5 + First release + PisiLinux Community + namsp-01@hotmail.it + + + + + + mjpegtools + http://mjpeg.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:gui + multimedia.graphics + Tools for MJPEG video + MJPEG video dosyaları için kullanılabilecek araçlar + mjpegtools is a complete suite of tools for you to capture, edit, process, filter and play your media as you wish. You can digitize your VHS collection, create DVDs, and do advanced video filtering on already-digitized videos. + Mjpegtools size görüntü yakalama, düzenleme, işleme ve filtreleme olanakları sunan ayrıca dosyalarınızı istediğiniz gibi oynatabileceğiniz tam bir araçlar paketidir. VHS kolleksiyonunuzu dijital ortama taşıyabilir, DVDler yaratabilirsiniz. Zaten dijital ortamda olan videolara ileri düzeyde video filtrelemesi yapabilirsiniz. + http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/mjpegtools-2.1.0.tar.gz/download + + gtk2-devel + libdv-devel + libsdl-devel + libXxf86dga-devel + libjpeg-turbo-devel + libpng-devel + + multimedia/graphics/mjpegtools/pspec.xml + + + mjpegtools + + gtk2 + glib2 + libdv + libgcc + libsdl + libjpeg-turbo + libpng + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + mjpegtools-devel + Development files for mjpegtools + mjpegtools için geliştirme dosyaları + + mjpegtools + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-06-10 + 2.1.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-26 + 2.1.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-13 + 2.1.0 + Version bump + Kamil Atlı + suvarice@gmail.com + + + 2012-10-07 + 2.0.1_rc1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + giflib + http://sourceforge.net/projects/giflib + + PisiLinux Community + admins@pisilinux.org + + MIT + library + multimedia.graphics + Library to handle, display and manipulate GIF images + GIF türündeki resimleri görüntüleyip işlemeye aracılık eden kitaplık + libungif est une librairies de lecture et d'écriture d'images gif. La fonctionnalité de sauvegarde utilise un algorithme gif non compressé pour éviter le brevet Unisys LZW. giflib est un remplaçant de cette dernière compatible aussi bien au niveau de l'interface de programmation (API) qu'au niveau binaire (ABI) pour les pays où LZW n'est pas breveté. + The giflib package contains a shared library of functions for loading and saving GIF format image files. It is API and ABI compatible with libungif, the library which supported uncompressed GIFs while the Unisys LZW patent was in effect. + libungif, gif dosyalarını okumaya ve yazmaya yarayan bir kütüphanedir. Kaydetme algoritması Unisys LZW patentine takılmamak için sıkıştırma yapmamaktadır. Böylece LZW'nin patentli olmadığı ülkelerde kullanılmak için API ve ABI uyumlu bir alternatif sunar. + mirrors://sourceforge/giflib/giflib-5.0.6.tar.bz2 + multimedia/graphics/giflib/pspec.xml + + + giflib + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + giflib-devel + + giflib + + + /usr/include + /usr/share/doc/giflib/html + + + + giflib-32bit + 32-bit shared libraries for giflib + emul32 + emul32 + + glibc-32bit + + + giflib + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-20 + 5.0.6 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 5.0.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-31 + 4.1.6 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2011-05-03 + 4.1.6 + First release + Pisi Linux Admins + admins@pisilinux.org + @@ -72774,16 +109027,22 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol LGPLv2+ library - desktop.kde.addon + multimedia.graphics A Library for working with Data Matrix 2D bar-codes Data Matrix 2D barkodlarıyla çalışmak için kitaplık libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. http://sourceforge.net/projects/libdmtx/files/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz - desktop/kde/addon/libdmtx/pspec.xml + + imagemagick-devel + + multimedia/graphics/libdmtx/pspec.xml libdmtx + + imagemagick + /usr/lib /usr/share/doc @@ -72821,36110 +109080,3983 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - prison-qt5 - http://www.kde.org + GraphicsMagick + http://www.graphicsmagick.org - Pisi Linux Admins - admin@pisilinux.org + PisiLinux Community + admins@pisilinux.org MIT library - desktop.kde.addon - A barcode API to produce QRCode barcodes and DataMatrix barcode - A barcode API to produce QRCode barcodes and DataMatrix barcode. - ftp://ftp.gnome.org/mirror/ubuntu/pool/universe/p/prison-kf5/prison-kf5_1.2~git20150223.orig.tar.gz + multimedia.graphics + GraphicsMagick Image Processing System + GraphicsMagick Resim İşleme Sistemi + GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software. + GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır. + mirrors://sourceforge/graphicsmagick/GraphicsMagick-1.3.20.tar.xz - qt5-base-devel - libdmtx-devel - qrencode-devel - extra-cmake-modules - mesa-devel + tiff-devel + webp-devel + lcms2-devel + libSM-devel + libwmf-devel + libICE-devel + jasper-devel + jbigkit-devel + libXext-devel + libjpeg-turbo-devel + ghostscript-devel - desktop/kde/addon/prison-qt5/pspec.xml + + GraphicsMagick-1.3.14-perl_linkage.patch + GraphicsMagick-1.3.16-multilib.patch + + multimedia/graphics/GraphicsMagick/pspec.xml - prison-qt5 + GraphicsMagick + app:console - qt5-base - libgcc - mesa - libdmtx - qrencode + tiff + webp + lcms2 + libwmf + jasper + libXext + jbigkit + libgomp + ghostscript + libjpeg-turbo - /usr/lib/*.so.* - /usr/lib/qt5/mkspecs/modules + /etc + /usr/bin/gm + /usr/lib/GraphicsMagick-* + /usr/lib/lib* + /usr/share/GraphicsMagick-* /usr/share/doc + /usr/share/man - prison-qt5-devel - Development files for libepoxy + GraphicsMagick-devel + Development files for GraphicsMagick - prison-qt5 + GraphicsMagick - /usr/include/KF5/prison_version.h - /usr/include/KF5/PRISON/prison - /usr/lib/*.so - /usr/lib/cmake/KF5Prison/*.cmake + /usr/bin/*-config + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/GraphicsMagick/www + /usr/share/man/man1/*-config.* + + + + PerlMagick + GraphicsMagick perl bindings + + GraphicsMagick + + + /usr/lib/perl5 + /usr/share/doc/PerlMagick + + 2014-09-13 + 1.3.20 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-19 + 1.3.19 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-23 + 1.3.19 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-07 + 1.3.19 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-04 + 1.3.19 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + - 2015-12-24 - 1.2.1_20150831 + 2013-07-29 + 1.3.17 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2012-11-22 + 1.3.17 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + inkscape + http://www.inkscape.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:gui + multimedia.graphics + SVG vector graphics application + Vektörel çizim programı + Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files. + SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır. + https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2 + + gtk2-devel + gtkmm-devel + atkmm-devel + cairo-devel + lcms2-devel + boost-devel + atk-devel + gc-devel + perl-XML-Parser + pango-devel + popt-devel + poppler-glib-devel + poppler-devel + aspell-devel + glibc-devel + gsl-devel + libwpg-devel + libwpd-devel + imagemagick-devel + glibmm-devel + libXft-devel + aalib-devel + libart_lgpl-devel + fontconfig-devel + libsigc++-devel + liblqr-devel + cairomm-devel + gdk-pixbuf-devel + libxslt-devel + pangomm-devel + libcdr-devel + libvisio-devel + librevenge-devel + libjpeg-turbo-devel + gtkspell-devel + dbus-glib-devel + zlib-devel + glib2-devel + libX11-devel + libgcc + libpng-devel + libxml2-devel + freetype + libgomp + libxslt-devel + intltool + gettext-devel + pkgconfig + libX11-devel + + multimedia/graphics/inkscape/pspec.xml + + + inkscape + + freetype + libxml2 + libpng + libgcc + libX11 + glib2 + zlib + dbus-glib + popt + gtk2 + pango + lcms2 + cairo + poppler-glib + gsl + aspell + libwpg + imagemagick + glibmm + gtkmm + fontconfig + libsigc++ + gtkspell + cairomm + gdk-pixbuf + libxslt + pangomm + libwpd + atkmm + poppler + libcdr + libvisio + librevenge + libjpeg-turbo + gc + libgomp + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/dbus-1 + /usr/share/inkscape + /usr/share/applications + + + + inkscape-devel + Development files for Inkscape + Inkscape için geliştirme dosyaları + + inkscape + glib2-devel + dbus-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-29 + 0.91 + Rebuild for 2.0. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-04-09 + 0.91 + fixed problems. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-07 + 0.91 + rebuild for poppler. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-09 + 0.91 Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-10-25 + 0.48.5 + Rebuild. + Vedat Demir + vedat@pisilinux.org + + + 2014-09-14 + 0.48.5 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-30 + 0.48.4 + Rebuild, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 0.48.4 + New patch and some fixes Alihan Öztürk alihan@pisilinux.org + + 2013-10-10 + 0.48.4 + Rebuil for new poppler. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-01 + 0.48.4 + Rebuild for poppler-0.22.5 + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-26 + 0.48.4 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + - 2015-08-22 - 1.1.1_20150821 - First Release. + 2012-11-14 + 0.48.3.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + aalib + http://aa-project.sourceforge.net/aalib/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics + An ASCII-graphics Library + Bir ASCII-grafik Kitaplığı + Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII. + Aalib is an ASCII-graphics library generating ASCII character outputs. + AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir. + Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII. + mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz + + gpm + ncurses-devel + + + m4.patch + + multimedia/graphics/aalib/pspec.xml + + + aalib + + gpm + ncurses + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + aalib-devel + Development files for aalib + aalib için geliştirme dosyaları + + aalib + + + /usr/share/aclocal + /usr/include + /usr/share/man/man3 + + + + + 2014-05-20 + 1.4_rc5 + Rebuild, cleanup, fix gpm linking. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-16 + 1.4_rc5 + Rebuild Stefan Gronewold(groni) groni@pisilinux.org + + 2010-12-20 + 1.4_rc5 + First release + Pisi Linux Admins + admins@pisilinux.org + - qrencode - http://fukuchi.org/works/qrencode/index.en.html + webp + http://code.google.com/p/webp/downloads/list - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + PisiLinux Community + admins@pisilinux.org - LGPLv2.1 - library - desktop.kde.addon - A C library for encoding data in a QR code symbol - QR kod sembolüne veri gömmek için bir kitaplık - qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. - qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. - http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz + Copyright (c) 2010, Google Inc. All rights reserved. + application + multimedia.graphics + webp image format and format conversion png,jpeg,tiff + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + webp image format and format conversion png,jpeg,tiff + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + http://downloads.webmproject.org/releases/webp/libwebp-0.4.3.tar.gz - libsdl-devel - m4 - gettext-devel + mesa-devel + mesa-glu-devel libpng-devel + tiff-devel + giflib-devel + freeglut-devel + libjpeg-turbo-devel - desktop/kde/addon/qrencode/pspec.xml + multimedia/graphics/webp/pspec.xml - qrencode + webp + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + tiff + mesa + giflib libpng + freeglut + libjpeg-turbo - /usr/lib - /usr/bin/qrencode - /usr/share/man/man1 - /usr/share/doc + /usr/lib/libwebp* + /usr/bin + /usr/share/man + /usr/share/doc/webp - qrencode-devel - Development files for qrencode - qrencode için geliştirme dosyaları + webp-devel + webp için geliştirme dosyaları - qrencode + webp /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig - - 2015-02-22 - 3.4.4 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 3.3.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2012-04-05 - 3.3.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kgeography - http://edu.kde.org/applications/all/kgeography - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - KGeography is a geography learning tool - Bir coğrafya uygulaması - KGeography is a geography learning tool, which allows you to learn about the political divisions of some countries (divisions, capitals of those divisions and their associated flags if there are some). - KGeography, ülkeler hakkında çeşitli bilgiler sunan bir coğrafya uygulamasıdır. - kgeography - mirrors://kde/stable/applications/15.12.0/src/kgeography-15.12.0.tar.xz - - qt5-base-devel - kconfig-devel - kdoctools-devel - kxmlgui-devel - kwidgetsaddons-devel - kcoreaddons-devel - ki18n-devel - kitemviews-devel - kiconthemes-devel - kservice-devel - kconfigwidgets-devel - extra-cmake-modules - - desktop/kde/application/kgeography/pspec.xml - - - kgeography - - qt5-base - libgcc - kconfig - kxmlgui - kwidgetsaddons - kcoreaddons - ki18n - kitemviews - kiconthemes - kconfigwidgets - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - konversation - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - A user friendly IRC client for KDE - Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform. - mirrors://kde/stable/konversation/1.6/src/konversation-1.6.tar.xz - - qt5-base-devel - qt5-phonon-devel - extra-cmake-modules - kdoctools-devel - kitemviews-devel - kbookmarks-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kemoticons-devel - ki18n-devel - kidletime-devel - knotifyconfig-devel - kio-devel - kparts-devel - solid-devel - sonnet-devel - kwallet-devel - kwidgetsaddons-devel - kglobalaccel-devel - kdbusaddons-devel - knotifications-devel - kwindowsystem-devel - kiconthemes-devel - karchive-devel - qca2-qt5-devel - python3-devel - gettext-devel - docbook-xsl - - desktop/kde/application/konversation/pspec.xml - - - konversation - - qt5-base - qca2-qt5 - kemoticons - kidletime - knotifyconfig - kparts - kio - libgcc - ki18n - sonnet - kcodecs - kconfig - kwallet - kxmlgui - karchive - kservice - kbookmarks - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - ktextwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2015-08-29 - 1.6.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkgapi - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - Google API library for KDE - A KDE-based library for accessing various Google services via their public API - mirrors://kde/stable/libkgapi/5.1.0/src/libkgapi-5.1.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcontacts-devel - kwindowsystem-devel - kio-devel - kcalcore-devel - kdoctools-devel - qt5-webkit-devel - qt5-linguist - qt5-location-devel - - desktop/kde/application/libkgapi/pspec.xml - - - libkgapi - - qt5-base - kcalcore - kcontacts - kio - libgcc - qt5-webkit - kwindowsystem - kdelibs4-support - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libkgapi-devel - Development files for libkgapi - - qt5-base-devel - kcalcore-devel - kcontacts-devel - kio-devel - qt5-webkit-devel - kwindowsystem-devel - kdelibs4-support-devel - libkgapi - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-26 - 5.1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-08 - 5.0.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ksystemlog - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - System log viewer. - Sistem kayıt görüntüleyicisi. - KSystemLog show all logs of your system, grouped by General (Default system log, Authentication, Kernel, X.org...), and optional Services (Apache, Cups, etc, ...). - Ksystemlog, sistemin bütün hata kayıtlarını (genel ve opsiyonel) görüntülemmeye yarayan bir uygulamadır. - ksystemlog - http://download.kde.org/stable/applications/15.12.0/src/ksystemlog-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kxmlgui-devel - kcoreaddons-devel - kwidgetsaddons-devel - kitemviews-devel - kiconthemes-devel - kio-devel - kconfig-devel - karchive-devel - kdoctools-devel - ki18n-devel - kcompletion-devel - ktextwidgets-devel - - desktop/kde/application/ksystemlog/pspec.xml - - - ksystemlog - - kio - ki18n - libgcc - kconfig - kxmlgui - karchive - kservice - qt5-base - kitemviews - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share/applications - /usr/share/kxmlgui5 - /usr/share/doc - - - kdeadmin - - - kdeadmin - - - - - 2015-12-19 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2014-02-06 - 4.12.2 + 2015-04-06 + 0.4.3 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2014-01-13 - 4.11.5 - Version bump. + 2014-05-21 + 0.4.0 + rebuild Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-12-03 - 4.11.4 + 2014-04-21 + 0.4.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - 2013-11-05 - 4.11.3 - Version bump. + 2014-01-25 + 0.3.1 + rebuild for unused Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-10-02 - 4.11.2 + 2013-07-19 + 0.3.1 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - 2013-09-03 - 4.11.1 + 2012-12-11 + 0.2.1 First release - Mathias Freire - mathiasfreire45@gmail.com + can + qazsew@mynet.com - kmix - http://kde.org/applications/multimedia/kmix/ + gimp + http://www.gimp.org/ PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - desktop.kde.application - KMix: KDE Digital Mixer - KMix: KDE için Dijital Mixer - KMix: KDE Digital Mixer - KMix: KDE için Dijital Mixer. - kmix - mirrors://kde/stable/applications/15.12.0/src/kmix-15.12.0.tar.xz + multimedia.graphics.gimp + GNU Image Manipulation Program + Bir resim işleme programı + Programme de Manipulation d'Image GNU. + GIMP is a mature image editor with many advanced features and plugin support. + Piksel düzeyinde işlem yapılabilen gelişmiş bir grafik düzenleme programı + http://download.gimp.org/pub/gimp/v2.8/gimp-2.8.14.tar.bz2 - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - ki18n-devel - kcmutils-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - libcanberra-devel + gtk-doc + atk-devel + xdg-utils + tiff-devel + zlib-devel + lcms-devel + gegl-devel + babl-devel + dbus-devel + gtk2-devel + aalib-devel + bzip2 + pango-devel + cairo-devel glib2-devel + libwmf-devel + jasper-devel + libX11-devel + libmng-devel + libpng-devel + libXpm-devel + libXmu-devel + libXext-devel + librsvg-devel + libexif-devel alsa-lib-devel - kglobalaccel-devel - plasma-framework-devel - extra-cmake-modules + freetype-devel + dbus-glib-devel + libXfixes-devel + eudev-devel + libXcursor-devel + fontconfig-devel + python-gtk-devel + gdk-pixbuf-devel + ghostscript-devel + webkit-gtk2-devel + poppler-glib-devel + libjpeg-turbo-devel + intltool + python-devel - desktop/kde/application/kmix/pspec.xml + + single_window.patch + + multimedia/graphics/gimp/gimp/pspec.xml - kmix + gimp-devel + Documents et entêtes de développement pour GIMP. + Development header and documents for GIMP + GIMP için geliştirme belgeleri ve başlık dosyaları + data + data:doc - qt5-base + gtk2-devel + cairo-devel + gdk-pixbuf-devel + gimp + + + /usr/include + /usr/share/gtk-doc + /usr/lib/pkgconfig + /usr/share/aclocal + + + + gimp + app:gui + + gegl + babl + dbus + gtk2 + tiff + zlib + aalib + bzip2 + pango + cairo + glib2 + libwmf + libXpm + libmng + libpng + libXmu + jasper + libX11 + libXext + librsvg + libexif alsa-lib - libcanberra - pulseaudio-libs - kdelibs4-support - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - libgcc - plasma-framework + freetype + dbus-glib + libXfixes + eudev + libXcursor + fontconfig + gdk-pixbuf + ghostscript + webkit-gtk2 + poppler-glib + libjpeg-turbo /etc - /usr/share /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/include - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-13 - 15.04.3 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kidentitymanagement - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - KDE PIM libraries - Library for the KDE-PIM(Personal-Infomation-Management - mirrors://kde/stable/applications/15.12.0/src/kidentitymanagement-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - kpimtextedit-devel - kio-devel - kcodecs-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - ktextwidgets-devel - kwidgetsaddons-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kpimtextedit-devel - kunitconversion-devel - extra-cmake-modules - - desktop/kde/application/kidentitymanagement/pspec.xml - - - kidentitymanagement - - qt5-base - kpimtextedit - kio - ki18n - libgcc - kcodecs - kconfig - kxmlgui - kcompletion - kcoreaddons - ktextwidgets - kwidgetsaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kidentitymanagement-devel - Development files for kidentitymanagement - - qt5-base-devel - kpimtextedit-devel - kidentitymanagement - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ksquares - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Connect the dots to create squares - Noktaları birleştirerek kare yapma oyunu - KSquares is a fun and exciting game that modeled after the well known pen and paper based game of Dots and Boxes. - KSquares sıkıcı derslerin kurtarıcısı, eğlenceli ve heyecanlı kare yapma oyununun KDE sürümüdür. - ksquares - http://download.kde.org/stable/applications/15.12.0/src/ksquares-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/ksquares/pspec.xml - - - ksquares - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ark - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - desktop.kde.application - KDE Archiving Tool - Ark is a program for managing various archive formats within the KDE environment. - mirrors://kde/stable/applications/15.12.0/src/ark-15.12.0.tar.xz - - qt5-base-devel - karchive-devel - kconfig-devel - kcrash-devel - kio-devel - kpty-devel - khtml-devel - xz-devel - kdbusaddons-devel - kdoctools-devel - docbook-xsl - libarchive-devel - extra-cmake-modules - - desktop/kde/application/ark/pspec.xml - - - ark - - qt5-base - libarchive - karchive - kconfig - kio - unrar - kpty - khtml - ki18n - libgcc - kxmlgui - kservice - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - kwidgetsaddons - kparts - kconfigwidgets - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/locale - /usr/lib - /usr/share/icons /usr/share/man /usr/share/doc + /usr/bin + /usr/share/gimp + /usr/share/icons + /usr/share/appdata + /usr/share/mime-info + /usr/share/applications + /usr/share/application-registry + + + gimp-splash-pencils.png + + + + gimp-i18n-tr + Gimp translation files for Turkish + Türkçe için GIMP yerelleştirme dosyaları + locale:tr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/tr + + + + gimp-i18n-ast + Gimp translation files for Asturian + Asturya dili için GIMP yerelleştirme dosyaları + locale:ast + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ast + + + + gimp-i18n-my + Gimp translation files for Burmese + Burmese dili için GIMP yerelleştirme dosyaları + locale:my + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/my + + + + gimp-i18n-nds + Gimp translation files for Low Saxon + Aşağı Saxon dili için GIMP yerelleştirme dosyaları + locale:nds + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nds + + + + gimp-i18n-el + Gimp translation files for Greek + Yunanca için GIMP yerelleştirme dosyaları + locale:el + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/el + + + + gimp-i18n-gu + Gimp translation files for Gujarati + Gujarati dili için GIMP yerelleştirme dosyaları + locale:gu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gu + + + + gimp-i18n-be + Gimp translation files for Belarusian + Belarusça için GIMP yerelleştirme dosyaları + locale:be + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/be + + + + gimp-i18n-vi + Gimp translation files for Vietnamese + Viyetnamca için GIMP yerelleştirme dosyaları + locale:vi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/vi + + + + gimp-i18n-ca + Gimp translation files for Catalan + Katalanca için GIMP yerelleştirme dosyaları + locale:ca + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ca + + + + gimp-i18n-eo + Gimp translation files for Esperanto + Esperanto için GIMP yerelleştirme dosyaları + locale:eo + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/eo + + + + gimp-i18n-cs + Gimp translation files for Czech + Çekçe için GIMP yerelleştirme dosyaları + locale:cs + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/cs + + + + gimp-i18n-ca_valencia + Gimp translation files for Catalan (Valencia) + Valensiya Katalancası için GIMP yerelleştirme dosyaları + locale:ca@valencia + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ca@valencia + + + + gimp-i18n-ar + Gimp translation files for Arabic + Arapça için GIMP yerelleştirme dosyaları + locale:ar + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ar + + + + gimp-i18n-km + Gimp translation files for Khmer + Khmer dili için GIMP yerelleştirme dosyaları + locale:km + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/km + + + + gimp-i18n-ga + Gimp translation files for Irish Gaelic + Gaelik İrlandacası için GIMP yerelleştirme dosyaları + locale:ga + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ga + + + + gimp-i18n-fi + Gimp translation files for Finnish + Fince için GIMP yerelleştirme dosyaları + locale:fi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fi + + + + gimp-i18n-eu + Gimp translation files for Basque + Baskça için GIMP yerelleştirme dosyaları + locale:eu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/eu + + + + gimp-i18n-et + Gimp translation files for Estonian + Estonyaca için GIMP yerelleştirme dosyaları + locale:et + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/et + + + + gimp-i18n-xh + Gimp translation files for Xhosa + Xhosa dili için GIMP yerelleştirme dosyaları + locale:xh + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/xh + + + + gimp-i18n-gl + Gimp translation files for Galician + Galiçya dili için GIMP yerelleştirme dosyaları + locale:gl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gl + + + + gimp-i18n-id + Gimp translation files for Indonesian + Endonezyaca için GIMP yerelleştirme dosyaları + locale:id + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/id + + + + gimp-i18n-es + Gimp translation files for Spanish + İspanyolca için GIMP yerelleştirme dosyaları + locale:es + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/es + + + + gimp-i18n-ru + Gimp translation files for Russian + Rusça için GIMP yerelleştirme dosyaları + locale:ru + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ru + + + + gimp-i18n-rw + Gimp translation files for Kinyarwanda + Kinyarwanda dili için GIMP yerelleştirme dosyaları + locale:rw + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/rw + + + + gimp-i18n-nl + Gimp translation files for Dutch + Hollandaca için GIMP yerelleştirme dosyaları + locale:nl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nl + + + + gimp-i18n-nn + Gimp translation files for Norwegian Nynorsk + Norveç Nynorsk dili için GIMP yerelleştirme dosyaları + locale:nn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nn + + + + gimp-i18n-nb + Gimp translation files for Norwegian Bookmal + Norveç Bookmal dili için GIMP yerelleştirme dosyaları + locale:nb + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nb + + + + gimp-i18n-ne + Gimp translation files for Nepali + Nepali dili için GIMP yerelleştirme dosyaları + locale:ne + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ne + + + + gimp-i18n-lt + Gimp translation files for Lithuanian + Litvanyaca için GIMP yerelleştirme dosyaları + locale:lt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/lt + + + + gimp-i18n-pa + Gimp translation files for Punjabi + Punjabi dili için GIMP yerelleştirme dosyaları + locale:pa + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pa + + + + gimp-i18n-ro + Gimp translation files for Romanian + Rumence için GIMP yerelleştirme dosyaları + locale:ro + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ro + + + + gimp-i18n-en_GB + Gimp translation files for British English + İngiliz İngilizcesi için GIMP yerelleştirme dosyaları + locale:en_GB + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/en_GB + + + + gimp-i18n-yi + Gimp translation files for Yi + Yi dili için GIMP yerelleştirme dosyaları + locale:yi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/yi + + + + gimp-i18n-en_CA + Gimp translation files for Catalan (en) + Katalanca için GIMP yerelleştirme dosyaları + locale:en_CA + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/en_CA + + + + gimp-i18n-fr + Gimp translation files for French + Fransızca için GIMP yerelleştirme dosyaları + locale:fr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fr + + + + gimp-i18n-bg + Gimp translation files for Bulgarian + Bulgarca için GIMP yerelleştirme dosyaları + locale:bg + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/bg + + + + gimp-i18n-ms + Gimp translation files for Malay + Malay dili için GIMP yerelleştirme dosyaları + locale:ms + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ms + + + + gimp-i18n-pt_BR + Gimp translation files for Brazilian Portuguese + Brezilya Portekizcesi için GIMP yerelleştirme dosyaları + locale:pt_BR + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pt_BR + + + + gimp-i18n-hr + Gimp translation files for Croatian (Hrvatski) + Hırvatça için GIMP yerelleştirme dosyaları + locale:hr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hr + + + + gimp-i18n-zh_TW + Gimp translation files for Chinese Traditional + Geleneksel Çince için GIMP yerelleştirme dosyaları + locale:zh_TW + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_TW + + + + gimp-i18n-ko + Gimp translation files for Korean + Korece için GIMP yerelleştirme dosyaları + locale:ko + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ko + + + + gimp-i18n-it + Gimp translation files for Italian + İtalyanca için GIMP yerelleştirme dosyaları + locale:it + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/it + + + + gimp-i18n-fa + Gimp translation files for Farsi (Persian) + Farsça için GIMP yerelleştirme dosyaları + locale:fa + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fa + + + + gimp-i18n-dz + Gimp translation files for Dzongkha + Dzongkha dili için GIMP yerelleştirme dosyaları + locale:dz + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/dz + + + + gimp-i18n-sr_Latn + Gimp translation files for Serbian Latin + Latin sırpça için GIMP yerelleştirme dosyaları + locale:sr@Latn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sr@latin + + + + gimp-i18n-da + Gimp translation files for Danish + Danimarkaca için GIMP yerelleştirme dosyaları + locale:da + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/da + + + + gimp-i18n-ja + Gimp translation files for Japanese + Japonca için GIMP yerelleştirme dosyaları + locale:ja + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ja + + + + gimp-i18n-he + Gimp translation files for Hebrew + İbranice için GIMP yerelleştirme dosyaları + locale:he + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/he + + + + gimp-i18n-pt + Gimp translation files for Portuguese + Portekizce için GIMP yerelleştirme dosyaları + locale:pt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pt + + + + gimp-i18n-zh_CN + Gimp translation files for Chinese Simplified + Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları + locale:zh_CN + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_CN + + + + gimp-i18n-sr + Gimp translation files for Serbian + Sırpça için GIMP yerelleştirme dosyaları + locale:sr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sr + + + + gimp-i18n-oc + Gimp translation files for Occitan + Occitan dili için GIMP yerelleştirme dosyaları + locale:oc + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/oc + + + + gimp-i18n-sv + Gimp translation files for Swedish + İsveççe için GIMP yerelleştirme dosyaları + locale:sv + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sv + + + + gimp-i18n-mk + Gimp translation files for Macedonian + Makedonyaca için GIMP yerelleştirme dosyaları + locale:mk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/mk + + + + gimp-i18n-sk + Gimp translation files for Slovak + Slovakça için GIMP yerelleştirme dosyaları + locale:sk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sk + + + + gimp-i18n-de + Gimp translation files for German + Almanca için GIMP yerelleştirme dosyaları + locale:de + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/de + + + + gimp-i18n-pl + Gimp translation files for Polish + Lehçe için GIMP yerelleştirme dosyaları + locale:pl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pl + + + + gimp-i18n-uk + Gimp translation files for Ukrainian + Ukraynaca için GIMP yerelleştirme dosyaları + locale:uk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/uk + + + + gimp-i18n-sl + Gimp translation files for Slovenian + Slovence için GIMP yerelleştirme dosyaları + locale:sl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sl + + + + gimp-i18n-hu + Gimp translation files for Hungarian + Macarca için GIMP yerelleştirme dosyaları + locale:hu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hu + + + + gimp-i18n-tt + Gimp translation files for Tatarish + Tatarca için GIMP yerelleştirme dosyaları + locale:tt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/tt + + + + gimp-i18n-az + Gimp translation files for Azerbaijani + Azerice için GIMP yerelleştirme dosyaları + locale:az + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/az + + + + gimp-i18n-am + Gimp translation files for Amharic + Amharic dili için GIMP yerelleştirme dosyaları + locale:am + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/am + + + + gimp-i18n-is + Gimp translation files for Icelandic + İzlanda dili için GIMP yerelleştirme dosyaları + locale:is + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/is + + + + gimp-i18n-lv + Gimp translation files for Latvia + Latvia dili için GIMP yerelleştirme dosyaları + locale:lv + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/lv + + + + gimp-i18n-th + Gimp translation files for Thai + Thai dili için GIMP yerelleştirme dosyaları + locale:th + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/th + + + + gimp-i18n-ka + Gimp translation files for Georgian + Gürcüce için GIMP yerelleştirme dosyaları + locale:ka + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ka + + + + gimp-i18n-hi + Gimp translation files for Hindi + Hindi dili için GIMP yerelleştirme dosyaları + locale:hi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hi + + + + gimp-i18n-zh_HK + Gimp translation files for Chinese Hong Kong + Hong Kong Çincesi için GIMP yerelleştirme dosyaları + locale:zh_HK + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_HK + + + + gimp-i18n-ml + Gimp translation files for Malayalam + Malayalam dili için GIMP yerelleştirme dosyaları + locale:ml + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ml + + + + gimp-i18n-ta + Gimp translation files for Tamil + Tamil dili için GIMP yerelleştirme dosyaları + locale:ta + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ta + + + + gimp-i18n-kn + Gimp translation files for Kannada + Kannada dili için GIMP yerelleştirme dosyaları + locale:kn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/kn + + + + gimp-i18n-si + Gimp translation files for Sinhala + Sinhala dili için GIMP yerelleştirme dosyaları + locale:si + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/si + + + + gimp-i18n-kk + Gimp translation files for Kazakh + Kazakça için GIMP yerelleştirme dosyaları + locale:kk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/kk + + + + gimp-i18n-br + Gimp translation files for Breton + Breton dili için GIMP yerelleştirme dosyaları + locale:br + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/br + + + + gimp-i18n-te + Gimp translation files for Telugu + locale:te + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/te + + + + gimp-i18n-csb + Gimp translation files for Kashubian + locale:csb + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/csb + + + + gimp-i18n-gd + Gimp translation files for Scottish Gaelic + locale:gd + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gd - - 2015-12-18 - 15.12.0 + + 2015-02-21 + 2.8.14 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - First Release. Ertuğrul Erata ertugrulerata@gmail.com + + 2014-06-19 + 2.8.10 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-27 + 2.8.10 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-13 + 2.8.10 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-17 + 2.8.6 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-23 + 2.8.6 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-16 + 2.8.4 + Updated + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-08-25 + 2.8.2 + First release + Fatih Turgel + admins@pisilinux.org + - kcron - http://www.kde.org + gimpfx-foundry + http://gimpfx-foundry.sourceforge.net PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - desktop.kde.application - Graphical task scheduler - Görev zamanlayıcı arayüzü. - Kcron is a graphical frontend to the cron system, used to schedule regular tasks on a Unix system. - Kcron, cron görev zamanlayıcı altyapısının bir arayüzüdür. - kcron - http://download.kde.org/stable/applications/15.12.0/src/kcron-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kdoctools-devel - kiconthemes-devel - kio-devel - kxmlgui-devel - kiconthemes-devel - kiconthemes-devel - kiconthemes-devel - - desktop/kde/application/kcron/pspec.xml + GPLv3 + public-domain + data + multimedia.graphics.gimp.addon + A scripts collection for GIMP + GIMP için zengin bir betik paketi + FX-Foundry project is constantly updating custom scripts for each major GIMP release. + FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir. + mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz + multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml - kcron + gimpfx-foundry - kio - ki18n - libgcc - qt5-base - kcoreaddons - kiconthemes - kconfigwidgets - kwidgetsaddons + gimp - /usr/share - /usr/lib - /usr/share/doc - - - kdeadmin - - - kdeadmin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - picmi - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Picmi is a single player logic-based puzzle game - Resim çizme bulmacası - Picmi is a single player logic-based puzzle game. The goal is to color cells according to numbers given at the side of the board in order to uncover a hidden pattern or picture. - Picmi, tablonun kenarında verilen sayılar kadar tabla üzerinde nokta koyarak bir resim tamamlama bulmacasıdır. - http://download.kde.org/stable/applications/15.12.0/src/picmi-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel - kdoctools-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kio-devel - knewstuff-devel - kxmlgui-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/picmi/pspec.xml - - - picmi - picmi - - ki18n - libgcc - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-03 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - katomic - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Sokoban like logic game - Sokoban benzeri mantık oyunu - KAtomic is both fun and educational game built around molecular geometry. - KAtomic moleküler geometri hakkında hem eğlenceli hem de eğitici bir oyundur. - katomic - http://download.kde.org/stable/applications/15.12.0/src/katomic-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/katomic/pspec.xml - - - katomic - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-15 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kholidays - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - KDE library for regional holiday information - KDE library for regional holiday information - mirrors://kde/stable/applications/15.12.0/src/kholidays-15.12.0.tar.xz - - qt5-base-devel - kitemviews-devel - kdoctools-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - extra-cmake-modules - - desktop/kde/application/kholidays/pspec.xml - - - kholidays - - qt5-base - kdelibs4-support - ki18n - libgcc - kitemviews - kcompletion - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib + /usr/share/gimp/2.0/scripts /usr/share/doc - - kholidays-devel - Development files for kdelibs4-support - - qt5-base-devel - kholidays - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-06-19 + 2.6.1 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) + 2014-01-25 + 2.6.1 + Rebuild + Stefan Gronewold(groni) groni@pisilinux.org - - - - - kaccounts-providers - https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - http://download.kde.org/stable/applications/15.12.0/src/kaccounts-providers-15.12.0.tar.xz - - extra-cmake-modules - intltool - kaccounts-integration-devel - qt5-declarative-devel - qt5-base-devel - kcoreaddons-devel - libaccounts-qt5-devel - libaccounts-glib-devel - kio-devel - ki18n-devel - kdeclarative-devel - kpackage-devel - signon-devel - - desktop/kde/application/kaccounts-providers/pspec.xml - - - kaccounts-providers - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - - kaccounts-integration - libaccounts-glib - libgcc - kio - ki18n - kpackage - kcoreaddons - kdeclarative - qt5-declarative - qt5-base - - - /etc - /usr/share - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2015-11-15 - 15.08.3 + 2009-07-24 + 2.6.1 First release - Alihan Öztürk - alihan@pisilinux.org + Anıl Özbek + admins@pisilinux.org - cantor - http://edu.kde.org/cantor + colorize-gimp + http://zenthought.org/content/project/colorize PisiLinux Community admins@pisilinux.org GPLv2+ - app:gui - desktop.kde.application - A KDE frontend to mathematical softwares - Matematiksel uygulamalar için bir KDE önyüzü - Cantor is an application that lets you use your favorite mathematical applications from within a nice KDE-integrated Worksheet Interface. It offers assistant dialogs for common tasks and allows you to share your worksheets with others. - Cantor; Sage, Maxima, R and KAlgebra gibi uygulamalara arayüz sağlayarak kullanımı kolaylaştırmayı amaçlar. Çok kullanılan işler için dialoglar sağlar ve çalışmalarınızı başkalarıyla paylaşabilmenize olanak tanır. - cantar - mirrors://kde/stable/applications/15.12.0/src/cantor-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - qt5-xmlpatterns-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - ktexteditor-devel - knewstuff-devel - kpty-devel - analitza-devel - libqalculate-devel - cln-devel - - desktop/kde/application/cantor/pspec.xml - - - cantor - - cln - kio - kpty - ki18n - kparts - libgcc - kconfig - kxmlgui - analitza - karchive - kservice - qt5-base - knewstuff - kcompletion - kcoreaddons - kiconthemes - ktexteditor - ktextwidgets - libqalculate - kconfigwidgets - kwidgetsaddons - qt5-xmlpatterns - kdelibs4-support - - - /etc - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/locale - - - - cantor-devel - Development files for cantor - cantor için geliştirme dosyaları - - cantor - - - /usr/include - /usr/share/kde5/apps/cmake - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 4.11.2 - Rebuild for icu4c. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-23 - 4.10.2 - Dep fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - knavalbattle - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Naval Battle game - Amiral Battı oyunu - knavalbattle is a Battle Ship game for KDE. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. - KBattleship KDE için bir Amiral Battı oyunudur. Gemiler denizi temsil eden oyun tahtasına yerleştirilir ve oyuncular rakiplerinin gemilerinin yerleşimini tahmin ederek gemileri vurmaya çalışır. Rakibinin tüm gemilerini daha önce batıran oyuncu kazanır. - knavalbattle - http://download.kde.org/stable/applications/15.12.0/src/knavalbattle-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfig-devel - kdbusaddons-devel - kdnssd-devel - ki18n-devel - kxmlgui-devel - kdoctools-devel - ktextwidgets-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/knavalbattle/pspec.xml - - - knavalbattle - - ki18n - kdnssd - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kwidgetsaddons - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/kconf_update - /usr/share/knavalbattle - /usr/share/kservices5 - /usr/share/kxmlgui5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gpgmepp - https://projects.kde.org/gpgmepp - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2 - desktop.kde.application - C++ bindings/wrapper for gpgme - gpgme için C++ bağlayıcısı - C++ bindings/wrapper for gpgme - gpgme için C++ bağlayıcısı - mirrors://kde/stable/applications/15.12.0/src/gpgmepp-15.12.0.tar.xz - - boost-devel - qt5-base-devel - gpgme-devel - extra-cmake-modules - - desktop/kde/application/gpgmepp/pspec.xml - - - gpgmepp - - libgcc - qt5-base - gpgme - - - /usr/lib - /usr/share/doc - - - - gpgmepp-devel - - gpgmepp - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libkipi - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 library - desktop.kde.application - Common plugin infrastructure for KDE image applications - KDE resim uygulamaları için ortak eklenti yapısı - Kipi (KDE Image Plugin Interface) is an effort to develop a common plugin structure (for Digikam, Gwenview, etc.). Its aim is to share image plugins among graphic applications. - Kipi, ortak bir eklenti yapısı ortaya koymak için gerekli bir kitaplıktır. - mirrors://kde/stable/applications/15.12.0/src/libkipi-15.12.0.tar.xz + multimedia.graphics.gimp.addon + Colorization plugin for GIMP + GIMP için renklendirme eklentisi + colorize-gimp is an implementation of colorization using optimization for GIMP. + colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir. + gimp + http://zenthought.org/system/files/asset/2/colorize-gimp-20070930.tar.gz - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - cmake - extra-cmake-modules + gimp-devel + gtk2-devel + SuiteSparse-devel - desktop/kde/application/libkipi/pspec.xml + multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml - libkipi + colorize-gimp - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kservice - kcoreaddons - - - /usr/lib - /usr/bin - /usr/share - /usr/share/icons - - - - libkipi-devel - Development files for libkipi - libkipi için geliştirme dosyaları - - libkipi - qt5-base-devel - kxmlgui-devel - ki18n-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-12-19 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-01 - 15.04.3_20150731 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdepim-runtime - http://community.kde.org/KDE_PIM - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - KDE5 PIM Runtime Environment - KDE5 PIM (Kişisel Bilgi Yönetimi) çalışma zamanı ortamı - kdepim-runtime contains KDE5 PIM (Personal Information Management) runtime environment like akonadi agents. - kdepim-runtime, kdelibs kullanarak yazılmış olan Akonadi ajanları da dahil olmak üzere KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) çalışma zamanı ortamını içerir. - kontact - mirrors://kde/stable/applications/15.12.0/src/kdepim-runtime-15.12.0.tar.xz - - kdoctools-devel - boost-devel - shared-mime-info - akonadi-devel - akonadi-calendar-devel - akonadi-search-devel - kcmutils-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - knotifyconfig-devel - kross-devel - kmailtransport-devel - kidentitymanagement-devel - kalarmcal-devel - kcalutils-devel - kmbox-devel - kimap-devel - libkgapi-devel - kholidays-devel - ksyndication-devel - kdepimlibs-devel - cyrus-sasl-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-xmlpatterns-devel - qt5-webkit-devel - extra-cmake-modules - qt5-location-devel - - desktop/kde/application/kdepim-runtime/pspec.xml - - - kdepim-runtime - - akonadi - libkgapi - kio - ki18n - kimap - kmbox - kmime - libgcc - kcodecs - kconfig - kwallet - kxmlgui - kcalcore - kcmutils - kservice - qt5-base - kalarmcal - kcalutils - kdepimlibs - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kitemmodels - kcontacts - kjobwidgets - knotifyconfig - kwindowsystem - kconfigwidgets - kmailtransport - ktextwidgets - knotifications - kwidgetsaddons - qt5-xmlpatterns - akonadi-calendar - kdelibs4-support - kidentitymanagement - - - /etc/xdg - /usr/lib - /usr/bin - /usr/share/mime - /usr/share/kservicetypes5 - /usr/share/kservices5 - /usr/share/knotifications5 - /usr/share/icons - /usr/share/dbus-1 - /usr/share/akonadi - /usr/share/ontology - /usr/share/autostart - /usr/share/applications - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-23 - 15.08.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gwenview - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - library - desktop.kde.application - An image viewer - Resim görüntüleyici - Gwenview is an easy to use image viewer. - Gwenview, kullanımı kolay bir resim görüntüleyicisidir. - gwenview - mirrors://kde/stable/applications/15.12.0/src/gwenview-15.12.0.tar.xz - - exiv2-devel - qt5-base-devel - libkipi-devel - kdoctools-devel - kio-devel - kactivities-devel - kded-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - baloo-devel - libkdcraw-devel - libpng-devel - zlib-devel - mesa-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/application/gwenview/pspec.xml - - - gwenview - - qt5-base - exiv2-libs - kactivities - libkipi - libkdcraw - kded - kdelibs4-support - kio - ki18n - lcms2 - kparts - libX11 - libgcc - libpng - kconfig - kxmlgui - qt5-svg - kservice - baloo - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - ktextwidgets - libjpeg-turbo - qt5-x11extras - kconfigwidgets - knotifications - kwidgetsaddons - kfilemetadata - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - /usr/share/icons - /usr/share/applications - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-12 - 15.08.0 - first release, use stable source. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - akonadi-search - http://pim.kde.org/akonadi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.application - Libraries and daemons to implement searching in Akonadi - Libraries and daemons to implement searching in Akonadi - akonadi - mirrors://kde/stable/applications/15.12.0/src/akonadi-search-15.12.0.tar.xz - - qt5-base-devel - kcrash-devel - kconfig-devel - ki18n-devel - akonadi-devel - kcontacts-devel - kmime-devel - kjobwidgets-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdelibs4-support-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kcalcore-devel - libical-devel - kdesignerplugin - kcompletion-devel - kdepimlibs-devel - boost-devel - kcmutils-devel - krunner-devel - xapian-core-devel - kdoctools-devel - extra-cmake-modules - - desktop/kde/application/akonadi-search/pspec.xml - - - akonadi-search - app:console - - qt5-base - ki18n - kmime - libgcc - kcodecs - kconfig - kcalcore - kcontacts - kdepimlibs - kcoreaddons - xapian-core - krunner - kcompletion - kconfigwidgets - kwidgetsaddons - - - /etc/akonadi - /etc/xdg - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/config - /usr/share/mime - /usr/share/kde4 - /usr/share/doc/ - /usr/share/akonadi - /usr/share/kservices5 - - - - akonadi-search-devel - Development files for akonadi - - akonadi-search - qt5-base-devel - ki18n-devel - kmime-devel - kcodecs-devel - kconfig-devel - kcalcore-devel - kcontacts-devel - kdepimlibs-devel - kcoreaddons-devel - xapian-core-devel - kdelibs4-support-devel - kcmutils-devel - krunner-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - baloo-widgets - http://www.kde.org - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Framework for searching and managing metadata - Baloo is a framework for searching and managing metada - mirrors://kde/stable/applications/15.12.0/src/baloo-widgets-15.12.0.tar.xz - - baloo-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kfilemetadata-devel - kinit-devel - kio-devel - kitemmodels-devel - kunitconversion-devel - qt5-base-devel - - desktop/kde/application/baloo-widgets/pspec.xml - - - baloo-widgets - Development files for baloo-widgets - - baloo - kconfig - kcoreaddons - kfilemetadata - ki18n - kio - kwidgetsaddons - libgcc - qt5-base - - - /etc - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/locale - - - - baloo-widgets-devel - Development files for baloo-widgets - - baloo-widgets - qt5-base-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-20 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-28 - 15.08.0 - First Release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ktp-common-internals - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Common components for KDE-Telepathy - Common components for KDE-Telepathy - http://download.kde.org/stable/applications/15.12.0/src/ktp-common-internals-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - knotifications-devel - kio-devel - kwidgetsaddons-devel - kcmutils-devel - knotifyconfig-devel - ktexteditor-devel - kwallet-devel - kconfig-devel - kwindowsystem-devel - kiconthemes-devel - kpeople-devel - signon-devel - kaccounts-integration-devel - telepathy-logger-qt-devel - libaccounts-qt5-devel - telepathy-qt5-devel - libaccounts-glib-devel - libgcrypt-devel - sqlite-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - telepathy-mission-control-devel - libotr-devel - - desktop/kde/application/ktp-common-internals/pspec.xml - - - ktp-common-internals - Common components for KDE-Telepathy - - ki18n - kparts - libgcc - libotr - signon - kconfig - kpeople - kwallet - kxmlgui - kcmutils - kservice - qt5-base - libgcrypt - kcoreaddons - kiconthemes - ktexteditor - knotifyconfig - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - libaccounts-qt5 - qt5-declarative - telepathy-logger-qt - kaccounts-integration - - - /usr/bin - /usr/lib/libKTpCommonInternals.so.* - /usr/lib/libKTpModels.so.* - /usr/lib/libKTpLogger.so.* - /usr/lib/libKTpWidgets.so.* - /usr/lib/libKTpOTR.so.* - /usr/lib/ktp-proxy - /usr/lib/qt5 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/knotifications5 - /usr/share/config.kcfg - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/icons - /usr/share/katepart5 - /usr/share/doc - - - - ktp-common-internals-devel - Development files for ktp-common-internals - - ktp-common-internals - libotr-devel - - - /usr/include/KTp - /usr/lib/cmake/KTp - /usr/lib/libKTpCommonInternals.so - /usr/lib/libKTpModels.so - /usr/lib/libKTpLogger.so - /usr/lib/libKTpWidgets.so - /usr/lib/libKTpOTR.so - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-22 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - partitionmanager - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - KDE Partition Manager is a utility program to help you manage the disk devices, partitions and file systems on your computer - KDE Disk Bölümü Yöneticisi - It allows you to easily create, copy, move, delete, resize without losing data, backup and restore partitions.. - KDE Disk Bölümü Yöneticisi, disklerinizi, bölümlerinizi ve dosya sistemlerinizi yönetmenize izin verir. Birçok dosya sistemini (ext2/3/4, reiserfs, NTFS, FAT32 ve daha fazlası) desteklemenin yanı sıra, yeni bölüm oluşturabilir ya da var olan bir bölüm üzerinde boyutlandırma, kopyalama, taşıma, yedekleme ve geri yükleme işlemlerini yapabilir. - mirrors://kde/stable/partitionmanager/1.2.1/src/partitionmanager-1.2.1.tar.xz - - qt5-base-devel - libatasmart-devel - extra-cmake-modules - parted-devel - libutil-linux-devel - ki18n-devel - kio-devel - kconfig-devel - kxmlgui-devel - kservice-devel - kcoreaddons-devel - kiconthemes-devel - kjobwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kdoctools-devel - - desktop/kde/application/partitionmanager/pspec.xml - - - partitionmanager - - qt5-base - libatasmart - libgcc - parted - libutil-linux - kio - ki18n - kconfig - kxmlgui - kservice - kcoreaddons - kiconthemes - kjobwidgets - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-09-27 - 1.2.1 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kate - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Advanced Text Editor - Plasma library and runtime components based upon KF5 and Qt5 - mirrors://kde/stable/applications/15.12.0/src/kate-15.12.0.tar.xz - - qt5-base-devel - plasma-framework-devel - kdoctools-devel - knewstuff-devel - kinit-devel - kparts-devel - ktexteditor-devel - threadweaver-devel - kitemmodels-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - docbook-xsl - extra-cmake-modules - kded-devel - - desktop/kde/application/kate/pspec.xml - - - kate - - qt5-base - libgcc - libgit2 - knewstuff - ki18n - kconfig - kded - kguiaddons - kactivities - kjobwidgets - kitemmodels - kio - kparts - ktexteditor - kwindowsystem - kxmlgui - plasma-framework - kwallet - kservice - kbookmarks - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - threadweaver - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/share - /etc/xdg - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-03 - 15.04.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - krfb - http://www.kde.org/applications/system/krfb/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.application - Desktop sharing utility - Masaüstü paylaşım araçları. - KDE Desktop Sharing is a manager for easily sharing a desktop session with another system. The desktop session can be viewed or controlled remotely by any VNC or RFB client - krfb, masaüstünü uzaktaki bilgisayarlarla kolaylıkla paylaşmaya olanak sağlar. - http://download.kde.org/stable/applications/15.12.0/src/krfb-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-x11extras-devel - ki18n-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdnssd-devel - kdoctools-devel - knotifications-devel - kwallet-devel - kwidgetsaddons-devel - kxmlgui-devel - libvncserver-devel - libX11-devel - libXdamage-devel - libxcb-devel - libXext-devel - libXtst-devel - - desktop/kde/application/krfb/pspec.xml - - - krfb - - ki18n - kdnssd - libX11 - libgcc - kconfig - kwallet - kxmlgui - libXtst - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libvncserver - qt5-x11extras - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/krfb - /usr/share/kservicetypes5 - /usr/share/doc - - - kdenetwork - - - kdenetwork - - - - - 2015-12-18 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-14 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - kdegraphics-thumbnailers - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - KDE4 thumbnailer library - KDE4 önizleme kitaplıkları - kdegraphics-thumbnailers contains thumbnail-related libraries. - kdegraphics-thumbnailers, önizleme kitaplıklarını içerir. - http://download.kde.org/stable/applications/15.12.0/src/kdegraphics-thumbnailers-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kio-devel - libkdcraw-devel - libkexiv2-devel - - desktop/kde/application/kdegraphics-thumbnailers/pspec.xml - - - kdegraphics-thumbnailers - - kio - libgcc - qt5-base - libkdcraw - libkexiv2 - - - /usr/lib - /usr/share/doc - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - dolphin-plugins - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.application - Extra dolphin plugins - Dolphin eklentileri. - This package contains plugins that offer integration in Dolphin with the following version control systems: - Dolphin için VCS (Version Control System) eklentileri. - mirrors://kde/stable/applications/15.12.0/src/dolphin-plugins-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - dolphin-devel - kio-devel - kdelibs4-support-devel - extra-cmake-modules - - desktop/kde/application/dolphin-plugins/pspec.xml - - - dolphin-plugins - - qt5-base - dolphin - kio - ki18n - libgcc - kconfig - kxmlgui - kservice - ktexteditor - kwidgetsaddons - kcompletion - kcoreaddons - ktextwidgets - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-12 - 15.07.90 - First Relase unstable. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - spectacle - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - KDE screenshot capture utility - Ekran görüntüsü yakalama aracı - Spectacle, a new screenshot application that aims to replace KSnapshot.. - spectacle bir ekran görüntüsü yakalama aracıdır. - mirrors://kde/stable/applications/15.12.0/src/spectacle-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - libkipi-devel - qt5-script-devel - libxcb-devel - libkscreen-devel - xcb-util-devel - qt5-x11extras-devel - xcb-util-image-devel - xcb-util-cursor-devel - kxmlgui-devel - kio-devel - kwindowsystem-devel - kcoreaddons-devel - ki18n-devel - kwidgetsaddons-devel - knotifications-devel - - desktop/kde/application/spectacle/pspec.xml - - - spectacle - - qt5-base - kio - libkscreen - xcb-util-cursor - ki18n - libgcc - kconfig - kxmlgui - libkipi - kservice - kcoreaddons - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kdbusaddons - libxcb - xcb-util - qt5-x11extras - xcb-util-image - - - /usr/bin - /usr/share - /usr/share/doc - - - ksnapshot - - - ksnapshot - - - - - 2015-12-18 - 15.12.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktp-text-ui - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Telepathy handler for Text Chats - Telepathy handler for Text Chats - http://download.kde.org/stable/applications/15.12.0/src/ktp-text-ui-15.12.0.tar.xz - - extra-cmake-modules - karchive-devel - sonnet-devel - kwidgetsaddons-devel - kservice-devel - kemoticons-devel - kio-devel - kcmutils-devel - knotifyconfig-devel - knotifications-devel - ki18n-devel - kdewebkit-devel - kwindowsystem-devel - kxmlgui-devel - kitemviews-devel - ktextwidgets-devel - kiconthemes-devel - kdbusaddons-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - qt5-location-devel - qt5-webkit-devel - - desktop/kde/application/ktp-text-ui/pspec.xml - - - ktp-text-ui - Telepathy handler for Text Chats - - kio - ki18n - libgcc - sonnet - kconfig - kxmlgui - karchive - kcmutils - kservice - qt5-base - kdewebkit - kemoticons - kitemviews - qt5-webkit - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - knotifyconfig - kwindowsystem - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/lib - /usr/share - /usr/share/ktelepathy - /usr/share/ktp-log-viewer - /usr/share/kxmlgui5 - /usr/share/telepathy - /usr/share/dbus-1 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ktp-contact-runner - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KRunner plugin for KDE Telepathy - KRunner plugin for KDE Telepathy - http://download.kde.org/stable/applications/15.12.0/src/ktp-contact-runner-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kservice-devel - krunner-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-contact-runner/pspec.xml - - - ktp-contact-runner - KRunner plugin for KDE Telepathy - - ki18n - libgcc - krunner - qt5-base - kcoreaddons - telepathy-qt5 - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libkexiv2 - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - An Exiv2 wrapper library - Exiv2 sarmalayıcı kitaplığı - libkexiv2 is a wrapper around Exiv2 library to manipulate pictures metadata as EXIF/IPTC and XMP. - libkexiv2, EXIF/IPTC ve XMP gibi resim meta bilgilerini düzenlemek için kullanılan Exiv2 kitaplığını sarmalayan bir kitaplıktır. - mirrors://kde/stable/applications/15.12.0/src/libkexiv2-15.12.0.tar.xz - - extra-cmake-modules - cmake - exiv2-devel - qt5-base-devel - - desktop/kde/application/libkexiv2/pspec.xml - - - libkexiv2 - - qt5-base - exiv2-libs - - - /usr/lib - /usr/bin - - - - libkexiv2-devel - Development files for libkexiv2 - libkexiv2 için geliştirme dosyaları - - libkexiv2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-12-19 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-26 - 5.11.80 - First Release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdeedu-data - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.application - Common data for KDE Edu applications - Common data for KDE Edu applications. - mirrors://kde/stable/applications/15.12.0/src/kdeedu-data-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/application/kdeedu-data/pspec.xml - - - kdeedu-data - - /usr/share - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - konsole - https://projects.kde.org/projects/kde/applications/dolphin - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - desktop.kde.application - KDE Konsole - Konsole for KDE5 - mirrors://kde/stable/applications/15.12.0/src/konsole-15.12.0.tar.xz - - qt5-base-devel - qt5-script-devel - kpty-devel - kio-devel - kinit-devel - knotifyconfig-devel - kparts-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - docbook-xsl - extra-cmake-modules - kdoctools-devel - cmake - - desktop/kde/application/konsole/pspec.xml - - - konsole - - libgcc - qt5-base - kdelibs4-support - kiconthemes - knotifyconfig - knotifications - kparts - kpty - kio - ki18n - kconfig - kxmlgui - kservice - kbookmarks - kguiaddons - kcompletion - kcoreaddons - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/lib - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-05 - 15.04.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - okular - http://okular.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - A document viewer - Belge gösterici - Okular is a document viewer. - Okular bir belge göstericidir. - okular - http://sourceforge.net/projects/pisilinux/files/source/okular-15.08.02_20151104.tar.xz - - qt5-base-devel - qt5-declarative-devel - kjs-devel - qca2-qt5-devel - tiff-devel - kdelibs4-support-devel - qt5-phonon-devel - poppler-qt5-devel - ebook-tools-devel - libkexiv2-devel - kdoctools-devel - threadweaver-devel - kdesignerplugin - khtml-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kactivities-devel - libkscreen-devel - libspectre-devel - djvu-devel - kpty-devel - extra-cmake-modules - - desktop/kde/application/okular/pspec.xml - - - okular - app:gui - - qt5-base - qca2-qt5 - tiff - libkexiv2 - poppler-qt5 - ebook-tools - kactivities - libjpeg-turbo - kdelibs4-support - khtml - kpty - kio - kjs - zlib - ki18n - kparts - libgcc - kcodecs - kconfig - kwallet - kxmlgui - qt5-svg + gimp + gtk2 + SuiteSparse + atk + cairo + glib2 + pango freetype - karchive - kservice - kbookmarks - kitemviews - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - threadweaver - kwindowsystem - kconfigwidgets - kwidgetsaddons - qt5-declarative - djvu - libspectre - qt5-phonon + gdk-pixbuf + fontconfig - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share - - - - okular-devel - Development files for okular - Okular için geliştirme dosyaları - - okular - - - /usr/include - /usr/lib/cmake - - - - - 2015-11-05 - 15.08.02_20151104 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ktp-contact-list - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KDE Telepathy contact list application - KDE Telepathy contact list application - http://download.kde.org/stable/applications/15.12.0/src/ktp-contact-list-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kdbusaddons-devel - kio-devel - kcmutils-devel - knotifications-devel - kwindowsystem-devel - knotifyconfig-devel - ki18n-devel - kiconthemes-devel - kxmlgui-devel - kpeople-devel - telepathy-qt5-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - - desktop/kde/application/ktp-contact-list/pspec.xml - - - ktp-contact-list - KDE Telepathy contact list application - - ki18n - libgcc - kconfig - kpeople - kxmlgui - kservice - qt5-base - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/share - /usr/share/dbus-1 - /usr/share/applications - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libksane - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - SANE library interface for KDE - KDE için SANE kitaplık arayüzü - libksane is a SANE library interface for KDE. - libksane, KDE için bir SANE kitaplık arayüzüdür. - mirrors://kde/stable/applications/15.12.0/src/libksane-15.12.0.tar.xz - - ki18n-devel - kwallet-devel - qt5-base-devel - ktextwidgets-devel - sane-backends-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/application/libksane/pspec.xml - - - libksane - - ki18n - kwallet - qt5-base - ktextwidgets - sane-backends - kwidgetsaddons - - - /usr/lib - /usr/share/icons - - - - libksane-devel - Development files for libksane - libksane için geliştirme dosyaları - - libksane - - - /usr/lib/cmake - /usr/include - /usr/lib/pkgconfig - - - - - 2015-12-19 - 15.12.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdepim - http://www.kde.org - - Pisi Linux Admins - vedat@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - KDE Pim different packages with akonadi-console, kadressbook blogilo etc - Provides different Packages for KDE5 - mirrors://kde/stable/applications/15.12.0/src/kdepim-15.12.0.tar.xz - - qt5-base-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - qt5-declarative-devel - qt5-quick1-devel - qt5-phonon-devel - qt5-webkit-devel - qt5-x11extras-devel - qt5-location-devel - prison-qt5-devel - openssl-devel - kinit-devel - kross-devel - libassuan-devel - akonadi-devel - akonadi-search-devel - kdnssd-devel - grantlee-qt5-devel - kpimtextedit-devel - kmailtransport-devel - kcalutils-devel - kholidays-devel - ktnef-devel - kimap-devel - ksyndication-devel - gpgmepp-devel - akonadi-calendar-devel - libSM-devel - NetworkManager-devel - kauth-devel - kbookmarks-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcrash-devel - kdbusaddons-devel - kdesignerplugin - kdoctools-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kidentitymanagement-devel - kio-devel - kitemviews-devel - knotifications-devel - kparts-devel - kservice-devel - ktextwidgets-devel - kunitconversion-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kcmutils-devel - kdewebkit-devel - khtml-devel - ktexteditor-devel - kidentitymanagement-devel - kldap-devel - cyrus-sasl-devel - kmbox-devel - kontactinterface-devel - kalarmcal-devel - kxmlrpcclient-devel - kblog-devel - kdelibs4-support-devel - kdepimlibs-devel - kidentitymanagement-devel - gpgme-devel - libX11-devel - extra-cmake-modules - qt5-linguist - kemoticons-devel - kitemmodels-devel - knewstuff-devel - knotifyconfig-devel - libkgapi-devel - curl-devel - kdepim-runtime - - desktop/kde/application/kdepim/pspec.xml - - - kdepim - - qt5-base - qt5-phonon - qt5-webkit - qt5-x11extras - gpgme - kross - libassuan - akonadi - akonadi-search - kdnssd - grantlee-qt5 - kpimtextedit - kmailtransport - kcalutils - kholidays - ktnef - kimap - ksyndication - gpgmepp - akonadi-calendar - kauth - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcrash - kdbusaddons - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kitemviews - knotifications - kparts - kservice - ktextwidgets - kunitconversion - kwidgetsaddons - kwindowsystem - kxmlgui - kcmutils - kdewebkit - khtml - ktexteditor - kidentitymanagement - kldap - kcodecs - kwallet - cyrus-sasl - kmbox - kontactinterface - kalarmcal - kxmlrpcclient - karchive - kcalcore - kcontacts - kholidays - knewstuff - sonnet - kblog - kdepimlibs - kcoreaddons - kitemmodels - kjobwidgets - knotifyconfig - kdelibs4-support - kidentitymanagement - libgpg-error - libX11 - libgcc - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - step - http://kde.org/applications/education/step/ - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Interactive Physical Simulator - Step is an interactive physical simulator. It allows you to explore the physical world through simulations. - mirrors://kde/stable/applications/15.12.0/src/step-15.12.0.tar.xz - - qt5-base-devel - qt5-quick1-devel - qt5-svg-devel - qt5-declarative-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - mesa-devel - khtml-devel - kconfig-devel - kdelibs4-support-devel - knewstuff-devel - kplotting-devel - eigen3 - pkgconfig - libqalculate-devel - cln-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/step/pspec.xml - - - step - - qt5-base - cln - gsl - khtml - knewstuff - kplotting - libqalculate - kparts - kio - libgcc - kdelibs4-support - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - kconfigwidgets - kwidgetsaddons - kservice - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kcontacts - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - Address book API for KDE. - Address book for KDE for Contacts. - mirrors://kde/stable/applications/15.12.0/src/kcontacts-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kcodecs-devel - kconfig-devel - kio-devel - extra-cmake-modules - - desktop/kde/application/kcontacts/pspec.xml - - - kcontacts - - qt5-base - ki18n - kcodecs - kconfig - kcoreaddons - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcontacts-devel - Development files for kcontacts - - qt5-base-devel - kcontacts - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kontactinterface - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - Kontact Plugin Interface Library - This library provides the glue necessary for application "Parts" to be embedded as a Kontact component (or plugin). - mirrors://kde/stable/applications/15.12.0/src/kontactinterface-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - kcoreaddons-devel - kparts-devel - kwindowsystem-devel - ki18n-devel - kxmlgui-devel - kiconthemes-devel - - desktop/kde/application/kontactinterface/pspec.xml - - - kontactinterface - - qt5-base - kio - kparts - libgcc - kxmlgui - kcoreaddons - kiconthemes - kwindowsystem - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kontactinterface-devel - Development files for kontactinterface - - qt5-base-devel - kontactinterface - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kimap - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Job-based API for interacting with IMAP servers - API for interacting with IMAP servers - mirrors://kde/stable/applications/15.12.0/src/kimap-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - kmime-devel - boost-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - cyrus-sasl-devel - kunitconversion-devel - extra-cmake-modules - - desktop/kde/application/kimap/pspec.xml - - - kimap - - qt5-base - kmime - kio - ki18n - libgcc - kcodecs - cyrus-sasl - kcoreaddons - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kimap-devel - Development files for kimap - - qt5-base-devel - kimap - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdebugsettings - http://projects.kde.org/kdebugsettings - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - An application to enable/disable qCDebug - KDebug control module for KDE. It provides a graphical frontend for the -kdebug daemon, which allow enabling or disabling particular debug areas/messages. - http://download.kde.org/stable/applications/15.12.0/src/kdebugsettings-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kiconthemes-devel - kwidgetsaddons-devel - kitemviews-devel - kcompletion-devel - kio-devel - - desktop/kde/application/kdebugsettings/pspec.xml - - - kdebugsettings - An application to enable/disable qCDebug - - ki18n - libgcc - kconfig - qt5-base - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kwidgetsaddons - - - /usr/bin - /etc - /usr/share/applications - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - rocs - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Rocs Graph Theory - Rocs aims to be a Graph Theory IDE for helping professors to show the results of a graph algorithm and also helping students to do the algorithms. Rocs has a scripting module, done in Qt Script, that interacts with the drawn graph and every change in the graph with the script is reflected on the drawn one.. - mirrors://kde/stable/applications/15.12.0/src/rocs-15.12.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-webkit-devel - qt5-base-devel - qt5-xmlpatterns-devel - extra-cmake-modules - kdoctools-devel - kdeclarative-devel - ki18n-devel - gettext-devel - kitemviews-devel - ktexteditor-devel - kxmlgui-devel - kconfig-devel - karchive-devel - kcompletion-devel - kcoreaddons-devel - ktexteditor-devel - kconfigwidgets-devel - kxmlgui-devel - kwidgetsaddons-devel - karchive-devel - cmake - qt5-location-devel - grantlee-qt5-devel - gettext-devel - boost-devel - - desktop/kde/application/rocs/pspec.xml - - - rocs - - qt5-base - qt5-script - qt5-declarative - qt5-xmlpatterns - qt5-webkit - grantlee-qt5 - kdeclarative - ktexteditor - kparts - libgcc - ki18n - kconfig - karchive - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - karchive - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - kwidgetsaddons - kwidgetsaddons - kxmlgui - kitemviews - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - rocs-devel - Development files for rocs - - rocs - - - /usr/include - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-29 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktnef - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - API for handling TNEF data - The API permits access to the actual attachments, the message properties (TNEF/MAPI), and allows one to view/extract message formatted text in Rich Text Format format. - mirrors://kde/stable/applications/15.12.0/src/ktnef-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcalcore-devel - kcalutils-devel - kcontacts-devel - - desktop/kde/application/ktnef/pspec.xml - - - ktnef - - qt5-base - kcalutils - ki18n - libgcc - kcalcore - kcontacts - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ktnef-devel - Development files for ktnef - - qt5-base-devel - ktnef - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ffmpegthumbs - https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - ffmpeg based thumbnailer for KDE - KDE için ffmpeg tabanlı önizleme - FFmpeg-based thumbnail creator for video files - Video dosyaları için FFmpeg tabanlı önizleme oluşturur. - http://download.kde.org/stable/applications/15.12.0/src/ffmpegthumbs-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kio-devel - ffmpeg-devel - - desktop/kde/application/ffmpegthumbs/pspec.xml - - - ffmpegthumbs - - kio - ffmpeg - libgcc - qt5-base - - - /usr/share - /usr/lib - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2015-01-13 - 4.14.3 - Rebuild - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-30 - 4.11.3 - Rebuild for ffmpeg. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-kded-module - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - http://download.kde.org/stable/applications/15.12.0/src/ktp-kded-module-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - kdbusaddons-devel - kwidgetsaddons-devel - kconfig-devel - ki18n-devel - kio-devel - knotifications-devel - kconfigwidgets-devel - kidletime-devel - kcmutils-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-kded-module/pspec.xml - - - ktp-kded-module - Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - - kio - ki18n - libgcc - kconfig - qt5-base - kidletime - kcoreaddons - kdbusaddons - telepathy-qt5 - kconfigwidgets - knotifications - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/dbus-1 - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-23 - 15.08.3 - Fİrst Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kpimtextedit - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - A textedit with PIM-specific features. - Text Edit with KDE-PIM specific features. - mirrors://kde/stable/applications/15.12.0/src/kpimtextedit-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kcodecs-devel - kconfig-devel - kio-devel - kemoticons-devel - kdesignerplugin - kitemmodels-devel - kinit-devel - kdelibs4-support-devel - kunitconversion-devel - kdoctools-devel - extra-cmake-modules - grantlee-qt5-devel - - desktop/kde/application/kpimtextedit/pspec.xml - - - kpimtextedit - - qt5-base - ki18n - kcodecs - kio - sonnet - libgcc - kemoticons - kcompletion - ktextwidgets - kwidgetsaddons - grantlee-qt5 - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kpimtextedit-devel - Development files for kpimtextedit - - qt5-base-devel - kpimtextedit - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kamera - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - Webcam support for KDE - KDE için web kamera desteği - Kamera is a plugin for KDE to use webcam. - Kamera, KDE için bir web kamera eklentisidir. - http://download.kde.org/stable/applications/15.12.0/src/kamera-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfigwidgets-devel - kxmlgui-devel - kio-devel - ki18n-devel - kconfig-devel - kdoctools-devel - libgphoto2-devel - - desktop/kde/application/kamera/pspec.xml - - - kamera - - kio - ki18n - libgcc - kconfig - kxmlgui - qt5-base - libgphoto2 - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkdcraw - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - A C++ interface around LibRaw library - LibRaw kitaplığı için C++ arayüzü - libkdcraw is a C++ interface around LibRaw library used to decode RAW picture files. - libkdcraw, RAW resim dosyalarını çözmek için kullanılan LibRaW kitaplığının C++ arayüzüdür. - mirrors://kde/stable/applications/15.12.0/src/libkdcraw-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - libraw-devel - kconfig-devel - ki18n-devel - cmake - extra-cmake-modules - - desktop/kde/application/libkdcraw/pspec.xml - - - libkdcraw - - qt5-base - libraw - kconfig - ki18n - libgcc - - - /usr/lib - /usr/bin - /usr/share/icons - /usr/share/ - - - - libkdcraw-devel - Development files for libkdcraw - libkdcraw için geliştirme dosyaları - - libkdcraw - qt5-base-devel - libraw-devel - kconfig-devel - ki18n-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/apps/cmake - - - - - 2015-12-19 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-13 - 15.07.90_p1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-dev-scripts - https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Scripts and setting files useful during development of KDE software - Scripts and setting files useful during development of KDE software - http://download.kde.org/stable/applications/15.12.0/src/kde-dev-scripts-15.12.0.tar.xz - - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - - desktop/kde/application/kde-dev-scripts/pspec.xml - - - kde-dev-scripts - Scripts and setting files useful during development of KDE software - - qt5-base - kdoctools - kdelibs4-support - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kollision - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A simple ball dodging game - Basit bir top sıçratma oyunu - Kollision is ball dodging game. Click on the empty field to start a game: a blue ball immediately replaces your mouse cursor, and a number of red balls start to fade into the field. - Kollision basit bir top sıçratma oyunudur. Boş bir alana fareyle tıkladığınızda oyun başlar ve fare imlecinizin yerini mavi bir top alır, ayrıca olayların gelişmesine vesile olacak kırmızı toplar da alandaki yerlerini alırlar. - kollision - http://download.kde.org/stable/applications/15.12.0/src/kollision-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kollision/pspec.xml - - - kollision - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kanagram - http://edu.kde.org/applications/all/kanagram - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A letter order game - Bir harf sıralama oyunu - Kanagram is a game based on anagrams of words: the puzzle is solved when the letters of the scrambled word are put back in the correct order. There is no limit on either time taken, or the amount of attempts to solve the word. - Kanagram, anagramlar üzerine bir oyundur. Dağınık yerleştirilmiş harfleri birleştirerek kelimeyi bulun. Zaman veya deneme sınırı yoktur. - kanagram - mirrors://kde/stable/applications/15.12.0/src/kanagram-15.12.0.tar.xz - - qt5-base-devel - qt5-declarative - kdoctools-devel - knewstuff-devel - kdeclarative-devel - ki18n-devel - kio-devel - kcrash-devel - sonnet-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kxmlgui - kwidgetsaddons-devel - extra-cmake-modules - libkeduvocdocument-devel - - desktop/kde/application/kanagram/pspec.xml - - - kanagram - - ki18n - libgcc - sonnet - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdeclarative - kconfigwidgets - qt5-declarative - libkeduvocdocument - - - /etc/xdg - /usr/share - /usr/bin - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktp-desktop-applets - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - The KDE-Telepathy Plasma desktop applets - The KDE-Telepathy Plasma desktop applets - http://download.kde.org/stable/applications/15.12.0/src/ktp-desktop-applets-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kwindowsystem-devel - plasma-framework-devel - - desktop/kde/application/ktp-desktop-applets/pspec.xml - - - ktp-desktop-applets - The KDE-Telepathy Plasma desktop applets - - libgcc - qt5-base - kwindowsystem - qt5-declarative - - - /usr/lib - /usr/share - /usr/share/plasma - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kjumpingcube - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Territory capture game - Alan kapma oyunu - KJumpingCube is a simple tactical game. - KJumpingCube basit bir taktik oyunudur. - kjumpingcube - http://download.kde.org/stable/applications/15.12.0/src/kjumpingcube-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/application/kjumpingcube/pspec.xml - - - kjumpingcube - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-approver - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KDE Channel Approver for Telepathy - KDE Channel Approver for Telepathy - http://download.kde.org/stable/applications/15.12.0/src/ktp-approver-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kdbusaddons-devel - kconfig-devel - ki18n-devel - knotifications-devel - kservice-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-approver/pspec.xml - - - ktp-approver - - ki18n - libgcc - kconfig - kservice - qt5-base - kcoreaddons - kdbusaddons - telepathy-qt5 - knotifications - - - /etc - /usr/lib - /usr/share - /usr/share/kservicetypes5 - /usr/share/kservices5 - /usr/share/dbus-1 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-22 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kblackbox - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Blackbox logic game - Blackbox mantık oyunu - KBlackBox is a game of hide and seek played on a grid of boxes. The computer has hidden several balls within this box. By shooting beams into the box and observing where they emerge it is possible to deduce the positions of the hidden balls. - KBlackBox yan yana dizilmiş kutularla oynanan bir saklambaç oyunudur. Bilgisayarın sakladığı topları kutuları lazerle kontrol ederek bulabilirsiniz. - kblackbox - http://download.kde.org/stable/applications/15.12.0/src/kblackbox-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kguiaddons-devel - kiconthemes-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kblackbox/pspec.xml - - - kblackbox - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - karchive - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - klickety - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A kind of solitary game - Bir tür soliter oyunu - Klickety is a kind of solitary game that takes place on a Tetris-like board. - Klickety Tetris gibi tahta üzerinde yer alan bir tür soliter oyunu - klickety - http://download.kde.org/stable/applications/15.12.0/src/klickety-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kconfigwidgets-devel - kxmlgui-devel - kio-devel - kdoctools-devel - knotifyconfig-devel - kdbusaddons-devel - knotifications-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/klickety/pspec.xml - - - klickety - - kio - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/kconf_update - /usr/share/klickety - /usr/share/knotifications5 - /usr/share/kxmlgui5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kteatime - http://www.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Timer for making tea. - Çay yapma zamanlayıcısı. - KTeaTime is a handy timer for steeping tea. No longer will you have to guess at how long it takes for your tea to be ready. - Kteatime çay yapmak için kullanışlı bir uygulamadır. Kteatime ile çay demlemek için ne kadar beklemek gerektiğini düşünmenize gerek kalmaz. - http://download.kde.org/stable/applications/15.12.0/src/kteatime-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfig-devel - kcrash-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - knotifyconfig-devel - knotifications-devel - kwidgetsaddons-devel - ktextwidgets-devel - kxmlgui-devel - - desktop/kde/application/kteatime/pspec.xml - - - kteatime - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kiconthemes - ktextwidgets - knotifyconfig - kconfigwidgets - knotifications - - - /usr/bin - /usr/doc - /usr/share - - - kdetoys - - - kdetoys - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - artikulate - https://projects.kde.org/projects/kde/kdeedu/artikulate - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - LGPLv3 - FDLv1.2 - app:gui - desktop.kde.application - Improve your pronunciation by listening to native speakers - Artikulate, Improve your pronunciation by listening to native speakers. - artikulate - mirrors://kde/stable/applications/15.12.0/src/artikulate-15.12.0.tar.xz - - boost-devel - cmake - extra-cmake-modules - kdoctools-devel - ki18n - kcrash-devel - libgcc - kconfig-devel - kxmlgui-devel - qt5-base-devel - knewstuff-devel - kcoreaddons-devel - kdeclarative-devel - qt5-gstreamer-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - - desktop/kde/application/artikulate/pspec.xml - - - artikulate - - ki18n - kcrash - libgcc - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdeclarative - qt5-gstreamer - kconfigwidgets - kwidgetsaddons - qt5-declarative - qt5-xmlpatterns - - - /etc - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-12-25 - 15.12.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - poxml - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.application - Tools for translating DocBook XML files with Gettex - DocBook XML dosyalarını çevirme araçları. - This is a collection of tools that facilitate translating DocBook XML files using Gettext message files (PO files). - poxml, DocBook XML dosyalarını (.po) Gettext yarımıyla çevirmeyi sağlayan bir programdır. - http://download.kde.org/stable/applications/15.12.0/src/poxml-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - gettext-devel - kdoctools-devel - docbook-xsl - - desktop/kde/application/poxml/pspec.xml - - - poxml - - libgcc - gettext - qt5-base - - - /usr/bin - /usr/share/doc - /usr/share/man - - - kdesdk - - - kdesdk - - - - - 2015-12-20 - 15.12.0 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-14 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - ktuberling - http://kde.org/applications/games/ktuberling/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A simple constructor game suitable for children and adults alike - KTuberling a simple constructor game suitable for children and adults alike. The idea of the game is based around a once popular doll making concept. - http://download.kde.org/stable/applications/15.12.0/src/ktuberling-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/application/ktuberling/pspec.xml - - - ktuberling - A simple constructor game suitable for children and adults alike - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/ktuberling - /usr/share/kxmlgui5 - /usr/share/doc - - - - - 2015-12-19 - 15.12.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kde-baseapps - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - desktop.kde.application - KDE-Baseapps: base applications from the official KDE release - Base application for KDE5 such as Dolphin, kfind, plasma-widget-folderview, konqueror etc. - http://sourceforge.net/projects/pisilinux/files/source/kde-baseapps-15.12.0_20151228.tar.xz - - qt5-base-devel - zlib-devel - glib2-devel - libX11-devel - kfilemetadata-devel - qt5-phonon-devel - kactivities-devel - libXrender-devel - libXt-devel - libraw1394-devel - mesa-devel - kdelibs4-support-devel - tidy-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesu-devel - khtml-devel - kdelibs4-support-devel - kcmutils-devel - kconfig-devel - kded-devel - kdoctools-devel - kdesignerplugin - libxslt - docbook-xsl - extra-cmake-modules - - desktop/kde/application/kde-baseapps/pspec.xml - - - kde-baseapps - - qt5-base - zlib - libX11 - libgcc - tidy - kio - kdesu - khtml - ki18n - kparts - kcodecs - kconfig - kxmlgui - karchive - kcmutils - kservice - kbookmarks - kitemviews - qt5-script - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - kwindowsystem - qt5-x11extras - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/locale - /usr/lib - /usr/share/doc - - - - kde-baseapps-devel - Development files for kde-baseapps - - kde-baseapps - tidy-devel - qt5-base-devel - zlib-devel - glib2-devel - libX11-devel - kfilemetadata-devel - qt5-phonon-devel - kactivities-devel - libXrender-devel - libXt-devel - libraw1394-devel - mesa-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesu-devel - khtml-devel - kcmutils-devel - kconfig-devel - kded-devel - kdoctools-devel - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-26 - 15.12.0_20151228 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-11-01 - 15.07.90_20151029 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-08-31 - 15.07.90_20150729 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-03 - 15.04.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - yakuake - http://extragear.kde.org/apps/yakuake - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Very powerful Quake style Konsole for KDE4 - KDE5 için Quake tarzı oldukça güçlü bir Konsole - The name comes from Yet Another Kuake (thus YaKuake). Its behaviour is similar to the console of the Quake game. - İsmi Bir Başka Kuake (Yet Another Kuake - YaKuake) sözcüklerinden gelmektedir. Quake oyunundaki konsola benzer. - yakuake - http://source.pisilinux.org/1.0/yakuake-2.9.9_20150703.tar.gz - - qt5-base-devel - libX11-devel - qt5-x11extras-devel - knewstuff-devel - kio-devel - kparts-devel - knotifyconfig-devel - extra-cmake-modules - - desktop/kde/application/yakuake/pspec.xml - - - yakuake - - qt5-base - qt5-x11extras - kio - ki18n - kparts - kconfig - kxmlgui - karchive - kservice - knewstuff - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - knotifyconfig - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - libX11 - libgcc - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/locale + /usr/lib/gimp/2.0/plug-ins /usr/share/doc - yakuake.notifyrc + COPYING - - 2015-08-01 - 2.9.9_20150703 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kblocks - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Falling blocks game - Tetris - KBlocks is the classic falling blocks game. The idea is stack the falling blocks in a way that lines are completely filled. When a line is completed it is removed, and more space is available in the play area. When there is not enough space for blocks to fall, the game is over. - KBlocks klasikleşmiş tetrisin bir yeniden yapımıdır. Oyunun amacı düşen parçaları en uygun şekilde dizmektir. Bir satır tamamen dolduktan sonra silinmektedir ve daha fazla oyun alanı açılmaktadır. Yeni parçaları koyacak yeriniz kalmadığında oyun bitmektedir. - kblocks - http://download.kde.org/stable/applications/15.12.0/src/kblocks-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kdoctools-devel - ki18n-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kemoticons-devel - - desktop/kde/application/kblocks/pspec.xml - - - kblocks - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - qt5-phonon - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kio-extras - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Additional KIO-slaves for KDE5 applications - Additional KIO-slaves for KDE5 applications - mirrors://kde/stable/applications/15.12.0/src/kio-extras-15.12.0.tar.xz - - exiv2-devel - gettext-devel - karchive-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - kdnssd-devel - kdoctools-devel - kemoticons-devel - khtml-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - kitemmodels-devel - kpty-devel - kunitconversion-devel - libjpeg-turbo-devel - libmtp-devel - libssh-devel - qt5-base-devel - qt5-phonon-devel - qt5-svg-devel - samba-devel - shared-mime-info - solid-devel - openexr-devel - openslp-devel - docbook-xsl - kdesignerplugin - extra-cmake-modules - cmake - - desktop/kde/application/kio-extras/pspec.xml - - - kio-extras - - exiv2-libs - karchive - kbookmarks - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdelibs4-support - kdnssd - kguiaddons - khtml - ki18n - kiconthemes - kio - kparts - kpty - kservice - kxmlgui - libgcc - libjpeg-turbo - libmtp - libssh - qt5-base - qt5-phonon - qt5-svg - samba - solid - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kfourinline - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Four in a row board game - Bir satırda dört tahta oyunu - KFourInLine is a board game for two players based on the Connect-Four game. - KFourInLine iki kişiyle oynanan Hedef 4 türevi bir oyundur. - kfourinline - http://download.kde.org/stable/applications/15.12.0/src/kfourinline-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kcompletion-devel - kxmlgui-devel - kdnssd-devel - kio-devel - knotifyconfig-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/application/kfourinline/pspec.xml - - - kfourinline - - ki18n - kdnssd - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcompletion - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-18 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-filetransfer-handler - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KDE Telepathy file transfer handler - KDE Telepathy file transfer handler - http://download.kde.org/stable/applications/15.12.0/src/ktp-filetransfer-handler-15.12.0.tar.xz - - extra-cmake-modules - kcoreaddons-devel - ki18n-devel - kio-devel - kconfig-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-filetransfer-handler/pspec.xml - - - ktp-filetransfer-handler - KDE Telepathy file transfer handler - - kio - ki18n - libgcc - kconfig - qt5-base - kcoreaddons - telepathy-qt5 - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kldap - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - LDAP access API for KDE - Allows LDAP accessing with a convenient Qt style C++ API. - mirrors://kde/stable/applications/15.12.0/src/kldap-15.12.0.tar.xz - - qt5-base-devel - kcompletion-devel - ki18n-devel - openldap-client - cyrus-sasl-devel - extra-cmake-modules - - desktop/kde/application/kldap/pspec.xml - - - kldap - - qt5-base - kcompletion - ki18n - libgcc - cyrus-sasl - openldap-client - kwidgetsaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kldap-devel - Development files for kdelibs4-support - - qt5-base-devel - kldap - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdiamond - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Three in a row game - Bir satırda üç oyunu - KDiamond is a single player puzzle game. The object of the game is to build lines of three similar diamonds. - KDiamond benzer elmaslardan üç tanesinin yan yana getirilmesini konu edinen tek kişilik bir bulmaca oyunudur. - kdiamond - http://download.kde.org/stable/applications/15.12.0/src/kdiamond-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kxmlgui-devel - knotifications-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kdiamond/pspec.xml - - - kdiamond - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-17 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kblog - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - A blogging library for KDE - KBlog is a library for calling functions on Blogger 1.0, MetaWeblog, MovableType and GData compatible blogs. It calls the APIs using KXmlRpcClient and Syndication. - mirrors://kde/stable/applications/15.12.0/src/kblog-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kcoreaddons-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - qt5-webkit-devel - kcalcore-devel - ksyndication-devel - kxmlrpcclient-devel - - desktop/kde/application/kblog/pspec.xml - - - kblog - - qt5-base - kcalcore - kxmlrpcclient - kio - ki18n - libgcc - kcoreaddons - ksyndication - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kblog-devel - Development files for kblog - - qt5-base-devel - kblog - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kapman - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Pac-Man clone - Pac-Man klonu - Kapman is a clone of the well known game Pac-Man. You must go through the levels escaping ghosts in a maze. You lose a life when a ghost eats you, but you can eat the ghosts for a few seconds when eating an energizer. - Kapman dünyaca ünlü Pac-Man'in bir türevidir. Labirent içinde hayaletlerle köşe kapmaca oynayarak bölümleri geçmeye çalıştığınız oyunda eğer hayaletlere yakalanırsanız bir hakkınızı kaybediyorsunuz. Eğer bir enerji nesnesi alırsanız bu kez siz bir kaç saniyeliğine hayaletleri yiyebiliyorsunuz. - kapman - http://download.kde.org/stable/applications/15.12.0/src/kapman-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwindowsystem-devel - ki18n-devel - kinit-devel - kunitconversion-devel - kitemmodels-devel - kemoticons-devel - kconfigwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - kdesignerplugin - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - - desktop/kde/application/kapman/pspec.xml - - - kapman - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-15 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkeduvocdocument - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.application - Common libraries for KDE Edu applications - Libraries for KDE EDU applications. - mirrors://kde/stable/applications/15.12.0/src/libkeduvocdocument-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - ki18n-devel - kio-devel - karchive-devel - mesa-devel - - desktop/kde/application/libkeduvocdocument/pspec.xml - - - libkeduvocdocument - - qt5-base - karchive - libgcc - ki18n - kio - kcoreaddons - - - /usr/lib - /usr/share/doc - - - - libkeduvocdocument-devel - Development files for libkeduvocdocument - - libkeduvocdocument - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-24 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdenetwork-filesharing - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - library - desktop.kde.application - Filesharing configuration modlue. - Dosya paylaşım konfigürasyon modülü. - Filesharing configuration modlue. - Dosya paylaşım konfigürasyon modülü. - http://download.kde.org/stable/applications/15.12.0/src/kdenetwork-filesharing-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kdoctools-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kwidgetsaddons-devel - samba-devel - - desktop/kde/application/kdenetwork-filesharing/pspec.xml - - - kdenetwork-filesharing - - kio - ki18n - libgcc - qt5-base - kcompletion - kcoreaddons - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - - - kdenetwork - - - kdenetwork - - - - - 2015-12-18 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-14 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - ktp-send-file - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - A File manager plugin to launch a file transfer job with a specified contact - A File manager plugin to launch a file transfer job with a specified contact - http://download.kde.org/stable/applications/15.12.0/src/ktp-send-file-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcmutils-devel - kio-devel - kiconthemes-devel - ki18n-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-send-file/pspec.xml - - - ktp-send-file - A File manager plugin to launch a file transfer job with a specified contact - - kio - ki18n - libgcc - qt5-base - kcoreaddons - kiconthemes - telepathy-qt5 - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/share - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - klines - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Kolor Lines - Renkli çizgiler - Kolor Lines is a simple but highly addictive, one player game for KDE. Kolor Lines has been inspired by well known game of Color Lines. The goal of Kolor Lines is quite plain. The player has to move the colored balls around the game board, gathering them into the lines of the same color by five. - Kolor Lines basit ama bağımlılık yapıcı bir oyundur. Dünyaca ünlü Color Lines'tan esinlenilen oyunda amacınız aynı renkli toplardan beş tanesini yan yana getirmektir. - klines - http://download.kde.org/stable/applications/15.12.0/src/klines-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kservice-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knewstuff-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/klines/pspec.xml - - - klines - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmbox - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - MBox library support. - MBox library support. - mirrors://kde/stable/applications/15.12.0/src/kmbox-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kmime-devel - boost-devel - - desktop/kde/application/kmbox/pspec.xml - - - kmbox - - qt5-base - kmime - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmbox-devel - Development files for kmbox - - qt5-base-devel - kmbox - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdenlive - http://www.kdenlive.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A video editing GUI for KDE4 using the MLT video framework - MLT video yapısı kullanan, KDE için bir video düzenleme uygulaması - Nieliniowy edytor wideo - Kdenlive est multi-piste, gère une liste de clips et gère les doubles moniteurs vidéos. Il fournit également entre autres un support de couches personnalisables ainsi que des effets et des transitions de base. - kdenlive provides dual video monitors, a multi-track timeline and clip list. Other features include customizable layout support, basic effects and transitions. - kdenlive, ikili video izleyicileri, çoklu parça zaman çizelgesi ve klip listesi sunmaktadır. Diğer özellikler arasında özelleştirilebilir düzenleme desteği, temel efektler ve geçişler sayılabilir. - Kdenlive jest nieliniowym pakietem do edycji wideo obsługującym DV, HDC i wiele innych formatów. - http://download.kde.org/stable/applications/15.12.0/src/kdenlive-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-script-devel - qt5-svg-devel - karchive-devel - kbookmarks-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - kio-devel - kwidgetsaddons-devel - kplotting-devel - knotifyconfig-devel - knewstuff-devel - kxmlgui-devel - knotifications-devel - kguiaddons-devel - ktextwidgets-devel - kiconthemes-devel - kdoctools-devel - mlt-devel - qt5-declarative-devel - - desktop/kde/application/kdenlive/pspec.xml - - - kdenlive - - kio - mlt - ki18n - solid - libgcc - kconfig - kxmlgui - qt5-svg - karchive - kservice - qt5-base - knewstuff - kplotting - kbookmarks - kguiaddons - kitemviews - qt5-script - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - qt5-declarative - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/man - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-17 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-04-06 - 0.9.10 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-18 - 0.9.8 + 2014-06-19 + 2.6.0 Rebuild for gcc Osman Erkan osman.erkan@pisilinux.org + + 2013-07-29 + 2.6.0 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2011-01-30 + 2.6.0 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + gimp-refocus-it-plugin + http://sourceforge.net/projects/refocus-it + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. + mirrors://sourceforge/refocus-it/refocus-it-2.0.0.tar.gz + + intltool + gimp-devel + gtk2-devel + + multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml + + + gimp-refocus-it-plugin + + gimp + glib2 + gtk2 + + + /usr/bin + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc/gimp-refocus-it-plugin + /usr/share/help + /usr/share/locale + + + + + 2014-06-19 + 2.0.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.0.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-03-28 + 2.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-gmic-plugin + http://gmic.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + CeCILL-2 + app:console + library + multimedia.graphics.gimp.addon + Image procession framework. + G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. + http://gmic.eu/files/source/gmic_1.6.5.1.tar.gz + + ffmpeg-devel + fftw3-devel + gimp-devel + libjpeg-turbo-devel + lapack-devel + opencv-devel + openexr-devel + tiff-devel + curl-devel + + multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml + + + gmic + + curl + tiff + zlib + fftw3 + libX11 + libgcc + libpng + libgomp + libjpeg-turbo + + + /etc/bash_completion.d + /usr/bin + /usr/lib + /usr/share/doc/gmic + /usr/share/man + + + + gmic-devel + Development files for gmic + + gmic + + + /usr/include + + + + gimp-gmic-plugin + Gimp plugin for the GMIC image procession framework. + + atk + curl + gtk2 + zlib + gimp + cairo + pango + libX11 + libgcc + libpng + libgomp + freetype + fftw3 + glib2 + fontconfig + gdk-pixbuf + + + /usr/lib/gimp + /usr/share/doc/gimp-gmic-plugin + + + + + 2015-08-10 + 1.6.5.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-25 + 1.6.0.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + - 2013-11-26 - 0.9.6 + 2014-06-19 + 1.5.5.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-01 + 1.5.5.0 + Rebuild for ffmpeg. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-27 + 1.5.5.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-13 + 1.5.1.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gimp-dds-plugin + http://code.google.com/p/gimp-dds/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics.gimp.addon + DirectDraw Surface (DDS) format plugin for Gimp + This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format. + http://gimp-dds.googlecode.com/files/gimp-dds-3.0.1.tar.bz2 + + gimp-devel + gtk2-devel + + multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml + + + gimp-dds-plugin + + atk + cairo + glib2 + fontconfig + gdk-pixbuf + gimp + gtk2 + pango + libgomp + freetype + + + /usr/lib/gimp/2.0/plug-ins/dds + /usr/share/doc/gimp-dds-plugin + + + + + 2014-06-19 + 3.0.1 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 3.0.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-07-07 + 2.2.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gimp-data-extras + http//www.gimp.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + multimedia.graphics.gimp.addon + Gimp extras + Gimp ekleri + Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment. + Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir. + gimp + http://download.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.2.tar.bz2 + + gimp-devel + + multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml + + + gimp-data-extras + + gimp + + + /usr/share/gimp + /usr/share/doc + + + + + 2014-06-19 + 2.0.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.0.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2009-09-07 + 2.0.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gimp-focusblur-plugin + http://registry.gimp.org/node/1444 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Makes out of focus with luminosity and depth. + Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur. + http://registry.gimp.org/files/focusblur-3.2.6.tar.bz2 + + fftw3-devel + gimp-devel + intltool + + multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml + + + gimp-focusblur-plugin + + fftw3 + gdk-pixbuf + gimp + gtk2 + glib2 + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + /usr/share/locale + + + + + 2014-06-19 + 3.2.6 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 3.2.6 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-10 + 3.2.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gimp-resynthesizer + http://www.logarithmic.net/pfh/resynthesizer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + addon + multimedia.graphics.gimp.addon + Resynthesizer is a Gimp plug-in for texture synthesis + Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture. + http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz + + gimp-devel + + multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml + + + gimp-resynthesizer + + gimp + atk + gtk2 + cairo + glib2 + pango + libgcc + freetype + fontconfig + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp/2.0/scripts + /usr/share/doc + + + + + 2014-06-19 + 0.16 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 0.16 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2011-02-20 + 0.16 + First release + Erdem Artan + erdem.artan@linux.org.tr + + + + + + gimp-layer-effects + http://registry.gimp.org/node/186 + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + multimedia.graphics.gimp.addon + Layer effects for GIMP + GIMP için katman efektleri + Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects. + Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir. + gimp + http://ozbekanil.googlepages.com/layer-effects.tar.gz + multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml + + + gimp-layer-effects + + gimp + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + + + COPYING + + + + + 2014-06-19 + 2.6.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.6.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-01-30 + 2.6.0 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + gimp-save-for-web + http://registry.gimp.org/node/33 + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + GIMP Save for Web + GIMP Save for Web + GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc. + GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır. + http://registry.gimp.org/files/gimp-save-for-web-0.29.3.tar.bz2 + + intltool + gimp-devel + gtk2-devel + gdk-pixbuf-devel + + multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml + + + gimp-save-for-web + + gimp + glib2 + gtk2 + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp-save-for-web + /usr/share/locale + /usr/share/doc + + + + + 2014-06-19 + 0.29.3 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-30 + 0.29.3 + V.bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-01-30 + 0.29.0 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + gimp-lqr-plugin + http://liquidrescale.wikidot.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Plugin for The GIMP providing Liquid Rescale. + Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way. + http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2 + + intltool + gimp-devel + liblqr-devel + + multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml + + + gimp-lqr-plugin + + gdk-pixbuf + gimp + gtk2 + glib2 + liblqr + + + /usr/lib/gimp/2.0/plug-ins/* + /usr/share/doc/gimp-lqr-plugin/* + /usr/share/gimp-lqr-plugin/* + /usr/share/gimp/2.0/scripts/* + /usr/share/locale/* + + + + + 2014-06-19 + 0.7.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 0.7.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-14 + 0.7.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + openimageio + https://sites.google.com/site/openimageio/home + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics + Library for reading and writing images + Görüntüleri okuma ve yazma için bir kütüphane + OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. + https://github.com/OpenImageIO/oiio/archive/Release-1.5.20.tar.gz + + cmake + boost-devel + openexr-devel + ilmbase-devel + glew-devel + python-devel + txt2man + libpng-devel + tiff-devel + webp-devel + ffmpeg-devel + opencv-devel + freetype-devel + giflib-devel + zlib-devel + jasper-devel + libraw-devel + openjpeg-devel + libjpeg-turbo-devel + + multimedia/graphics/openimageio/pspec.xml + + + openimageio + + tiff + webp + boost + opencv + giflib + ilmbase + openjpeg + openexr-libs + libjpeg-turbo + libraw + zlib + ffmpeg + libpng + python + freetype + libgcc + + + /usr/lib + /usr/bin + /usr/share + + + + openimageio-devel + Development files for openimageio + openimageio için geliştirme başlıkları + + openimageio + tiff-devel + webp-devel + boost-devel + opencv-devel + giflib-devel + ilmbase-devel + openjpeg-devel + openexr-devel + libjpeg-turbo-devel + libraw-devel + zlib-devel + ffmpeg-devel + libpng-devel + python-devel + freetype-devel + + + /usr/include + + + + + 2015-11-06 + 1.5.20 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-14 + 1.5.19 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-30 + 1.4.15 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.4.8 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-23 + 1.3.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-20 + 1.3.11 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-11 + 1.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 1.1.20130123 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-01-25 + 1.1.20130123 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + netpbm + http://netpbm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.graphics + A set of utilities to convert to/from the netpbm (and related) formats + Netpbm vb. gibi formatlar arasında dönüşüm yapan araçlar serisi + Netpbm is a toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats. + http://source.pisilinux.org/1.0/netpbm-10.61.02.tar.gz + + config.mk + + + jasper-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + zlib-devel + libX11-devel + libxml2-devel + + + netpbm-CAN-2005-2471.patch + netpbm-security-code.patch + netpbm-security-scripts.patch + library-link.patch + + multimedia/graphics/netpbm/pspec.xml + + + netpbm + + jasper + tiff + libpng + libjpeg-turbo + zlib + libX11 + libxml2 + + + /usr/bin + /usr/lib + /usr/share/netpbm + /usr/share/man + /usr/share/doc + + + + netpbm-devel + Development files for netpbm + netpbm için geliştirme dosyaları + + netpbm + + + /usr/include + /usr/share/man/man3 + + + + + 2015-02-21 + 10.61.02 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-05-17 + 10.61.02 + Library link fixed + Ertan Güven + ertan@pisilinux.org + + + 2013-05-15 + 10.61.02 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-08-29 + 10.57.06 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + jasper + http://www.ece.uvic.ca/~mdadams/jasper + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + multimedia.graphics + Software implementation of JPEG-2000 Part 1 + JasPer JPEG-2000 Part-1 codec standardı üzerinde konumlandırılmış bir yazılım + JasPer is a software-based implementation of the codec specified in the JPEG-2000 Part-1 standard (ISO/IEC 15444-1:2000). + http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-1.900.1.zip + + libjpeg-turbo-devel + + + jasper-1.900.1-fixes-20081208.patch.bz2 + + multimedia/graphics/jasper/pspec.xml + + + jasper + + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/man + + + + jasper-docs + + jasper + + + /usr/share/doc + + + + jasper-devel + Development files for jasper + jasper için geliştirme dosyaları + + jasper + + + /usr/include + + + + jasper-32bit + 32-bit shared libraries for jasper + jasper için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libjpeg-turbo-32bit + + + jasper + libjpeg-turbo-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-06-26 + 1.900.1 + Rebuild, fixed + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-21 + 1.900.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-20 + 1.900.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-08-17 + 1.900.1 + Release bump. + PisiLinux Community + admins@pisilinux.org + + + 2011-07-07 + 1.900.1 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + enblend + http://enblend.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.graphics + Image blending with multiresolution splines + Resim harmanlama aracı + enblend is a tool for compositing images. Given a set of images that overlap in some irregular way, enblend overlays them in such a way that the seam between the images is invisible, or at least very difficult to see. + enblend, resimleri birleştirmek için kullanılan bir araçtır. Düzensiz bir şekilde üstüste binen bir resim grubunu, resimlerin arasındaki düğüm noktaları anlaşılmayacak şekilde harmanlar. + mirrors://sourceforge/enblend/enblend-enfuse/enblend-enfuse-4.1/enblend-enfuse-4.1.3.tar.gz + + cmake + gsl-devel + zlib-devel + tiff-devel + vigra-devel + boost-devel + lcms2-devel + libpng-devel + openexr-devel + imagemagick-devel + + + gentoo_prepare.patch + + multimedia/graphics/enblend/pspec.xml + + + enblend + + gsl + tiff + boost + lcms2 + vigra + libgcc + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/info + + + + + 2014-12-27 + 4.1.3 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-27 + 4.1.3 + Rebuild for boost. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-01 + 4.1.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-23 + 4.1.2 + rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-11 + 4.1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 4.1.1 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-08 + 4.1.1 + add missing builddep gsl-devel + Ertuğrul Erata + ertugrullerata@gmail.com + + + 2013-04-26 + 4.1.1 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-21 + 4.1.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-02-08 + 4.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + imagemagick + http://www.imagemagick.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:gui + multimedia.graphics + A collection of tools and libraries for many image file formats + Resimleri işlemek ve göstermek için bir X uygulaması + Narzędzie do wyświetlania, konwersji i manipulacji grafikami + ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. + ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.9.2-0.tar.xz + + ghostscript-devel + fontconfig-devel + librsvg-devel + openexr-devel + libXext-devel + libwmf-devel + liblqr-devel + jasper-devel + cairo-devel + fftw3-devel + lcms2-devel + tiff-devel + webp-devel + libjpeg-turbo-devel + libpng-devel + + + perlmagick.rpath.patch + + multimedia/graphics/imagemagick/pspec.xml + + + imagemagick + + perl + tiff + webp + zlib + bzip2 + fftw3 + lcms2 + libX11 + libgcc + liblqr + libpng + libwmf + libXext + libgomp + freetype + fontconfig + ghostscript + libtool-ltdl + openexr-libs + libjpeg-turbo + + + /usr/bin + /etc/ImageMagick-6/ + /usr/lib + /usr/share/ImageMagick-* + /usr/share/man + /usr/share/doc + + + + imagemagick-docs + HTML documentation for imagemagick + Imagemagick için API belgeleri + + /usr/share/doc/imagemagick/html + + + + imagemagick-devel + Development files for imagemagick + imagemagick için geliştirme dosyaları + Pliki nagłówkowe imagemagick + + imagemagick + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/man/man1/*-config* + /usr/bin/*-config + + + + + 2014-09-14 + 6.9.2.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + gegl + http://gegl.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + LGPLv3+ + library + app:console + multimedia.graphics + A graph based image processing framework + Graf tabanlı resim işleme altyapısı + gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. + gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. + http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2 + + libspiro-devel + openexr-devel + ffmpeg-devel + libsdl-devel + libv4l-devel + jasper-devel + cairo-devel + pango-devel + exiv2-devel + babl-devel + libjpeg-turbo-devel + gtk2-devel + lua-devel + asciidoc + intltool + ruby + ilmbase-devel + + + gegl-0.2.0-cve-2012-4433-1e92e523.patch + gegl-0.2.0-cve-2012-4433-4757cdf7.patch + gegl-0.2.0-ffmpeg-0.11.patch + + multimedia/graphics/gegl/pspec.xml + + + gegl + + glib2 + gdk-pixbuf + libspiro + jasper + libpng + libsdl + cairo + pango + babl + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale/ + + + + gegl-devel + Development files for gegl + gegl için geliştirme dosyaları + + gegl + glib2-devel + babl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc/html + + + + + 2014-12-20 + 0.2.0 + Rebuild for lua + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-19 + 0.2.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-31 + 0.2.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-29 + 0.2.0 rebuild for ffmpeg Kamil Atlı suvarice@gmail.com - 2013-04-08 - 0.9.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-29 - 0.9.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-03 - 0.9.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - knetwalk - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Network construction game - Ağ yapılandırma oyunu - KNetWalk is a single player logic game. The object of the game is to start the LAN, connecting all the terminals to the server, in as few turns as possible. - KNetWalk bir ağ kurma oyunudur. Dunucularla istemcileri mümkün olan en az kaynakla birleştirmeye çalışmak oyunun amacıdır. Bağımlılık yapması olasıdır. - knetwalk - http://download.kde.org/stable/applications/15.12.0/src/knetwalk-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/knetwalk/pspec.xml - - - knetwalk - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kross-interpreters - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Kross interpreter plugins for programming languages - Language interpreters to enable in-process scripting with Kross. - mirrors://kde/stable/applications/15.12.0/src/kross-interpreters-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - kross-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - python-devel - - desktop/kde/application/kross-interpreters/pspec.xml - - - kross-interpreters - - qt5-base - libgcc - python - kross - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-25 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-29 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdesdk-thumbnailers - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - library - desktop.kde.application - Translation file thumbnail generators - Translation file thumbnail generators - http://download.kde.org/stable/applications/15.12.0/src/kdesdk-thumbnailers-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfig-devel - ki18n-devel - kio-devel - gettext-devel - - desktop/kde/application/kdesdk-thumbnailers/pspec.xml - - - kdesdk-thumbnailers - - kio - ki18n - libgcc - gettext - kconfig - qt5-base - kwidgetsaddons - - - /usr/share/kservices5 - /usr/share/config.kcfg - /usr/lib - /usr/share/doc - - - kdesdk - - - kdesdk - - - - - 2015-12-18 - 15.12.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-14 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - analitza - https://projects.kde.org/projects/kde/kdeedu/analitza - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - desktop.kde.application - A KDE library for mathematical features - Matematiksel özellikler için bir KDE kitaplığı - analitza is a library to add mathematical features to programs. - analitza, programlara matematiksel özellikler eklemek için bir kitaplıktır. - hi32-app-kalgebra - mirrors://kde/stable/applications/15.08.2/src/analitza-15.08.2.tar.xz - - cmake - eigen3 - mesa-devel - qt5-svg-devel - extra-cmake-modules - qt5-declarative-devel - - desktop/kde/application/analitza/pspec.xml - - - analitza - - mesa - libgcc - qt5-svg - qt5-base - qt5-declarative - - - /usr/lib - /usr/share/doc - /usr/share/libanalitza/ - - - - analitza-devel - Development files for analitza - analitza için geliştirme dosyaları - - analitza - - - /usr/include - /usr/lib/cmake - - - - - 2015-10-19 - 15.08.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-18 - 15.04.3 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-23 - 4.10.2 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi - http://pim.kde.org/akonadi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.application - PIM (Personal Information Management) Storage Service - PIM (Kişisel Bilgi Yönetimi) Depolama Servisi - akonadi is an extensible cross-desktop storage service for PIM data and meta data providing concurrent read, write, and query access. - Akonadi, PIM verisi ve meta veriler için eşzamanlı okuma, yazma ve sorgulama yapma imkanı sağlayan, masaüstü ortamından bağımsız, genişletilebilir bir depolama servisidir. - akonadi - mirrors://kde/stable/applications/15.12.0/src/akonadi-15.12.0.tar.xz - - qt5-base-devel - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - sqlite-devel - shared-mime-info - mariadb-client - mariadb-server - postgresql-server - libxslt-devel - boost-devel - extra-cmake-modules - - desktop/kde/application/akonadi/pspec.xml - - - akonadi - app:console - - qt5-base - sqlite - libgcc - mariadb-client - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/mime - /usr/share/kf5 - /usr/share/doc/ - - - - akonadi-devel - Development files for akonadi - akonadi için geliştirme dosyaları - - akonadi - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-15 - 1.13.0 - Rebuild - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-21 - 1.13.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-24 - 1.12.1 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-24 - 1.12.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-18 - 1.11.0 - Dep fixed. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-13 - 1.11.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-09 - 1.10.3 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-06 - 1.10.3 - Version bump. - Fix crash when there are no flags to update during flags change - Fix crash on Akonadi shutdown when using PostgreSQL - Fix notification to clients about database upgrade - Send dummy requests to MySQL from time to time to keep the connection alive - Bug #277839 – Fix problem with too long socket paths - Bug #323977 – Check minimum MySQL version at runtime - Bug #252120, Bug #322931 – Use text instead of bytea column type for QString in PostgreSQL - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-18 - 1.10.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-11 - 1.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-10 - 1.9.80 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-03 - 1.9.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-08 - 1.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-08 - 1.9.0 - First release - Idris Kalp - yaralikurt15@hotmail.com - - - - - - kde-servicemenu-rootactions - http://www.kde-apps.org/content/show.php?content=48411 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Root actions servicemenu for Dolphin - Dolphin için yetkili kullanıcı eylemleri menüsü - kde-servicemenu-rootactions is an addon for KDE4 that provides a convenient way to perform several actions as root from the right-click context menu in Dolphin file manager. - kde-servicemenu-rootactions, Dolphin dosya yöneticisinin içerik menüsü üzerinden yetkili kullanıcı işlemlerinin gerçekleştirilebilmesini sağlayan bir eklentidir. - dolphin - http://kde-apps.org/CONTENT/content-files/48411-rootactions_servicemenu_2.8.1.tar.gz - desktop/kde/application/kde-servicemenu-rootactions/pspec.xml - - - kde-servicemenu-rootactions - - /usr/bin - /usr/share/kservices5 - /usr/share/doc - - - - - 2014-05-30 - 2.8.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-09 - 2.8.1 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-20 - 2.7.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksyndication - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.application - RSS/Atom parser library - syndication is a parser library for RSS and Atom feeds. - mirrors://kde/stable/applications/15.12.0/src/syndication-15.12.0.tar.xz - - qt5-base-devel - kio-devel - kdoctools-devel - extra-cmake-modules - - desktop/kde/application/ksyndication/pspec.xml - - - ksyndication - - qt5-base - kio - kcodecs - libgcc - kcoreaddons - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ksyndication-devel - Development files for ksyndication - - qt5-base-devel - ksyndication - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-23 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kbounce - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Ball bouncing game - Top zıplatma oyunu - KBounce is a single player arcade game with the elements of puzzle. It is played on a field, surrounded by walls, with two or more balls that move about in the field bouncing off of walls. The player can build new walls, decreasing the size of the active field. The goal of the game is to fill at least 75% of the field and advance to the next level. - KBounce, Volfied'in oynaniş tarzına benzeyen tek kişilik bir bulmaca - macera oyunudur. Oyuncu iki veya daha fazla topun oradan oraya zıpladığı duvarlarla kaplı bir alanda yeni duvarlar inşa ederek ve toplara yakalanmamaya çalışarak aktif alanın en azından %75'ini kapatmaya çalışmaktadır. - kbounce - http://download.kde.org/stable/applications/15.12.0/src/kbounce-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kcompletion-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kbounce/pspec.xml - - - kbounce - - kio - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcalutils - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - The KDE calendar utility library - Calendar utility library for KDE - mirrors://kde/stable/applications/15.12.0/src/kcalutils-15.12.0.tar.xz - - qt5-base-devel - kcalcore-devel - kidentitymanagement-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - grantlee-qt5-devel - kdoctools-devel - extra-cmake-modules - - desktop/kde/application/kcalutils/pspec.xml - - - kcalutils - - qt5-base - kcalcore - kidentitymanagement - ki18n - libgcc - kcodecs - kconfig - grantlee-qt5 - kcoreaddons - kiconthemes - kwidgetsaddons - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/kcalendar - - - - kcalutils-devel - Development files for kcalutils - - qt5-base-devel - kcalutils - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kmime - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - KDE library for handling mail messages and newsgroup articles. - Kmime library for handling mail messages and newsgroup articles. - mirrors://kde/stable/applications/15.12.0/src/kmime-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - boost-devel - ki18n-devel - kcodecs-devel - kdoctools-devel - kdelibs4-support-devel - - desktop/kde/application/kmime/pspec.xml - - - kmime - - qt5-base - ki18n - kcodecs - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmime-devel - Development files for kmime - - qt5-base-devel - kmime - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - khangman - http://edu.kde.org/applications/all/khangman - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - KHangMan is a game for kids based on the well-known hangman game - Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu - KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. - KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor. - khangman - mirrors://kde/stable/applications/15.12.0/src/khangman-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kcrash-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kconfigwidgets-devel - knotifications-devel - kxmlgui-devel - kwidgetsaddons-devel - kio-devel - qt5-svg-devel - qt5-declarative-devel - extra-cmake-modules - mesa-devel - libkeduvocdocument-devel - - desktop/kde/application/khangman/pspec.xml - - - khangman - - qt5-base - kdeclarative - knewstuff - ki18n - kwidgetsaddons - kconfig - kcoreaddons - kxmlgui - qt5-declarative - libkeduvocdocument - libgcc - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-24 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - dragonplayer - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Multimedia player - a multimedia player where the focus is on simplicity, instead of features. - mirrors://kde/stable/applications/15.12.0/src/dragon-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - kio-devel - kparts-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/application/dragonplayer/pspec.xml - - - dragonplayer - - qt5-base - kio - ki18n - solid - libgcc - kconfig - kxmlgui - kservice - qt5-phonon - kcoreaddons - kdbusaddons - kjobwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - kparts - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 15.07.80 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - bovo - https://www.kde.org/applications/games/bovo/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - A Gomoku like game for two players. - Bovo is a Gomoku like game for two players, where the opponents alternate in placing their respective pictogram on the game board. - bovo - mirrors://kde/stable/applications/15.12.0/src/bovo-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kxmlgui-devel - kdoctools-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/bovo/pspec.xml - - - bovo - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/share/appdata - /usr/share/icons - /usr/share/kxmlgui5 - /usr/share/applications - /usr/share/bovo - /usr/share/doc - - - org.kde.bovo.desktop - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-18 - 15.08.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kaccounts-integration - https://projects.kde.org/projects/kdereview/kaccounts-integration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - http://download.kde.org/stable/applications/15.12.0/src/kaccounts-integration-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcmutils-devel - ki18n-devel - kcoreaddons-devel - kdbusaddons-devel - libaccounts-qt5-devel - signon-devel - gettext-devel - kdeclarative-devel - - desktop/kde/application/kaccounts-integration/pspec.xml - - - kaccounts-integration - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - - ki18n - libgcc - signon - qt5-base - kcoreaddons - kdbusaddons - kconfigwidgets - libaccounts-qt5 - qt5-declarative - - - /usr/share - /usr/share/kservices5 - /usr/share/doc - /usr/lib/qt5 - /usr/lib/libkaccounts.so* - - - - kaccounts-integration-devel - Development files for kaccounts-integration - - kaccounts-integration - - - /usr/include - /usr/lib/cmake/KAccounts - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-14 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - granatier - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A Bomberman game - Bombalama macera oyunu - Granatier is a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone. - granatier, oyuncunun yüksekliği her turda azalan bir uçak içinde şehirlere hücum ettiği tek kişilik bir macera oyunudur. - granatier - mirrors://kde/stable/applications/15.12.0/src/granatier-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kwidgetsaddons-devel - ki18n-devel - kxmlgui-devel - knewstuff-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/granatier/pspec.xml - - - granatier - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - knewstuff - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - print-manager - http://www.kde.org/applications/graphics/kruler - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - KDE print manager - KDE print tool. - print-manager - mirrors://kde/stable/applications/15.12.0/src/print-manager-15.12.0.tar.xz - - kdoctools-devel - extra-cmake-modules - cups-devel - kio-devel - ki18n-devel - libgcc - kconfig-devel - kservice-devel - qt5-base-devel - kdbusaddons-devel - kiconthemes-devel - kcoreaddons-devel - kwindowsystem-devel - knotifications-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - kcmutils-devel - plasma-framework-devel - - desktop/kde/application/print-manager/pspec.xml - - - print-manager - - kio - cups - ki18n - libgcc - kconfig - kservice - qt5-base - kdbusaddons - kiconthemes - kcoreaddons - kwindowsystem - knotifications - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First Release. - Ergün Salman - poyraz76@pisilinux.org - - - - - - kruler - http://www.kde.org/applications/graphics/kruler - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A screen ruler and color measurement tool - Ekran cetveli ve renk ölçüm aracı - KRuler is a screen ruler and color measurement tool. - KRuler, bir ekran cetveli ve renk ölçüm aracıdır. - kruler - mirrors://kde/stable/applications/15.12.0/src/kruler-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - cmake - extra-cmake-modules - ki18n-devel - knotifications-devel - kwindowsystem-devel - kxmlgui-devel - python-devel - docbook-xsl - - desktop/kde/application/kruler/pspec.xml - - - kruler - - qt5-base - kxmlgui - knotifications - ki18n - libgcc - libxcb - kconfig - kcoreaddons - kwindowsystem - qt5-x11extras - kconfigwidgets - kwidgetsaddons - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kiriki - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Yahtzee like dice game - Yahtzee benzeri zar oyunu - Kiriki is an addictive and fun dice game for KDE, designed to be played by as many as six players. - Kiriki KDE için alışkanlık yapan ve eğlenceli bir zar oyunudur. Altı oyuncuya kadar birlikte oynanabilir. - kiriki - http://download.kde.org/stable/applications/15.12.0/src/kiriki-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kiriki/pspec.xml - - - kiriki - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - kiconthemes - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - blinken - http://kde.org/applications/education/blinken/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - Memory Enhancement Game - Hafıza geliştirme oyunu. - Memory Enhancement Game - Hafıza geliştirme oyunu. - blinken - mirrors://kde/stable/applications/15.12.0/src/blinken-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kdoctools-devel - kxmlgui-devel - qt5-phonon-devel - - desktop/kde/application/blinken/pspec.xml - - - blinken - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kguiaddons - qt5-phonon - kcoreaddons - kdbusaddons - - - /usr/bin - /usr/share - /usr/share/appdata - /usr/share/applications - /usr/share/blinken - /usr/share/config.kcfg - /usr/share/icons - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libkface - https://projects.kde.org/projects/kde/kdegraphics/libs/libkface - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - library - desktop.kde.application - A Qt/C++ wrapper around LibFace library to perform face recognition and detection over pictures - Libkface is a Qt/C++ library to perform face recognition and detection over pictures.This library is used by kipi-plugins, digiKam and others Kipi host programs. - http://download.kde.org/stable/applications/15.12.0/src/libkface-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - opencv-devel - - desktop/kde/application/libkface/pspec.xml - - - libkface - A Qt/C++ wrapper around LibFace library to perform face recognition and detection over pictures - - libgcc - opencv - qt5-base - - - /usr/lib/*.so.* - /usr/share/libkface - /usr/share/doc - - - - libkface-devel - Development files for libkface - library - - libkface - - - /usr/include/KF5 - /usr/include/libkface_version.h - /usr/lib/cmake/KF5KFace - /usr/lib/*.so - - - - - 2015-12-19 - 15.12.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kbruch - http://edu.kde.org/applications/mathematics/kbruch - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Practice calculating with fractions and percentages - Ondalık ve kesirli sayılarla pratik yapın - KBruch is a small program to practice calculating with fractions and percentages. Different exercises are provided for this purpose and you can use the learning mode to practice with fractions. The program checks the user's input and gives feedback. - KBruch, ondalık ve kesirli sayılar üzerine işlemleri öğrenmeye ve egzersiz yapmaya yarayan bir uygulamadır. - kbruch - mirrors://kde/stable/applications/15.12.0/src/kbruch-15.12.0.tar.xz - - qt5-base - kdoctools-devel - kconfig-devel - kcrash-devel - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - kcoreaddons-devel - kconfigwidgets-devel - extra-cmake-modules - - desktop/kde/application/kbruch/pspec.xml - - - kbruch - - qt5-base - kxmlgui - kconfig - kcrash - ki18n - libgcc - kwidgetsaddons - kcoreaddons - kconfigwidgets - - - /usr/bin - /usr/share - /usr/share/man/man1 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - signon-kwallet-extension - http://kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app - desktop.kde.application - KWallet signon extension - KWallet signon extension - http://download.kde.org/stable/applications/15.12.0/src/signon-kwallet-extension-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kwallet-devel - signon-devel - - desktop/kde/application/signon-kwallet-extension/pspec.xml - - - signon-kwallet-extension - KWallet signon extension - - libgcc - signon - kwallet - qt5-base - - - /usr/lib/signon - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-03 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kbreakout - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Breakout like game - Breakout benzeri oyun - KBreakout is a Breakout like game. The object of the game is to destroy as many bricks as possible without losing the ball. - KBreakout bir Breakout türevidir. Oyunun amacı topları yere düşürmeden olabildiğince çok tuğlayı yok etmektir. - kbreakout - http://download.kde.org/stable/applications/15.12.0/src/kbreakout-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kservice-devel - kconfigwidgets-devel - kiconthemes-devel - kcompletion-devel - kjobwidgets-devel - kxmlgui-devel - kio-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kbreakout/pspec.xml - - - kbreakout - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcalcore - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - the KDE calendar access library. - A calendar contains information like incidences (events, to-dos, journals), alarms, time zones, and other useful information. - mirrors://kde/stable/applications/15.12.0/src/kcalcore-15.12.0.tar.xz - - qt5-base-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libical-devel - extra-cmake-modules - - desktop/kde/application/kcalcore/pspec.xml - - - kcalcore - - qt5-base - kcodecs - kconfig - kcoreaddons - libical - kdelibs4-support - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcalcore-devel - Development files for kcontacts - - qt5-base-devel - libical-devel - kcalcore - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kmailtransport - http://pim.kde.org/akonadi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.application - Mail Transport Service - Mail Transport Service - akonadi - mirrors://kde/stable/applications/15.12.0/src/kmailtransport-15.12.0.tar.xz - - qt5-base-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcmutils-devel - kmime-devel - akonadi-search-devel - akonadi-devel - cyrus-sasl-devel - extra-cmake-modules - - desktop/kde/application/kmailtransport/pspec.xml - - - kmailtransport - app:console - - qt5-base - ki18n - kio - libgcc - kmime - kconfig - kwallet - kcompletion - kdepimlibs - kcoreaddons - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/lib - /usr/lib/qt5 - /usr/share/kservices5 - /usr/share/doc/ - /usr/share/config.kcfg - - - - kmailtransport-devel - Development files for akonadi - - kmailtransport - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - dolphin - https://projects.kde.org/projects/kde/applications/dolphin - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - desktop.kde.application - KDE File Manager - Dolphin is the File Manager for KDE. - mirrors://kde/stable/applications/15.12.0/src/dolphin-15.12.0.tar.xz - - qt5-base-devel - qt5-phonon-devel - kio-devel - kcmutils-devel - knewstuff-devel - kinit-devel - kactivities-devel - baloo-devel - kfilemetadata-devel - kparts-devel - ktexteditor-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - baloo-widgets - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/application/dolphin/pspec.xml - - - dolphin - - qt5-base - knewstuff - kio - ki18n - solid - kparts - libgcc - kcodecs - kcrash - kconfig - kxmlgui - kcmutils - kservice - kbookmarks - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - dolphin-devel - - dolphin - qt5-base-devel - qt5-phonon-devel - kio-devel - kcmutils-devel - knewstuff-devel - kinit-devel - kactivities-devel - baloo-devel - kfilemetadata-devel - kparts-devel - ktexteditor-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - - - /usr/include - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-31 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-23 - 14.12 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdepimlibs - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.application - KDE5 PIM libraries - KDE5 PIM kitaplıkları - Contains KDE5 PIM (Personal Information Management) base libraries. - KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıkları içerir. - mirrors://kde/stable/applications/15.12.0/src/kdepimlibs-15.12.0.tar.xz - - qt5-base-devel - boost-devel - gpgme-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - prison-qt5-devel - kmbox-devel - qt5-phonon-devel - akonadi-devel - libical-devel - libqjson-devel - libgpg-error-devel - libxslt-devel - openldap-client - cyrus-sasl-devel - kitemviews-devel - kio-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalcore-devel - kldap-devel - extra-cmake-modules - - desktop/kde/application/kdepimlibs/pspec.xml - - - kdepimlibs - - qt5-base - kio - ki18n - libgcc - kcodecs - kmime - kldap - kxmlgui - kcalcore - kcontacts - kconfig - libxml2 - kservice - kguiaddons - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - ktextwidgets - kconfigwidgets - kwidgetsaddons - kdelibs4-support - qt5-phonon - prison-qt5 - akonadi - cyrus-sasl - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/mkspecs/ - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/dbus-1 - /usr/share/config.kcfg - /usr/share/kf5 - /usr/share/config - /usr/share/akonadi - - - - kdepimlibs-devel - Development package for KDE5 PIM libraries - KDE5 PIM kitaplıkları için geliştirme paketi - Contains development tools and header files for KDE5 PIM (Personal Information Management) base libraries. - KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıklarla ilgili geliştirme araçları ve başlık dosyalarını içerir. - - qt5-base-devel - boost-devel - kdepimlibs - - - /usr/lib/cmake - /usr/include - /usr/lib/gpgmepp - /usr/share/kde4/apps/cmake - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-11 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-14 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-09 - 4.11.4 - Rebuild for cyrus-sasl. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmines - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Minesweeper like game - Mayın tarlası oyunu - KMines is the classic Minesweeper game. The idea is to uncover all the squares without blowing up any mines. When a mine is blown up, the game is over. - KMines klasik mayın tarlası oyununun bir türevidir. Oyunun amacı hiç bir mayına denk gelmemeye çalışarak kutuları açmaktır. Eğer bir mayın patlarsa oyun biter. - kmines - http://download.kde.org/stable/applications/15.12.0/src/kmines-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kmines/pspec.xml - - - kmines - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kalgebra - http://edu.kde.org/applications/mathematics/kalgebra - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.application - A graph calculator - Bir grafiksel hesap makinesi - KAlgebra is a fully featured calculator that lets you plot different types of 2D and 3D functions and to calculate easy and not so easy calculations, such as addition, trigonometric functions or derivatives. - KAlgebra, farklı farklı 2B ve 3B fonksiyonları çizmek, kolay ve o kadar da kolay olmayan trigonometrik veya türev gibi hesaplamaları yapmak için bir uygulamadır. - kalgebra - mirrors://kde/stable/applications/15.12.0/src/kalgebra-15.12.0.tar.xz - - mesa-devel - mesa-glu-devel - qt5-base-devel - qt5-quick1-devel - qt5-svg-devel - qt5-webkit-devel - qt5-location-devel - analitza-devel - kdoctools-devel - ncurses-devel - readline-devel - gettext-devel - ki18n-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kio-devel - extra-cmake-modules - - desktop/kde/application/kalgebra/pspec.xml - - - kalgebra - - qt5-base - qt5-declarative - qt5-webkit - qt5-location - analitza - libgcc - kconfig - kxmlgui - readline - kcoreaddons - ki18n - kconfigwidgets - kwidgetsaddons - kio - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kalarmcal - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Library to provides access and handling of KAlarm calendar data - Library to provides access and handling of KAlarm calendar data - mirrors://kde/stable/applications/15.12.0/src/kalarmcal-15.12.0.tar.xz - - qt5-base-devel - akonadi-devel - kcalcore-devel - kidentitymanagement-devel - kdepimlibs-devel - boost-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdoctools-devel - libical-devel - kholidays-devel - extra-cmake-modules - - desktop/kde/application/kalarmcal/pspec.xml - - - kalarmcal - - qt5-base - kcalcore - kholidays - kidentitymanagement - ki18n - libgcc - kdepimlibs - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kalarmcal-devel - Development files for kalarmcal - - qt5-base-devel - kalarmcal - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-23 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - bomber - https://www.kde.org/applications/games/bomber/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - A single player arcade game - Bomber is a single player arcade game. The player is invading various cities in a plane that is decreasing in height. - mirrors://kde/stable/applications/15.12.0/src/bomber-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/bomber/pspec.xml - - - bomber - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - qt5-phonon - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share/appdata - /usr/share/applications - /usr/share - /usr/share/bomber - /usr/share/config.kcfg - /usr/share/icons - /usr/share/doc - /usr/share/kxmlgui5 - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - killbots - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Run for your life - Hayatta kalmak için kaçın - Killbots is a simple game of evading killer robots. Who created the robots and why they have been programmed to destroy, no one knows. All that is known is that the robots are numerous and their sole objective is to destroy you. - Killbots katil robotlardan kaçmaya çalıştığınız basit bir oyundur. Robotların kimin tarafından yaratıldığı veya neden yok etmek için programlandığı bilinmiyor. Tek gerçek şu ki bir çok robot var ve tek amaçları sizi yok etmek. - killbots - http://download.kde.org/stable/applications/15.12.0/src/killbots-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - kcompletion-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/killbots/pspec.xml - - - killbots - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-18 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi-calendar - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Akonadi calendar integration - Calendar integration for Akonadi. - mirrors://kde/stable/applications/15.12.0/src/akonadi-calendar-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kcodecs-devel - kdoctools-devel - boost-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmailtransport-devel - akonadi-devel - kdelibs4-support-devel - extra-cmake-modules - kdesignerplugin - kdepimlibs-devel - kmime-devel - cyrus-sasl-devel - kcontacts-devel - kidentitymanagement-devel - kcalcore-devel - kcalutils-devel - - desktop/kde/application/akonadi-calendar/pspec.xml - - - akonadi-calendar - - qt5-base - ki18n - kcodecs - kdelibs4-support - kio - kmime - libgcc - kconfig - kxmlgui - kcalcore - kcalutils - kcontacts - kdepimlibs - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - kjobwidgets - kconfigwidgets - kmailtransport - kwidgetsaddons - kidentitymanagement - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - akonadi-calendar-devel - Development files for akonadi-calendar - - qt5-base-devel - akonadi-calendar - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktp-auth-handler - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - http://download.kde.org/stable/applications/15.12.0/src/ktp-auth-handler-15.12.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kwallet-devel - kwidgetsaddons-devel - ki18n-devel - kio-devel - kdewebkit-devel - telepathy-qt5-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - qca2-qt5-devel - libaccounts-qt5-devel - kaccounts-integration-devel - signon-devel - - desktop/kde/application/ktp-auth-handler/pspec.xml - - - ktp-auth-handler - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - - kio - ki18n - libgcc - signon - kconfig - qca2-qt5 - qt5-base - kcoreaddons - telepathy-qt5 - kwidgetsaddons - libaccounts-qt5 - ktp-common-internals - kaccounts-integration - - - /usr/lib - /usr/share/telepathy - /usr/share/dbus-1 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-22 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - khtml - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - HTML rendering engine for KDE - KHTML is a web rendering engine, based on the KParts technology and using KJS for JavaScript support. - mirrors://kde/stable/frameworks/5.17/portingAids/khtml-5.17.0.tar.xz - - qt5-base-devel - libjpeg-turbo-devel - giflib-devel - libpng-devel - qt5-phonon-devel - libX11-devel - zlib-devel - kio-devel - kjs-devel - kglobalaccel-devel - kauth-devel - kparts-devel - ktextwidgets-devel - sonnet-devel - openssl-devel - extra-cmake-modules - - desktop/kde/porting-aids/khtml/pspec.xml - - - khtml - - qt5-base - qt5-x11extras - qt5-phonon - zlib - openssl - giflib - libX11 - libgcc - libpng - libjpeg-turbo - sonnet - kcodecs - kconfig - kjobwidgets - kwidgetsaddons - kcompletion - karchive - kconfigwidgets - kcoreaddons - kglobalaccel - ki18n - kiconthemes - kio - kjs - knotifications - kparts - kservice - ktextwidgets - kwallet - kwindowsystem - kxmlgui - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - khtml-devel - Development files for khtml - - khtml - qt5-base-devel - qt5-x11extras-devel - qt5-phonon-devel - zlib-devel - openssl-devel - giflib-devel - libX11-devel - libpng-devel - libjpeg-turbo-devel - sonnet-devel - kcodecs-devel - kconfig-devel - kjobwidgets-devel - kwidgetsaddons-devel - kcompletion-devel - karchive-devel - kconfigwidgets-devel - kcoreaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kio-devel - kjs-devel - knotifications-devel - kparts-devel - kservice-devel - ktextwidgets-devel - kwallet-devel - kwindowsystem-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - krunner - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - Krunner Framework for providing different actions given a string query - Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. - mirrors://kde/stable/frameworks/5.17/portingAids/krunner-5.17.0.tar.xz - - qt5-base-devel - gettext-devel - kdoctools-devel - qt5-declarative-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - plasma-framework-devel - solid-devel - threadweaver-devel - extra-cmake-modules - - desktop/kde/porting-aids/krunner/pspec.xml - - - krunner - - qt5-base - qt5-declarative - libgcc - kconfig - kcoreaddons - ki18n - kio - kservice - plasma-framework - solid - threadweaver - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - krunner-devel - Development files for krunner - - krunner - qt5-base-devel - qt5-declarative-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - plasma-framework-devel - solid-devel - threadweaver-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kross - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.porting-aids - KDE5 application scripting helper - Kross is a scripting bridge to embed scripting functionality into an application. It supports QtScript as a scripting interpreter backend. - mirrors://kde/stable/frameworks/5.17/portingAids/kross-5.17.0.tar.xz - - qt5-base-devel - qt5-script-devel - kcoreaddons-devel - kdoctools-devel - kconfigwidgets-devel - ktextwidgets-devel - kparts-devel - sonnet-devel - kauth-devel - ki18n-devel - kcompletion-devel - kiconthemes-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - kxmlgui-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kross/pspec.xml - - - kross - - qt5-base - qt5-script - libgcc - kcoreaddons - ki18n - kcompletion - kiconthemes - kio - kparts - kwidgetsaddons - kxmlgui - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kross-devel - Development files for kross - - kross - qt5-base-devel - qt5-script-devel - kcoreaddons-devel - ki18n-devel - kcompletion-devel - kiconthemes-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kross-interpreters - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.porting-aids - Kross interpreter plugins for programming languages - Language interpreters to enable in-process scripting with Kross. - mirrors://kde/stable/applications/15.08.0/src/kross-interpreters-15.08.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kross-devel - kunitconversion-devel - python-devel - - desktop/kde/porting-aids/kross-interpreters/pspec.xml - - - kross-interpreters - - qt5-base - libgcc - python - kross - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-08-29 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdelibs4-support - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - Code and utilities to ease the transition to KDE Frameworks 5 - KDELibs4Support provides libraries to port KDE4 programs to QT5/KDE5 - mirrors://kde/stable/frameworks/5.17/portingAids/kdelibs4support-5.17.0.tar.xz - - qt5-base-devel - qt5-svg-devel - perl-URI - libSM-devel - docbook-xml - openssl-devel - libX11-devel - kio-devel - kauth-devel - kcrash-devel - kdesignerplugin - intltool - kdoctools-devel - kglobalaccel-devel - kguiaddons-devel - kparts-devel - ktextwidgets-devel - sonnet-devel - kunitconversion-devel - NetworkManager-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kdelibs4-support/pspec.xml - - - kdelibs4-support - - qt5-base - libICE - libgcc - libX11 - qt5-svg - qt5-x11extras - libSM - kauth - solid - kcodecs - kcoreaddons - kjobwidgets - kcompletion - kconfig - kconfigwidgets - kcrash - kdbusaddons - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kitemviews - knotifications - kparts - kservice - ktextwidgets - kxmlgui - kwindowsystem - kwidgetsaddons - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kdelibs4-support-devel - Development files for kdelibs4-support - - kdelibs4-support - qt5-base-devel - libICE-devel - libX11-devel - qt5-svg-devel - qt5-x11extras-devel - libSM-devel - kauth-devel - solid-devel - kcodecs-devel - kcoreaddons-devel - kjobwidgets-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcrash-devel - kdbusaddons-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kitemviews-devel - knotifications-devel - kparts-devel - kservice-devel - ktextwidgets-devel - kxmlgui-devel - kwindowsystem-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kjsembed - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.porting-aids - JavaScript support for HTML rendering engine on KDE5 - The KJSEmbed library is an easy-to-use wrapper around the KDE ECMAScript interpreter (kjs) that makes it easy to add scriptability to an application. - mirrors://kde/stable/frameworks/5.17/portingAids/kjsembed-5.17.0.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-designer-devel - kdoctools-devel - ki18n-devel - kjs-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kjsembed/pspec.xml - - - kjsembed - - qt5-base - qt5-svg - libgcc - ki18n - kjs - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - kjsembed-devel - Development files for kjsembed - - qt5-base-devel - qt5-svg-devel - ki18n-devel - kjs-devel - kjsembed - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kjs - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - JavaScript engine for KDE - This library provides an ECMAScript compatible interpreter. The ECMA standard is based on well known scripting languages such as Netscape's JavaScript and Microsoft's JScript. - mirrors://kde/stable/frameworks/5.17/portingAids/kjs-5.17.0.tar.xz - - qt5-base-devel - libpcre-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kjs/pspec.xml - - - kjs - - qt5-base - libgcc - libpcre - - - /usr/bin - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - kjs-devel - Development files for kjs - - libpcre-devel - qt5-base-devel - kjs - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kmediaplayer - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.porting-aids - KDE5 media player Plugin interface for media player features - KMediaPlayer builds on the KParts framework to provide a common interface for KParts that can play media files. - mirrors://kde/stable/frameworks/5.17/portingAids/kmediaplayer-5.17.0.tar.xz - - qt5-base-devel - kio-devel - kauth-devel - kparts-devel - ktextwidgets-devel - sonnet-devel - kxmlgui-devel - extra-cmake-modules - - desktop/kde/porting-aids/kmediaplayer/pspec.xml - - - kmediaplayer - - qt5-base - libgcc - kparts - kxmlgui - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmediaplayer-devel - Development files for kmediaplayer - - kmediaplayer - qt5-base-devel - kparts-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kiten - http://edu.kde.org/applications/all/kiten - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - A Japanese reference/study tool - Japonca referans ve alıştırma uygulaması - Kiten is a Japanese reference/study tool. - Kiten, Japonca referans ve alıştırma uygulamasıdır. - kiten>kiten - mirrors://kde/stable/applications/15.12.0/src/kiten-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - karchive-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdoctools-devel - gettext-devel - ki18n-devel - khtml-devel - kxmlgui-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - - desktop/kde/edu/kiten/pspec.xml - - - kiten - - qt5-base - karchive - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdoctools - gettext - ki18n - khtml - kxmlgui - kio - kparts - libgcc - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - kiten-devel - Development files for kiten - kiten için geliştirme dosyaları - - kiten - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kstars - http://edu.kde.org/applications/all/kstars - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - A desktop planetarium for KDE - KDE için bir masaüstü gözlemevi - KStars is a Desktop Planetarium for KDE. It provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time. The display includes up to 100 million stars, 13,000 deep-sky objects, all 8 planets, the Sun and Moon, and thousands of comets and asteroids. - KStars, dünyanın herhangi bir yerinin herhangi bir anındaki gökyüzü yıldız haritasını gösterebilen bir uygulamadır. 100 milyon kadar yıldız, 13000 derin gök cismi, 8 gezegenin tümü, Güneş, Ay ile birçok kuyruklu yıldız ve astreoidi içeren bir veritabanı vardır. - kstars - mirrors://kde/stable/applications/15.12.0/src/kstars-15.12.0.tar.xz - - qt5-base-devel - qt5-multimedia-devel - qt5-quick1-devel - qt5-svg-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - eigen3 - xplanet - cfitsio-devel - libindi-devel - kdoctools-devel - kconfig-devel - kguiaddons-devel - kwidgetsaddons-devel - knewstuff-devel - kdbusaddons-devel - gettext-devel - ki18n-devel - kinit-devel - kjobwidgets-devel - kio-devel - kwindowsystem-devel - kxmlgui-devel - kplotting-devel - ktexteditor-devel - kiconthemes-devel - pkgconfig - mesa-glu-devel - mesa-devel - wcslib-devel - zlib-devel - extra-cmake-modules - - desktop/kde/edu/kstars/pspec.xml - - - kstars - - qt5-base - qt5-svg - libindi - cfitsio - kio - kinit - knewstuff - kplotting - ktexteditor - zlib - ki18n - libgcc - kconfig - kxmlgui - kcoreaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - wcslib - xplanet - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-18 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdeedu-data - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.edu - Common data for KDE Edu applications - Common data for KDE Edu applications. - mirrors://kde/stable/applications/15.12.0/src/kdeedu-data-15.12.0.tar.xz - - extra-cmake-modules - - desktop/kde/edu/kdeedu-data/pspec.xml - - - kdeedu-data - - /usr/share - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kmplot - http://kde.org/applications/education/kmplot/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.education - Mathematical Function Plotter - KmPlot is a program to draw graphs, their integrals or derivatives. It supports different systems of coordinates like the Cartesian or the polar coordinate system. The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need. - http://download.kde.org/stable/applications/15.12.0/src/kmplot-15.12.0.tar.xz - - extra-cmake-modules - gettext-devel - kdelibs4-support-devel - kdoctools-devel - ki18n-devel - kinit-devel - kunitconversion-devel - kdelibs4-support-devel - kparts-devel - kwidgetsaddons-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - qt5-base-devel - - desktop/kde/edu/kmplot/pspec.xml - - - kmplot - Mathematical Function Plotter - - kdelibs4-support - ki18n - kparts - kwidgetsaddons - qt5-base - qt5-svg - libgcc - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - - - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-06 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kig - http://edu.kde.org/applications/all/kig - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An interactive geometry application - Bir etkileşimli geometri uygulaması - Kig is an application for interactive geometry. - Kig, bir etkileşimli geometri uygulamasıdır. - kig - mirrors://kde/stable/applications/15.12.0/src/kig-15.12.0.tar.xz - - qt5-base-devel - qt5-svg-devel - boost-devel - ktexteditor-devel - kdoctools-devel - kemoticons-devel - kitemmodels-devel - qt5-xmlpatterns-devel - gettext-devel - pkgconfig - extra-cmake-modules - - desktop/kde/edu/kig/pspec.xml - - - kig - - qt5-base - boost - ktexteditor - qt5-xmlpatterns - qt5-svg - ki18n - kparts - ktexteditor - kiconthemes - kconfigwidgets - karchive - kxmlgui - kitemmodels - libgcc - kservice - kcompletion - kcoreaddons - kwidgetsaddons - kconfig - - - /usr/lib - /usr/lib/qt5 - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - khangman - http://edu.kde.org/applications/all/khangman - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - KHangMan is a game for kids based on the well-known hangman game - Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu - KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. - KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor. - khangman - mirrors://kde/stable/applications/15.12.0/src/khangman-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kcrash-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kconfigwidgets-devel - knotifications-devel - kxmlgui-devel - kwidgetsaddons-devel - kio-devel - qt5-svg-devel - qt5-linguist - qt5-declarative-devel - libkeduvocdocument-devel - extra-cmake-modules - - desktop/kde/edu/khangman/pspec.xml - - - khangman - - qt5-base - kdeclarative - knewstuff - ki18n - kwidgetsaddons - kconfig - kcoreaddons - kxmlgui - qt5-declarative - libkeduvocdocument - libgcc - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kturtle - http://edu.kde.org/applications/all/kturtle - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An educational programming environment - Öğrenim amaçlı programlama ortamı - KTurtle is an educational programming environment that aims to make learning how to program as easily as possible. To achieve this KTurtle makes all programming tools available from the user interface. The programming language used is TurtleScript which allows its commands to be translated. - KTurtle, programlama öğrenmeyi olabildiğince kolaylaştırmak için tasarlanmış bir programlama uygulamasıdır. Bu amaçla tasarlanan arayüz tüm gerekli araçları kullanıcıya sunar. Ayrıca kullanılan programlama dili olan TurtleScript başka dillere çevrilebilen bir yapıya sahiptir. - kturtle - mirrors://kde/stable/applications/15.12.0/src/kturtle-15.12.0.tar.xz - - qt5-base-devel - qt5-svg-devel - kdoctools-devel - kdelibs4-support-devel - knewstuff-devel - extra-cmake-modules - kio-devel - kcoreaddons-devel - ktextwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kxmlgui-devel - kconfig-devel - gettext-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/edu/kturtle/pspec.xml - - - kturtle - - qt5-base - qt5-svg - ki18n - knewstuff - libgcc - kcoreaddons - ktextwidgets - kconfigwidgets - kwidgetsaddons - kxmlgui - kconfig - kdelibs4-support - - - /etc/xdg - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-17 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - parley - http://edu.kde.org/applications/all/parley - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - Parley is a program to help you memorize things. - Tekrar yapmanıza yardım eden bir uygulama - Parley is a program to help you memorize things. Parley supports many language specific features but can be used for other learning tasks just as well. It uses the spaced repetition learning method, also known as flash cards. Creating new vocabulary collections with Parley is easy, but of course it is even better if you can use some of our premade files. Have a look at the KDE-Files.org page or use the "Download New Collections" feature directly in Parley. - Parley ile yeni öğrendiğiniz şeyleri belli zaman aralıklarıyla tekrar ederek uzun zamanlı hafızanızda yer etmelerini sağlayabilirsiniz. Parley, flaş kart denilen tekniği kullanır. Dil öğrenimi için özelleşmiş yetenekleri olmasına karşın diğer konularda da kullanıma uygundur. Kartları hazırlamak epey kolay olmakla beraber kde-files.org adresinden ulaşabileceğiniz hazır kart setlerini de kullanabilirsiniz. - parley - mirrors://kde/stable/applications/15.12.0/src/parley-15.12.0.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-multimedia-devel - libxslt-devel - libXrender-devel - libxml2-devel - libkeduvocdocument-devel - kdoctools-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - gettext-devel - ki18n-devel - kio-devel - knewstuff-devel - kross-devel - kcmutils-devel - kxmlgui-devel - sonnet-devel - kservice-devel - ktextwidgets-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - knotifications-devel - khtml-devel - extra-cmake-modules - - desktop/kde/edu/parley/pspec.xml - - - parley - - qt5-base - qt5-svg - qt5-multimedia - libxslt - libXrender - libxml2 - libkeduvocdocument - kdoctools - kcoreaddons - kconfig - kcrash - gettext - ki18n - kio - knewstuff - kross - kcmutils - kxmlgui - knotifications - sonnet - kservice - libgcc - ktextwidgets - kcompletion - kconfigwidgets - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - /etc/xdg - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-17 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - blinken - https://www.kde.org/applications/education/blinken/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - FDL - GPL - LGPL - gui - desktop.kde.education - Blinken - Memory Enhancement Game - Blinken is based on an electronic game released in 1978, which challenges players to remember sequences of increasing length. On the face of the device, there are 4 different color buttons, each one with their own distinctive sound. - http://download.kde.org/stable/applications/15.12.0/src/blinken-15.12.0.tar.xz - - extra-cmake-modules - gettext-devel - kdbusaddons-devel - kdoctools-devel - kguiaddons-devel - ki18n-devel - kxmlgui-devel - qt5-base-devel - - desktop/kde/edu/blinken/pspec.xml - - - blinken - Blinken - Memory Enhancement Game - - kconfig - kcoreaddons - kdbusaddons - kguiaddons - ki18n - kxmlgui - libgcc - qt5-base - qt5-phonon - qt5-svg - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-06 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - klettres - http://edu.kde.org/applications/all/klettres - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An alphabet learning application - Alfabe öğrenme uygulaması - KLettres is an application specially designed to help the user to learn alphabet in a new language and then to learn to read simple syllables. The user can be a young child aged from two and a half or an adult that wants to learn the basics of a foreign language. - KLettres, kullanıcının yeni bir alfabeyi ve basit sesli sözleri öğrenmesi için geliştirilmiş bir uygulamadır. İki buçuk yaşındaki bir çocuk için yararlı olabileceği gibi, yeni bir dil öğrenen yetişkinler için de yardımcı olabilir. - klettres - mirrors://kde/stable/applications/15.12.0/src/klettres-15.12.0.tar.xz - - qt5-base-devel - qt5-svg-devel - kdoctools-devel - extra-cmake-modules - kcompletion-devel - kemoticons-devel - kitemmodels-devel - ki18n-devel - knewstuff-devel - kwidgetsaddons-devel - kconfigwidgets-devel - kcoreaddons-devel - kconfig-devel - kxmlgui-devel - qt5-phonon-devel - - desktop/kde/edu/klettres/pspec.xml - - - klettres - - qt5-base - qt5-svg - qt5-phonon - knewstuff - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - libgcc - - - /usr/share/doc - /usr/bin - /usr/share - /etc/xdg - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-17 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kompare - http://www.kde.org/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - File difference viewer - Dosya karşılaştırma göstericisi. - Diff/Patch Frontend. - Dosya karşılaştırma göstericisi. - mirrors://kde/stable/applications/15.12.0/src/kompare-15.12.0.tar.xz - - extra-cmake-modules - kdoctools-devel - qt5-base-devel - gettext-devel - libkomparediff2-devel - kcoreaddons-devel - kcodecs-devel - kiconthemes-devel - kjobwidgets-devel - kconfig-devel - kparts-devel - ktexteditor-devel - kwidgetsaddons-devel - - desktop/kde/sdk/kompare/pspec.xml - - - kompare - - qt5-base - libkomparediff2 - kio - ki18n - kparts - libgcc - kcodecs - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - ktexteditor - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/bin - /usr/include - - - kdesdk - - - kdesdk - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-07 - 15.08.2 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkomparediff2 - https://projects.kde.org/projects/kde/kdesdk/libkomparediff2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.sdk - Library to compare files and strings - Library to compare files and strings - mirrors://kde/stable/applications/15.12.0/src/libkomparediff2-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - python3-devel - gettext-devel - kcoreaddons-devel - kcodecs-devel - kconfig-devel - kxmlgui-devel - ki18n-devel - kio-devel - kparts-devel - - desktop/kde/sdk/libkomparediff2/pspec.xml - - - libkomparediff2 - - qt5-base - kio - ki18n - libgcc - kcodecs - kconfig - kxmlgui - kcoreaddons - kconfigwidgets - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - libkomparediff2-devel - Shared libraries for libkomparediff2. - - libkomparediff2 - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-19 - 15.04.3 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - lokalize - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - Lokalize is the localization tool for KDE and other open source software - Uygulama yerelleştirme yardımcısı. - Lokalize is also a general computer-aided translation system (CAT) with which you can translate OpenDocument files (*.odt). - Lokalize, uygulamalar için kolaylıkla yerelleştirme yapabileceğiniz bir programdır. - mirrors://kde/stable/applications/15.12.0/src/lokalize-15.12.0.tar.xz - - qt5-base-devel - hunspell-devel - extra-cmake-modules - kdoctools-devel - kio-devel - kitemviews-devel - ki18n-devel - kross-devel - kparts-devel - sonnet-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kdbusaddons-devel - ktextwidgets-devel - kconfigwidgets-devel - knotifications-devel - kwidgetsaddons-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - - desktop/kde/sdk/lokalize/pspec.xml - - - lokalize - - qt5-base - kio - kitemviews - ki18n - kross - kparts - libgcc - sonnet - kconfig - kxmlgui - kcompletion - kcoreaddons - kdbusaddons - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons - hunspell - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-19 - 15.04.3 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kapptemplate - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - Application template generator - Uygulama şablon oluşturucu. - KAppTemplate is a shell script that will create the necessary framework to develop several types of applications, including applications based on the KDE development platform. - Kapptemplate, çeşitli uygulamaları geliştirmek için gerekli olabilecek şablonlar oluşturmayı sağlar. - mirrors://kde/stable/applications/15.12.0/src/kapptemplate-15.12.0.tar.xz - - qt5-base-devel - extra-cmake-modules - gettext - kcoreaddons-devel - kconfigwidgets-devel - kcompletion-devel - karchive-devel - kio-devel - ki18n-devel - kdoctools-devel - - desktop/kde/sdk/kapptemplate/pspec.xml - - - kapptemplate - - qt5-base - kio - ki18n - libgcc - kconfig - karchive - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-19 - 15.08.2 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - umbrello - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.sdk - UML modelling tool and code generator - UML modelleme aracı ve kod üreticisi. - Umbrello UML Modeller is a Unified Modelling Language diagram editor for KDE. - umbrello UML (Unified Modellin Language) modelleme ve diyagram editörüdür. - mirrors://kde/stable/applications/15.12.0/src/umbrello-15.12.0.tar.xz - - qt5-base-devel - libxslt-devel - qt5-svg-devel - kio-devel - kparts-devel - kinit-devel - kcompletion-devel - kxmlgui-devel - kauth-devel - kconfig-devel - ktexteditor-devel - kcoreaddons-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - kwindowsystem-devel - - desktop/kde/sdk/umbrello/pspec.xml - - - umbrello - - qt5-base - kio - ki18n - libgcc - kconfig - kxmlgui - libxml2 - qt5-svg - karchive - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - ktextwidgets - kconfigwidgets - kwidgetsaddons - ktexteditor - libxslt - kwindowsystem - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - karchive - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Qt 5 addon providing access to numerous types of archives - KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR. - mirrors://kde/stable/frameworks/5.17/karchive-5.17.0.tar.xz - - qt5-base-devel - xz-devel - zlib-devel - bzip2 - extra-cmake-modules - - desktop/kde/framework/karchive/pspec.xml - - - karchive - - qt5-base - xz - zlib - bzip2 - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - karchive-devel - Development files for karchive - - qt5-base-devel - karchive - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kconfigwidgets - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.framework - Kconfig widgets - KConfigWidgets provides easy-to-use classes to create configuration dialogs, as well as a set of widgets which uses KConfig to store their settings. - mirrors://kde/stable/frameworks/5.17/kconfigwidgets-5.17.0.tar.xz - - qt5-base-devel - ki18n-devel - kauth-devel - kcodecs-devel - kconfig-devel - kcoreaddons-devel - kguiaddons-devel - kwidgetsaddons-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kconfigwidgets/pspec.xml - - - kconfigwidgets - - libgcc - qt5-base - kauth - kcodecs - kconfig - kcoreaddons - kguiaddons - ki18n - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kconfigwidgets-devel - Development files for kconfigwidgets - - kconfigwidgets - qt5-base-devel - kauth-devel - kcodecs-devel - kconfig-devel - kcoreaddons-devel - kguiaddons-devel - ki18n-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kpackage - https://userbase.kde.org/KPackage - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPL - app:library - desktop.kde.framework - Framework that lets applications manage user installable packages of non-binary assets - KPackage is dependent on the Smart package manager. - mirrors://kde/stable/frameworks/5.17/kpackage-5.17.0.tar.xz - - qt5-base-devel - libX11-devel - kconfig-devel - ki18n-devel - kcoreaddons-devel - karchive-devel - kdoctools-devel - docbook-sgml4_5 - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kpackage/pspec.xml - - - kpackage - - qt5-base - libgcc - kconfig - ki18n - kcoreaddons - karchive - - - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man/man1 - - - - kpackage-devel - Development files for kpackage - - kpackage - qt5-base-devel - kconfig-devel - ki18n-devel - kcoreaddons-devel - karchive-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kplotting - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Data plotting - Kplotting contains data plotting classes for QT 5 and KDE - mirrors://kde/stable/frameworks/5.17/kplotting-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/kplotting/pspec.xml - - - kplotting - - qt5-base - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kplotting-devel - Development files for kplotting - - qt5-base-devel - kplotting - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - threadweaver - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Multi-threaded programming framework for KDE - ThreadWeaver is a helper for multithreaded programming. It uses a job-based interface to queue tasks and execute them in an efficient way. - mirrors://kde/stable/frameworks/5.17/threadweaver-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/threadweaver/pspec.xml - - - threadweaver - - qt5-base - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - threadweaver-devel - Development files for threadweaver - - qt5-base-devel - threadweaver - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - solid - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 hardware integration framework - Solid is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system. - mirrors://kde/stable/frameworks/5.17/solid-5.17.0.tar.xz - - qt5-base-devel - eudev-devel - qt5-linguist - qt5-declarative-devel - udisks2-devel - upower-devel - media-player-info - extra-cmake-modules - - desktop/kde/framework/solid/pspec.xml - - - solid - - qt5-base - qt5-declarative - media-player-info - libgcc - eudev - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - solid-devel - Development files for solid - - qt5-base-devel - solid - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - frameworkintegration - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Framework providing components to allow applications to integrate with a KDE Workspace - Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. - mirrors://kde/stable/frameworks/5.17/frameworkintegration-5.17.0.tar.xz - - libxcb-devel - libXcursor-devel - qt5-base-devel - qt5-declarative-devel - qt5-x11extras-devel - oxygen-fonts - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kjobwidgets-devel - kconfigwidgets-devel - kiconthemes-devel - ki18n-devel - kauth-devel - kio-devel - knotifications-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/frameworkintegration/pspec.xml - - - frameworkintegration - - libgcc - qt5-base - libxcb - libXcursor - qt5-x11extras - kconfig - kxmlgui - kcompletion - kcoreaddons - kjobwidgets - kconfigwidgets - kiconthemes - ki18n - kio - knotifications - kwidgetsaddons - oxygen-fonts - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - frameworkintegration-devel - Development files for framework-integration - - frameworkintegration - qt5-base-devel - libxcb-devel - libXcursor-devel - qt5-x11extras-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kjobwidgets-devel - kconfigwidgets-devel - kiconthemes-devel - ki18n-devel - kio-devel - knotifications-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - New Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - networkmanager-qt - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - A QT wrapper around the NetworkManager libraries - A QT wrapper around the NetworkManager libraries - mirrors://kde/stable/frameworks/5.17/networkmanager-qt-5.17.0.tar.xz - - qt5-base-devel - NetworkManager-devel - extra-cmake-modules - - desktop/kde/framework/networkmanager-qt/pspec.xml - - - networkmanager-qt - - qt5-base - NetworkManager - libgcc - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - networkmanager-qt-devel - Development files for networkmanager-qt - - qt5-base-devel - networkmanager-qt - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcmutils - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Utilities for interacting with KCModules - KCMUtils provides various classes to work with KCModules. KCModules can be created with the KConfigWidgets framework. - mirrors://kde/stable/frameworks/5.17/kcmutils-5.17.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - mesa-devel - kcodecs-devel - kpackage-devel - kdeclarative-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kservice-devel - kxmlgui-devel - extra-cmake-modules - - desktop/kde/framework/kcmutils/pspec.xml - - - kcmutils - - qt5-base - qt5-declarative - libgcc - kdeclarative - kconfigwidgets - kwidgetsaddons - kconfig - kauth - kcoreaddons - ki18n - kiconthemes - kitemviews - kservice - kxmlgui - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcmutils-devel - Development files for kcmutils - - kcmutils - qt5-base-devel - qt5-declarative-devel - kdeclarative-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kservice-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-framework - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Plasma library and runtime components based upon KDE Frameworks 5 and Qt5 - Plasma library and runtime components based upon KF5 and Qt5 - mirrors://kde/stable/frameworks/5.17/plasma-framework-5.17.0.tar.xz - - qt5-base-devel - qt5-quickcontrols - kdoctools-devel - qt5-svg-devel - qt5-script-devel - qt5-quick1-devel - qt5-x11extras-devel - qt5-declarative-devel - mesa-devel - libX11-devel - libxcb-devel - kauth-devel - kcodecs-devel - kwidgetsaddons-devel - kbookmarks-devel - kcompletion-devel - kactivities-devel - kitemviews-devel - kjobwidgets-devel - solid-devel - knotifications-devel - kpackage-devel - karchive-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kparts-devel - kservice-devel - kwindowsystem-devel - kxmlgui-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/plasma-framework/pspec.xml - - - plasma-framework - - qt5-base - qt5-svg - qt5-script - qt5-x11extras - qt5-declarative - qt5-quickcontrols - qt5-quick1 - mesa - libgcc - libX11 - libxcb - kactivities - knotifications - kpackage - karchive - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdeclarative - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kservice - kwindowsystem - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - plasma-framework-devel - Development files for plasma-framework - - plasma-framework - qt5-base-devel - qt5-svg-devel - qt5-script-devel - qt5-x11extras-devel - qt5-declarative-devel - mesa-devel - libX11-devel - libxcb-devel - kactivities-devel - knotifications-devel - kpackage-devel - karchive-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kservice-devel - kwindowsystem-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdesu - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - User interface for running shell commands with root privileges - kdesu provides functionality for building GUI front ends for (password asking) console mode programs. - mirrors://kde/stable/frameworks/5.17/kdesu-5.17.0.tar.xz - - qt5-base-devel - kcoreaddons-devel - kpty-devel - kservice-devel - ki18n-devel - kconfig-devel - libX11-devel - extra-cmake-modules - - desktop/kde/framework/kdesu/pspec.xml - - - kdesu - - qt5-base - kcoreaddons - kpty - kservice - ki18n - kconfig - libgcc - libX11 - - - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdesu-devel - Development files for kdesu - - kdesu - qt5-base-devel - kcoreaddons-devel - kpty-devel - kservice-devel - ki18n-devel - kconfig-devel - libX11-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kjobwidgets - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Widgets for showing progress of asynchronous jobs - KJobWIdgets provides widgets for showing progress of asynchronous jobs. - mirrors://kde/stable/frameworks/5.17/kjobwidgets-5.17.0.tar.xz - - libX11-devel - qt5-base-devel - qt5-linguist - kcoreaddons-devel - kwidgetsaddons-devel - qt5-x11extras-devel - extra-cmake-modules - - desktop/kde/framework/kjobwidgets/pspec.xml - - - kjobwidgets - - qt5-base - libgcc - kcoreaddons - kwidgetsaddons - qt5-x11extras - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kjobwidgets-devel - Development files for kjobwidgets - - qt5-base-devel - kjobwidgets - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdewebkit - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 WebKit integration - KdeWebkit provides KDE integration of the QtWebKit library. - mirrors://kde/stable/frameworks/5.17/kdewebkit-5.17.0.tar.xz - - qt5-base-devel - qt5-webkit-devel - qt5-webkit - kauth-devel - sonnet-devel - kconfig-devel - ktextwidgets-devel - kjobwidgets-devel - kcoreaddons-devel - kparts-devel - kservice-devel - kwallet-devel - kio-devel - extra-cmake-modules - - desktop/kde/framework/kdewebkit/pspec.xml - - - kdewebkit - - qt5-webkit - libgcc - kconfig - kjobwidgets - qt5-base - kcoreaddons - kparts - kservice - kwallet - kio - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/mkspecs/modules/ - /usr/share/doc - - - - kdewebkit-devel - Development files for kdewebkit - - kdewebkit - qt5-webkit-devel - kconfig-devel - kjobwidgets-devel - qt5-base-devel - kcoreaddons-devel - kparts-devel - kservice-devel - kwallet-devel - kio-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - bluez-qt - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.framework - Qt wrapper for KDE 5 Bluez DBus API - Qt wrapper for KDE 5 DBus API. - mirrors://kde/stable/frameworks/5.17/bluez-qt-5.17.0.tar.xz - - bluez - bluez-libs-devel - qt5-base-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/kde/framework/bluez-qt/pspec.xml - - - bluez-qt - - bluez - qt5-base - qt5-declarative - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - bluez-qt-devel - Development files for bluez-qt - - qt5-base-devel - qt5-declarative-devel - bluez-qt - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-14 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-26 - 5.13.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcompletion - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Addon with auto completion widgets and classes - KCompletion provides widgets with advanced completion support as well as a lower-level completion class which can be used with your own widgets. - mirrors://kde/stable/frameworks/5.17/kcompletion-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kconfig-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/kcompletion/pspec.xml - - - kcompletion - - qt5-base - libgcc - kconfig - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcompletion-devel - Development files for kcompletion - - qt5-base-devel - kcompletion - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdeclarative - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Integration of QML and KDE workspaces - KDeclarative provides integration of QML and KDE workspaces. - mirrors://kde/stable/frameworks/5.17/kdeclarative-5.17.0.tar.xz - - qt5-base-devel - mesa-devel - libepoxy-devel - qt5-declarative-devel - kauth-devel - kcodecs-devel - kpackage-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - kguiaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kio-devel - kbookmarks-devel - kcompletion-devel - kconfigwidgets-devel - kitemviews-devel - kjobwidgets-devel - solid-devel - kxmlgui-devel - kwidgetsaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kdeclarative/pspec.xml - - - kdeclarative - - qt5-base - libgcc - libepoxy - qt5-declarative - kpackage - kconfig - kservice - kcoreaddons - kglobalaccel - ki18n - kiconthemes - kio - kwidgetsaddons - kwindowsystem - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdeclarative-devel - Development files for kdeclarative - - qt5-base-devel - libepoxy-devel - qt5-declarative-devel - kpackage-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kio-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdeclarative - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kbookmarks - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Access and manipulate bookmarks stored using XBEL format - Framework which lets you access and manipulate bookmarks stored using XBEL format - mirrors://kde/stable/frameworks/5.17/kbookmarks-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kcoreaddons-devel - kauth-devel - kcodecs-devel - kconfig-devel - kconfigwidgets-devel - kiconthemes-devel - kwidgetsaddons-devel - kxmlgui-devel - extra-cmake-modules - - desktop/kde/framework/kbookmarks/pspec.xml - - - kbookmarks - - qt5-base - libgcc - kcoreaddons - kcodecs - kconfig - kiconthemes - kwidgetsaddons - kxmlgui - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kbookmarks-devel - Development files for kbookmarks - - kbookmarks - qt5-base-devel - kcoreaddons-devel - kcodecs-devel - kconfig-devel - kiconthemes-devel - kwidgetsaddons-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kguiaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Utilities for graphical user interfaces - The KDE GUI addons provide utilities for graphical user interfaces in the areas of colors, fonts, text, images, keyboard input. Development files. - mirrors://kde/stable/frameworks/5.17/kguiaddons-5.17.0.tar.xz - - libX11-devel - libxcb-devel - qt5-base-devel - qt5-x11extras-devel - extra-cmake-modules - - desktop/kde/framework/kguiaddons/pspec.xml - - - kguiaddons - - libgcc - libX11 - qt5-base - qt5-x11extras - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kguiaddons-devel - Development files for kguiaddons - - kguiaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knewstuff - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Framework for downloading and sharing additional application data - The KNewStuff library implements collaborative data sharing for applications. - mirrors://kde/stable/frameworks/5.17/knewstuff-5.17.0.tar.xz - - qt5-base-devel - boost-devel - kauth-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/framework/knewstuff/pspec.xml - - - knewstuff - - qt5-base - libgcc - kwidgetsaddons - ktextwidgets - kiconthemes - kcompletion - kitemviews - karchive - attica - kconfig - kcoreaddons - ki18n - kio - kservice - kxmlgui - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - knewstuff-devel - Development files for knewstuff - - qt5-base-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - kxmlgui-devel - knewstuff - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kxmlgui - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Framework for managing menu and toolbar actions - Kxmlgui provides a framework for managing menu and toolbar actions in an abstract way. - mirrors://kde/stable/frameworks/5.17/kxmlgui-5.17.0.tar.xz - - qt5-base-devel - attica-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kauth-devel - kcodecs-devel - sonnet-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kxmlgui/pspec.xml - - - kxmlgui - - qt5-base - libgcc - attica - kcoreaddons - kconfig - kconfigwidgets - kglobalaccel - ki18n - kiconthemes - kitemviews - ktextwidgets - kwidgetsaddons - kwindowsystem - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kxmlgui-devel - Development files for kxmlgui - - kxmlgui - qt5-base-devel - attica-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kauth - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Abstraction to system policy and authentication features - Framework which lets applications perform actions as a privileged user - mirrors://kde/stable/frameworks/5.17/kauth-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - polkit-qt-devel - kcoreaddons-devel - extra-cmake-modules - - desktop/kde/framework/kauth/pspec.xml - - - kauth - - qt5-base - polkit-qt - kcoreaddons - libgcc - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kauth-devel - Development files for kauth - - kauth - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kapidox - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Frameworks API documentation tools. - KDE5 Frameworks API dokümantasyon araçları. - KDE5 Frameworks API documentation tools. - KDE5 Frameworks API dokümantasyon araçları. - mirrors://kde/stable/frameworks/5.17/kapidox-5.17.0.tar.xz - - python-Jinja2 - python-PyYAML - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/kapidox/pspec.xml - - - kapidox - - qt5-base - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - breeze-icons - https://projects.kde.org/projects/kde/workspace/breeze - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.framework - Breeze icon themes - İcon themes breeze - http://download.kde.org/stable/frameworks/5.17/breeze-icons-5.17.0.tar.xz - - extra-cmake-modules - qt5-base-devel - - desktop/kde/framework/breeze-icons/pspec.xml - - - breeze-icons - Breeze icon themes - - /usr/share - /usr/share/doc - - - - - 2015-12-26 - 5.17.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kunitconversion - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE unit conversion framework - KUnitConversion provides functions to convert values in different physical units. - mirrors://kde/stable/frameworks/5.17/kunitconversion-5.17.0.tar.xz - - qt5-base-devel - ki18n-devel - extra-cmake-modules - - desktop/kde/framework/kunitconversion/pspec.xml - - - kunitconversion - - qt5-base - libgcc - ki18n - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kunitconversion-devel - Development files for kunitconversion - - qt5-base-devel - ki18n-devel - kunitconversion - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knotifyconfig - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Configuration dialog for desktop notifications - KNotifyConfig provides a configuration dialog for desktop notifications which can be embedded in your application.. - mirrors://kde/stable/frameworks/5.17/knotifyconfig-5.17.0.tar.xz - - qt5-base-devel - qt5-phonon-devel - kauth-devel - kconfig-devel - kcompletion-devel - ki18n-devel - kio-devel - extra-cmake-modules - - desktop/kde/framework/knotifyconfig/pspec.xml - - - knotifyconfig - - qt5-base - qt5-phonon - libgcc - kconfig - kcompletion - ki18n - kio - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - knotifyconfig-devel - Development files for knotifyconfig - - knotifyconfig - qt5-base-devel - qt5-phonon-devel - kauth-devel - kconfig-devel - kcompletion-devel - ki18n-devel - kio-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdnssd - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Network service discovery using Zeroconf - KDNSSD is a library for handling the DNS-based Service Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, such as printers, to be discovered without any user intervention or centralized infrastructure. - mirrors://kde/stable/frameworks/5.17/kdnssd-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - avahi-devel - avahi-compat-libdns_sd-devel - extra-cmake-modules - - desktop/kde/framework/kdnssd/pspec.xml - - - kdnssd - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdnssd-devel - Development files for kdnssd. - - qt5-base-devel - kdnssd - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdbusaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Extra modules for Qt-DBus - KDE5-KDBusAddons provides convenience classes on top of QtDBus, as well as an API to create KDED modules. - mirrors://kde/stable/frameworks/5.17/kdbusaddons-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - extra-cmake-modules - - desktop/kde/framework/kdbusaddons/pspec.xml - - - kdbusaddons - - libgcc - qt5-base - qt5-x11extras - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdbusaddons-devel - Development files for kdbusaddons - - qt5-base-devel - kdbusaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kxmlrpcclient - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - XML-RPC client library for KDE - This library contains simple XML-RPC Client support. It is used mainly by the egroupware module of kdepim, but is a complete client and is quite easy to use. Only one interface is exposed to the world, kxmlrpcclient/client.h and of that interface, you only need to use 3 methods: setUrl, setUserAgent and call. - mirrors://kde/stable/frameworks/5.17/kxmlrpcclient-5.17.0.tar.xz - - qt5-base-devel - kauth-devel - kio-devel - extra-cmake-modules - - desktop/kde/framework/kxmlrpcclient/pspec.xml - - - kxmlrpcclient - - qt5-base - libgcc - ki18n - kcoreaddons - kio - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kxmlrpcclient-devel - Development files for kdelibs4-support - - kxmlrpcclient - qt5-base-devel - ki18n-devel - kcoreaddons-devel - kio-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kimageformats - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Image formats addons for QT 5 - This framework provides additional image format plugins for QtGui. - mirrors://kde/stable/frameworks/5.17/kimageformats-5.17.0.tar.xz - - qt5-base-devel - openexr-devel - ilmbase-devel - extra-cmake-modules - - desktop/kde/framework/kimageformats/pspec.xml - - - kimageformats - - qt5-base - libgcc - openexr-libs - ilmbase - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdoctools - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 document generator - kdoctools is an application aims to generate documents from DocBook. - mirrors://kde/stable/frameworks/5.17/kdoctools-5.17.0.tar.xz - - qt5-base-devel - perl-URI - python - libxml2-devel - libxslt-devel - docbook-xml - docbook-xsl - docbook-sgml4_5 - ki18n-devel - karchive-devel - extra-cmake-modules - - desktop/kde/framework/kdoctools/pspec.xml - - - kdoctools - - qt5-base - libxml2 - libgcc - libxslt - karchive - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - kdoctools-devel - Development files for kdoctools - - qt5-base-devel - kdoctools - karchive-devel - libgcc - libxml2-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcodecs - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Plugins allowing Qt applications to access further types of images - KDE5 KCodecs provide a collection of methods to manipulate strings using various encodings. - mirrors://kde/stable/frameworks/5.17/kcodecs-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - extra-cmake-modules - - desktop/kde/framework/kcodecs/pspec.xml - - - kcodecs - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcodecs-devel - Development files for kcodecs - - qt5-base-devel - kcodecs - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ktextwidgets - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 text editing widgets - KTextWidgets provides widgets for displaying and editing text. It supports rich text as well as plain text. - mirrors://kde/stable/frameworks/5.17/ktextwidgets-5.17.0.tar.xz - - qt5-base-devel - kconfig-devel - kcompletion-devel - kcodecs-devel - kauth-devel - kconfigwidgets-devel - kiconthemes-devel - kwidgetsaddons-devel - ki18n-devel - sonnet-devel - kservice-devel - kcoreaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/ktextwidgets/pspec.xml - - - ktextwidgets - - qt5-base - libgcc - kconfig - kcompletion - kconfigwidgets - kiconthemes - kwidgetsaddons - ki18n - sonnet - kservice - kcoreaddons - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ktextwidgets-devel - Development files for ktextwidgets - - ktextwidgets - qt5-base-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kiconthemes-devel - kwidgetsaddons-devel - ki18n-devel - sonnet-devel - kservice-devel - kcoreaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ktexteditor - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 text editor libraries - KTextEditor provides a powerful text editor component that you can embed in your application. - mirrors://kde/stable/frameworks/5.17/ktexteditor-5.17.0.tar.xz - - qt5-base-devel - qt5-script-devel - qt5-xmlpatterns-devel - kauth-devel - kguiaddons-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kparts-devel - libgit2-devel - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/framework/ktexteditor/pspec.xml - - - ktexteditor - - qt5-script - qt5-base - libgcc - libgit2 - ktextwidgets - kwidgetsaddons - kconfigwidgets - kjobwidgets - kiconthemes - kcoreaddons - kcompletion - kitemviews - kxmlgui - kcodecs - karchive - kguiaddons - kconfig - ki18n - kio - ki18n - kparts - sonnet - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ktexteditor-devel - Development files for ktexteditor - - qt5-script-devel - qt5-base-devel - libgit2-devel - ktextwidgets-devel - kwidgetsaddons-devel - kconfigwidgets-devel - kjobwidgets-devel - kiconthemes-devel - kcoreaddons-devel - kcompletion-devel - kitemviews-devel - kxmlgui-devel - kcodecs-devel - karchive-devel - kguiaddons-devel - kconfig-devel - ki18n-devel - kio-devel - ki18n-devel - kparts-devel - sonnet-devel - ktexteditor - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kfilemetadata - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 library for extracting meta data from files. - KDE library for extracting meta data from files. - mirrors://kde/stable/frameworks/5.17/kfilemetadata-5.17.0.tar.xz - - qt5-base-devel - attr-devel - ebook-tools-devel - karchive-devel - ki18n-devel - extra-cmake-modules - - desktop/kde/framework/kfilemetadata/pspec.xml - - - kfilemetadata - - qt5-base - ebook-tools - libgcc - exiv2-libs - taglib - ffmpeg - poppler-qt5 - karchive - ki18n - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kfilemetadata-devel - Development files for kfilemetadata - - kfilemetadata - qt5-base-devel - ebook-tools-devel - exiv2-devel - taglib-devel - ffmpeg-devel - poppler-qt5-devel - karchive-devel - ki18n-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-26 - 5.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-07-01 - 5.9.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-03 - 5.9.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kitemviews - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Set of item models extending the Qt model-view framework - KItemViews includes a set of views, which can be used with item models. It includes views for categorizing lists and to add search filters to flat and hierarchical lists. - mirrors://kde/stable/frameworks/5.17/kitemviews-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - extra-cmake-modules - - desktop/kde/framework/kitemviews/pspec.xml - - - kitemviews - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kitemviews-devel - Development files for kitemviews - - qt5-base-devel - kitemviews - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kio - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Resource and network access abstraction - Network transparent access to files and data - mirrors://kde/stable/frameworks/5.17/kio-5.17.0.tar.xz - - qt5-base-devel - acl-devel - attr-devel - mit-kerberos - karchive-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kservice-devel - solid-devel - sonnet-devel - kdoctools-devel - kbookmarks-devel - kwidgetsaddons-devel - kcompletion-devel - kconfigwidgets-devel - kauth-devel - kcodecs-devel - kiconthemes-devel - kitemviews-devel - kjobwidgets-devel - kwindowsystem-devel - qt5-x11extras-devel - kwallet-devel - kxmlgui-devel - ktextwidgets-devel - knotifications-devel - libxslt-devel - qt5-script-devel - zlib-devel - docbook-sgml4_5 - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kio/pspec.xml - - - kio - - qt5-base - acl - attr - libxml2 - libxslt - libgcc - mit-kerberos - knotifications - qt5-script - qt5-x11extras - karchive - kconfig - kcodecs - kbookmarks - kcompletion - kconfigwidgets - kcoreaddons - kdbusaddons - ki18n - kiconthemes - kitemviews - kjobwidgets - kservice - ktextwidgets - kwallet - kwidgetsaddons - kwindowsystem - kxmlgui - solid - - - /etc/ - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kio-devel - Development files for kio - - qt5-base-devel - kio - qt5-base-devel - acl-devel - attr-devel - libxml2-devel - libxslt-devel - knotifications-devel - qt5-script-devel - qt5-x11extras-devel - karchive-devel - kconfig-devel - kcodecs-devel - kbookmarks-devel - kcompletion-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kjobwidgets-devel - kservice-devel - ktextwidgets - kwallet-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - solid-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwallet - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE password storage framework - This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. - mirrors://kde/stable/frameworks/5.17/kwallet-5.17.0.tar.xz - - libxslt - docbook-xsl - qt5-base-devel - libgcrypt-devel - kconfig-devel - kdoctools-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kwallet/pspec.xml - - - kwallet - - qt5-base - libgcc - libgcrypt - kconfig - kcoreaddons - kdbusaddons - ki18n - kiconthemes - knotifications - kservice - kwidgetsaddons - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - kwallet-devel - Development files for kwallet - - kwallet - qt5-base-devel - libgcrypt-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-14 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knotifications - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Desktop notifications - KNotification is used to notify the user of an event. It covers feedback and persistent events. - mirrors://kde/stable/frameworks/5.17/knotifications-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kwindowsystem-devel - qt5-x11extras-devel - kservice-devel - kconfig-devel - kcoreaddons-devel - kiconthemes-devel - kcodecs-devel - libdbusmenu-qt-devel - qt5-phonon-devel - extra-cmake-modules - - desktop/kde/framework/knotifications/pspec.xml - - - knotifications - - qt5-base - qt5-phonon - libgcc - qt5-x11extras - kconfig - kcodecs - kcoreaddons - kiconthemes - kservice - libdbusmenu-qt - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - knotifications-devel - Development files for knotifications - - knotifications - qt5-base-devel - qt5-phonon-devel - qt5-x11extras-devel - kconfig-devel - kcodecs-devel - kcoreaddons-devel - kiconthemes-devel - kservice-devel - kwindowsystem-devel - libdbusmenu-qt-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-03 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdesignerplugin - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - QT Designer integration for KDE5 Frameworks widgets - This framework provides plugins for Qt Designer that allow it to display the widgets provided by various KDE frameworks, as well as a utility (kgendesignerplugin) that can be used to generate other such plugins from ini-style description files. - mirrors://kde/stable/frameworks/5.17/kdesignerplugin-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kdoctools-devel - kio-devel - kauth-devel - kconfigwidgets-devel - kxmlgui-devel - kplotting-devel - ktextwidgets-devel - sonnet-devel - kdewebkit-devel - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kdesignerplugin/pspec.xml - - - kdesignerplugin - - qt5-base - libgcc - kdewebkit - kcoreaddons - kitemviews - kconfig - sonnet - kcompletion - kconfigwidgets - kiconthemes - kio - kplotting - ktextwidgets - kwidgetsaddons - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kconfig - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.framework - Advanced configuration system for KDE Frameworks 5 - Kconfig provides advanced libraries and tools for accessing configuration files. - mirrors://kde/stable/frameworks/5.17/kconfig-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - extra-cmake-modules - - desktop/kde/framework/kconfig/pspec.xml - - - kconfig - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kconfig-devel - Development files for kconfig - - qt5-base-devel - kconfig - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwidgetsaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 desktop widgets - KdeWidgetsAddons is a framework contains addon widgets and shared libraries for applications using Qt5-Widgets. - mirrors://kde/stable/frameworks/5.17/kwidgetsaddons-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-designer-devel - extra-cmake-modules - - desktop/kde/framework/kwidgetsaddons/pspec.xml - - - kwidgetsaddons - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kwidgetsaddons-devel - Development files for kwidgetsaddons - - qt5-base-devel - kwidgetsaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kpeople - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - A contact aggregation library for KDE - KPeople is a Framework for fetching contacts from different sources (Telepathy, Akonadi, Facebook, etc) and unifying them into a same model. - mirrors://kde/stable/frameworks/5.17/kpeople-5.17.0.tar.xz - - qt5-base-devel - kconfig-devel - qt5-declarative-devel - kcoreaddons-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - kservice-devel - kwidgetsaddons-devel - ki18n-devel - kitemviews-devel - extra-cmake-modules - - desktop/kde/framework/kpeople/pspec.xml - - - kpeople - - qt5-base - qt5-declarative - libgcc - kconfig - kcoreaddons - kservice - kwidgetsaddons - ki18n - kitemviews - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kpeople-devel - Development files for kpeople - - qt5-base-devel - qt5-declarative-devel - kconfig-devel - kcoreaddons-devel - kwidgetsaddons-devel - kservice-devel - ki18n-devel - kitemviews-devel - kpeople - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kpty - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Libraries for pseudo terminal devices - Kpty provides primitives to interface with pseudo terminal devices as well as a KProcess derived class for running child processes and communicating with them using kpty. - mirrors://kde/stable/frameworks/5.17/kpty-5.17.0.tar.xz - - qt5-base-devel - utempter-devel - kcoreaddons-devel - ki18n-devel - extra-cmake-modules - - desktop/kde/framework/kpty/pspec.xml - - - kpty - - qt5-base - utempter - libgcc - kcoreaddons - ki18n - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kpty-devel - Development files for kpty - - qt5-base-devel - utempter-devel - kcoreaddons-devel - ki18n-devel - kpty - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcoreaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Utilities for core application functionality and accessing the OS - KCoreAddons provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more. - mirrors://kde/stable/frameworks/5.17/kcoreaddons-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - shared-mime-info - extra-cmake-modules - mesa-devel - - desktop/kde/framework/kcoreaddons/pspec.xml - - - kcoreaddons - - qt5-base - libgcc - shared-mime-info - docbook-xsl - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcoreaddons-devel - Development files for kcoreaddons - - qt5-base-devel - kcoreaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - System.Package - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ki18n - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE Gettext-based UI text internationalization. - KDE grafik arabirim yerelleştirme kitaplığı - KI18n provides functionality for internationalizing user interface text in applications, based on the GNU Gettext translation system. - ki18n, KDE Frameworks 5 için, Gettext tabanlı bir grafik arabirim yerelleştirme kitaplığıdır - mirrors://kde/stable/frameworks/5.17/ki18n-5.17.0.tar.xz - - qt5-base-devel - qt5-script-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/kde/framework/ki18n/pspec.xml - - - ki18n - - libgcc - qt5-base - qt5-script - qt5-declarative - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - ki18n-devel - Development files for kde5-ki18n - ki18n için geliştirme dosyaları - - ki18n - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - extra-cmake-modules - http://www.kde.org - - Pisi Linux Admins - admin@gmail.com - - LGPLv2 - library - desktop.kde.framework - Extra cmake modules for KDE5 - Extra cmake modules KDE5 - mirrors://kde/stable/frameworks/5.17/extra-cmake-modules-5.17.0.tar.xz - - cmake - - desktop/kde/framework/extra-cmake-modules/pspec.xml - - - extra-cmake-modules - programming.build - - cmake - - - /usr/share - /usr/lib - /usr/share/man/man7 - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-01 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - sonnet - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE spell schecking library - This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. - mirrors://kde/stable/frameworks/5.17/sonnet-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - hunspell-devel - aspell-devel - extra-cmake-modules - - desktop/kde/framework/sonnet/pspec.xml - - - sonnet - - qt5-base - libgcc - aspell - hunspell - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - sonnet-devel - Development files for sonnet - - qt5-base-devel - sonnet - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcrash - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Kcrash crash handling application - KCrash provides support for intercepting and handling application crashes. - mirrors://kde/stable/frameworks/5.17/kcrash-5.17.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - kcoreaddons-devel - kwindowsystem-devel - libX11-devel - extra-cmake-modules - - desktop/kde/framework/kcrash/pspec.xml - - - kcrash - - qt5-base - libX11 - libgcc - qt5-x11extras - kcoreaddons - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcrash-devel - Development files for kcrash - - qt5-base-devel - qt5-x11extras-devel - kcrash - kcoreaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kidletime - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Idle time reporting utility - KIdleTime is a singleton reporting information on idle time. It is useful not only for finding out about the current idle time of the PC, but also for getting notified upon idle time events, such as custom timeouts, or user activity. - mirrors://kde/stable/frameworks/5.17/kidletime-5.17.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - libX11-devel - libXext-devel - libXScrnSaver-devel - libxcb-devel - extra-cmake-modules - - desktop/kde/framework/kidletime/pspec.xml - - - kidletime - - qt5-base - libX11 - libgcc - libxcb - libXScrnSaver - libXext - qt5-x11extras - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kidletime-devel - Development files for kidletime - - kidletime - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kglobalaccel - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Global desktop keyboard shortcuts - KGlobalAccel allows you to have global accelerators that are independent of the focused window. - mirrors://kde/stable/frameworks/5.17/kglobalaccel-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-base - libxcb-devel - kcrash-devel - kconfig-devel - qt5-x11extras-devel - kcoreaddons-devel - kdbusaddons-devel - xcb-util-keysyms-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kglobalaccel/pspec.xml - - - kglobalaccel - - qt5-base - libgcc - libxcb - kcrash - kconfig - qt5-x11extras - kcoreaddons - kdbusaddons - xcb-util-keysyms - kwindowsystem - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kglobalaccel-devel - Development files for kglobalaccel - - kglobalaccel - qt5-base-devel - libxcb-devel - kcrash-devel - kconfig-devel - qt5-x11extras-devel - kcoreaddons-devel - kdbusaddons-devel - xcb-util-keysyms-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - attica - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Open Collaboration Service client library, based on Qt 5 - Attica is a library to access Open Collaboration Service servers, based on Qt 5. - mirrors://kde/stable/frameworks/5.17/attica-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/attica/pspec.xml - - - attica - - qt5-base - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - attica-devel - Development files for attica5 - - qt5-base-devel - attica - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kded - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 daemon - Kded runs in the background and performs a number of small tasks. - mirrors://kde/stable/frameworks/5.17/kded-5.17.0.tar.xz - - qt5-base-devel - kdoctools-devel - kinit-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - kdbusaddons-devel - kservice-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kded/pspec.xml - - - kded - - qt5-base - libgcc - kcoreaddons - kconfig - kcrash - kdbusaddons - kservice - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - kded-devel - Development files for kded - - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - kdbusaddons-devel - kservice-devel - kded - - - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - modemmanager-qt - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Qt wrapper for ModemManager DBus API - Qt wrapper for ModemManager DBus API - mirrors://kde/stable/frameworks/5.17/modemmanager-qt-5.17.0.tar.xz - - qt5-base-devel - ModemManager-devel - extra-cmake-modules - - desktop/kde/framework/modemmanager-qt/pspec.xml - - - modemmanager-qt - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - modemmanager-qt-devel - Development files for modemmanger-qt - - qt5-base-devel - modemmanager-qt - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kservice - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 Desktop Services - Kservice Provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. - mirrors://kde/stable/frameworks/5.17/kservice-5.17.0.tar.xz - - qt5-base-devel - kdoctools-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kservice/pspec.xml - - - kservice - - qt5-base - libgcc - kconfig - kcoreaddons - kcrash - kdbusaddons - ki18n - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - kservice-devel - Development files for kservice - - kservice - qt5-base-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kactivities - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Library for KDE's Plasma Activities support - Kactivities provides an API for using and interacting with the Plasma Activities Manager. - mirrors://kde/stable/frameworks/5.17/kactivities-5.17.0.tar.xz - - qt5-base-devel - mesa-devel - boost-devel - kdbusaddons-devel - kdeclarative-devel - kpackage-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel - kio-devel - kservice-devel - kbookmarks-devel - kwidgetsaddons-devel - kcompletion-devel - kjobwidgets-devel - kitemviews-devel - solid-devel - kauth-devel - kcodecs-devel - kconfigwidgets-devel - kxmlgui-devel - kwindowsystem-devel - kglobalaccel-devel - kcmutils-devel - qt5-declarative-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - extra-cmake-modules - - - build-source.patch - - desktop/kde/framework/kactivities/pspec.xml - - - kactivities - - qt5-base - qt5-declarative - libgcc - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - ki18n - kio - kglobalaccel - kservice - kxmlgui - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kactivities-devel - Development files for kactivities - - qt5-base-devel - qt5-declarative-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kwindowsystem-devel - kactivities - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - baloo - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Framework for searching and managing metadata - Baloo is a framework for searching and managing metada - mirrors://kde/stable/frameworks/5.17/baloo-5.17.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kdbusaddons-devel - kauth-devel - kconfig-devel - kcrash-devel - ki18n-devel - kidletime-devel - kio-devel - solid-devel - kfilemetadata-devel - kdoctools-devel - lmdb-devel - extra-cmake-modules - - desktop/kde/framework/baloo/pspec.xml - - - baloo - - qt5-base - qt5-declarative - kcoreaddons - kdbusaddons - kauth - libgcc - kconfig - kcrash - ki18n - kidletime - kio - solid - kfilemetadata - lmdb - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - baloo-devel - Development files for baloo-widgets - - baloo - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kdbusaddons-devel - kauth-devel - kconfig-devel - kcrash-devel - ki18n-devel - kidletime-devel - kio-devel - solid-devel - kfilemetadata-devel - lmdb-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-20 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-26 - 5.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-07-01 - 5.9.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.9.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kemoticons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE emoticon manager - KEmoticons converts emoticons from text to a graphical representation with images in HTML. - mirrors://kde/stable/frameworks/5.17/kemoticons-5.17.0.tar.xz - - qt5-base-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - kservice-devel - extra-cmake-modules - - desktop/kde/framework/kemoticons/pspec.xml - - - kemoticons - - qt5-base - libgcc - karchive - kcoreaddons - kconfig - kservice - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kemoticons-devel - Development files for kemoticons - - kemoticons - qt5-base-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - kservice-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kinit - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE applications initialization utility - Process launcher to speed up launching KDE applications. - mirrors://kde/stable/frameworks/5.17/kinit-5.17.0.tar.xz - - qt5-base-devel - kdoctools-devel - libX11-devel - libcap-devel - libgcc - kcrash-devel - kcoreaddons-devel - kitemviews-devel - solid-devel - kxmlgui-devel - kjobwidgets-devel - kcompletion-devel - kwidgetsaddons-devel - kconfig-devel - kcodecs-devel - kauth-devel - kconfigwidgets-devel - kio-devel - ki18n-devel - kservice-devel - kbookmarks-devel - kwindowsystem-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kinit/pspec.xml - - - kinit - - qt5-base - libX11 - libcap - libgcc - kio - kcrash - kcoreaddons - kconfig - ki18n - kservice - kwindowsystem - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/locale - /usr/bin - /usr/share/doc - /usr/share/man - - - - kinit-devel - Development files for kinit - - qt5-base-devel - libX11-devel - libcap-devel - kio-devel - kcrash-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kservice-devel - kwindowsystem-devel - kinit - - - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kiconthemes - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 icon utilities - This library contains classes to improve the handling of icons in applications using the KDE Frameworks. - mirrors://kde/stable/frameworks/5.17/kiconthemes-5.17.0.tar.xz - - qt5-base-devel - qt5-svg-devel - ki18n-devel - kauth-devel - kcodecs-devel - kconfig-devel - kitemviews-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/kiconthemes/pspec.xml - - - kiconthemes - - libgcc - qt5-base - qt5-svg - kconfigwidgets - ki18n - kitemviews - kwidgetsaddons - kconfig - kcoreaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kiconthemes-devel - Development files for kiconthemes - - kiconthemes - qt5-base-devel - qt5-svg-devel - kconfigwidgets-devel - ki18n-devel - kitemviews-devel - kwidgetsaddons-devel - kconfig-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-22 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kparts - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Plugin framework for user interface components - This library implements the framework for KDE parts, which are elaborate widgets with a user-interface defined in terms of actions (menu items, toolbar icons). - mirrors://kde/stable/frameworks/5.17/kparts-5.17.0.tar.xz - - qt5-base-devel - kauth-devel - knotifications-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/framework/kparts/pspec.xml - - - kparts - - qt5-base - libgcc - kjobwidgets - kconfig - kcoreaddons - ki18n - kiconthemes - knotifications - kservice - kwidgetsaddons - kxmlgui - kio - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kparts-devel - Development files for kparts - - qt5-base-devel - kjobwidgets-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kservice-devel - kwidgetsaddons-devel - kxmlgui-devel - kio-devel - kparts - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwindowsystem - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 window manager access framework - KWindowSystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes. - mirrors://kde/stable/frameworks/5.17/kwindowsystem-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - libX11-devel - libgcc - libxcb-devel - libXrender-devel - libXfixes-devel - xcb-util-devel - xcb-util-keysyms-devel - extra-cmake-modules - - desktop/kde/framework/kwindowsystem/pspec.xml - - - kwindowsystem - - qt5-base - libX11 - libgcc - libxcb - qt5-x11extras - libXfixes - xcb-util-keysyms - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - kwindowsystem-devel - Development files for kwindowsystem - - qt5-base-devel - libXrender-devel - libXfixes-devel - xcb-util-devel - xcb-util-keysyms-devel - kwindowsystem - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kitemmodels - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Set of item models extending the Qt model-view framework - KItemModels provides a set of item models extending the Qt model-view framework. - mirrors://kde/stable/frameworks/5.17/kitemmodels-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/kitemmodels/pspec.xml - - - kitemmodels - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kitemmodels-devel - Development files for kitemmodels - - qt5-base-devel - kitemmodels - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qt5-phonon - http://phonon.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.phonon - Cross platform multimedia API for KDE4 using QT5 - Phonon was created as a solution to several problems with multimedia commonly faced by Unix desktops, especially KDE 3's outdated multimedia framework aRts. Phonon itself is not a multimedia framework, but interfaces with existing frameworks such as GStreamer or Xine via backends. - mirrors://kde/stable/phonon/4.8.3/src/phonon-4.8.3.tar.xz - - qt5-base-devel - qt5-designer-devel - qt5-quick1-devel - alsa-lib-devel - gst-plugins-base-devel - pulseaudio-libs-devel - gstreamer-devel - cmake - mesa-devel - - - qt-5.4.2.patch - - desktop/kde/phonon/qt5-phonon/pspec.xml - - - qt5-phonon - - libgcc - qt5-base - qt5-designer - qt5-quick1 - pulseaudio-libs - - - /usr/lib/libphonon* - /usr/lib/qt5 - /usr/share/dbus-1 - - - - qt5-phonon-devel - Development files for phonon-qt5 - - qt5-phonon - qt5-base-devel - qt5-designer-devel - pulseaudio-libs-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/share/phonon4qt5 - - - - - 2015-08-13 - 4.8.3 - First Release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qt5-phonon-backend-vlc - http://gitorious.org/phonon/phonon-vlc - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.phonon - VLC Backend for qt5-phonon - phonon-backend-vlc allows Phonon (the KDE media library) to use VLC for audio and video playback. - mirrors://kde/stable/phonon/phonon-backend-vlc/0.8.2/src/phonon-backend-vlc-0.8.2.tar.xz - - qt5-base-devel - qt5-phonon-devel - pulseaudio - vlc-devel - - desktop/kde/phonon/qt5-phonon-backend-vlc/pspec.xml - - - qt5-phonon-backend-vlc - - libgcc - qt5-base - qt5-phonon - vlc-libs - - - /usr/lib - /usr/lib/qt5 - /usr/share/kde4/services - /usr/share/doc - - - - - 2015-02-23 - 0.8.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qt5-phonon-backend-gstreamer - http://phonon.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - desktop.kde.phonon - GStreamer qt5-phonon backend - Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. phonon-backend-gstreamer contains the GStreamer backend for Phonon. - mirrors://kde/stable/phonon/phonon-backend-gstreamer/4.8.2/src/phonon-backend-gstreamer-4.8.2.tar.xz - - qt5-base-devel - qt5-phonon-devel - gstreamer-devel - gstreamer-next-devel - gst-plugins-base-devel - gst-plugins-base-next-devel - mesa-devel - libxml2-devel - cmake - - desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml - - - qt5-phonon-backend-gstreamer - - qt5-base - qt5-phonon - mesa - glib2 - libgcc - gstreamer-next - gst-plugins-base-next - - - /usr/lib - /usr/lib/qt5 - /usr/share - - - - - 2015-08-18 - 4.8.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kde-l10n-uk - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:uk - desktop.kde.l10n - Ukrainian KDE5 internationalization package - KDE5 Ukraynalı yerelleştirme paketi - kde-l10n-uk is the KDE5 internationalization package that provides Ukrainian translations for KDE5 applications. - kde-l10n-uk, KDE uygulamalarını Ukraynalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-uk-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-uk/pspec.xml - - - kde-l10n-uk - system.locale - lang-uk - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-uk-doc - Ukrainian documentation files for KDE - KDE5 için Ukraynalı belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-mr - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:mr - desktop.kde.l10n - Marathi translations KDE5 internationalization package - KDE5 Marathi translations yerelleştirme paketi - kde-l10n-mr is the KDE5 internationalization package that provides Marathi translations translations for KDE5 applications. - kde-l10n-mr, KDE uygulamalarını Marathi translations yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-mr-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-mr/pspec.xml - - - kde-l10n-mr - system.locale - lang-mr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-bg - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:bg - desktop.kde.l10n - Bulgarian KDE5 internationalization package - KDE5 Bulgar yerelleştirme paketi - kde-l10n-bg is the KDE5 internationalization package that provides Bulgarian translations for KDE5 applications. - kde-l10n-br, KDE uygulamalarını Bulgar yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bg-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-bg/pspec.xml - - - kde-l10n-bg - system.locale - lang-bg - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-is - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:is - desktop.kde.l10n - Icelandic KDE5 internationalization package - KDE5 İzlanda'ya özgü yerelleştirme paketi - kde-l10n-is is the KDE5 internationalization package that provides Icelandic translations for KDE5 applications. - kde-l10n-is, KDE uygulamalarını İzlanda'ya özgü yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-is-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-is/pspec.xml - - - kde-l10n-is - system.locale - lang-is - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-da - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:da - desktop.kde.l10n - Danish KDE5 internationalization package - KDE5 Danimarkalı yerelleştirme paketi - kde-l10n-da is the KDE5 internationalization package that provides Danish translations for KDE5 applications. - kde-l10n-da, KDE uygulamalarını Danimarkalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-da-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-da/pspec.xml - - - kde-l10n-da - system.locale - lang-da - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - /usr/share/man/da - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-kk - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:kk - desktop.kde.l10n - Kazakh KDE5 internationalization package - KDE5 Kazak yerelleştirme paketi - kde-l10n-kk is the KDE5 internationalization package that provides Kazakh translations for KDE5 applications. - kde-l10n-kk, KDE uygulamalarını Kazak yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-kk-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-kk/pspec.xml - - - kde-l10n-kk - system.locale - lang-kk - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-kk-doc - Kazakh documentation files for KDE - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ca - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ca - desktop.kde.l10n - Catalan KDE5 internationalization package - KDE5 Katalan yerelleştirme paketi - kde-l10n-ca is the KDE5 internationalization package that provides Catalan translations for KDE5 applications. - kde-l10n-ca, KDE uygulamalarını Katalan yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ca/pspec.xml - - - kde-l10n-ca - system.locale - lang-ca - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/ktuberling - - - - kde-l10n-ca-doc - Catalan documentation files for KDE - KDE5 için Katalan belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-05 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-wa - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:wa - desktop.kde.l10n - Walloon KDE5 internationalization package - KDE5 Valon yerelleştirme paketi - kde-l10n-wa is the KDE5 internationalization package that provides Walloon translations for KDE5 applications. - kde-l10n-wa, KDE uygulamalarını Valon yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-wa-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-wa/pspec.xml - - - kde-l10n-wa - system.locale - lang-wa - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-sl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:sl - desktop.kde.l10n - Slovenian KDE5 internationalization package - KDE5 Sloven yerelleştirme paketi - kde-l10n-sl is the KDE5 internationalization package that provides Slovenian translations for KDE5 applications. - kde-l10n-sl, KDE uygulamalarını Sloven yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sl-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-sl/pspec.xml - - - kde-l10n-sl - system.locale - lang-sl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pa - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pa - desktop.kde.l10n - Punjabi KDE5 internationalization package - KDE5 Pencaplı yerelleştirme paketi - kde-l10n-pa is the KDE5 internationalization package that provides Punjabi translations for KDE5 applications. - kde-l10n-pa, KDE uygulamalarını Pencaplı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pa-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pa/pspec.xml - - - kde-l10n-pa - system.locale - lang-pa - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ar - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ar - desktop.kde.l10n - Arabic KDE5 internationalization package - KDE5 Arapça yerelleştirme paketi - kde-l10n-ar is the KDE5 internationalization package that provides Arabic translations for KDE5 applications. - kde-l10n-ar, KDE uygulamalarını Arapça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ar-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - qt5-linguist - kconfig-devel - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ar/pspec.xml - - - kde-l10n-ar - system.locale - lang-ar - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-hi - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:hi - desktop.kde.l10n - Hindi KDE5 internationalization package - KDE5 Hintçe yerelleştirme paketi - kde-l10n-ga is the KDE5 internationalization package that provides Hindi translations for KDE5 applications. - kde-l10n-hi, KDE uygulamalarını Hintçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hi-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-hi/pspec.xml - - - kde-l10n-hi - system.locale - lang-hi - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-gl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:gl - desktop.kde.l10n - Galician KDE5 internationalization package - KDE5 Galiçya yerelleştirme paketi - kde-l10n-gl is the KDE5 internationalization package that provides Galician translations for KDE5 applications. - kde-l10n-gl, KDE uygulamalarını Galiçya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-gl-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-gl/pspec.xml - - - kde-l10n-gl - system.locale - lang-gl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-gl-doc - Galician documentation files for KDE - KDE5 için Galiçya belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pl - desktop.kde.l10n - Polish KDE5 internationalization package - KDE5 Polonyalı yerelleştirme paketi - kde-l10n-pl is the KDE5 internationalization package that provides Polish translations for KDE5 applications. - kde-l10n-pl, KDE uygulamalarını Polonyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pl-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pl/pspec.xml - - - kde-l10n-pl - system.locale - lang-pl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-pl-doc - Polish documentation files for KDE - KDE5 için Polonyalı belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ug - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ug - desktop.kde.l10n - Uygur KDE5 internationalization package - KDE5 Uygur yerelleştirme paketi - kde-l10n-ug is the KDE5 internationalization package that provides Uygur translations for KDE5 applications. - kde-l10n-ug, KDE uygulamalarını Uygur yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ug-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ug/pspec.xml - - - kde-l10n-ug - system.locale - lang-ug - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nb - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nb - desktop.kde.l10n - Norwegian Bookma KDE5 internationalization package - KDE5 Norveç bookma yerelleştirme paketi - kde-l10n-nb is the KDE5 internationalization package that provides Norwegian Bookma translations for KDE5 applications. - kde-l10n-nb, KDE uygulamalarını Norveç bookma yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nb-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nb/pspec.xml - - - kde-l10n-nb - system.locale - lang-nb - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-fa - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:fa - desktop.kde.l10n - Farsi KDE5 internationalization package - KDE5 Farsça yerelleştirme paketi - kde-l10n-fa is the KDE5 internationalization package that provides Farsi translations for KDE5 applications. - kde-l10n-fa, KDE uygulamalarını Farsça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fa-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-fa/pspec.xml - - - kde-l10n-fa - system.locale - lang-fa - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-sk - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:sk - desktop.kde.l10n - Slovak KDE5 internationalization package - KDE5 Slovak yerelleştirme paketi - kde-l10n-sk is the KDE5 internationalization package that provides Slovak translations for KDE5 applications. - kde-l10n-sk, KDE uygulamalarını Slovak yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sk-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-sk/pspec.xml - - - kde-l10n-sk - system.locale - lang-sk - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-it - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:it - desktop.kde.l10n - Italian KDE5 internationalization package - KDE5 İtalyan yerelleştirme paketi - kde-l10n-it is the KDE5 internationalization package that provides Italian translations for KDE5 applications. - kde-l10n-it, KDE uygulamalarını İtalyan yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-it-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-it/pspec.xml - - - kde-l10n-it - system.locale - lang-it - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-it-doc - Italian documentation files for KDE - KDE5 için İtalyan belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-cs - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:cs - desktop.kde.l10n - Czech KDE5 internationalization package - KDE5 Çek yerelleştirme paketi - kde-l10n-cs is the KDE5 internationalization package that provides Czech translations for KDE5 applications. - kde-l10n-cs, KDE uygulamalarını Çek yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-cs-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - extra-cmake-modules - qt5-linguist - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-cs/pspec.xml - - - kde-l10n-cs - system.locale - lang-cs - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-cs-doc - Czech documentation files for KDE - KDE5 için Çek belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-ia - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ia - desktop.kde.l10n - Interlingua KDE5 internationalization package - KDE5 Interlingua yerelleştirme paketi - kde-l10n-ia is the KDE5 internationalization package that provides Interlingua translations for KDE5 applications. - kde-l10n-ia, KDE uygulamalarını Interlingua yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ia-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ia/pspec.xml - - - kde-l10n-ia - system.locale - lang-ia - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-fi - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:fi - desktop.kde.l10n - Finnish KDE5 internationalization package - KDE5 Finlandiya yerelleştirme paketi - kde-l10n-fi is the KDE5 internationalization package that provides Finnish translations for KDE5 applications. - kde-l10n-fi, KDE uygulamalarını Finlandiya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fi-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-fi/pspec.xml - - - kde-l10n-fi - system.locale - lang-fi - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ga - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ga - desktop.kde.l10n - Irish Gaelic KDE5 internationalization package - KDE5 İrlandalı Gaelce yerelleştirme paketi - kde-l10n-ga is the KDE5 internationalization package that provides Irish Gaelic translations for KDE5 applications. - kde-l10n-ga, KDE uygulamalarını İrlandalı Gaelce yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ga-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ga/pspec.xml - - - kde-l10n-ga - system.locale - lang-ga - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ro - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ro - desktop.kde.l10n - Romanian KDE5 internationalization package - KDE5 Romanya yerelleştirme paketi - kde-l10n-ro is the KDE5 internationalization package that provides Romanian translations for KDE5 applications. - kde-l10n-ro, KDE uygulamalarını Romanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ro-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ro/pspec.xml - - - kde-l10n-ro - system.locale - lang-ro - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nds - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nds - desktop.kde.l10n - Low Saxon KDE5 internationalization package - KDE5 Düşük Sakson yerelleştirme paketi - kde-l10n-nds is the KDE5 internationalization package that provides Low Saxon translations for KDE5 applications. - kde-l10n-nds, KDE uygulamalarını Düşük Sakson yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nds-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nds/pspec.xml - - - kde-l10n-nds - system.locale - lang-nds - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart - /usr/share/kstars - /usr/share/ktuberling - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-bs - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:bs - desktop.kde.l10n - Bosnian KDE5 internationalization package - KDE5 Boşnakça yerelleştirme paketi - kde-l10n-bs is the KDE5 internationalization package that provides Bosnian translations for KDE5 applications. - kde-l10n-bs, KDE uygulamalarını Boşnakça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bs-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-bs/pspec.xml - - - kde-l10n-bs - system.locale - lang-bs - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-zh_TW - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:zh_TW - desktop.kde.l10n - Chinese Traditional KDE5 internationalization package - KDE5 Geleneksel Çin yerelleştirme paketi - kde-l10n-zh_TW is the KDE5 internationalization package that provides Chinese Traditional translations for KDE5 applications. - kde-l10n-zh_TW, KDE uygulamalarını Geleneksel Çin yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_TW-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-zh_TW/pspec.xml - - - kde-l10n-zh_TW - system.locale - lang-zh_TW - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ca-valencia - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ca@valencia - desktop.kde.l10n - Southern Catalan KDE5 internationalization package - kde-l10n-ca@valencia is the KDE5 internationalization package that provides Southern Catalan translations for KDE5 applications. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca@valencia-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - gettext-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ca-valencia/pspec.xml - - - kde-l10n-ca-valencia - system.locale - lang-ca@valencia - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/ktuberling - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-id - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:id - desktop.kde.l10n - Indonesian KDE5 internationalization package - KDE5 Endonezyalı yerelleştirme paketi - kde-l10n-id is the KDE5 internationalization package that provides Indonesian translations for KDE5 applications. - kde-l10n-id, KDE uygulamalarını Endonezyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-id-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-id/pspec.xml - - - kde-l10n-id - system.locale - lang-id - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-el - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:el - desktop.kde.l10n - Greek KDE5 internationalization package - KDE5 Yunan yerelleştirme paketi - kde-l10n-el is the KDE5 internationalization package that provides Greek translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını Yunan yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-el-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-el/pspec.xml - - - kde-l10n-el - system.locale - lang-el - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-el-doc - Greek documentation files for KDE - KDE5 için Yunan belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-ru - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ru - desktop.kde.l10n - Russian KDE5 internationalization package - KDE5 Rusça yerelleştirme paketi - kde-l10n-ru is the KDE5 internationalization package that provides Russian translations for KDE5 applications. - kde-l10n-ru, KDE uygulamalarını Rusça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ru-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ru/pspec.xml - - - kde-l10n-ru - system.locale - lang-ru - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/katepart - /usr/share/ktuberling - - - - kde-l10n-ru-doc - Russian documentation files for KDE - KDE5 için Rusça belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pt - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pt - desktop.kde.l10n - Portuguese KDE5 internationalization package - KDE5 Portekizli yerelleştirme paketi - kde-l10n-pt is the KDE5 internationalization package that provides Portuguese translations for KDE5 applications. - kde-l10n-pt, KDE uygulamalarını Portekizli yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pt/pspec.xml - - - kde-l10n-pt - system.locale - lang-pt - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-pt-doc - Portuguese documentation files for KDE - KDE5 için Portekizli belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ko - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ko - desktop.kde.l10n - Korean KDE5 internationalization package - KDE5 Koreli yerelleştirme paketi - kde-l10n-ko is the KDE5 internationalization package that provides Korean translations for KDE5 applications. - kde-l10n-ko, KDE uygulamalarını Koreli yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ko-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ko/pspec.xml - - - kde-l10n-ko - system.locale - lang-ko - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-et - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:et - desktop.kde.l10n - Estonian KDE5 internationalization package - KDE5 Estonya yerelleştirme paketi - kde-l10n-el is the KDE5 internationalization package that provides Estonian translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını Estonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-et-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-et/pspec.xml - - - kde-l10n-et - system.locale - lang-et - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-et-doc - Estonian documentation files for KDE - KDE5 için Estonya belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-en_GB - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:en_GB - desktop.kde.l10n - British English KDE5 internationalization package - KDE5 Britanya İngilizcesi yerelleştirme paketi - kde-l10n-en_GB is the KDE5 internationalization package that provides British English translations for KDE5 applications. - kde-l10n-tr, KDE uygulamalarını Britanya İngilizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-en_GB-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-en_GB/pspec.xml - - - kde-l10n-en_GB - system.locale - lang-en_GB - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart/syntax - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nn - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nn - desktop.kde.l10n - Norwegian Nynorsk KDE5 internationalization package - KDE5 Norveççe yerelleştirme paketi - kde-l10n-nn is the KDE5 internationalization package that provides Norwegian Nynorsk translations for KDE5 applications. - kde-l10n-nn, KDE uygulamalarını Norveççe yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nn-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nn/pspec.xml - - - kde-l10n-nn - system.locale - lang-nn - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-nn-doc - Norwegian Nynorsk documentation files for KDE - KDE5 için Norveççe belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-de - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:de - desktop.kde.l10n - German KDE5 internationalization package - kde-l10n-de is the KDE5 internationalization package that provides German translations for KDE5 applications. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-de-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-de/pspec.xml - - - kde-l10n-de - system.locale - lang-de - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-de-doc - German documentation files for KDE - - /usr/share/man - /usr/share/doc - - - - - 2015-12-21 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-km - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:km - desktop.kde.l10n - Khmer KDE5 internationalization package - KDE5 Kmer yerelleştirme paketi - kde-l10n-km is the KDE5 internationalization package that provides Khmer translations for KDE5 applications. - kde-l10n-km, KDE uygulamalarını Kmer yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-km-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-km/pspec.xml - - - kde-l10n-km - system.locale - lang-km - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-fr - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:fr - desktop.kde.l10n - French KDE5 internationalization package - KDE5 Fransız yerelleştirme paketi - kde-l10n-fr is the KDE5 internationalization package that provides French translations for KDE5 applications. - kde-l10n-fr, KDE uygulamalarını Fransız yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fr-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-fr/pspec.xml - - - kde-l10n-fr - system.locale - lang-fr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kstars - /usr/share/ktuberling - - - - kde-l10n-fr-doc - French documentation files for KDE - KDE5 için Fransız belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-lt - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:lt - desktop.kde.l10n - Lithuanian KDE5 internationalization package - KDE5 Litvanya yerelleştirme paketi - kde-l10n-lt is the KDE5 internationalization package that provides Lithuanian translations for KDE5 applications. - kde-l10n-lt, KDE uygulamalarını Litvanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lt-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-lt/pspec.xml - - - kde-l10n-lt - system.locale - lang-lt - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-lt-doc - German documentation files for KDE - KDE5 için Litvanya belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-sv - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:sv - desktop.kde.l10n - Swedish KDE5 internationalization package - KDE5 İsveçli yerelleştirme paketi - kde-l10n-sv is the KDE5 internationalization package that provides Swedish translations for KDE5 applications. - kde-l10n-sv, KDE uygulamalarını İsveçli yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sv-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-sv/pspec.xml - - - kde-l10n-sv - system.locale - lang-sv - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-sv-doc - Swedish documentation files for KDE - KDE5 için İsveçli belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-tr - http://l10n.kde.org - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv2 - locale:tr - desktop.kde.l10n - Turkish KDE5 internationalization package - KDE5 Türkçe yerelleştirme paketi - kde-l10n-tr is the KDE5 internationalization package that provides Turkish translations for KDE5 applications. - kde-l10n-tr, KDE uygulamalarını Türkçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-tr-15.12.0.tar.xz - - qt5-linguist - ki18n-devel - kconfig-devel - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-tr/pspec.xml - - - kde-l10n-tr - system.locale - lang-tr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - - - - kde-l10n-tr-doc - Turkish documentation files for KDE - KDE5 için Türkçe belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-es - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:es - desktop.kde.l10n - Spanish KDE5 internationalization package - KDE5 İspanyolca yerelleştirme paketi - kde-l10n-es is the KDE5 internationalization package that provides Spanish translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını İspanyolca yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-es-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-es/pspec.xml - - - kde-l10n-es - system.locale - lang-es - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/ktuberling - - - - kde-l10n-es-doc - Spanish documentation files for KDE - KDE5 için İspanyolca belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-eo - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:eo - desktop.kde.l10n - Esperanto KDE5 internationalization package - KDE5 Esperanto yerelleştirme paketi - kde-l10n-eo is the KDE5 internationalization package that provides Esperanto translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını Esperanto yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eo-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-eo/pspec.xml - - - kde-l10n-eo - system.locale - lang-eo - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-hr - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:hr - desktop.kde.l10n - Croatian KDE5 internationalization package - KDE5 Hırvat yerelleştirme paketi - kde-l10n-hr is the KDE5 internationalization package that provides Croatian translations for KDE5 applications. - kde-l10n-hr, KDE uygulamalarını Hırvat yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hr-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-hr/pspec.xml - - - kde-l10n-hr - system.locale - lang-hr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-eu - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:eu - desktop.kde.l10n - Basque KDE5 internationalization package - kde-l10n-eu is the KDE5 internationalization package that provides Basque translations for KDE5 applications. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eu-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-eu/pspec.xml - - - kde-l10n-eu - system.locale - lang-eu - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-he - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:he - desktop.kde.l10n - Hebrew KDE5 internationalization package - KDE5 İbranice yerelleştirme paketi - kde-l10n-he is the KDE5 internationalization package that provides Hebrew translations for KDE5 applications. - kde-l10n-he, KDE uygulamalarını İbranice yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-he-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-he/pspec.xml - - - kde-l10n-he - system.locale - lang-he - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-hu - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:hu - desktop.kde.l10n - Hungarian KDE5 internationalization package - KDE5 Macar yerelleştirme paketi - kde-l10n-hu is the KDE5 internationalization package that provides Hungarian translations for KDE5 applications. - kde-l10n-hu, KDE uygulamalarını Macar yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hu-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-hu/pspec.xml - - - kde-l10n-hu - system.locale - lang-hu - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-zh_CN - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:zh_CN - desktop.kde.l10n - Chinese Simplified KDE5 internationalization package - KDE5 Sadeleştirilmiş Çince yerelleştirme paketi - kde-l10n-zh_CN is the KDE5 internationalization package that provides Chinese Simplified translations for KDE5 applications. - kde-l10n-zh_CN, KDE uygulamalarını Sadeleştirilmiş Çince yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_CN-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-zh_CN/pspec.xml - - - kde-l10n-zh_CN - system.locale - lang-zh_CN - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ja - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ja - desktop.kde.l10n - Japanese KDE5 internationalization package - KDE5 Japon yerelleştirme paketi - kde-l10n-ja is the KDE5 internationalization package that provides Japanese translations for KDE5 applications. - kde-l10n-ja, KDE uygulamalarını Japon yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ja-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ja/pspec.xml - - - kde-l10n-ja - system.locale - lang-ja - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-ja-doc - Japanese documentation files for KDE - KDE5 için Japon belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nl - desktop.kde.l10n - Dutch KDE5 internationalization package - KDE5 Hollandaca yerelleştirme paketi - kde-l10n-nl is the KDE5 internationalization package that provides Dutch translations for KDE5 applications. - kde-l10n-nl, KDE uygulamalarını Hollandaca yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nl-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nl/pspec.xml - - - kde-l10n-nl - system.locale - lang-nl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart - /usr/share/ktuberling - - - - kde-l10n-nl-doc - Dutch documentation files for KDE - KDE5 için Hollandaca belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-lv - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:lv - desktop.kde.l10n - Latvian KDE5 internationalization package - KDE5 Letonya yerelleştirme paketi - kde-l10n-lv is the KDE5 internationalization package that provides Latvian translations for KDE5 applications. - kde-l10n-lv, KDE uygulamalarını Letonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lv-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-lv/pspec.xml - - - kde-l10n-lv - system.locale - lang-lv - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pt_BR - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pt_BR - desktop.kde.l10n - Brazilian Portuguese KDE5 internationalization package - KDE5 Brezilya Portekizcesi yerelleştirme paketi - kde-l10n-pt_BR is the KDE5 internationalization package that provides Brazilian Portuguese translations for KDE5 applications. - kde-l10n-pt_BR, KDE uygulamalarını Brezilya Portekizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt_BR-15.12.0.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pt_BR/pspec.xml - - - kde-l10n-pt_BR - system.locale - lang-pt_BR - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-pt_BR-doc - Brazilian Portuguese documentation files for KDE - KDE5 için Brezilya Portekizcesi belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kwordquiz - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - Kwordquiz is a Flash Card Trainer - KWordQuiz is a tool that gives you a powerful way to master new vocabularies. It may be a language or any other kind of terminology.. - mirrors://kde/stable/applications/15.12.0/src/kwordquiz-15.12.0.tar.xz - - qt5-base-devel - gettext-devel - ki18n-devel - kcrash-devel - sonnet-devel - kconfig-devel - kconfigwidgets-devel - kdoctools-devel - kguiaddons-devel - kiconthemes-devel - kitemviews-devel - knotifyconfig-devel - kio-devel - knewstuff-devel - knotifications-devel - kxmlgui-devel - kdelibs4-support-devel - kdeclarative-devel - kcoreaddons-devel - kwindowsystem-devel - kwidgetsaddons-devel - qt5-phonon-devel - libkeduvocdocument-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - cmake - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/games/kwordquiz/pspec.xml - - - kwordquiz - - qt5-base - qt5-phonon - ki18n - kconfig - kconfigwidgets - kguiaddons - kiconthemes - kitemviews - knotifyconfig - knewstuff - knotifications - kxmlgui - kdelibs4-support - libgcc - kcoreaddons - kwindowsystem - kwidgetsaddons - libkeduvocdocument - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-30 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kpat - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - Patience card game - To play KPatience you need, as the name suggests, patience. For simple games, where the way the game goes depends only upon how the cards fall, your patience might be the only thing you need. - mirrors://kde/stable/applications/15.12.0/src/kpat-15.12.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-phonon-devel - kdoctools-devel - cmake - gettext-devel - kio-devel - kpackage-devel - kitemviews-devel - kinit-devel - kunitconversion-devel - kdelibs4-support-devel - kiconthemes-devel - ktextwidgets-devel - kitemmodels-devel - knotifyconfig-devel - libkdegames-devel - kemoticons-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kconfig-devel - kxmlgui-devel - qt5-svg-devel - kguiaddons-devel - kcompletion-devel - kcoreaddons-devel - kdbusaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - shared-mime-info - extra-cmake-modules - python3 - mesa-devel - kdesignerplugin - - desktop/kde/games/kpat/pspec.xml - - - kpat - - qt5-base - kdelibs4-support - libkdegames - knewstuff - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - kguiaddons - kcompletion - kcoreaddons - kdbusaddons - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-23 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-08-16 - 15.04.3 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkdegames - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - A tool for managing print jobs and printers - Print-Manager. A tool to managing your print jobs and the Printers - mirrors://kde/stable/applications/15.12.0/src/libkdegames-15.12.0.tar.xz - - qt5-base-devel - kdoctools-devel - kdnssd-devel - openal-devel - cmake - extra-cmake-modules - python3 - kdeclarative-devel - knewstuff-devel - kio-devel - ki18n-devel - libgcc - kconfig-devel - kxmlgui-devel - qt5-svg-devel - karchive-devel - kguiaddons-devel - libsndfile-devel - kcompletion-devel - kcoreaddons-devel - kiconthemes-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - mesa-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/games/libkdegames/pspec.xml - - - libkdegames - - qt5-base - kdelibs4-support - kdnssd - kdeclarative - knewstuff - kio - ki18n - libgcc - openal - kconfig - kxmlgui - qt5-svg - karchive - kguiaddons - libsndfile - kcompletion - kcoreaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libkdegames-devel - Shared libraries for KDE games. - - libkdegames - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-08-16 - 15.04.3 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkmahjongg - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.games - Common code, backgrounds and tile sets for games using Mahjongg tiles - Common code, backgrounds and tile sets for games using Mahjongg tiles. - mirrors://kde/stable/applications/15.12.0/src/libkmahjongg-15.12.0.tar.xz - - qt5-base-devel - qt5-svg-devel - extra-cmake-modules - gettext-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcoreaddons-devel - mesa-devel - - desktop/kde/games/libkmahjongg/pspec.xml - - - libkmahjongg - - qt5-base - qt5-svg - libgcc - ki18n - kconfig - kcompletion - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - libkmahjongg-devel - Development files for libkmahjongg - - libkmahjongg - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-18 - 15.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-25 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kshisen - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - Shisen-Sho Mahjongg like tile game - Shisen-Sho is a solitaire-like game played using the standard set of Mahjong tiles. Unlike Mahjong however, Shisen-Sho has only one layer of scrambled tiles. - mirrors://kde/stable/applications/15.08.0/src/kshisen-15.08.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - ki18n-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcoreaddons-devel - kcoreaddons-devel - kdbusaddons-devel - libkdegames-devel - libkmahjongg-devel - knewstuff-devel - kdnssd-devel - kdeclarative-devel - kio-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/games/kshisen/pspec.xml - - - kshisen - - qt5-base - libgcc - ki18n - kconfig - kconfigwidgets - kwidgetsaddons - kxmlgui - kcoreaddons - kdbusaddons - libkdegames - libkmahjongg - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-08-29 - 1.6.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ksysguard - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE system monitor - KDE5 system monitor daemon and service. - mirrors://kde/stable/plasma/5.5.2/ksysguard-5.5.2.tar.xz - - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kitemviews-devel - knewstuff-devel - knotifications-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libksysguard-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - lm_sensors-devel - plasma-framework-devel - qt5-base-devel - docbook-xsl - extra-cmake-modules - qt5-location-devel - qt5-webkit-devel - - desktop/kde/plasma/ksysguard/pspec.xml - - - ksysguard - - icon-theme-hicolor - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdelibs4-support - ki18n - kiconthemes - kio - kitemviews - knewstuff - knotifications - kwidgetsaddons - kwindowsystem - kxmlgui - libgcc - libksysguard - lm_sensors - qt5-base - xdg-utils - qt5-location - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - powerdevil - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE power manager module - KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - mirrors://kde/stable/plasma/5.5.2/powerdevil-5.5.2.tar.xz - - qt5-base-devel - kdoctools-devel - kidletime-devel - libxcb-devel - eudev-devel - kdesignerplugin - kinit-devel - kunitconversion-devel - kitemmodels-devel - kemoticons-devel - docbook-xsl - plasma-workspace-devel - extra-cmake-modules - - desktop/kde/plasma/powerdevil/pspec.xml - - - powerdevil - - qt5-base - kidletime - libgcc - libxcb - eudev - plasma-workspace - kio - kauth - ki18n - solid - kconfig - kxmlgui - kservice - qt5-x11extras - libkscreen - kactivities - kcompletion - kcoreaddons - kdbusaddons - kglobalaccel - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libksysguard - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Task management and system monitoring library - Task management and system monitoring library - mirrors://kde/stable/plasma/5.5.2/libksysguard-5.5.2.tar.xz - - qt5-base-devel - qt5-script-devel - qt5-webkit-devel - kdoctools-devel - libX11-devel - libXres-devel - zlib-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/plasma/libksysguard/pspec.xml - - - libksysguard - - qt5-base - libX11 - libgcc - zlib - libXres - qt5-webkit - qt5-x11extras - kwindowsystem - kconfigwidgets - kwidgetsaddons - kconfig - kauth - kcoreaddons - ki18n - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libksysguard-devel - Development files for libksysguard - - libksysguard - qt5-base-devel - libX11-devel - zlib-devel - libXres-devel - qt5-webkit-devel - qt5-x11extras-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - breeze-gtk - https://quickgit.kde.org/?p=breeze-gtk.git - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.plasma - Breeze widget theme for GTK 2 and 3 - Breeze widget theme for GTK 2 and 3 - http://download.kde.org/stable/plasma/5.5.2/breeze-gtk-5.5.2.tar.xz - - extra-cmake-modules - qt5-base-devel - - desktop/kde/plasma/breeze-gtk/pspec.xml - - - breeze-gtk - Breeze widget theme for GTK 2 and 3 - - libgcc - qt5-base - - - /usr/share/kconf_update - /usr/share/themes - /usr/share/doc - /usr/lib/kconf_update_bin - - - - - 2015-12-26 - 5.5.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - oxygen-icons - http://www.oxygen-icons.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPL - desktop.kde.plasma - KDE Oxygen icons - "The Oxygen Icon Theme - mirrors://kde/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz - - cmake - extra-cmake-modules - - desktop/kde/plasma/oxygen-icons/pspec.xml - - - oxygen-icons - - /usr/share/icons - - - - - 2015-08-01 - 15.04.3 - First Release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - plasma-mediacenter - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.plasma - A mediacenter user interface based on KDE Plasma components - A mediacenter user interface based on KDE Plasma components - mirrors://kde/stable/plasma/5.5.2/plasma-mediacenter-5.5.2.tar.xz - - qt5-base-devel - qt5-multimedia-devel - qt5-multimedia - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - kfilemetadata-devel - kdeclarative-devel - plasma-framework-devel - baloo-devel - extra-cmake-modules - - desktop/kde/plasma/plasma-mediacenter/pspec.xml - - - plasma-mediacenter - - qt5-base - baloo - libgcc - kfilemetadata - kcoreaddons - kactivities - qt5-declarative - kguiaddons - kservice - kconfig - ki18n - kio - taglib - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-18 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwin - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 window manager - KWin is the window manager of the K desktop environment. - mirrors://kde/stable/plasma/5.5.2/kwin-5.5.2.tar.xz - - kactivities-devel - kauth-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdeclarative-devel - kdecorations-devel - kdoctools-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - knewstuff-devel - knotifications-devel - kservice-devel - kwayland-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kidletime-devel - kscreenlocker-devel - libepoxy-devel - libICE-devel - libSM-devel - libX11-devel - libxcb-devel - libXcursor-devel - libXext-devel - libxkbcommon-devel - libXxf86vm-devel - mesa-devel - fontconfig-devel - freetype-devel - xcb-util-wm-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-multimedia-devel - qt5-script-devel - qt5-x11extras-devel - wayland-client - wayland-cursor - wayland-devel - xcb-util-image-devel - xcb-util-keysyms-devel - eudev-devel - libinput-devel - xcb-util-cursor-devel - qt5-multimedia-devel - qt5-multimedia - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kwin/pspec.xml - - - kwin - - kactivities - kauth - kcmutils - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kcrash - kdeclarative - kdecorations - kglobalaccel - ki18n - kiconthemes - kio - knewstuff - knotifications - kservice - kwayland - kwidgetsaddons - kwindowsystem - kxmlgui - kscreenlocker - kidletime - libepoxy - libgcc - libICE - libSM - libX11 - libxcb - libxkbcommon - mesa - plasma-framework - qt5-base - qt5-declarative - qt5-script - qt5-x11extras - wayland-cursor - wayland-client - xcb-util-image - xcb-util-keysyms - eudev - kpackage - libdrm - libinput - xcb-util-cursor - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kwin-devel - Development files for kwin - - kwin - kactivities-devel - kauth-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdeclarative-devel - kdecorations-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - knewstuff-devel - knotifications-devel - kservice-devel - kwayland-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libepoxy-devel - libICE-devel - libSM-devel - libX11-devel - libxcb-devel - libXcursor-devel - libXext-devel - libxkbcommon-devel - libXxf86vm-devel - mesa-devel - fontconfig-devel - freetype-devel - xcb-util-wm-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-script-devel - qt5-x11extras-devel - wayland-devel - xcb-util-image-devel - xcb-util-keysyms-devel - eudev-devel - libinput-devel - xcb-util-cursor-devel - qt5-multimedia-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kinfocenter - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 info center - KDE5 Utility that provides information about a computer system. - mirrors://kde/stable/plasma/5.5.2/kinfocenter-5.5.2.tar.xz - - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libraw1394-devel - libX11-devel - mesa-glu-devel - pciutils-devel - plasma-framework-devel - qt5-base-devel - solid-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kwayland-devel - kdesignerplugin - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kinfocenter/pspec.xml - - - kinfocenter - - kcmutils - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdeclarative - kdelibs4-support - ki18n - kiconthemes - kio - kservice - kwayland - kwidgetsaddons - kxmlgui - libgcc - libraw1394 - libX11 - mesa-glu - mesa - pciutils - qt5-base - qt5-declarative - solid - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/about-distro - - - kcm-about-distrorc - pisilinux.svg - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-11 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - discover - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.plasma - KDE and Plasma resources management GUI - KDE and Plasma resources management GUI - mirrors://kde/stable/plasma/5.5.2/discover-5.5.2.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel - kio-devel - kdeclarative-devel - plasma-framework-devel - knewstuff-devel - extra-cmake-modules - - desktop/kde/plasma/discover/pspec.xml - - - discover - - qt5-base - libgcc - kio - attica - kconfig - kcoreaddons - kdbusaddons - kiconthemes - kdeclarative - kconfigwidgets - knotifications - kwidgetsaddons - ki18n - kxmlgui - qt5-declarative - knewstuff - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-10 - 5.5.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmal.com - - - - - - plasma-workspace - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - The KDE5 Plasma Workspace Components - The KDE5 Plasma Workspace Components - mirrors://kde/stable/plasma/5.5.2/plasma-workspace-5.5.2.tar.xz - - baloo-devel - kactivities-devel - kde-cli-tools - kdelibs4-support-devel - kdesignerplugin - kdesu-devel - kded-devel - kdewebkit-devel - kdoctools-devel - kemoticons-devel - kio-devel - kitemmodels-devel - kjs-devel - kjsembed-devel - knotifyconfig-devel - krunner-devel - ktexteditor-devel - kunitconversion-devel - kscreenlocker-devel - kwayland-devel - kwin-devel - kxmlrpcclient-devel - libdbusmenu-qt-devel - libkscreen-devel - libksysguard-devel - libqalculate-devel - libX11-devel - libXau-devel - libxcb-devel - libXcursor-devel - libXi-devel - libXrender-devel - NetworkManager-devel - networkmanager-qt-devel - pam-devel - prison-qt5-devel - qt5-base-devel - xorg-app-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qt5-location-devel - xcb-util-image-devel - xcb-util-keysyms-devel - xcb-util-renderutil-devel - xorg-util - zlib-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/plasma-workspace/pspec.xml - - - plasma-workspace - - baloo - cln - kactivities - kauth - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kcrash - kdbusaddons - kdeclarative - kde-cli-tools - kdelibs4-support - kdesu - kdewebkit - kglobalaccel - kguiaddons - ki18n - kiconthemes - kidletime - kio - kitemviews - kjobwidgets - kjs - kjsembed - knewstuff - knotifyconfig - kpackage - knotifications - krunner - kservice - ktexteditor - ktextwidgets - kwallet - kwayland - kwidgetsaddons - kwindowsystem - kxmlgui - kxmlrpcclient - libdbusmenu-qt - libgcc - libICE - libkscreen - libksysguard - libqalculate - libSM - libX11 - libXau - libxcb - libXfixes - libXi - libXrender - networkmanager-qt - pam - prison-qt5 - plasma-framework - qt5-base - qt5-declarative - qt5-phonon - qt5-script - qt5-webkit - qt5-x11extras - qt5-location - solid - wayland-client - wayland-server - xcb-util-keysyms - xcb-util - kscreenlocker - xcb-util-image - xorg-app - zlib - - - /etc/pam.d - /etc/env.d - /etc/xdg - /usr/share - /usr/share/applications - /usr/share/locale - /usr/bin - /usr/lib/qt5/plugins - /usr/lib/qt5/qml - /usr/lib - /usr/share/doc - - - kde.pam - kde-np.pam - kde-env.sh - - - - plasma-workspace-devel - Development files for kde5 plasma-workspace - - plasma-workspace - baloo-devel - cln-devel - kactivities-devel - kauth-devel - kbookmarks-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdeclarative-devel - kde-cli-tools - kdelibs4-support-devel - kdesu-devel - kdewebkit - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kidletime-devel - kio-devel - kitemviews-devel - kjobwidgets-devel - kjs-devel - kjsembed-devel - knewstuff - knotifications-devel - knotifyconfig-devel - kpackage-devel - krunner-devel - kservice-devel - ktexteditor-devel - ktextwidgets-devel - kwallet-devel - kwayland-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kxmlrpcclient-devel - kscreenlocker-devel - libdbusmenu-qt-devel - libICE-devel - libkscreen-devel - libksysguard-devel - libqalculate-devel - libSM-devel - libX11-devel - libXau-devel - libxcb-devel - libXfixes-devel - libXi-devel - libXrender-devel - networkmanager-qt-devel - pam-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-phonon-devel - qt5-script-devel - qt5-webkit-devel - qt5-x11extras-devel - qt5-location-devel - solid-devel - wayland-devel - xcb-util-keysyms-devel - zlib-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - drkonqi - KDE crash handler - - kdewebkit - kxmlrpcclient - plasma-workspace - - - /usr/lib/libexec - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-10 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - breeze - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 Plasma artwork - Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.5.2/breeze-5.5.2.tar.xz - - qt5-base-devel - libxcb-devel - qt5-x11extras-devel - frameworkintegration-devel - kdecorations-devel - kcoreaddons-devel - ki18n-devel - kcmutils-devel - kwindowsystem-devel - kconfig-devel - kguiaddons-devel - plasma-framework-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - breeze-gtk - breeze-icons - - desktop/kde/plasma/breeze/pspec.xml - - - breeze-style - - qt5-base - libgcc - kconfig - kguiaddons - kcoreaddons - kconfigwidgets - kwidgetsaddons - qt5-x11extras - libxcb - frameworkintegration - kcmutils - kcoreaddons - ki18n - kwindowsystem - breeze-gtk - breeze-icons - kdecorations - - - /usr/bin - /usr/lib/kconf_update_bin - /usr/lib/qt5 - /usr/share/color-schemes - /usr/share/doc - /usr/share/icons/hicolor/scalable/apps/breeze-settings.svgz - /usr/share/kconf_update - /usr/share/kservices5 - /usr/share/kstyle - /usr/share/locale - /usr/share/plasma - /usr/share/QtCurve - - - - breeze-cursors - - breeze-style - - - /usr/share/icons/breeze_cursors - /usr/share/icons/Breeze_Snow - - - - breeze-wallpapers - - breeze-style - - - /usr/share/wallpapers/Next - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwallet-pam - https://projects.kde.org/kwallet-pam - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KWallet PAM integration. - KWallet PAM integration. - mirrors://kde/stable/plasma/5.5.2/kwallet-pam-5.5.2.tar.xz - - pam-devel - libgcrypt-devel - extra-cmake-modules - - desktop/kde/plasma/kwallet-pam/pspec.xml - - - kwallet-pam - - pam - libgcrypt - - - /lib - /usr/lib/security - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - kmenuedit - http://www.kde.org - - Pisi Linux admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Provides the interface and basic tools for the KDE workspace - Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.5.2/kmenuedit-5.5.2.tar.xz - - qt5-base-devel - kdoctools-devel - kconfig-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - ki18n-devel - kiconthemes-devel - kio-devel - kxmlgui-devel - sonnet-devel - kdesignerplugin - kitemmodels-devel - kinit-devel - kunitconversion-devel - kemoticons-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kmenuedit/pspec.xml - - - kmenuedit - - qt5-base - libgcc - kconfig - kservice - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - kdbusaddons - kdelibs4-support - ki18n - kiconthemes - kio - kxmlgui - sonnet - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-15 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kde-cli-tools - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Additional client tools for KDE applications - Tools based on KDE Frameworks 5 to better interact with the system - mirrors://kde/stable/plasma/5.5.2/kde-cli-tools-5.5.2.tar.xz - - qt5-base-devel - qt5-x11extras-devel - qt5-svg-devel - libX11-devel - kdoctools-devel - kio-devel - kdesu-devel - ki18n-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - kiconthemes-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kconfig-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kde-cli-tools/pspec.xml - - - kde-cli-tools - - qt5-base - qt5-svg - libX11 - libgcc - kio - kdesu - ki18n - kservice - qt5-x11extras - kcompletion - kcoreaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - kcmutils - kconfig - kdelibs4-support - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - System.Package - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ksshaskpass - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - ssh-add helper that uses kwallet and kpassworddialog - ssh-add helper that uses kwallet and kpassworddialog - mirrors://kde/stable/plasma/5.5.2/ksshaskpass-5.5.2.tar.xz - - qt5-base-devel - kdoctools-devel - kcoreaddons-devel - ki18n-devel - kwallet-devel - libxslt - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/ksshaskpass/pspec.xml - - - ksshaskpass - - qt5-base - libgcc - kcoreaddons - kwidgetsaddons - ki18n - kwallet - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - ksshaskpass.sh - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-18 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kde-gtk-config - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - GTK2 and GTK3 Configurator for KDE - Configuration dialog to adapt GTK+ applications appearance to your taste under KDE. - mirrors://kde/stable/plasma/5.5.2/kde-gtk-config-5.5.2.tar.xz - - qt5-base-devel - kio-devel - glib2-devel - ki18n-devel - kcoreaddons-devel - kiconthemes-devel - kwidgetsaddons-devel - kcmutils-devel - karchive-devel - kauth-devel - kconfigwidgets-devel - knewstuff-devel - gtk2-devel - gtk3-devel - at-spi2-core-devel - extra-cmake-modules - - desktop/kde/plasma/kde-gtk-config/pspec.xml - - - kde-gtk-config - - qt5-base - libgcc - glib2 - kio - ki18n - kcoreaddons - kiconthemes - kwidgetsaddons - karchive - knewstuff - kconfigwidgets - gtk2 - gtk3 - - - /usr/share - /etc/xdg/cgc* - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - oxygen - https://projects.kde.org/projects/kde/workspace/oxygen - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPL - desktop.kde.plasma - KDE Oxygen style - KDE Oxygen style - mirrors://kde/stable/plasma/5.5.2/oxygen-5.5.2.tar.xz - - kcmutils-devel - frameworkintegration-devel - kdoctools-devel - cairo-devel - libxcb-devel - gtk3-devel - kdoctools-devel - kdecorations-devel - plasma-workspace-devel - extra-cmake-modules - - desktop/kde/plasma/oxygen/pspec.xml - - - oxygen - - ki18n - libgcc - libxcb - kconfig - qt5-base - kguiaddons - kcompletion - kcoreaddons - kdecorations - kwindowsystem - qt5-x11extras - kconfigwidgets - kwidgetsaddons - frameworkintegration - kcmutils - - - /usr/bin/ - /usr/lib - /usr/share/sounds - /usr/share/icons - /usr/share/locale - /usr/share/plasma - /usr/share/kstyle - /usr/share/kservices5 - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-29 - 5.3.2 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - user-manager - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.plasma - KDE 5 User Manager - User Manager within KDE workspace and applications - mirrors://kde/stable/plasma/5.5.2/user-manager-5.5.2.tar.xz - - qt5-base-devel - accountsservice-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libpwquality-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/user-manager/pspec.xml - - - user-manager - - qt5-base - accountsservice - libgcc - kio - ki18n - kconfig - libpwquality - kcoreaddons - kiconthemes - kconfigwidgets - kdelibs4-support - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-20 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Verison bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-27 - 5.4.0 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - plasma-nm - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Plasma applet written in QML for managing network connections - Plasma applet written in QML for managing network connections - mirrors://kde/stable/plasma/5.5.2/plasma-nm-5.5.2.tar.xz - - qt5-base-devel - libgcc - networkmanager-qt-devel - modemmanager-qt-devel - ModemManager-devel - kdelibs4-support-devel - openconnect-devel - kdoctools-devel - NetworkManager-devel - mobile-broadband-provider-info - extra-cmake-modules - qt5-quick1-devel - qt5-declarative-devel - plasma-framework-devel - kdelibs4-support-devel - kdesignerplugin - kinit-devel - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - qca2-qt5-devel - - desktop/kde/plasma/plasma-nm/pspec.xml - - - plasma-nm - - qt5-base - qca2-qt5 - libgcc - openconnect - kio - networkmanager-qt - modemmanager-qt - ki18n - solid - kconfig - kwallet - kxmlgui - kservice - kitemviews - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libkscreen - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 screen management library - Dynamic display management library for KDE - mirrors://kde/stable/plasma/5.5.2/libkscreen-5.5.2.tar.xz - - qt5-base-devel - qt5-x11extras-devel - libxcb-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-keysyms-devel - libXcursor-devel - libXrandr-devel - extra-cmake-modules - cmake - - desktop/kde/plasma/libkscreen/pspec.xml - - - libkscreen - - qt5-base - libxcb - libgcc - qt5-x11extras - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/dbus-1 - - - - libkscreen-devel - Development files for libkscreen - - libxcb-devel - qt5-base-devel - qt5-x11extras-devel - libkscreen - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - sddm-kcm - https://projects.kde.org/projects/kde/workspace/sddm-kcm - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - app:console - desktop.kde.plasma - KDE5 Config Module for SDDM - KDE5 Config Module for SDDM - mirrors://kde/stable/plasma/5.5.2/sddm-kcm-5.5.2.tar.xz - - kcoreaddons-devel - kdoctools-devel - kconfigwidgets-devel - kauth-devel - libX11-devel - kxmlgui-devel - ki18n-devel - qt5-base-devel - kio-devel - qt5-declarative-devel - qt5-x11extras-devel - kconfig-devel - mesa-devel - docutils - libXcursor-devel - xcb-util-image-devel - extra-cmake-modules - - desktop/kde/plasma/sddm-kcm/pspec.xml - - - sddm-kcm - - kcoreaddons - sddm - libgcc - libX11 - kconfigwidgets - kauth - ki18n - qt5-base - kio - libXcursor - kconfig - qt5-x11extras - qt5-declarative - - - /etc/dbus-1/system.d - /usr/share/dbus-1/system-services - /usr/share/kservices5 - /usr/share/ - /usr/share/polkit-1/actions - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5/plugins - /usr/lib/libexec/kauth - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-pa - https://projects.kde.org/plasma-pa - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Plasma applet for audio volume management using PulseAudio. - Plasma applet for audio volume management using PulseAudio. - mirrors://kde/stable/plasma/5.5.2/plasma-pa-5.5.2.tar.xz - - qt5-base-devel - qt5-quick1-devel - qt5-declarative-devel - kconfigwidgets-devel - kcoreaddons-devel - kdeclarative-devel - plasma-framework-devel - kdoctools-devel - glib2-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/plasma-pa/pspec.xml - - - plasma-pa - - qt5-base - kdeclarative - libgcc - ki18n - kcoreaddons - kglobalaccel - qt5-declarative - pulseaudio-libs - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - khotkeys - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 hotkey daemon - KDE hotkey daemon module allows you to configure custom keyboard shortcuts and mouse gestures. - mirrors://kde/stable/plasma/5.5.2/khotkeys-5.5.2.tar.xz - - libX11-devel - qt5-base-devel - qt5-x11extras-devel - kdoctools-devel - kconfig-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - ktextwidgets-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kauth-devel - kpackage-devel - kdbusaddons-devel - kdelibs4-support-devel - kglobalaccel-devel - ki18n-devel - kio-devel - kxmlgui-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - plasma-framework-devel - plasma-workspace-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/khotkeys/pspec.xml - - - khotkeys - - qt5-base - kconfig - libgcc - libX11 - kservice - qt5-x11extras - kcompletion - kcoreaddons - ktextwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - kdbusaddons - kdelibs4-support - kglobalaccel - ki18n - kio - kxmlgui - plasma-workspace - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-15 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - system-settings - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 system settings manager - System-settings is a control panel for KDE5 Plasma - mirrors://kde/stable/plasma/5.5.2/systemsettings-5.5.2.tar.xz - - qt5-base-devel - kdoctools-devel - kio-devel - kauth-devel - khtml-devel - kcmutils-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/system-settings/pspec.xml - - - system-settings - - qt5-base - kauth - libgcc - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - kcmutils - kconfig - kdbusaddons - khtml - ki18n - kiconthemes - kio - kitemviews - kservice - kwindowsystem - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - system-settings-devel - Development files for system-settings - - qt5-base-devel - kauth-devel - kcompletion-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kconfig-devel - kdbusaddons-devel - khtml-devel - ki18n-devel - kiconthemes - kio-devel - kitemviews-devel - kservice-devel - kwindowsystem-devel - kxmlgui-devel - system-settings - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kgamma5 - https://projects.kde.org/kgamma5 - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Adjust your monitor's gamma settings. - Adjust your monitor's gamma settings. - mirrors://kde/stable/plasma/5.5.2/kgamma5-5.5.2.tar.xz - - qt5-base-devel - kdoctools-devel - qt5-x11extras-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libXxf86vm-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kgamma5/pspec.xml - - - kgamma5 - - qt5-base - kconfig - libgcc - libX11 - ki18n - kcoreaddons - kconfigwidgets - kdelibs4-support - libXxf86vm - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - kscreenlocker - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Library and components for secure lock screen architecture. - Library and components for secure lock screen architecture. - mirrors://kde/stable/plasma/5.5.2/kscreenlocker-5.5.2.tar.xz - - qt5-base-devel - qt5-declarative-devel - kglobalaccel-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - kdoctools-devel - kidletime-devel - kdeclarative-devel - kcmutils-devel - kwayland-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/plasma/kscreenlocker/pspec.xml - - - kscreenlocker - - qt5-base - libgcc - ki18n - kcrash - libX11 - libxcb - kconfig - kxmlgui - kpackage - kwayland - kidletime - kcoreaddons - kdeclarative - kglobalaccel - kwindowsystem - qt5-x11extras - kconfigwidgets - knotifications - wayland-client - wayland-server - qt5-declarative - kdelibs4-support - xcb-util-keysyms - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kscreenlocker-devel - Development files for kscreenlocker - - qt5-base-devel - qt5-declarative-devel - kglobalaccel-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - kdoctools-devel - kidletime-devel - kdeclarative-devel - kcmutils-devel - kwayland-devel - plasma-framework-devel - kscreenlocker - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-10 - 5.5.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - kdecorations - https://projects.kde.org/projects/kde/workspace/kdecoration - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - Plugin based library to create window decorations - Plugin based library to create window decorations - mirrors://kde/stable/plasma/5.5.2/kdecoration-5.5.2.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/plasma/kdecorations/pspec.xml - - - kdecorations - - qt5-base - libgcc - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdecorations-devel - Development files for kdecorations - - qt5-base-devel - kdecorations - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwayland - http://www.kde.org - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - Qt-style Client and Server library wrapper for the Wayland libraries - Qt-style Client and Server library wrapper for the Wayland libraries - mirrors://kde/stable/plasma/5.5.2/kwayland-5.5.2.tar.xz - - qt5-base-devel - wayland-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/kwayland/pspec.xml - - - kwayland - - libgcc - qt5-base - mesa - wayland-client - wayland-server - - - /etc/xdg - /usr/lib - /usr/share/config - /usr/share/doc - - - - kwayland-devel - - qt5-base-devel - wayland-devel - mesa-devel - kwayland - - - /usr/lib/cmake - /usr/include - /usr/lib/pkgconfig - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdeplasma-addons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Additional client tools for KDE applications - Additional client tools for KDE applications - mirrors://kde/stable/plasma/5.5.2/kdeplasma-addons-5.5.2.tar.xz - - qt5-base-devel - libxcb-devel - xcb-util-image-devel - glib2-devel - scim-devel - ibus-devel - kdoctools-devel - knewstuff-devel - kemoticons-devel - kitemmodels-devel - kross-devel - kinit-devel - kunitconversion-devel - kcmutils-devel - kdesignerplugin - krunner-devel - kdelibs4-support-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/plasma/kdeplasma-addons/pspec.xml - - - kdeplasma-addons - - qt5-base - plasma-framework - libgcc - libxcb - xcb-util-image - glib2 - knewstuff - krunner - kio - ki18n - kross - sonnet - kconfig - kxmlgui - karchive - kpackage - kservice - qt5-x11extras - qt5-declarative - kcompletion - kcoreaddons - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kunitconversion - kdelibs4-support - ibus - scim-libs - xcb-util-keysyms - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-desktop - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 plasma workspace - This package contains the basic packages for a Plasma workspace. - mirrors://kde/stable/plasma/5.5.2/plasma-desktop-5.5.2.tar.xz - - qt5-base-devel - boost-devel - kdoctools-devel - kio-devel - kcmutils-devel - knewstuff-devel - kpeople-devel - kdbusaddons-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kwin-devel - libX11-devel - libXft-devel - libxkbfile-devel - kded-devel - libxcb-devel - freetype-devel - libusb-compat-devel - xorg-server-devel - xorg-input-evdev-devel - xorg-input-synaptics-devel - pulseaudio-libs-devel - fontconfig-devel - plasma-workspace-devel - system-settings-devel - xorg-app-devel - xkeyboard-config - baloo-devel - libcanberra-devel - docbook-xsl - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-odbc - kdesignerplugin - extra-cmake-modules - - desktop/kde/plasma/plasma-desktop/pspec.xml - - - plasma-desktop - - baloo - fontconfig - freetype - kactivities - karchive - kauth - kbookmarks - kcmutils - kcodecs - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdeclarative - kdelibs4-support - kemoticons - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kitemmodels - kitemviews - kjobwidgets - knewstuff - knotifications - knotifyconfig - kparts - kpeople - krunner - kservice - kwallet - kwidgetsaddons - kwindowsystem - kxmlgui - libgcc - libusb-compat - libX11 - libxcb - libXcursor - libXfixes - libXft - libXi - libxkbfile - plasma-framework - plasma-workspace - libcanberra - pulseaudio-libs - xkeyboard-config - qt5-base - qt5-declarative - qt5-phonon - qt5-svg - qt5-x11extras - solid - sonnet - qt5-sql-sqlite - system-settings - xcb-util-image - oxygen-icons - oxygen-fonts - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-31 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - sddm - https://github.com/sddm/sddm - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - QML based X11 display manager - KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - https://github.com/sddm/sddm/releases/download/v0.13.0/sddm-0.13.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-declarative-devel - libxcb-devel - libxkbfile-devel - pam-devel - extra-cmake-modules - docutils - - - sddm-0.11.0-consolekit.patch - sddm-respect-user-flags.patch - - desktop/kde/plasma/sddm/pspec.xml - - - sddm - - qt5-base - qt5-declarative - pam - libgcc - libxcb - - - /etc - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - System.Service - System.Package - - - sddm.conf - sddm - - - - - 2015-11-18 - 0.13.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-07 - 0.12 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 0.11 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-09-20 - 0.11 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - plasma-workspace-wallpapers - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - The KDE Plasma Workspace Components - The KDE Plasma Workspace Components - mirrors://kde/stable/plasma/5.5.2/plasma-workspace-wallpapers-5.5.2.tar.xz - - qt5-base - extra-cmake-modules - - desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml - - - plasma-workspace-wallpapers - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-20 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-25 - 5.3.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - polkit-kde-authentication-agent-1 - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - The KDE Plasma Workspace Components - The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop. - mirrors://kde/stable/plasma/5.5.2/polkit-kde-agent-1-5.5.2.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - knotifications-devel - polkit-qt-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml - - - polkit-kde-authentication-agent-1 - - qt5-base - libgcc - kcrash - kcoreaddons - polkit-qt - ki18n - kdbusaddons - kiconthemes - kwindowsystem - knotifications - kwidgetsaddons - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-31 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwrited - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 daemon listening for wall and write messages - KDE5 daemon listening for wall and write messages - mirrors://kde/stable/plasma/5.5.2/kwrited-5.5.2.tar.xz - - qt5-base-devel - ki18n-devel - kdoctools-devel - kcoreaddons-devel - knotifications-devel - kpty-devel - kdelibs4-support-devel - kdbusaddons-devel - extra-cmake-modules - - desktop/kde/plasma/kwrited/pspec.xml - - - kwrited - - qt5-base - kpty - libgcc - kcoreaddons - knotifications - kdbusaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwayland-integration - http://www.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - Provides integration plugins for various KDE frameworks for the wayland windowing system - Provides integration plugins for various KDE frameworks for the wayland windowing system - mirrors://kde/stable/plasma/5.5.2/kwayland-integration-5.5.2.tar.xz - - kwayland-devel - qt5-base-devel - kwindowsystem-devel - kidletime-devel - extra-cmake-modules - - desktop/kde/plasma/kwayland-integration/pspec.xml - - - kwayland-integration - - kwayland - kidletime - kwindowsystem - libgcc - qt5-base - - - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - First Release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - milou - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDedicated search application built on top of Baloo - Dedicated search application built on top of Baloo - mirrors://kde/stable/plasma/5.5.2/milou-5.5.2.tar.xz - - qt5-base-devel - qt5-declarative - kdoctools-devel - kdeclarative-devel - ki18n-devel - krunner-devel - plasma-framework-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - extra-cmake-modules - - desktop/kde/plasma/milou/pspec.xml - - - milou - - qt5-base - qt5-declarative - krunner - libgcc - kconfig - kservice - kcoreaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kscreen - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Provides the interface and basic tools for the KDE workspace - Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.5.2/kscreen-5.5.2.tar.xz - - qt5-base-devel - qt5-graphicaleffects - qt5-declarative-devel - kglobalaccel-devel - libkscreen-devel - kconfig-devel - kdoctools-devel - kxmlgui-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/kscreen/pspec.xml - - - kscreen - - qt5-base - libgcc - libkscreen - qt5-declarative - kconfig - kcoreaddons - kglobalaccel - kconfigwidgets - kwidgetsaddons - kdbusaddons - ki18n - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - khelpcenter - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE Help Center - KDE help center utility to read help documentation about various KDE applications. - mirrors://kde/stable/plasma/5.5.2/khelpcenter-5.5.2.tar.xz - - qt5-base-devel - libdbusmenu-qt-devel - kinit-devel - kcmutils-devel - khtml-devel - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - kdesignerplugin - kdelibs4-support-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/khelpcenter/pspec.xml - - - khelpcenter - - qt5-base - kio - libgcc - khtml - ki18n - kparts - kcodecs - kconfig - kxmlgui - kcmutils - kservice - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - bluedevil - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE 5 Bluetooth Stack - Integrate the Bluetooth technology within KDE workspace and applications - mirrors://kde/stable/plasma/5.5.2/bluedevil-5.5.2.tar.xz - - qt5-base-devel - qt5-declarative - kded-devel - plasma-framework-devel - bluez-qt-devel - kded-devel - kio-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - kiconthemes-devel - kconfigwidgets-devel - kwindowsystem-devel - knotifications-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/plasma/bluedevil/pspec.xml - - - bluedevil - - qt5-base - libgcc - bluez-qt - kded - kio - ki18n - kconfig - qt5-declarative - kcoreaddons - kdbusaddons - kiconthemes - kconfigwidgets - knotifications - kwindowsystem - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-23 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-sdk - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - Applications useful for Plasma development - Applications useful for Plasma development - mirrors://kde/stable/plasma/5.5.2/plasma-sdk-5.5.2.tar.xz - - qt5-base-devel - qt5-webkit-devel - qt5-svg-devel - karchive-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdeclarative-devel - ki18n-devel - kiconthemes-devel - kio-devel - knewstuff-devel - kparts-devel - plasma-framework-devel - kservice-devel - ktexteditor-devel - kwidgetsaddons-devel - kxmlgui-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/plasma/plasma-sdk/pspec.xml - - - plasma-sdk - - qt5-base - ktexteditor - plasma-framework - kio - libgcc - ki18n - kconfig - karchive - kpackage - kservice - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kdeclarative - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-22 - 5.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-16 - 5.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - icon-theme-hicolor - http://icon-theme.freedesktop.org/wiki/HicolorTheme - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - desktop.lookandfeel - Default icon theme - Temel simge teması - Hicolor icon theme contains the basic directories and files needed for icon theme support. - Hicolor, simge teması desteği için ihtiyaç duyulan temel dizin ve dosyalarıni içeren temel bir simge temasıdır. - http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.tar.gz - desktop/lookandfeel/icon-theme-hicolor/pspec.xml - - - icon-theme-hicolor - - /usr/share/doc - /usr/share/icons - - - - - 2013-08-26 - 0.12 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-10-24 - 0.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - iconcan - http://www.pisilinux.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv3 - app:gui - desktop.lookandfeel - Icon etiketi için görseller - Icon etiketi için görseller - Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. - Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. - lang-tr - http://source.pisilinux.org/1.0/iconcan-1.0.1.tar.xz - desktop/lookandfeel/iconcan/pspec.xml - - - iconcan - - /usr/share/pixmaps - - - - - 2015-02-04 - 1.0.1 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-02-04 - 1.0.0 - First Release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - artwork-pisilinux-release - http://www.pisilinux.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - public-domain - CCPL-Attribution-ShareAlike-3.0 - CCPL-Attribution-3.0 - data - desktop.lookandfeel - Artwork for Pisi Linux releases - Pisi Linux sürümleri için sanatsal içerik - This package contains additional artwork (like wallpapers) intended for Pisi Linux releases. - Bu paket Pisi Linux sürümleri için hazırlanmış sanatsal çalışmalar içerir. - http://source.pisilinux.org/1.0/artwork-pisilinux-release-1.2.tar.xz - http://source.pisilinux.org/1.0/sample-files-20130323.tar.xz - desktop/lookandfeel/artwork-pisilinux-release/pspec.xml - - - artwork-pisilinux-release - - /usr/share/wallpapers - - - - example-content - Example files for Pisi Linux - Pisi Linux ile beraber dağıtılan örnek dosyalar - - /usr/share/example-content - /etc/X11/Xsession.d - - - 35-example-content.sh - - - - - 2015-03-04 - 1.2 - Add new wallpapers. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-04 - 0.2 - Add new wallpapers. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-07 - 0.2 - Add new wallpapers, example contents. - Serdar Soytetir - kaptann@pisilinux.org - - - 2013-09-18 - 1.0 - add more izmir themes. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-09-18 - 1.0 - add izmir theme. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-27 - 1.0 - Gönüllü çalışmalar eklendi. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-26 - 1.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-03-22 - 1.0 - bump for pisi Linux - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-01-31 - 2013.1 - First release - Demiray Muhterem - bilgi@bilgegunluk.com - - - - - - gtk2-engines-murrine - http://cimitan.com/murrine/project/murrine - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.lookandfeel - GTK+ Murrine theme engine - GTK+ Murrine tema motoru - The Murrine engine is a cairo-based GTK+ theming tool. It's very fast compared to clearlooks-cairo. Murrine includes animations and a unique style. - Murrine motoru, Cairo tabanlı GTK+ tema aracıdır. Clearlooks temasına göre çok daha hızlıdır. Aynı zamanda canlandırmalar, benzersiz biçemler içerir. - mirrors://gnome/murrine/0.98/murrine-0.98.2.tar.xz - - gtk2-devel - glib2-devel - cairo-devel - pango-devel - pixman-devel - gdk-pixbuf-devel - intltool - - desktop/lookandfeel/gtk2-engines-murrine/pspec.xml - - - gtk2-engines-murrine - - gtk2 - glib2 - cairo - pango - pixman - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/gtk-engines - - - - - 2014-02-07 - 0.98.2 - Remove gtk2 runtime dep to avoid cyclic deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-17 - 0.98.2 - Release bump - Erdinç Gültekin - erdinc@pisilinux.org - - - 2012-06-10 - 0.98.2 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gtk-theme-mediterranean - http://gnome-look.org/content/show.php/MediterraneanNight+Series?content=156782 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - desktop.lookandfeel - Great themes for GTK2 and GTK3 - GTK2 ve GTK3 için güzel temalar - Themes for GTK2 and GTK3. - GTK2 ve GTK3 için yazılmış tema paketleri. - https://dl.dropboxusercontent.com/u/80497678/MediterraneanNight-2.03.tar.gz - desktop/lookandfeel/gtk-theme-mediterranean/pspec.xml - - - gtk-theme-mediterranean - - gtk2-engines-murrine - gdk-pixbuf - - - /usr/share/themes/MediterraneanDark - /usr/share/themes/MediterraneanWhite - /usr/share/themes/MediterraneanLightDarkest - - - - gtk-theme-mediterranean-others - - gtk2-engines-murrine - gdk-pixbuf - - - /usr/share/themes - - - - - 2014-02-06 - 2.03 - Add MediterraneanLightDarkest to main package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-26 - 2.03 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-10-05 - 2.0.3 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - librsvg - http://librsvg.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.gnome2 - Scalable Vector Graphics (SVG) rendering library - Scalable Vector Graphics (SVG) kitaplığı - librsvg est un composant utilisé au sein de logiciels pour gérer les graphismes vectoriels au format SVG. - librsvg is a component used within software applications to enable support for SVG-format scalable vector graphics. - Scalable Vector Graphics (SVG) kitaplığı - mirrors://gnome/librsvg/2.40/librsvg-2.40.9.tar.xz - - libcroco-devel - gtk2-devel - pango-devel - vala-devel - python-devel - gdk-pixbuf-devel - gtk-doc - gobject-introspection-devel - - desktop/gnome2/librsvg/pspec.xml - - - librsvg - - glib2 - libxml2 - cairo - pango - libcroco - gdk-pixbuf - - - /etc/gtk-2.0 - /usr/bin - /usr/lib - /usr/share/man/man1 - /usr/share/pixmaps - /usr/share/themes - /usr/share/vala - /usr/share/gtk-doc - /usr/share/gir-1.0/Rsvg-2.0.gir - /usr/share/doc - - - - librsvg-devel - Development files for librsvg - librsvg için geliştirme dosyaları - - librsvg - gdk-pixbuf-devel - cairo-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - librsvg-32bit - 32-bit shared libraries for librsvg - emul32 - emul32 - - atk-32bit - gtk2-32bit - glib2-32bit - cairo-32bit - pango-32bit - libpng-32bit - libxml2-32bit - freetype-32bit - libcroco-32bit - gdk-pixbuf-32bit - fontconfig-32bit - - - librsvg - glibc-32bit - glib2-32bit - cairo-32bit - pango-32bit - libxml2-32bit - libcroco-32bit - gdk-pixbuf-32bit - - - /usr/lib32 - - - - - 2015-08-10 - 2.40.9 - Version bump. - PisiLinux Community - ayhanyalcinsoy@pisilinux.org - - - 2014-05-17 - 2.40.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-10-14 - 2.39.0 - Rebuild icu4c. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-10 - 2.39.0 - Rebuild and install using correct loaders. - Serdar Soytetir - kaptan@pisilinux.org - - 2013-08-23 - 2.39.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-31 - 2.36.4 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-17 - 2.36.4 - Rebuild with new pisi release - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-23 - 2.36.4 - Rebuild. - PisiLinux Community - admins@pisilinux.org + 0.2.0 + Release bump + Osman Erkan + osman.erkan@pisilinux.org - 2013-01-23 - 2.36.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2013-05-20 + 0.2.0 + Configure parameter fixed + Ertan Güven + ertan@pisilinux.org - 2012-11-06 - 2.36.3 + 2012-12-08 + 0.2.0 First release - Marcin Bojara + marcin bojara marcin@pisilinux.org - orbit2 - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - library - desktop.gnome2 - High-performance CORBA ORB - Yüksek performanslı CORBA ORB - Orbit2 allows to communication between two programs objects. - Orbit2 iki program nesneleri arasındaki iletişimi sağlar. - mirrors://gnome/ORBit2/2.14/ORBit2-2.14.19.tar.bz2 - - libIDL-devel - grep - glib2-devel - gtk-doc - - - fedora/ORBit2-allow-deprecated.patch - - desktop/gnome2/orbit2/pspec.xml - - - orbit2 - - libIDL - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/idl - - - - orbit2-devel - Development files for orbit2 - orbit2 için geliştirme dosyaları - - orbit2 - libIDL-devel - glib2-devel - - - /usr/bin/orbit2-config - /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig - /usr/share/aclocal - - - - orbit2-docs - ORBit2 reference documents - Orbit2 referans dökümanları - data:doc - - /usr/share/gtk-doc - - - - - 2014-05-21 - 2.14.19 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-10-29 - 2.14.19 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-26 - 2.14.19 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-12-22 - 2.14.19 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - glibmm - http://gtkmm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.gnome2 - C++ interface for glib2 - glib2 kitaplığı için C++ programlama dili arayüzü - Glibmm est l'interface officielle C++ pour la librairie IHM populaire GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. - Glibmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks and a comprehensive set of widgets that are easily extensible via inheritance. - Glibmm, ünlü GUI kitaplığı GTK+ için resmi C++ arayüzüdür. Önemli özelliklerinin arasında tip bağımsız çağırmalar ve miras ile genişleyebilen uyumlu parçacıklar vardır. - mirrors://gnome/glibmm/2.44/glibmm-2.44.0.tar.xz - - libsigc++-devel - glib2-devel - pkgconfig - - desktop/gnome2/glibmm/pspec.xml - - - glibmm - - glib2 - libgcc - libsigc++ - - - /usr/lib - /usr/share/doc - - - - glibmm-devel - Development files for glibmm - glibmm için geliştirme dosyaları - - glibmm - glib2-devel - libsigc++-devel - - - /usr/include - /usr/lib/glibmm-* - /usr/lib/giomm-* - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/glibmm-* - - - - - 2015-07-21 - 2.44.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-18 - 2.40.0 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-12-23 - 2.38.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-10-29 - 2.36.2 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-14 - 2.36.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-22 - 2.34.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - unicode-ucd - http://www.unicode.org/ucd - - PisiLinux Community - admins@pisilinux.org - - MIT - desktop.font - Unicode Character Database - Unicode Karakter Veritabanı - The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data. It also includes data files containing test data for conformance to several important Unicode algorithms. - Unicode karakter veritabanı, unicode karakter özelliklerini ve bilgilerini içeren birkaç veri dosyasından oluşur. - http://www.unicode.org/Public/zipped/6.3.0/UCD.zip - desktop/font/unicode-ucd/pspec.xml - - - unicode-ucd - - /usr/share/unicode/ucd - /usr/share/doc - - - copyright.html - - - - - 2014-01-27 - 6.3.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - oxygen-fonts - https://projects.kde.org/projects/playground/artwork/oxygen-fonts - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - OFL - data:font - desktop.font - Oxygen font family - Oxygen yazı tipi ailesi - Oxygen font family is a desktop / GUI font family for integrated use with KDE. - Oxygen, KDE için bir masaüstü ve grafik kullanıcı arayüzü yazı tipi ailesidir. - http://download.kde.org/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz - - cmake - extra-cmake-modules - fontconfig-devel - qt5-base-devel - fontforge - - desktop/font/oxygen-fonts/pspec.xml - - - oxygen-fonts - - /usr/share/fonts - /usr/share/doc - /usr/lib - - - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-06 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-12 - 5.4.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-08-27 - 5.4.0 - Version bump - Vedat Demir - vedat@pisilinux.org - - - 2014-03-02 - 0.4 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gnu-gs-fonts-std - http://www.ghostscript.com - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - GPLv2 - data - desktop.font - Ghostscript standard fonts - Ghostscript standard yazıtipleri - Ces fontes ont été construites à partir des fontes URW distribuées avec ghostcript. Il n'y AUCUN changemen dans leur partie latine. - gnu-gs-fonts-std contains fonts that were made from the free URW fonts distributed with ghostcript. There are no changes in the latin part of them. - Bu yazıtipleri ghostscript ile birlikte dağıtılan özgür URW yazıtiplerinden türetilmiştir. Latin bölümünde hiçbir değişiklik yapılmamıştır. - mirrors://sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz - desktop/font/gnu-gs-fonts-std/pspec.xml - - - gnu-gs-fonts-std - - /usr/share/fonts/default/ghostscript - /usr/share/doc - - - - - 2014-02-23 - 8.11 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2012-09-20 - 8.11 - First release - Sezai Yeniay - sezaiyeniay@pisilinux.org - - - - - - fontforge - http://fontforge.sourceforge.net/ + openjpeg + http://www.openjpeg.org/ PisiLinux Community admins@pisilinux.org BSD + library app:console - app:gui - desktop.font - Font editor and converter - Postscript yazı tipi düzenleyici ve çevirici - FontForge is a font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you convert one format to another. FontForge also has support for many macintosh font formats. - FontForge kendi postscript, truetype, opentype, cid-keyed, multi-master, cff, svg, bitmap (bdf, FON, NFNT) fontlarınızı yaratmanıza veya hali hazırda varolan fontlarınızı düzenlemenize olanak tanıyan bir font düzenleyicidir. FontForge Macintosh font formatlarının çoğunu da desteklemektedir. - fontforge - https://github.com/fontforge/fontforge/releases/download/20150824/fontforge-20150824.tar.gz - http://fontforge.org/cidmaps.tgz + multimedia.graphics + JPEG2000 decoding library + JPEG2000 çözme kütüphanesi + Biblioteka implementująca kodek formatu JPEG 2000 + openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). + http://downloads.sourceforge.net/project/openjpeg.mirror/1.5.2/openjpeg-1.5.2.tar.gz - libjpeg-turbo-devel tiff-devel - cairo-devel - pango-devel + doxygen libpng-devel - libXft-devel - libXi-devel - giflib-devel - libspiro-devel - xdg-utils - fontconfig-devel - python-devel - libxml2-devel - readline-devel - libtool-ltdl - desktop/font/fontforge/pspec.xml + + openjpeg-20070717svn-mqc-optimize.patch + + multimedia/graphics/openjpeg/pspec.xml - fontforge + openjpeg - zlib - glib2 - libX11 libpng - python - libxml2 - freetype - readline - libtool-ltdl tiff - cairo - libXi - pango - libXft - giflib - libspiro - libjpeg-turbo + /usr/bin + /usr/share/pkgconfig/ + /usr/share/openjpeg-1.5 + /usr/share/man/man1 /usr/lib /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/pixmaps - /usr/share/fontforge - /usr/share/applications - /usr/share/locale - fontforge-devel - Development files for fontforge - fontforge için geliştirme dosyaları + openjpeg-devel + Development files for openjpeg + openjpeg için geliştirme dosyaları + Pliki nagłówkowe do openjpeg - tiff-devel - pango-devel - cairo-devel - fontforge + openjpeg - /usr/include /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/man/man3 + + + + openjpeg-32bit + 32-bit shared libraries for openjpeg + emul32 + + glibc-32bit + libpng-32bit + + + openjpeg + glibc-32bit + + + /usr/lib32 - - 2015-08-28 - 2.0.20150824 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - 2014-03-01 - 2.0.20140101 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org + 2014-05-22 + 1.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2014-02-01 - 2.0.20140101 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-03-09 + 1.5.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org - 2013-08-02 - 20120731 - Rebuild for RC. - Serdar Soytetir - kaptan@pisilinux.org + 2013-07-28 + 1.5.1 + Fix pc file for emul32 + Marcin Bojara + marcin@pisilinux.org - 2012-10-25 - 20120731 + 2012-10-18 + 1.5.1 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - harfbuzz - http://www.freedesktop.org/software/harfbuzz + babl + http://gegl.org/babl + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + multimedia.graphics + A dynamic, any to any, pixel format translation library + Dinamik piksel biçimi dönüştürme kütüphanesi + babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations. + babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir. + http://download.gimp.org/pub/babl/0.1/babl-0.1.12.tar.bz2 + + gobject-introspection-devel + + multimedia/graphics/babl/pspec.xml + + + babl + + /usr/lib + /usr/share/doc + + + + babl-devel + Development files for babl + babl için geliştirme dosyaları + + babl + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2015-02-07 + 0.1.12 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-19 + 0.1.10 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-18 + 0.1.10 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-28 + 0.1.10 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + jbigkit + http://www.cl.cam.ac.uk/~mgk25/jbigkit/ PisiLinux Community admins@pisilinux.org GPLv2 library - desktop.font - OpenType text shaping engine - The Harfbuzz package contains an OpenType text shaping engine. - http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-0.9.40.tar.bz2 - - cairo-devel - glib2-devel - icu4c-devel - graphite2-devel - freetype-devel - expat-devel - - desktop/font/harfbuzz/pspec.xml + app:console + multimedia.graphics + A portable library of compression and decompression functions + Taşınabilir bir sıkıştırma kitaplığı + JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents. + jbigkit, faks sayfaları ve taranmış belgeler gibi yüksek çözünürlüklü görüntüler için, yüksek performanslı bir sıkıştırma kitaplığıdır. + http://www.cl.cam.ac.uk/~mgk25/download/jbigkit-2.0.tar.gz + + jbigkit-2.0-shared.diff + + multimedia/graphics/jbigkit/pspec.xml - harfbuzz + jbigkit + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/lib + + + + jbigkit-devel + Development files for jbigkit + jbigkit için geliştirme dosyaları - cairo - glib2 - icu4c - libgcc - freetype - graphite2 + jbigkit + /usr/include + + + + + 2014-05-19 + 2.0 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-27 + 2.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libraw + http://www.libraw.org/ + + Yücel KILIÇ + yucel.kilic@linux.org.tr + + LGPLv2.1 + CDDL + library + multimedia.graphics + Raw image decoder + LibRaw is a library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others). + http://www.libraw.org/data/LibRaw-0.16.2.tar.gz + + libgomp + lcms2-devel + jasper-devel + libjpeg-turbo-devel + + multimedia/graphics/libraw/pspec.xml + + + libraw + + libgomp + libgcc + lcms2 + jasper + libjpeg-turbo + + + /usr/bin /usr/lib /usr/share/doc - /usr/bin - /usr/share/gir-1.0 - /usr/share/gtk-doc - harfbuzz-devel + libraw-devel + Development files for libraw + libraw için geliştirme dosyaları - glib2-devel - icu4c-devel - harfbuzz + libraw + lcms2-devel + jasper-devel + libjpeg-turbo-devel - /usr/include/harfbuzz - /usr/lib/pkgconfig - /usr/lib32/pkgconfig + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-13 + 0.16.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-16 + 0.16.1 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 0.16.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-08 + 0.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 0.15.2 + Release bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 0.15.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 0.14.7 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-12-31 + 0.14.7 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + lcms + http://www.littlecms.com/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.graphics + Moteur de gestion de couleurs léger et optimisé pour la vitesse. + A lightweight, speed optimized color management engine + Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru + LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. + mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz + + swig + tiff-devel + libjpeg-turbo-devel + + + CVE-2009-0793.patch + + multimedia/graphics/lcms/pspec.xml + + + lcms + + tiff + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/lcms + /usr/share/doc + /usr/share/man - harfbuzz-32bit - 32-bit shared libraries for harfbuzz + lcms-devel + lcms için geliştirme dosyaları + + lcms + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + lcms-32bit + 32-bit shared libraries for lcms + lcms için 32-bit paylaşımlı kitaplıklar emul32 emul32 - icu4c-32bit - freetype-32bit - fontconfig-32bit - glibc-32bit - cairo-32bit + tiff-32bit + libjpeg-turbo-32bit - cairo-32bit - glib2-32bit + lcms glibc-32bit - icu4c-32bit - freetype-32bit /usr/lib32 - - 2015-04-06 - 0.9.40 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-01-24 - 0.9.38 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-12 - 0.9.37 - Version Bump + rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-08-15 - 0.9.35 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-07-11 - 0.9.30 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-09 - 0.9.26 - Better harfbuz with icu, cairo. Fix configure option format. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-17 - 0.9.26 + + 2014-05-19 + 1.19 Release bump. Alihan Öztürk alihan@pisilinux.org - - 2014-02-26 - 0.9.26 - Delete Unused Deps. - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-25 - 0.9.26 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-22 - 0.9.26 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 0.9.19 - Rebuild for icu4c - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-26 - 0.9.19 - Version bump. Fix build emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-30 - 0.9.18 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-01-22 - 0.9.9 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - 2012-12-24 - 0.9.9 + 2011-05-04 + 1.19 First release - Marcin Bojara - marcin@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - fontconfig - http://fontconfig.org + tiff + http://www.remotesensing.org/libtiff/ PisiLinux Community admins@pisilinux.org - MIT + as-is library - desktop.font - A library for configuring and customizing font access - Yazıtiplerinin yapılandırılması ve özelleştirilmesi için bir kitaplık - Biblioteka do konfigurowania pospolitych czcionek - obsługa plików binarnych - Fontconfig est un librairie conçue pour fournir à tout le système accès à la possibilité de configurer, personnaliser et appliquer des fontes. - Fontconfig is a library designed to provide system-wide font configuration, customization and application access. - Fontconfig sistem genelindeki programlar için yazıtiplerinin ayarlanmasını, özelleştirilmesini ve programlar tarafından erişilmesini sağlar. - Fontconfig jest biblioteką do konfigurowania i dostosowywania do własnych potrzeb czcionek, które nie zależą od systemu X Window. Została zaprojektowana, aby znajdować czcionki w systemie i dobierać je do wymagań określanych przez aplikacje. - http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.1.tar.bz2 + multimedia.graphics + Library for manipulation of TIFF (Tag Image File Format) images + TIFF (Tag Image File Format) türündeki resimleri işlemeye aracılık eden kütüphane + Ce logiciel fournit le support pour le format "Tag Image File Format" (TIFF), un format très employé pour stocker des informations d'image. + This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. + Bu kütüphane TIFF (Tag Image File Format) resim biçimi desteği sağlar. Bu biçim resim bilgisi saklamak için pek çok yerde kullanılır. + Este software facilita soporte para el formato de imagen etiqueteado (TIFF), un formato para almacenamiento de imágenes de uso común. + Biblioteka do manipulacji plikami w formacie TIFF. + ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.3.tar.gz - freetype-devel - expat-devel + libjpeg-turbo-devel + jbigkit-devel - - prefer_dejavu.patch - anymetrics_urw.patch - use_legacy_lcdfilter_on_small_monospace.patch - add_hinting_and_antialiasing_to_proper_fonts.patch - fontconfig-2.8.0-sleep-less.patch - deprecated-user-conf.patch - - desktop/font/fontconfig/pspec.xml + multimedia/graphics/tiff/pspec.xml - fontconfig + tiff - freetype - expat + libjpeg-turbo + jbigkit - /etc/fonts /usr/bin /usr/lib - /usr/share/doc - /var/cache/fontconfig - /usr/share - - System.Package - System.PackageHandler - - fontconfig-devel - Development files for fontconfig - fontconfig için geliştirme dosyaları - Pliki nagłówkowe fontconfig + tiff-devel + Developement files for tiff + tiff için geliştirme dosyaları - fontconfig - freetype-devel - expat-devel + tiff /usr/include /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/share/doc/fontconfig/fontconfig-devel.txt + + + + tiff-docs + Documentation for tiff + tiff için belgelendirme dosyaları + + tiff + + + /usr/share/doc /usr/share/man - fontconfig-32bit - 32-bit shared libraries for fontconfig - fontconfig için 32-bit paylaşımlı kitaplıklar + tiff-32bit + 32-bit shared libraries for tiff + tiff için 32-bit paylaşımlı kitaplıklar emul32 emul32 - expat-32bit - freetype-32bit - glibc-32bit + libjpeg-turbo-32bit - fontconfig - expat-32bit - freetype-32bit + tiff + libjpeg-turbo-32bit + glibc-32bit + libgcc + + + /usr/lib32 + + + + + 2014-05-19 + 4.0.3 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-08 + 4.0.3 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-26 + 4.0.3 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-29 + 4.0.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + hugin + http://hugin.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + library + multimedia.graphics + A panoramic photo stitcher + Panoramik görüntü birleştirici + hugin can be used to stitch multiple images together. The resulting image can span 360 degrees. Another common use is the creation of very high resolution pictures by combining multiple images. + hugin bir çok görüntüyü harmanlamak için kullanılabilecek bir araçtır. Bu sayede, 360 derecelik görüntüler oluşturulabilir. Bir diğer kullanım alanı ise birden fazla görüntüyü birleştirerek çok yüksek çözünürlüklü görüntüler üretmektir. + hugin + mirrors://sourceforge/hugin/hugin/hugin-2015.0/hugin-2015.0.0.tar.bz2 + + swig + cmake + glew-devel + tiff-devel + zlib-devel + vigra-devel + boost-devel + wxGTK-devel + exiv2-devel + fftw3-devel + flann-devel + libXmu-devel + libpng-devel + python-devel + lapack-devel + sqlite-devel + openexr-devel + freeglut-devel + libpano13-devel + libjpeg-turbo-devel + + multimedia/graphics/hugin/pspec.xml + + + hugin + + blas + glew + mesa + tiff + boost + fftw3 + vigra + wxGTK + lapack + libgcc + python + sqlite + enblend + ilmbase + libgomp + freeglut + mesa-glu + libpano13 + exiv2-libs + openexr-libs + perl-Image-ExifTool + + + /usr/lib/ + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/hugin + /usr/share/pixmaps + /usr/share/appdata + /usr/share/applications + /usr/share/locale + + + hugin-libs + hugin-tools + + + + hugin-docs + Help documents for hugin + hugin için yardım belgeleri + + /usr/share/hugin/xrc/data/help* + + + + + 2015-11-06 + 2015.0.0 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-12-29 + 2014.0.0 + rebuild for boost 1.57.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-10 + 2014.0.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-30 + 2013.0.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-11 + 201300 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 201300_beta1 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-08 + 201300_beta1 + Error Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-08 + 201300_beta1 + vbump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-28 + 2012.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + lcms2 + http://www.littlecms.com + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + multimedia.graphics + A color management library. + Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms. + http://sourceforge.net/projects/lcms/files/lcms/2.6/lcms2-2.6.tar.gz + + libjpeg-turbo-devel + tiff-devel + + multimedia/graphics/lcms2/pspec.xml + + + lcms2 + + libjpeg-turbo + tiff + + + /usr/bin + /usr/lib + /usr/share/lcms/ + /usr/share/man + /usr/share/doc + + + + lcms2-devel + Development files for lcms2 + + lcms2 + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + lcms2-32bit + 32-bit shared libraries for lcms2 + emul32 + + tiff-32bit + libjpeg-turbo-32bit + + + lcms2 glibc-32bit @@ -108932,51 +113064,30 @@ Jabber and others - - 2014-05-17 - 2.11.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-29 - 2.11.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-01 - 2.11.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2013-09-05 - 2.10.93 - Add missing method to pakhandler.py - Marcin Bojara - marcin@pisilinux.org + 2014-05-15 + 2.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-07-06 - 2.10.93 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2014-01-29 + 2.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-12-06 - 2.10.92 - First release + 2013-07-02 + 2.5 + Version bump Marcin Bojara marcin@pisilinux.org - 2012-12-06 - 2.10.2 + 2012-10-31 + 2.3 First release Marcin Bojara marcin@pisilinux.org @@ -108985,4683 +113096,777 @@ Jabber and others - fltk - http://www.fltk.org + ladspa-sdk + http://www.ladspa.org PisiLinux Community admins@pisilinux.org LGPLv2.1 library - desktop.toolkit - FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit - FLTK, platformlar arası C++ kullanıcı arayüzü için bir araç takımı - FLTK fournit les fonctionnalités IHM sans fioritures et supporte les graphiques 3D via OpenGL et son émulation GLUT intégrée. FLTK est conçue pour être petite et suffisamment modulaire pour être associée statiquement, tout en restant parfaitement utilisable en tant que librairie partagée. FLTK inclus également un excellent constructeur d'IHM appelé FLUID pouvant être utilisé pour créer des applications en quelques minutes. - FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes. - FLTK sistemi yormadan modern bir arayüzün işlevselliğini sağlar. OpenGL ve kendi içinde bulunan GLUT emülasyonu sayesinde 3B görüntü de sağlayabilir. FLTK statik kitaplık olabilecek kadar küçük ve modülerdir, fakat paylaşılmış kitaplık olarak da çalışabilir. Ayrıca FLUID adlı grafik arayüz tasarım aracı sayesinde çok kısa sürede FLTK uygulamaları geliştirilebilir. - FLTK provee una funcionalidad de un GUI moderno sin demasiado complejidad y soporta gráficos 3D via OpenGL y su emulación GLUT incluido. FLTK fue diseñado para ser pequeño y modular para enlace estático, pero funciona bien como librería compartida. FLTK también incluye un entorno de desarrollo UI llamado FLUID con el cual se puede crear aplicaciones en minutos. - ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/fltk-1.3.3-source.tar.gz - - zlib-devel - libX11-devel - libgcc - libpng-devel - mesa-devel - libXft-devel - libXext-devel - mesa-glu-devel - libXfixes-devel - libXcursor-devel - fontconfig-devel - libXinerama-devel - libjpeg-turbo-devel - + multimedia.plugin + The Linux Audio Developer's Simple Plugin API + Ses geliştiricisinin temel eklenti kütüphanesi + La Linux Audio Developer's Simple Plugin API (LADSPA - L'API de plugin (greffon) simple pour développeurs linux audio) tente de donner aux programmeurs la possibilité d'écrire en C/C++ des processeurs audio simples sous forme de plugin' et les lier dynamiquement à différentes applications hôte. + The Linux Audio Developer's Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin' audio processors in C/C++ and link them dynamically against a range of host applications + ladspa, Linux üzerinde ses uygulamaları geliştiren programcıların temel ses işleme eklentileri geliştirmelerini ve bu eklentileri bir seri ses uygulaması ile birlikte kullanabilmelerini sağlar. + El Linux Audio Developer's Simple Plugin API (LADSPA) intenta facilitar a programadores la tarea de escribir procesadores simples de audio en C/C++ y enlazarlos dinámicamente con una gama de aplicaciones host. + http://pkgs.fedoraproject.org/repo/pkgs/ladspa/ladspa_sdk_1.13.tgz/671be3e1021d0722cadc7fb27054628e/ladspa_sdk_1.13.tgz - tigervnc.patch - fltk-config-dynlibs.patch + ladspa-sdk-1.12-gcc4.patch + properbuild.patch + asneeded.patch + notests.patch - desktop/toolkit/fltk/pspec.xml + multimedia/plugin/ladspa-sdk/pspec.xml - fltk - - zlib - libX11 - libgcc - libpng - mesa - libXft - libXext - mesa-glu - libXfixes - libXcursor - fontconfig - libXinerama - libjpeg-turbo - + ladspa-sdk - /usr/lib - /usr/share/doc - - - - fltk-devel - Development files and utilities for FLTK - FLTK için geliştirme dosyaları ve yardımcı uygulamalar - app:console - app:gui - - fltk - libX11 - libgcc - libpng - - - /etc/env.d - /usr/share/man /usr/bin - /usr/include - /usr/share/icons - /usr/share/mimelnk - /usr/share/doc/*/html - /usr/share/applications + /usr/lib + /etc + /usr/share/doc/ladspa-sdk - 99fltk + 60ladspa + + ladspa-sdk-devel + Development files for ladspa-sdk + ladspa-sdk için geliştirme dosyaları + + ladspa-sdk + + + /usr/include + /usr/share/doc/ladspa-sdk/html + + - - 2015-07-24 - 1.3.3 - emul32bit build disabled. - Ertuğrul Erata - ertugrulerata@gmail.com + + 2014-05-25 + 1.13 + Rebuild + Alihan Öztürk + alihan@pisilinux.org - - 2015-04-26 - 1.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-26 - 1.3.2 - Rebuild for gcc 4.9 - Osman Erkan - osman.erkan@pisilinux.org - - + 2014-01-29 - 1.3.2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-03 - 1.3.2 - Version bump. - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-08-26 - 1.3.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-11 - 1.3.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - qtermwidget5 - https://github.com/qterminal/qtermwidget - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - app:gui - desktop.toolkit - Terminal widget for Qt5 - Qt tabanlı uygulamalar için basit bir terminal modulü - A simple terminal widget for using with Qt5 based applications - https://github.com/qterminal/qtermwidget/releases/download/0.6.0/qtermwidget-0.6.0.tar.xz - - cmake - libgcc - qt5-base-devel - - desktop/toolkit/qtermwidget5/pspec.xml - - - qtermwidget5 - Development files for qtermwidget5 - - libgcc - qt5-base - - - /usr/bin/consoleq - /usr/lib - /usr/share - /usr/share/doc - - - - qtermwidget5-devel - Development files for qtermwidget5 - qtermwidget5 için geliştirme dosyaları - - qt5-base-devel - qtermwidget5 - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-13 - 0.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-quickcontrols - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Reusable Qt Quick based UI controls to create classic desktop-style user interfaces - Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri - Reusable Qt Quick based UI controls to create classic desktop-style user interfaces - Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquickcontrols-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - mesa-devel - - desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml - - - qt5-quickcontrols - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-doc - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Documentation) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) - A cross-platform application and UI framework (Documentation) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) - assistant5 - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdoc-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-sql-sqlite - qt5-assistant - - desktop/toolkit/qt5/qt5-doc/pspec.xml - - - qt5-doc - - qt5-base - qt5-script - qt5-svg - qt5-xmlpatterns - qt5-assistant - qt5-declarative - - - /usr/share/licenses - /usr/share/doc/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-02 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-serialport - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to hardware and virtual serial ports - Donanım ve sanal seri portlara erişim sağlar - Provides access to hardware and virtual serial ports - Donanım ve sanal seri portlara erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtserialport-opensource-src-5.5.1.tar.xz - - qt5-base-devel - eudev-devel - - desktop/toolkit/qt5/qt5-serialport/pspec.xml - - - qt5-serialport - - qt5-base - eudev - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-serialport-devel - qt5-serialport için geliştirme dosyaları - - qt5-base-devel - qt5-serialport - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-gstreamer - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.toolkit.qt5 - Qt5 bindings for GStreamer - QtGStreamer is a set of libraries providing C++ bindings for GStreamer with a Qt-style API, plus some helper classes and elements for integrating GStreamer better in Qt applications.The goal of this module is to allow easy use of GStreamer for applications targetting MeeGo Mobile or the KDE desktop. - http://gstreamer.freedesktop.org/src/qt-gstreamer/qt-gstreamer-1.2.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - glib2-devel - gobject-introspection-devel - cmake - boost-devel - doxygen - gst-plugins-good - gstreamer-next-devel - gst-plugins-base-next-devel - mesa-devel - - desktop/toolkit/qt5/qt5-gstreamer/pspec.xml - - - qt5-gstreamer - - qt5-base - qt5-declarative - qt5-quick1 - gstreamer-next - gst-plugins-base-next - mesa - glib2 - libgcc - - - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - qt5-gstreamer-devel - Development files for qt5-gstreamer - - qt5-gstreamer - glib2-devel - qt5-base-devel - gstreamer-next-devel - qt5-declarative-devel - gst-plugins-base-next-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-10-11 - 1.2.0 - First Release - Stefan Gronewold (groni) + 1.13 + Rebuild + Stefan Gronewold(groni) groni@pisilinux.org - - - - - qt5-configuration - https://github.com/hawaii-desktop/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Settings API with change notifications for Qt - Settings API with change notifications for Qt - Settings API with change notifications for Qt - Settings API with change notifications for Qt - https://github.com/hawaii-desktop/qtconfiguration/archive/v0.3.1.tar.gz - - glib2-devel - dconf-devel - qt5-declarative-devel - cmake - qt5-base-devel - - desktop/toolkit/qt5/qt5-configuration/pspec.xml - - - qt5-configuration - - libgcc - qt5-declarative - glib2 - dconf - qt5-base - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-configuration-devel - - qt5-configuration - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-10-16 - 0.3.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-11 - 0.3.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - 2015-09-11 - 0.2.1 + 2010-10-12 + 1.13 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - qt5-connectivity - http://qt.digia.com/ + libchromaprint + http://acoustid.org/chromaprint - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + PisiLinux Community + admins@pisilinux.org - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to Bluetooth hardware - Bluetooth donanımlarına bağlantı sağlar - Provides access to Bluetooth hardware - Bluetooth donanımlarına bağlantı sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtconnectivity-opensource-src-5.5.1.tar.xz + LGPLv2.1 + app:console + multimedia.plugin + Chromaprint is the core component of the Acoustid project. + Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. + https://bitbucket.org/acoustid/chromaprint/downloads/chromaprint-1.2.tar.gz - qt5-base-devel - qt5-declarative-devel - bluez-libs-devel + ffmpeg-devel - desktop/toolkit/qt5/qt5-connectivity/pspec.xml + multimedia/plugin/libchromaprint/pspec.xml - qt5-connectivity + libchromaprint - qt5-base - qt5-declarative - bluez-libs - libgcc + ffmpeg - /usr/bin - /usr/lib - /usr/share/licenses - /usr/lib/qt5 - /usr/lib/qt5/bin/ - - - - qt5-connectivity-devel - qt5-connectivity için geliştirme dosyaları - - qt5-connectivity - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-02 - 5.4.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-graphicaleffects - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Graphical effects for use with Qt Quick 2 - Qt Quick2 ile kullanım için grafiksel efektler - Graphical effects for use with Qt Quick 2 - Qt Quick2 ile kullanım için grafiksel efektler - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtgraphicaleffects-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-assistant - qt5-sql-sqlite - - desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml - - - qt5-graphicaleffects - - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-tools - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Development Tools, QtHelp) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). - A cross-platform application and UI framework (Development Tools, QtHelp) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttools-opensource-src-5.5.1.tar.xz - - mesa-devel - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-tools/pspec.xml - - - qt5-assistant - - libgcc - qt5-base - - - /usr/lib/qt5/bin/assistant - /usr/lib/qt5/bin/qhelpconverter - /usr/lib/qt5/bin/qhelpgenerator - /usr/bin/assistant-qt5 - /usr/bin/qhelpgenerator-qt5 - /usr/bin/qhelpconverter-qt5 - /usr/lib/cmake/Qt5Help - /usr/lib/libQt5Help* - /usr/lib/libQt5CLucene* - /usr/lib/qt5/mkspecs/modules/qt_lib_clucene_private.pri - /usr/lib/qt5/mkspecs/modules/qt_lib_help* - /usr/share/applications/assistant5.desktop - /usr/share/qt5/translations/assistant_tr.qm - /usr/share/icons/hicolor/128x128/apps/assistant.png - /usr/share/icons/hicolor/32x32/apps/assistant.png - /usr/share/pixmaps/assistant5.png - /usr/lib/qt5/bin/qcollectiongenerator - /usr/bin/qcollectiongenerator-qt5 - - - qt5-tools - - - qt5-tools - - - assistant_tr.qm - assistant.desktop - assistant.png - - - - qt5-assistant-devel - - qt5-base-devel - qt5-assistant - - - /usr/include/qt5/QtHelp - /usr/include/qt5/QtCLucene - /usr/lib/pkgconfig/Qt5Help.pc - /usr/lib/pkgconfig/Qt5CLucene.pc - - - qt5-tools-devel - - - qt5-tools-devel - - - - qt5-designer - - libgcc - qt5-base - qt5-declarative - - - /usr/lib/qt5/bin/designer - /usr/lib/qt5/bin/qtdiag - /usr/lib/qt5/bin/qtpaths - /usr/lib/qt5/bin/pixeltool - /usr/bin/designer-qt5 - /usr/bin/qtdiag-qt5 - /usr/bin/qtpaths* - /usr/bin/pixeltool-qt5 - /usr/lib/qt5/bin/qtplugininfo - /usr/bin/qtplugininfo-qt5 - /usr/lib/cmake/Qt5Designer - /usr/lib/cmake/Qt5UiTools - /usr/lib/cmake/Qt5UiPlugin - /usr/lib/qt5/plugins/designer - /usr/share/applications/designer5.desktop - /usr/share/qt5/translations/designer_tr.qm - /usr/share/icons/hicolor/128x128/apps/QtProject-designer.png - /usr/share/pixmaps/designer5.png - /usr/lib/libQt5Designer* - /usr/lib/libQt5UiTools* - /usr/lib/qt5/mkspecs/modules/qt_lib_designer* - /usr/lib/qt5/mkspecs/modules/qt_lib_uitools* - /usr/lib/qt5/mkspecs/modules/qt_lib_uiplugin.pri - - - qt5-tools - - - qt5-tools - - - designer.desktop - designer_tr.qm - designer.png - - - - qt5-designer-devel - - qt5-base-devel - qt5-designer - - - /usr/include/qt5/QtDesigner* - /usr/include/qt5/QtUiTools - /usr/include/qt5/QtUiPlugin - /usr/lib/pkgconfig/Qt5Designer* - /usr/lib/pkgconfig/Qt5UiTools.pc - - - qt5-tools-devel - - - qt5-tools-devel - - - - qt5-linguist - - libgcc - qt5-base - - - /usr/lib/qt5/bin/linguist - /usr/lib/qt5/bin/lconvert - /usr/lib/qt5/bin/lrelease - /usr/lib/qt5/bin/lupdate - /usr/bin/lrelease-qt5 - /usr/bin/linguist-qt5 - /usr/bin/lconvert-qt5 - /usr/bin/lupdate-qt5 - /usr/lib/cmake/Qt5LinguistTools - /usr/share/applications/linguist5.desktop - /usr/share/icons/hicolor/128x128/apps/linguist.png - /usr/share/icons/hicolor/16x16/apps/linguist.png - /usr/share/icons/hicolor/32x32/apps/linguist.png - /usr/share/icons/hicolor/48x48/apps/linguist.png - /usr/share/icons/hicolor/64x64/apps/linguist.png - /usr/share/pixmaps/linguist5.png - /usr/share/qt5/phrasebooks - /usr/share/qt5/translations/linguist_tr.qm - - - qt5-tools - qt5-tools-devel - - - qt5-tools - qt5-tools-devel - - - linguist.desktop - linguist.png - linguist_tr.qm - - - - qt5-qdbusviewer - - libgcc - qt5-base - - - /usr/lib/qt5/bin/qdbusviewer - /usr/lib/qt5/bin/qdbus - /usr/bin/qdbusviewer-qt5 - /usr/bin/qdbus-qt5 - /usr/bin/qdbus - /usr/share/applications/qdbusviewer5.desktop - /usr/share/icons/hicolor/128x128/apps/qdbusviewer.png - /usr/share/icons/hicolor/32x32/apps/qdbusviewer.png - /usr/share/pixmaps/qdbusviewer5.png - - - qt5-tools - qt5-tools-devel - - - qt5-tools - qt5-tools-devel - - - qdbusviewer.desktop - assistant.png - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-declarative - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for QML and JavaScript languages - QML ve JavaScript dilleri için sınıflar - Classes for QML and JavaScript languages - QML ve JavaScript dilleri için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdeclarative-opensource-src-5.5.1.tar.xz - - qt5-base-devel - libxkbcommon-devel - mesa-devel - qt5-xmlpatterns-devel - - desktop/toolkit/qt5/qt5-declarative/pspec.xml - - - qt5-declarative - - libgcc - qt5-base - mesa - qt5-xmlpatterns - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin - /usr/bin/ - - - - qt5-declarative-devel - qt5-declarative için geliştirme dosyaları - - qt5-base-devel - qt5-declarative - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-12-20 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-02 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-quick1 - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. - Qt4 uyumluluğu için Qt Declarative sunar - Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices. - Qt4 uyumluluğu için Qt Declarative sunar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquick1-opensource-src-5.5.1.tar.xz - - mesa-devel - qt5-base-devel - qt5-script-devel - - desktop/toolkit/qt5/qt5-quick1/pspec.xml - - - qt5-quick1 - - mesa - qt5-base - qt5-xmlpatterns - qt5-script - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-quick1-devel - Development file for qt5-quick1 - Development file for qt5-quick1 - - qt5-base-devel - qt5-script-devel - qt5-quick1 - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-multimedia - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for audio, video, radio and camera functionality - Ses, video, radyo ve kamera işlevsellikleri için sınıflar - Classes for audio, video, radio and camera functionality - Ses, video, radyo ve kamera işlevsellikleri için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtmultimedia-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - pulseaudio-libs-devel - gstreamer-devel - gst-plugins-base-devel - openal-devel - mesa-devel - - desktop/toolkit/qt5/qt5-multimedia/pspec.xml - - - qt5-multimedia - - libgcc - mesa - openal - alsa-lib - qt5-base - gstreamer - pulseaudio-libs - qt5-declarative - gst-plugins-base - glib2 - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-multimedia-devel - qt5-multimedia için geliştirme dosyaları - - qt5-multimedia - qt5-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-11 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - polkit-qt - http://www.kde.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.toolkit.qt5 - A library that allows developers to access PolicyKit API with a nice Qt-style API - A library that allows developers to access PolicyKit API with a nice Qt-style API - http://download.kde.org/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2 - - qt5-base-devel - glib2-devel - polkit-devel - mesa-devel - cmake - - - systembus-usage.patch - - desktop/toolkit/qt5/polkit-qt/pspec.xml - - - polkit-qt - - qt5-base - glib2 - polkit - libgcc - - - /usr/share/doc + /usr/share /usr/lib - polkit-qt-devel + libchromaprint-devel + libchromaprint için geliştirme dosyaları - polkit-qt - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/polkit-qt5-1 - - - - - 2015-10-16 - 0.112 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-08-01 - 0.112 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-webkit - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for a WebKit2 based implementation and a new QML API - WebKit2 tabanlı uygulama ve yeni QML API için sınıflar - Classes for a WebKit2 based implementation and a new QML API - WebKit2 tabanlı uygulama ve yeni QML API için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebkit-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-sensors-devel - qt5-location-devel - qt5-declarative-devel - qt5-multimedia-devel - mesa-devel - libXtst-devel - gst-plugins-base-devel - libXcomposite-devel - icu4c-devel - libjpeg-turbo-devel - fontconfig-devel - glib2-devel - dbus-devel - ruby-devel - gstreamer-devel - gstreamer-next-devel - libpng-devel - libpcre-devel - eudev-devel - webp-devel - zlib-devel - libxslt-devel - libxml2-devel - libXcomposite-devel - libX11-devel - libXrender-devel - sqlite-devel - perl-Digest-MD5 - perl-Text-ParseWords - gperf - bison - flex - qt5-phonon-devel - - desktop/toolkit/qt5/qt5-webkit/pspec.xml - - - qt5-webkit - - qt5-base - mesa - webp - zlib - glib2 - icu4c - libX11 - libgcc - libpng - sqlite - libxml2 - libxslt - libXrender - qt5-sensors - libXcomposite - libjpeg-turbo - gstreamer - gst-plugins-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5/plugins - /usr/lib/qt5/ - /usr/lib/qt5/bin/ - /usr/bin - /usr/share/doc - - - - qt5-webkit-devel - qt5-webkit için geliştirme dosyaları - - qt5-webkit - qt5-base-devel - mesa-devel - webp-devel - zlib-devel - glib2-devel - icu4c-devel - libX11-devel - libpng-devel - sqlite-devel - libxml2-devel - libxslt-devel - libXrender-devel - qt5-sensors-devel - libXcomposite-devel - libjpeg-turbo-devel - gstreamer-devel - gst-plugins-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - - 2015-10-28 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-translations - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Translations) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) - A cross-platform application and UI framework (Translations) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttranslations-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-linguist - - desktop/toolkit/qt5/qt5-translations/pspec.xml - - - qt5-translations - - qt5-base - - - /usr/share/qt5 - /usr/share/licenses/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-imageformats - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Plugins for additional image formats: TIFF, MNG, TGA, WBMP - İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP - Plugins for additional image formats: TIFF, MNG, TGA, WBMP - İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtimageformats-opensource-src-5.5.1.tar.xz - - qt5-base-devel - jasper-devel - libmng-devel - libjpeg-turbo-devel - zlib-devel - tiff-devel - webp-devel - - desktop/toolkit/qt5/qt5-imageformats/pspec.xml - - - qt5-imageformats - - qt5-base - libgcc - libmng - tiff - webp - jasper - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - - 2015-10-16 - 5.5.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-enginio - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A Backend-as-a-Service solution to ease the backend development for connected and data-driven application - Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü - A Backend-as-a-Service solution to ease the backend development for connected and data-driven application - Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtenginio-opensource-src-5.5.1.tar.xz - - libgcc - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-enginio/pspec.xml - - - qt5-enginio - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5/ - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin/ - - - - qt5-enginio-devel - qt5-enginio için geliştirme dosyaları - - qt5-base-devel - qt5-enginio - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-base - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Cross platform application and UI framework - Qt5 araç takımı, sürüm 5 - Qt est une boîte à outils graphique multi-plateforme. - Cross platform application and UI development framework - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır. - Qt es un toolkit para GUI multiplataforma. - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtbase-opensource-src-5.5.1.tar.xz - - at-spi2-core-devel - cups-devel - dbus-devel - zlib-devel - glib2-devel - libpcre-devel - desktop-file-utils - fontconfig-devel - gperf - gtk2-devel - harfbuzz-devel - icon-theme-hicolor - leveldb-devel - firebird-superserver - libjpeg-turbo-devel - mariadb-lib - libxcb-devel - libXcomposite-devel - libxkbcommon-devel - libxslt - mesa-devel - libmtdev-devel - nss-devel - pciutils-devel - postgresql-server - python-devel - DirectFB-devel - sqlite-devel - unixODBC-devel - xcb-proto - xcb-util-devel - xcb-util-image-devel - xcb-util-keysyms-devel - xcb-util-wm-devel - tiff-devel - libdrm-devel - libpng-devel - eudev-devel - libSM-devel - libICE-devel - libX11-devel - libXext-devel - firebird-devel - unixODBC-devel - libXrandr-devel - libXrender-devel - libXi-devel - xcb-util-renderutil-devel - openssl-devel - freetype-devel - pulseaudio-libs-devel - - - mkspecs.patch - - desktop/toolkit/qt5/qt5-base/pspec.xml - - - qt5-base - - libpcre - libgcc - cups - dbus - gtk2 - mesa - zlib - glib2 - icu4c - libSM - libXi - pango - libICE - libX11 - libdrm - libpng - libxcb - eudev - DirectFB - openssl - freetype - harfbuzz - libmtdev - fontconfig - libXrender - xcb-util-wm - libxkbcommon - libjpeg-turbo - xcb-util-image - xcb-util-keysyms - xcb-util-renderutil - - - /usr/lib - /usr/lib/qt5/imports - /usr/lib/qt5/qml - /usr/lib/qt5/plugins - /usr/share/qt5/translations - /usr/lib/qt5/bin - /usr/bin - /usr/share/doc - /usr/lib/qt5/mkspecs - - - - qt5-base-devel - Development files for Qt 5 - Qt5 için geliştirme dosyaları - Development files for Qt 5 - - qt5-base - mesa-devel + libchromaprint /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/lib/*.prl - - - - qt5-sql-mysql - Qt5'in SQL sınıfları için MySQL sürücüsü - - qt5-base - libgcc - mariadb-lib - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlmysql.so - - - - qt5-sql-postgresql - Qt5'in SQL sınıfları için PostgreSQL sürücüsü - - qt5-base - libgcc - postgresql-lib - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlpsql.so - - - - qt5-sql-sqlite - Qt5'in SQL sınıfları için SQLite sürücüsü - - qt5-base - libgcc - sqlite - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlite.so - - - - qt5-sql-odbc - Qt5'in SQL sınıfları için ODBC sürücüsü - - qt5-base - libgcc - unixODBC - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlodbc.so - - - - qt5-base-32bit - 32-bit shared libraries for qt5 - emul32 - emul32 - - cups-32bit - dbus-32bit - gtk2-32bit - mesa-32bit - zlib-32bit - glib2-32bit - glibc-32bit - icu4c-32bit - pango-32bit - libX11-32bit - libdrm-32bit - libpng-32bit - sqlite-32bit - eudev-32bit - openssl-32bit - freetype-32bit - harfbuzz-32bit - libmtdev-32bit - fontconfig-32bit - libXrender-32bit - libjpeg-turbo-32bit - - - libgcc - libpcre - qt5-base-devel - cups-32bit - dbus-32bit - gtk2-32bit - mesa-32bit - zlib-32bit - glib2-32bit - glibc-32bit - icu4c-32bit - pango-32bit - libX11-32bit - libdrm-32bit - libpng-32bit - sqlite-32bit - eudev-32bit - openssl-32bit - freetype-32bit - harfbuzz-32bit - libmtdev-32bit - fontconfig-32bit - libXrender-32bit - libjpeg-turbo-32bit - - - /usr/lib32 - - - - - 2015-10-16 - 5.5.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-07-19 - 5.4.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-23 - 5.4.1 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-xmlpatterns - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Support for XPath, XQuery, XSLT and XML schema validation - XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar - Support for XPath, XQuery, XSLT and XML schema validation - XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtxmlpatterns-opensource-src-5.5.1.tar.xz - - qt5-base-devel - - desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml - - - qt5-xmlpatterns - - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-xmlpatterns-devel - qt5-xmlpatterns için geliştirme dosyaları - - qt5-xmlpatterns - qt5-base-devel - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-x11extras - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides platform-specific APIs for X11 - X11 için platforma özgü API'ler sağlar - Provides platform-specific APIs for X11 - X11 için platforma özgü API'ler sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtx11extras-opensource-src-5.5.1.tar.xz - - qt5-base-devel - mesa-devel - - desktop/toolkit/qt5/qt5-x11extras/pspec.xml - - - qt5-x11extras - - qt5-base - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-x11extras-devel - qt5-x11extras için geliştirme dosyaları - - qt5-x11extras - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-websockets - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides WebSocket communication compliant with RFC 6455 - RFC 6455 ile yumuşak WebSocket iletişimi sağlar - Provides WebSocket communication compliant with RFC 6455 - RFC 6455 ile yumuşak WebSocket iletişimi sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebsockets-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-websockets/pspec.xml - - - qt5-websockets - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - - - - qt5-websockets-devel - qt5-websockets için geliştirme dosyaları - - qt5-websockets - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-webchannel - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients - HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar - Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients - HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebchannel-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-webchannel/pspec.xml - - - qt5-webchannel - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-webchannel-devel - qt5-webchannel için geliştirme dosyaları - - qt5-webchannel - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-sensors - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to sensor hardware and motion gesture recognition - Donanım ve hareket algılama sensörüne erişim sağlar - Provides access to sensor hardware and motion gesture recognition - Donanım ve hareket algılama sensörüne erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsensors-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-sensors/pspec.xml - - - qt5-sensors - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-sensors-devel - qt5-sensors için geliştirme dosyaları - - qt5-sensors - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-location - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to position, satellite and area monitoring classes - Konum, uydu ve alan izleme sınıflarına erişim sağlar - Provides access to position, satellite and area monitoring classes - Konum, uydu ve alan izleme sınıflarına erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtlocation-opensource-src-5.5.1.tar.xz - - geoclue-devel - glib2-devel - mesa-devel - qt5-base-devel - qt5-webkit-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-location/pspec.xml - - - qt5-location - - qt5-base - glib2 - libgcc - geoclue - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-location-devel - qt5-location için geliştirme dosyaları - - qt5-location - qt5-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-accountsservice - https://github.com/hawaii-desktop/qt-accountsservice-addon - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Qt5 - AccountService addon - Qt5 - AccountService addon - https://github.com/hawaii-desktop/qtaccountsservice/archive/v0.6.0.tar.gz - - qt5-base-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/toolkit/qt5/qt5-accountsservice/pspec.xml - - - qt5-accountsservice - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-accountsservice-devel - - qt5-base - qt5-accountsservice - - - /usr/include - - - - - 2015-09-11 - 0.6.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-11 - 0.1.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-script - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility - Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar - Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility - Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar. - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtscript-opensource-src-5.5.1.tar.xz - - qt5-base-devel - mesa-devel - libgcc - - desktop/toolkit/qt5/qt5-script/pspec.xml - - - qt5-script - - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-script-devel - qt5-script için geliştirme dosyaları - - qt5-base-devel - qt5-script - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-svg - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for displaying the contents of SVG files - SVG dosyalarının içeriğini görüntüleme için sınıflar - Classes for displaying the contents of SVG files - SVG dosyalarının içeriğini görüntüleme için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsvg-opensource-src-5.5.1.tar.xz - - mesa-devel - qt5-base-devel - zlib-devel - - desktop/toolkit/qt5/qt5-svg/pspec.xml - - - qt5-svg - - libgcc - qt5-base - zlib - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ - - - - qt5-svg-devel - Development files for qt5-svg - qt5-svg için geliştirme dosyaları - - qt5-base-devel - qt5-svg - - - /usr/include/qt5/ - /usr/lib/pkgconfig - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-11 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qtcreator - http://qt-project.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2 - app:gui - programming.environment - Lightweight, cross-platform integrated development environment - Hafif, çapraz platform tümleşik geliştirme ortamı - Lightweight, cross-platform integrated development environment - Hafif, çapraz platform tümleşik geliştirme ortamı - http://download.qt.io/official_releases/qtcreator/3.5/3.5.1/qt-creator-opensource-src-3.5.1.tar.gz - - libgcc - libX11-devel - cmake - git - mesa-devel - openssh - qt5-base-devel - qt5-declarative-devel - qt5-linguist - qt5-quick1-devel - qt5-quickcontrols - qt5-svg-devel - qt5-xmlpatterns - qt5-webkit-devel - qt5-x11extras-devel - qt5-assistant-devel - qt5-designer-devel - qt5-script-devel - valgrind - llvm-clang-devel - llvm - - desktop/toolkit/qtcreator/pspec.xml - - - qtcreator - Lightweight, cross-platform integrated development environment - - libX11 - libgcc - qt5-svg - qt5-base - qt5-quick1 - qt5-script - qt5-webkit - qt5-designer - qt5-assistant - qt5-x11extras - qt5-declarative - - - /usr/bin - /usr/lib/qtcreator - /usr/share/applications/qtcreator.desktop - /usr/share/licenses - /usr/share/qtcreator - /usr/share/doc - /usr/share/icons - /etc - - - qtcreator.desktop - qtcreator.sh - 80-qtcreator.conf - - - - - 2015-12-30 - 3.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-06 - 3.4.2 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qscintilla2 - http://www.riverbankcomputing.co.uk/qscintilla/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - GPLv3 - library - desktop.toolkit - Qt port of Scintilla - QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. - Port do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. - QScintilla2 is a port to Qt4 of Neil Hodgson's Scintilla C++ editor class. - QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. - QScintilla jest portem do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. - mirrors://sourceforge/pyqt/QScintilla2/QScintilla-2.9.1/QScintilla-gpl-2.9.1.tar.gz - - python-qt5-devel - python3-qt5-devel - python-devel - python3-devel - python3-sip - python-sip - qt5-base-devel - qt5-designer-devel - chrpath - qt5-script-devel - qt5-xmlpatterns-devel - mesa-devel - - - configure.py.patch - libname.patch - - desktop/toolkit/qscintilla2/pspec.xml - - - qscintilla2 - - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5/plugins - /usr/share/doc - /usr/share/qt5/mkspecs - /usr/share/qt5/translations - - - - qscintilla2-python-common - Common python qscintilla bindings files shared between qscintilla2-python and qscintilla2-python3 - - qscintilla2 - - - /usr/share/qt5/qsci - /usr/share/sip - - - - qscintilla2-python - Python 2.x bindings for qscintilla2 - qscintilla2 için Python bağlayıcıları - - qscintilla2 - qscintilla2-python-common - qt5-base - - - /usr/lib/python2* - - - - qscintilla2-python3 - Python 3.x bindings for qscintilla2 - - python3 - qscintilla2 - qscintilla2-python-common - qt5-base - libgcc - - - /usr/lib/python3* - - - - qscintilla2-doc - HTML documentation for qscintilla2 - qscintilla2 için HTML belgeleri - - /usr/share/doc/qscintilla2/Scintilla - /usr/share/doc/qscintilla2/html - - - - qscintilla2-devel - Development files for qscintilla2 - qscintilla2 için geliştirme dosyaları - Pliki nagłówkowe dla QScintilla - - qscintilla2 - - - /usr/include/qt5/Qsci - 2015-10-24 - 2.9.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2014-12-18 + 1.2 + Version bump + Osman Erkan + osman.erkan@pisilinux.org - 2014-05-27 - 2.6.2 + 2014-05-25 + 1.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-25 + 1.1 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 0.7 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-12-17 + 0.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xplanet + http://xplanet.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + science.astronomy + Render a planetary image into an X window + Gezegen görüntülerini bir X penceresine çizdirir + Xplanet was inspired by Xearth, which renders an image of the earth into the X root window. All of the major planets and most satellites can be drawn, similar to the Solar System Simulator. A number of different map projections are also supported, including azimuthal, Lambert, Mercator, Mollweide, orthographic, and rectangular. + Xplanet, Dünya'nın bir görüntüsünü bir X penceresine çizdiren Xearth programından esinlenilerek yapılmıştır. Güneş Sistemi Simülatörü'ne benzer şekilde bir çok büyük gezegen ve uydu çizdirilebilir. Azimut, Lambert, Mercator, Mollweide, ortografik, dikdörtgen de dahil olmak üzere bir çok farklı harita projeksiyonunu destekler. + mirrors://sourceforge/project/xplanet/xplanet/1.3.0/xplanet-1.3.0.tar.gz + + pango-devel + netpbm-devel + libXScrnSaver-devel + giflib-devel + libjpeg-turbo-devel + tiff-devel + + + giflib6.patch + xplanet-1.2.1-fix-gcc44.patch + + science/astronomy/xplanet/pspec.xml + + + xplanet + + pango + netpbm + libXScrnSaver + giflib + libjpeg-turbo + tiff + + + /usr/bin + /usr/share/doc + /usr/share + /usr/share/man + + + + + 2014-06-14 + 1.3.0 Rebuild for gcc Osman Erkan osman.erkan@pisilinux.org - 2013-12-21 - 2.6.2 - Fix runtime deps. - Serdar Soytetir - kaptan@pisilinux.org + 2014-01-29 + 1.3.0 + add giflib patch + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2013-08-17 - 2.6.2 - Release bump - Marcin Bojara - marcin@pisilinux.org + 2014-01-17 + 1.3.0 + Rebuild for 1.0 + Richard de Bruin + richdb@pisilinux.org - 2012-11-11 - 2.6.2 + 2012-10-28 + 1.3.0 First release - Marcin Bojara - marcin@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - newt - https://fedorahosted.org/newt/ + libspiro + http://libspiro.sourceforge.net PisiLinux Community admins@pisilinux.org GPLv2 library - app:console - desktop.toolkit - A windowing toolkit for text mode - Metin tabanlı bir pencere araç seti. - newt is a windowing toolkit for text mode, which provides many widgets and stackable windows. - Newt, metin tabanlı bir pencere araç setidir. Pek çok alet ve istiflenebilir pencere sağlar. - https://fedorahosted.org/releases/n/e/newt/newt-0.52.17.tar.gz - - tcl-devel - slang-devel - popt-devel - - desktop/toolkit/newt/pspec.xml + science.mathematics + Library to simplify the drawing of beautiful curves + Eğri çizimi kütüphanesi + libspiro is a library that will take an array of spiro control points and convert them into a series of bezier splines which can then be used in the myriad of ways the world has come to use beziers. + libspiro, verilen kontrol noktalarını bezier eğrilerine çeviren bir kütüphanedir. + mirrors://sourceforge/libspiro/libspiro_src-20071029.tar.bz2 + science/mathematics/libspiro/pspec.xml - newt - - tcl - slang - popt - + libspiro - /usr/bin /usr/lib - /usr/share/locale /usr/share/doc - /usr/share/man - newt-devel - Development files for newt - newt için geliştirme dosyaları + libspiro-devel + Development files for libspiro + libspiro için geliştirme dosyaları - newt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-07-05 - 0.52.17 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-05 - 0.52.16 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-26 - 0.52.14 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-01-30 - 0.52.14 - Build with new relaese Tcl - Erdinç Gültekin - admins@pisilinux.org - - - 2012-09-17 - 0.52.14 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - wxGTK - http://www.wxwidgets.org/ - - PisiLinux Community - admins@pisilinux.org - - wxWinLL-3 - GPLv2 - LGPLv2 - wxWinFDL-3 - library - desktop.toolkit - GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit - Birçok platform için ortak C++ arayüz araç takımı olan wxWindows'un GTK+ sürümü - wxWidgets/GTK2 est le port GTK2 de la librairie graphique multi-plateforme wxWidgets, offrant des classes pour les contrôles IHM communs ainsi qu'un ensemble complet de classes d'aides pour les tâches applicatives habituelles, allant du réseau à l'affichage HTML en passant par la manipulation d'images. - wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. - wxWidgets/GTK2 birçok platform için ortak bir C++ arayüz kitaplığı olan wxWidgets'ın GTK2 sürümüdür. Ağ araçları, HTML gösterimi ve resim işleme gibi en yaygın kullanılan uygulama görevleri için kapsamlı bir sınıf kümesinin yanında tüm genel GUI denetimlerini içerir. - wxWidgets/GTK2 es la versión portada a GTK2 de la librería GUI wxWidgets cross-plataforma en C++, con clases para todos los controles GUI comunes y tambien un conjunto de clases con ayudantes para la mayoría de las tareas comunes de aplicaciones, desde networking a visualización HTML y manipulación de imagenes. - mirrors://sourceforge/wxwindows/wxWidgets-3.0.2.tar.bz2 - - zlib-devel - tiff-devel - gtk2-devel - expat-devel - libSM-devel - libpng-devel - mesa-glu-devel - webkit-gtk2-devel - libjpeg-turbo-devel - gst-plugins-base-devel - - - make-abicheck-non-fatal.patch - - desktop/toolkit/wxGTK/pspec.xml - - - wxGTK - - gtk2 - mesa - tiff - zlib - cairo - expat - glib2 - pango - libSM - libX11 - libgcc - libpng - gstreamer - gdk-pixbuf - libXxf86vm - webkit-gtk2 - libjpeg-turbo - gst-plugins-base - - - /usr/lib/ - /usr/bin - /usr/share/doc/ - /usr/share/aclocal/ - /usr/share/bakefile/ - /usr/lib/wx/config - /usr/share/locale/ - - - - wxGTK-devel - wxGTK-devel is the development files for wxGTK - wxGTK araç seti için geliştirme dosyaları - - wxGTK - - - /usr/include - - - - - 2015-08-29 - 3.0.2 - Version bump, fix install. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-01-05 - 2.8.12 - use symlink not rename. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-18 - 2.8.12 - Rebuild. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-28 - 2.8.12 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-17 - 2.8.12 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2011-05-06 - 2.8.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - openmotif - http://www.motifzone.org/ - - PisiLinux Community - admins@pisilinux.org - - MOTIF - library - app - desktop.toolkit.motif - Open Motif implementation - Özgür Motif kitaplığı - Freely available version of the well known Motif user interface toolkit for Open Source operating systems. - Açık kaynak kodlu işletim sistemleri için yaygın olarak tanına Motif kullanıcı arabirimi araçlarının özgürce kullanılabilen sürümü. - mirrors://sourceforge/motif/motif-2.3.4-src.tgz - - libXmu-devel - libXft-devel - xbitmaps - fontconfig-devel - libXt-devel - libXext-devel - libjpeg-turbo-devel - libX11-devel - libpng-devel - - - openmotif-2.3.2-sanitise-paths.patch - 0003_fix_ftbfs_binutils-gold.patch - openmotif-uil.patch - openmotif-unaligned.patch - sentinel.patch - strcmp.patch - warn.patch - openMotif-2.3.0-no_X11R6.patch - motif-2.3.4-bindings.patch - motif-2.3.4-mwmrc_dir.patch - wmluiltok_fake_lex_main.patch - - desktop/toolkit/motif/openmotif/pspec.xml - - - openmotif - - libXmu - libXft - libXp - libSM - libICE - fontconfig - libXt - libXext - libjpeg-turbo - libX11 - libpng - - - /etc - /usr/bin - /usr/lib - /usr/share/X11/app-defaults - /usr/share/X11/bindings - /usr/share/doc - /usr/share/man - - - Mwm.defaults - - - - openmotif-devel - Development files for openmotif - openmotif için geliştirme dosyaları - - openmotif - libXft-devel - libXt-devel - libXmu-devel - libXext-devel + libspiro /usr/include /usr/share/man/man3 - - openmotif-32bit - 32-bit shared libraries for openmotif - emul32 - emul32 - - libSM-32bit - glibc-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit - libX11-32bit - libICE-32bit - libXft-32bit - libXext-32bit - fontconfig-32bit - libjpeg-turbo-32bit - - - openmotif - libSM-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit - libX11-32bit - libICE-32bit - libXft-32bit - libXext-32bit - fontconfig-32bit - libjpeg-turbo-32bit - - - /usr/lib32 - - - 2013-08-17 - 2.3.4 - Release bump + 2014-06-14 + 20071029 + Rebuild for gcc Osman Erkan osman.erkan@pisilinux.org - 2013-06-23 - 2.3.4 - Fix dep, we have no libXp-devel pack. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-10 - 2.3.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libglade - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - Glade interface builder - Glade arayüz oluşturucu - Libglade est une librairie effectuant un travail similaire aux routines de génération de source C dans le constructeur d'interface graphique GLADE. Là ou les routines de génération de GLADE génerent du code C à compiler, libglade construit l interface depuis un fichier XML (le format de sauvegarde de GLADE) à l'exécution. De cette manière, vous pouvez changer l'apparence de votre programme sans avoir à le recompiler. - Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C code that can then be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This way you can change the look of a program without needing to recompile. - Libglade, GLADE kullanıcı arayüzü yapıcısındaki C kaynak çıkışı yöntemine benzer iş yapan bir kitaplıktır. GLADE'in çıkış yöntemi derlenebilir C kodu oluştururken, libglade arayüzü bir XML dosyasında oluşturur. Böylece yeniden derlenmeye gerek kalmadan arayüz değiştirilebilir. - mirrors://gnome/libglade/2.6/libglade-2.6.4.tar.bz2 - - glib2-devel - libxml2-devel - atk-devel - pango-devel - gtk2-devel - - - Makefile.in.am-2.4.2-xmlcatalog.patch - libglade-2.6.3-fix_tests-page_size.patch - - desktop/toolkit/gtk/libglade/pspec.xml - - - libglade - - glib2 - libxml2 - atk - pango - gtk2 - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/xml - - - System.Package - - - - libglade-docs - Libglade reference documents - Libglade referans belgeleri - data:doc - - libglade - - - /usr/share/gtk-doc - - - - libglade-devel - Development files for libglade - libglade için geliştirme dosyaları - - libglade - gtk2-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-18 - 2.6.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-07 - 2.6.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-17 - 2.6.4 - Release bump - Pisi Linux Admins - admins@pisilinux.org - - - 2010-10-12 - 2.6.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gtk3 - http://www.gtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - desktop.toolkit.gtk - The GIMP Toolkit version 3 - GTK grafik arayüz kitaplığı versiyon 3 - GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. - GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. - GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. - Wersja 3 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce. - mirrors://gnome/gtk+/3.16/gtk+-3.16.4.tar.xz - - atk-devel - cups-devel - at-spi2-atk-devel - pango-devel - json-glib-devel - libXi-devel - cairo-devel - gobject-introspection-devel - libXext-devel - libXrandr-devel - libXfixes-devel - gdk-pixbuf-devel - fontconfig-devel - libXcursor-devel - libXdamage-devel - libXinerama-devel - libXcomposite-devel - at-spi2-core-devel - libepoxy-devel - gtk-doc - - - 071_fix-installation-of-HTML-images.patch - - desktop/toolkit/gtk/gtk3/pspec.xml - - - gtk3 - - glib2 - libX11 - libepoxy - atk - cups - pango - libXi - cairo - libXext - libXrandr - libXfixes - gdk-pixbuf - fontconfig - libXcursor - libXdamage - libXinerama - at-spi2-atk - libXcomposite - dejavu-fonts - - - /etc - /usr/bin - /usr/share/themes - /usr/share/gtk-3.0 - /usr/share/ - /usr/share/man - /usr/share/doc - /usr/lib - /usr/share/locale - - - System.PackageHandler - - - settings.ini - - - - gtk3-demo - GTK demo application - GTK demo uyulaması - app:gui - - gtk3 - glib2 - libepoxy - cairo - pango - gdk-pixbuf - - - /usr/bin/gtk3-demo - /usr/bin/gtk3-demo-application - - - - gtk3-docs - GTK reference documents - GTK referans dökümanları - data:doc - - /usr/share/doc/gtk3 - - - - gtk3-devel - Development files for gtk3 - gtk3 için geliştirme dosyaları - Pliki nagłówkowe do gtk3 - - gtk3 - atk-devel - pango-devel - libX11-devel - libXi-devel - cairo-devel - glib2-devel - libXext-devel - libepoxy-devel - libXfixes-devel - libXrandr-devel - gdk-pixbuf-devel - fontconfig-devel - libXdamage-devel - libXcursor-devel - libXinerama-devel - at-spi2-atk-devel - libXcomposite-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/gir-1.0 - - - - - 2015-07-07 - 3.16.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-18 - 3.14.9 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-04-12 - 3.12.2 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2014-04-06 - 3.10.7 + 2014-02-01 + 20071029 Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-05 - 3.10.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-21 - 3.10.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-11 - 3.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-05 - 3.8.2 - Add missing method and fix pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 3.8.2 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-14 - 3.8.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-04-24 - 3.6.4 + 2010-10-13 + 20071029 First release - Ertan Güven - ertan@pisilinux.org + Gökcen Eraslan + admins@pisilinux.org - pango - http://www.pango.org + lapack + http://www.netlib.org/lapack PisiLinux Community admins@pisilinux.org - LGPLv2.1 - FTL + BSD library - desktop.toolkit.gtk - Outil de positionnement et de rendu de texte. - Text rendering and layout library - Metin görüntüleme kitaplığı - Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. - Pango, özellikle yerelleştirme ile birlikte metin düzenlemek ve biçimlendirmek için bir kitaplıktır. Pango metin biçimlendirmenin gerekli olduğu her yerde kullanılabilir ama şimdiye kadar ki birçok Pango çalışması GTK+ araç takımının parçası ile tamamlandı. Pango formları, GTK+-2.x. için temel metin ve yazı tipini yönetir. - mirrors://gnome/pango/1.36/pango-1.36.8.tar.xz + science.mathematics + Linear Algebra PACKage + Doğrusal cebir paketi + 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. + 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. + http://www.netlib.org/lapack/lapack-3.5.0.tgz - gtk-doc - glib2-devel - libX11-devel - freetype-devel - cairo-devel - libXft-devel - harfbuzz-devel - fontconfig-devel - libXrender-devel - gobject-introspection-devel + libgfortran + cmake - pango-1.32.1-lib64.patch + lapack-sharedlib.patch - desktop/toolkit/gtk/pango/pspec.xml + science/mathematics/lapack/pspec.xml - pango + blas + Basic Linear Algebra Subprograms + Temel lineer cebir yordamları + Blas is a standard library which provides a number of basic algorithms for numerical algebra. - glib2 - libX11 - freetype - cairo - libXft - harfbuzz - fontconfig - libXrender + libgfortran - /etc/pango - /usr/bin - /usr/lib/libpango* - /usr/lib/girepository-1.0 - /usr/lib/pango - /usr/share/gir-1.0 - /usr/share/man - /usr/share/doc + /usr/lib/libblas.so* - - System.Package - - pango-devel - Development files for pango - pango için geliştirme dosyaları + blas-devel + Development files for blas + blas için geliştirme dosyaları + static - pango - cairo-devel - libXft-devel - harfbuzz-devel - fontconfig-devel + blas - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include + /usr/lib/libblas.a + /usr/lib/pkgconfig/blas.pc - pango-docs - Pango reference documents - Pango referans dokümanları - data:doc - - /usr/share/gtk-doc - - - - pango-32bit - 32-bit shared libraries for pango - pango için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - cairo-32bit - glib2-32bit - libX11-32bit - libXft-32bit - freetype-32bit - libXrender-32bit - fontconfig-32bit - libffi-32bit - harfbuzz-32bit - glibc-32bit - + lapack - pango - cairo-32bit - glib2-32bit - libX11-32bit - libXft-32bit - freetype-32bit - libXrender-32bit - fontconfig-32bit - libffi-32bit - harfbuzz-32bit - glibc-32bit - - - /usr/bin/pango-querymodules-32 - /usr/lib32/libpango* - /usr/lib32/girepository-1.0 - /usr/lib32/pango - - - - - 2015-03-18 - 1.36.8 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-07-07 - 1.36.5 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-17 - 1.36.3 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 1.36.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-05 - 1.36.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 1.36.0 - Version bump, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-17 - 1.34.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-20 - 1.34.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 1.32.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-22 - 1.32.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2011-07-07 - 1.30.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gdk-pixbuf - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.toolkit.gtk - GDK pixbuf library - GDK pixbuf kitaplığı - gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications - gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. - mirrors://gnome/gdk-pixbuf/2.31/gdk-pixbuf-2.31.4.tar.xz - - gtk-doc - glib2-devel - libX11-devel - tiff-devel - libjpeg-turbo-devel - libpng-devel - jasper-devel - gobject-introspection-devel - - desktop/toolkit/gtk/gdk-pixbuf/pspec.xml - - - gdk-pixbuf - - glib2 - libpng - libX11 - tiff - jasper - libjpeg-turbo - - - /etc - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - System.PackageHandler - - - - gdk-pixbuf-devel - Development files for gdk-pixbuf - gdk-pixbuf için geliştirme dosyaları - - gdk-pixbuf - glib2 - - - /usr/bin/gdk-pixbuf-csource - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/gir-1.0 - - - - gdk-pixbuf-docs - Reference documents for gdk-pixbuf - gdk-pixbuf için başvuru belgeleri - - /usr/share/gtk-doc - - - - gdk-pixbuf-32bit - 32-bit shared libraries for gdk-pixbuf - gdk-pixbuf için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - glibc-32bit - glib2-32bit - libX11-32bit - libpng-32bit - jasper-32bit - libX11-32bit - - - gdk-pixbuf - glibc-32bit - tiff-32bit - glib2-32bit - libpng-32bit - libX11-32bit - jasper-32bit - libjpeg-turbo-32bit - - - /usr/bin/gdk-pixbuf-query-loaders-32 - /usr/lib32 - - - System.PackageHandler - - - - - 2015-07-05 - 2.31.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-27 - 2.31.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-17 - 2.30.7 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 2.30.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 2.30.0 - Add missing method and fix pakhandler.py - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-05 - 2.28.2 - Add missing method and fix pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-20 - 2.28.2 - Fix build emul32. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-11 - 2.28.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 2.28.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-24 - 2.27.1 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-11-25 - 2.26.5 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pangomm - http://www.gtkmm.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - desktop.toolkit.gtk - C++ interface for Pango - Pango için C++ arayüzü - Pangomm is a library that provides pango based C++ interface for object-oriented gtkmm applications. - Pangomm, nesne tabanlı gtkmm uygulamaları için C++ tabanlı pango arayüzü sağlayan bir kitaplıktır. - mirrors://gnome/pangomm/2.34/pangomm-2.34.0.tar.xz - - grep - libtool - doxygen - boost-devel - glib2-devel - pango-devel - glibmm-devel - cairomm-devel - libsigc++-devel - - desktop/toolkit/gtk/pangomm/pspec.xml - - - pangomm - - pango - glibmm libgcc - glib2 - cairomm - libsigc++ + libgfortran + blas - /usr/lib /usr/share/doc + /usr/lib/liblapack.so* - pangomm-devel - Development files for pangomm - pangomm için geliştirme dosyaları + lapack-devel + Development files for lapack + lapack için geliştirme dosyaları + static - pangomm - cairomm-devel - glibmm-devel - pango-devel + lapack + blas-devel - /usr/include - /usr/lib/pkgconfig - /usr/lib/pangomm-1.4 + /usr/lib/cmake + /usr/lib/liblapack.a + /usr/lib/pkgconfig/lapack.pc + + 2014-12-23 + 3.5.0 + Release bump + PisiLinux Community + admins@pisilinux.org + - 2014-05-18 - 2.34.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org + 2014-05-26 + 3.5.0 + Release bump + PisiLinux Community + admins@pisilinux.org - 2013-07-14 - 2.34.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2013-11-18 + 3.5.0 + Version bump + Richard de Bruin + richdb@pisilinux.org - 2012-08-26 - 2.28.4 + 2012-10-03 + 3.4.2 First release - PisiLinux Community - admins@pisilinux.org - - - - - - gtk2 - http://www.gtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - desktop.toolkit.gtk - The GIMP Toolkit version 2 - GTK grafik arayüz kitaplığı versiyon 2 - GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. - GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. - GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. - mirrors://gnome/gtk+/2.24/gtk+-2.24.28.tar.xz - - cups-devel - libXi-devel - cairo-devel - libXext-devel - libXrandr-devel - libXfixes-devel - libXrender-devel - libXdamage-devel - libXcursor-devel - fontconfig-devel - libXinerama-devel - libXcomposite-devel - atk-devel - pango-devel - gdk-pixbuf-devel - gtk-doc - gobject-introspection-devel - - - xid-collision-debug.patch - fedora/system-python.patch - fedora/icon-padding.patch - fedora/tooltip-positioning.patch - fedora/window-dragging.patch - - desktop/toolkit/gtk/gtk2/pspec.xml - - - gtk2 - - cups - libXi - cairo - libXext - libXrandr - libXfixes - libXrender - libXdamage - libXcursor - fontconfig - libXinerama - libXcomposite - glib2 - libX11 - atk - pango - gdk-pixbuf - dejavu-fonts - - - /etc - /usr/bin - /usr/share/themes - /usr/share/gtk-2.0 - /usr/share/man - /usr/share/doc - /usr/lib - /usr/share/locale - - - System.PackageHandler - - - gtkrc - - - - gtk2-demo - GTK demo application - GTK demo uyulaması - app:gui - - gtk2 - cairo - pango - gdk-pixbuf - glib2 - - - /usr/bin/gtk-demo - /usr/share/gtk-2.0/demo - - - - gtk2-docs - GTK reference documents - GTK referans dökümanları - data:doc - - /usr/share/gtk-doc - - - - gtk2-devel - Development files for gtk2 - gtk2 için geliştirme dosyaları - - gtk2 - atk-devel - pango-devel - cairo-devel - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/gir-1.0 - - - - gtk2-32bit - 32-bit shared libraries for gtk2 - gtk2 için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - glibc-32bit - cairo-32bit - cups-32bit - fontconfig-32bit - pango-32bit - glib2-32bit - atk-32bit - libX11-32bit - gdk-pixbuf-32bit - libXcomposite-32bit - libXcursor-32bit - libXdamage-32bit - libXext-32bit - libXfixes-32bit - libXi-32bit - libXinerama-32bit - libXrandr-32bit - libXrender-32bit - - - gtk2 - glibc-32bit - cairo-32bit - pango-32bit - glib2-32bit - atk-32bit - libX11-32bit - cups-32bit - fontconfig-32bit - gdk-pixbuf-32bit - libXcomposite-32bit - libXcursor-32bit - libXdamage-32bit - libXext-32bit - libXfixes-32bit - libXi-32bit - libXinerama-32bit - libXrandr-32bit - libXrender-32bit - - - /usr/bin/*-32bit - /usr/lib32 - - - - - 2015-07-05 - 2.24.28 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-17 - 2.24.23 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-06 - 2.24.22 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-06 - 2.24.22 - Set proper settings to gtkrc, change location of gtkrc. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-21 - 2.24.22 - Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2013-09-05 - 2.24.21 - Minor version bump, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-05 - 2.24.20 - Add missing method and fix pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 2.24.20 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-20 - 2.24.17 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-23 - 2.24.16 - Version bump, add new cppflags, enhancements. - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-23 - 2.24.14 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-25 - 2.24.13 - First release - Erdem Artan - admins@pisilinux.org - - cairomm - http://cairographics.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - Bindings (liens) C++ pour Cairo. - C++ binding for Cairo - Cairo için C++ bağlayıcı - cairomm package is the C++ binding for Cairo (it makes possible using Cairo in C++). - http://cairographics.org/releases/cairomm-1.10.0.tar.gz - - grep - perl - doxygen - cairo-devel - libsigc++-devel - - desktop/toolkit/gtk/cairomm/pspec.xml - - - cairomm - - cairo - libsigc++ - libgcc - - - /usr/share/doc - /usr/lib - - - - cairomm-devel - Development files for cairomm - cairomm için geliştirme dosyaları - - cairomm - cairo-devel - libsigc++-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cairomm-1.0/include - - - - cairomm-docs - Development documents for cairomm - cairomm için geliştirme belgeleri - - /usr/share/doc/cairomm/html - - - - - 2014-05-18 - 1.10.0 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-21 - 1.10.0 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2012-08-25 - 1.10.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gtkspell - http://gtkspell.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.toolkit.gtk - Spell checking widget for GTK+ - GTK+ için yazım denetimi eklentisi - GtkSpell provides MSWord / MacOSX-style highlighting of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements. - GtkSpell, MSWord / MacOSX işletim sistemlerinde olduğu gibi, GTK+ metin gösterme zımbırtılarında yanlış yazılmış kelimeleri vurgular ve yanlış yazılmış kelimelere sağ tıkladığınızda, size yeni kelimeler önerir. - mirrors://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz - - gtk2-devel - enchant-devel - intltool - - desktop/toolkit/gtk/gtkspell/pspec.xml - - - gtkspell - - atk - gtk2 - cairo - glib2 - pango - enchant - freetype - fontconfig - gdk-pixbuf - - - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/gtk-doc - - - - gtkspell-devel - Development files for gtkspell - gtkspell için geliştirme dosyaları - - gtkspell - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-20 - 2.0.16 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-18 - 2.0.16 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-25 - 2.0.16 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-17 - 2.0.16 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-10-12 - 2.0.16 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gtk-doc - http://www.gtk.org/gtk-doc + gsl + http://www.gnu.org/software/gsl/ PisiLinux Community admins@pisilinux.org GPLv3 - FDL-1.1 - app:console - desktop.toolkit.gtk - GTK+ API documentation generator - GTK+ API belge oluşturucusu - Gtk-Doc is typically used to document the public API of GTK+ and GNOME libraries, but it can also be used to document application code. - gtk-doc, GNOME ve GTK+ gibi kitaplıkların API'lerinin belgelendirilmesi için yazılmış bir uygulama projesidir. - mirrors://gnome/gtk-doc/1.21/gtk-doc-1.21.tar.xz - - itstool - openjade - sgml-common - docbook-xml - docbook-xsl - libxslt-devel - - desktop/toolkit/gtk/gtk-doc/pspec.xml + library + science.mathematics + GNU scientific library + GNU bilimsel kütüphane + La librairie scientifique GNU (GSL) est une librairie numérique pour programmes C et C++. + The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. + C ve C++ programcıları tarafından kullanılan nümerik kütüphane + GNU Scientific Library (GSL) es una libería numérica para programadores C y C++. + http://ftp.gnu.org/gnu/gsl/gsl-1.16.tar.gz + science/mathematics/gsl/pspec.xml - gtk-doc + gsl + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + gsl-devel + Development files for gsl + gsl için geliştirme dosyaları - docbook-xml - sgml-common + gsl + + + /usr/include + /usr/share/aclocal + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + + 2014-05-30 + 1.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + cln + http://www.ginac.de/CLN/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + CLN, une librairie de classes (C++) pour les nombres. + A class library (C++) for numbers + Sayılar için bir C++ sınıf kütüphanesi + cln is a library for efficient computations with all kinds of numbers in arbitrary precision. + cln, her türlü hassaslıktaki sayılarla hızlı hesaplamalar yapmak için tasarlanmış bir kütüphanedir. + http://www.ginac.de/CLN/cln-1.3.4.tar.bz2 + + gmp-devel + + science/mathematics/cln/pspec.xml + + + cln + + gmp + libgcc /usr/bin - /usr/share - /usr/share/doc - /usr/share/omf - /var/lib - - - - - 2015-04-06 - 1.21 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-18 - 1.20 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-30 - 1.20 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-26 - 1.18 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-26 - 1.18 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - atkmm - http://www.gtkmm.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - desktop.toolkit.gtk - C++ interface for the ATK library - ATK kitaplığı için C++ arayüzü - atkmm provides a C++ interface for the ATK library. - atkmm, ATK kitaplığı için bir C++ arayüzü sunar. - mirrors://gnome/atkmm/2.22/atkmm-2.22.7.tar.xz - - atk-devel - glibmm-devel - libtool - perl - doxygen - pkgconfig - glib2-devel - libsigc++-devel - - desktop/toolkit/gtk/atkmm/pspec.xml - - - atkmm - - atk - libgcc - glib2 - glibmm - libsigc++ - - /usr/lib /usr/share/doc + /usr/share/info + /usr/share/man - atkmm-devel - Development files for atkmm - atkmm için geliştirme dosyaları + cln-devel + Development files for cln + cln için geliştirme dosyaları - atkmm - atk-devel - glibmm-devel + cln + gmp-devel /usr/include - /usr/lib/atkmm-1.6/include /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/gtk-doc - 2015-11-27 - 2.22.7 - Rebuild and check. - Stefan Gronewold (groni) - groni@pisilinux.org + 2015-07-29 + 1.3.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2014-05-18 - 2.22.7 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org + 2014-06-14 + 1.3.3 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org - 2013-07-14 - 2.22.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-26 - 2.22.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - atk - http://developer.gnome.org/atk - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - GTK+ and GNOME Accessibility Toolkit - GTK+ ve GNOME erişilebilirlik kitaplığı - Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. - These libraries provide tools for making software for people with disabilities. - Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. - mirrors://gnome/atk/2.16/atk-2.16.0.tar.xz - - gobject-introspection-devel - glib2-devel - gtk-doc - - desktop/toolkit/gtk/atk/pspec.xml - - - atk - - glib2 - - - /usr/lib/libatk* - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/doc - - - - atk-devel - Development files for atk - atk için geliştirme dosyaları - - atk - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - atk-32bit - 32-bit shared libraries for atk - atk için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glib2-32bit - glibc-32bit - - - atk - glib2-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-04-17 - 2.16.0 - Version bump. + 2013-10-30 + 1.3.3 + Version bump Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2014-05-17 - 2.12.0 - Release bump. + + 2012-10-25 + 1.3.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + fftw3 + http://www.fftw.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + A library for computing the discrete Fourier transform (DFT) + Ayrık Fourier dönüşümü hesaplamak için bir kütüphane + FFTW v3 est une librairie sous-routine C pour le calcul discret de transformation de Fourier (DFT) dans une ou plusieurs dimensions, pour une entrée de taille arbitraire, aussi bien pour des données réeles ou complexes (ainsi que les données paires/impaires, i.e. la transformation discrète cosinus/sinus ou DCT/DST). + fftw3 is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). + fftw3, ayrık Fourier dönüşümü hesaplamak için kullanılabilecek bir C kütüphanesidir. + FFTW v3 es una librería con subrutinas C para computar la transformación Fourier discreta (DFT) en una o más dimensiones, con longitud de entrada arbitraria, para datos reales y complejos (y también de datos par/impar, i.e. transformación discreta coseno/seno DCT/DST). + http://www.fftw.org/fftw-3.3.4.tar.gz + + libgfortran + libquadmath + gettext + + science/mathematics/fftw3/pspec.xml + + + fftw3 + + libquadmath + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/info + + + + fftw3-devel + Development files for fftw3 + fftw3 için geliştirme dosyaları + + fftw3 + + + /usr/lib/pkgconfig + /usr/include + /usr/share/doc/fftw3/html + + + + + 2014-05-25 + 3.3.4 + Version bump. Alihan Öztürk alihan@pisilinux.org - - 2014-03-30 - 2.12.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 2.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-21 - 2.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 2.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-02-24 - 2.7.91 - V.Bump - PisiLinux Community - admins@pisilinux.org + 2014-01-24 + 3.3.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-10-22 - 2.7.2 + 2013-01-07 + 3.3.3 First release - PisiLinux Community + Erdinç Gültekin admins@pisilinux.org - gtkmm - http://gtkmm.sourceforge.net + SuiteSparse + http://www.cise.ufl.edu/research/sparse PisiLinux Community admins@pisilinux.org LGPLv2.1 + GPLv2 library - desktop.toolkit.gtk - C++ binding for GTK+ - GTK+ için C++ bağlamı - gtkmm est l'interface C++ officiel de la librairie d'IHM GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. - gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. - gtkmm, grafik kullanıcı arayüzü kitaplığı GTK+'nın resmi C++ arayüzüdür. Tip-güvenli geri çağırmalar ve mirasla genişleyebilen tutarlı parçacıklardan oluşması, en önemli özelliklerini oluşturur. - mirrors://gnome/gtkmm/2.24/gtkmm-2.24.4.tar.xz + science.mathematics + Sparse matrix library + Sparse matrix kütüphanesi + Librairie de matrices Sparse. + SuiteSparse is a single archive that contains sparse matrix libraries. + Sparse matrix kütüphanesi. + http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-4.4.4.tar.gz - gtk2-devel - atkmm-devel - glibmm-devel - cairomm-devel - pangomm-devel - libsigc++-devel + lapack-devel + blas-devel + libgcc - desktop/toolkit/gtk/gtkmm/pspec.xml + science/mathematics/SuiteSparse/pspec.xml - gtkmm + SuiteSparse - gtk2 - atkmm - glibmm - cairomm - pangomm - libsigc++ - gdk-pixbuf + lapack + blas + libgcc /usr/lib /usr/share/doc - /usr/share - gtkmm-devel - Development files for gtkmm - gtkmm için geliştirme dosyaları + SuiteSparse-devel + Development files for SuiteSparse + SuiteSparse için geliştirme dosyaları - gtkmm - atkmm-devel - pangomm-devel - glibmm-devel - gtk2-devel + SuiteSparse /usr/include - /usr/lib/pkgconfig + + 2015-08-11 + 4.4.4 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + - 2014-05-18 - 2.24.4 + 2014-05-31 + 4.2.1 Rebuild. - Serdar Soytetir - kaptan@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - 2013-07-14 - 2.24.4 - Version bump. + 2014-01-17 + 4.2.1 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-12-08 + 4.0.2 + First release Marcin Bojara marcin@pisilinux.org + + + + + plotutils + http://www.gnu.org/software/plotutils/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + 2D vector graphics library + 2B vektörel grafik araçları + PlotUtils is a powerful C/C++ function library for exporting 2D vector graphics. + 2B vektörel grafik üretmeye yarayan C/C++ kütüphanesi ve araçlar + ftp://aeneas.mit.edu/pub/gnu/plotutils/plotutils-2.6.tar.gz + + libXaw-devel + libXext-devel + libXt-devel + + + plotutils-2.6-png15.patch + + science/mathematics/plotutils/pspec.xml + + + plotutils + + libSM + libICE + libXmu + libXaw + libXext + libXt + libX11 + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/libplot + /usr/share/ode + /usr/share/pic2plot + /usr/share/tek2plot + + + + plotutils-devel + Development files for plotutils + plotutils için geliştirme dosyaları + + plotutils + + + /usr/include + + + + + 2014-06-14 + 2.6 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-10 + 2.6 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 2.6 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + - 2012-11-03 - 2.24.2 + 2012-11-11 + 2.6 First release Osman Erkan osman.erkan@pisilinux.org @@ -113670,188 +113875,415 @@ Jabber and others - cairo - http://cairographics.org + libqalculate + http://qalculate.sourceforge.net/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 - MPL-1.1 + GPLv2 library - desktop.toolkit.gtk - Cairo est une librairie graphique 2D supportant de nombreux périphériques de sortie. - 2D graphics library with bindings of many programming languages - Birden çok çıktı cihazına destek veren bir 2 boyutlu grafik kitaplığı - Cairo is a 2D graphics library with support for multiple output devices (and fileformats). - http://cairographics.org/releases/cairo-1.14.2.tar.xz + science.mathematics + Qalculate ! est une calculatrice de bureau multi-usage pour GNU/Linux. + Multi-purpose calculator library + Genel amaçlı hesap makinesi kütüphanesi + libqalculate underpins the Qalculate! multi-purpose desktop calculator for GNU/Linux. + libqalculate, Qalculate! hesap makinesi tarafından ihtiyaç duyulan genel amaçlı bir kütüphanedir. + mirrors://sourceforge/qalculate/libqalculate-0.9.7.tar.gz - lzo-devel - zlib-devel + cln-devel + gmp-devel + libxml2-devel glib2-devel - libX11-devel - libpng-devel - libxcb-devel - freetype-devel - expat-devel - fontconfig-devel - libXrender-devel - pixman-devel - xcb-util-devel - libXext-devel - mesa-devel - DirectFB-devel - valgrind + gettext-devel + intltool - desktop/toolkit/gtk/cairo/pspec.xml + + libqalculate-0.9.6-check-fix.patch + libqalculate-0.9.6-gcc4.3.patch + + science/mathematics/libqalculate/pspec.xml - cairo + libqalculate - lzo - zlib + cln + libxml2 glib2 - libX11 - libpng - libxcb - freetype - fontconfig - libXrender - pixman - libXext - mesa + libgcc /usr/bin - /usr/share/man - /usr/share/doc - /usr/share/gtk-doc - /usr/share/info /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/qalculate - cairo-devel - Development files for cairo - cairo için geliştirme dosyaları + libqalculate-devel + Development files for libqalculate + libqalculate için geliştirme dosyaları - cairo - mesa-devel + libqalculate + cln-devel + libxml2-devel glib2-devel - libX11-devel - libpng-devel - libxcb-devel - freetype-devel - pixman-devel - libXext-devel - fontconfig-devel - libXrender-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-06-14 + 0.9.7 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-02-01 + 0.9.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-07-14 + 0.9.7 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + djbfft + http://cr.yp.to/djbfft.html + + PisiLinux Community + admins@pisilinux.org + + public-domain + library + science.mathematics + Fast float library + Hızlı küsürlü sayı kitaplığı + An extremely fast library for floating-point convolution. + djbfft çok hızlı küsürlü sayı bükülme kitaplığıdır. + http://cr.yp.to/djbfft/djbfft-0.76.tar.gz + + gcc3.patch + shared.patch + headers.patch + + science/mathematics/djbfft/pspec.xml + + + djbfft + + /usr/lib + /usr/share/doc + + + + djbfft-devel + Development files for djbfft + djbfft için geliştirme dosyaları + + djbfft + + + /usr/include + + + + + 2014-05-20 + 0.76 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-22 + 0.76 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.76 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + opencv + http://opencv.willowgarage.com/wiki + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.robotics + Computer vision library + Bilgisayarla görme kütüphanesi + Biblioteka funkcji do grafiki komputerowej w czasie rzeczywistym + 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. + opencv gerçek zamanlı bilgisayarla görme işlemleri için tasarlanmış bir kütüphanedir. İnsan-bilgisayar etkileşimi, nesne tanımlama, yüz tanıma, hareket izleme, mobil robotik, opencv'nin kullanıldığı bazı uygulama alanlarıdır. + OpenCV (Open Source Computer Vision) to biblioteka funkcji przeznaczonych głównie do grafiki komputerowej w czasie rzeczywistym. + https://github.com/Itseez/opencv/archive/2.4.11.tar.gz + + cmake + gtk2-devel + libv4l-devel + openexr-libs + jasper-devel + lapack-devel + ilmbase-devel + openexr-devel + lapack-devel + xine-lib-devel + libdc1394-devel + gstreamer-devel + libjpeg-turbo-devel + gst-plugins-base-devel + + science/robotics/opencv/pspec.xml + + + opencv + + gtk2 + zlib + glib2 + jasper + libgcc + libpng + libv4l + ilmbase + openexr-libs + xine-lib + libdc1394 + gstreamer + gst-plugins-base + libjpeg-turbo + + + /usr/lib + /usr/bin + /usr/share/OpenCV + /usr/share/opencv + + + + opencv-docs + Computer vision library documents and examples + + /usr/share/doc/opencv + /usr/share/doc/opencv/samples + + + + opencv-devel + Development files for opencv + opencv için geliştirme dosyaları + Pliki naglowkowe do opencv + + opencv /usr/include /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - cairo-32bit - 32-bit shared libraries for cairo - cairo için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - zlib-32bit - glib2-32bit - libX11-32bit - pixman-32bit - libpng-32bit - libxcb-32bit - libXext-32bit - freetype-32bit - fontconfig-32bit - libXrender-32bit - - - cairo - mesa-32bit - zlib-32bit - glibc-32bit - glib2-32bit - libX11-32bit - pixman-32bit - libpng-32bit - libxcb-32bit - libXext-32bit - freetype-32bit - fontconfig-32bit - libXrender-32bit - - - /usr/lib32/lib* - /usr/lib32/cairo - - 2015-04-18 - 1.14.2 + + 2015-09-15 + 2.4.11 + Version bump,rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-15 + 2.4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-20 + 2.4.7 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-08-20 + 2.4.6.1 + ignore xine-lib + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-13 + 2.4.6.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-08 + 2.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + ilmbase + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.misc + Several utility libraries from ILM (Industrial Light & Magic) used by OpenEXR + ILM (Industrial Light & Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar + IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library). + IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf ("yarım" değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz. + http://download.savannah.nongnu.org/releases/openexr/ilmbase-2.0.1.tar.gz + + ilmbase-2.0.1-no_undefined.patch + ilmbase-IexMath.patch + ilmbase-1.0.3-pkgconfig.patch + + science/misc/ilmbase/pspec.xml + + + ilmbase + + libgcc + + + /usr/lib + /usr/share/doc + + + + ilmbase-devel + Development files for ilmbase + ilmbase için geliştirme dosyaları + + ilmbase + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 2.0.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-16 + 2.0.1 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2015-01-28 - 1.14.0 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org + + 2010-10-13 + 1.0.2 + First release + Gökcen Eraslan + admins@pisilinux.org - - 2014-05-17 - 1.12.16 - Release bump. + + + + + cfitsio + http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html + + PisiLinux Community + admins@pisilinux.org + + as-is + library + app:console + science.misc + C and Fortran library for manipulating FITS files + FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi + CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format. + CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar. + http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3370.tar.gz + science/misc/cfitsio/pspec.xml + + + cfitsio + + /usr/lib + /usr/bin + /usr/share/doc + + + + cfitsio-devel + Development files for cfitsio + cfitsio için geliştirme dosyaları + + cfitsio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-18 + 3.370 + Version Bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-05-31 + 3.360 + Rebuild. Alihan Öztürk alihan@pisilinux.org - - 2013-10-09 - 1.12.16 - Version bump, fixes. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 1.12.14 - Fix dependencies. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-23 - 1.12.14 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-02-24 - 1.12.14 - Version bump, missing dep. - Ertan Güven - ertan@pisilinux.org - - 2013-01-22 - 1.12.10 + 2014-01-20 + 3.360 Version bump. - Marcin Bojara - marcin@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-11-23 - 1.12.8 + 2012-10-13 + 3.310 First release Marcin Bojara marcin@pisilinux.org @@ -113860,674 +114292,850 @@ Jabber and others - xdg-utils - http://portland.freedesktop.org/wiki/ + libnova + http://libnova.sourceforge.net PisiLinux Community admins@pisilinux.org - MIT - app:console - desktop.misc - Utilitaires de bureaux communs. - Common desktop utilities - Ortak masaüstü komutları - Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running. - http://source.pisilinux.org/1.0/xdg-utils.tar.xz - - xmlto - docbook-xsl - util-linux - lynx - - - enable-other-xdg.patch - xfce-detection.patch - drop-xmlto-stuff.patch - - desktop/misc/xdg-utils/pspec.xml + LGPLv2 + library + science.misc + Celestial Mechanics and Astronomical Calculation Library + Gökyüzü mekaniği ve astronomik hesaplama kütüphanesi + libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library. + libnova genel amaçlı, çift hassasiyetli, gökyüzü mekaniği, astrometri ve astrodinamik kütüphanesidir. + mirrors://sourceforge/libnova/libnova/v%200.14.0/libnova-0.14.0.tar.gz + science/misc/libnova/pspec.xml - xdg-utils + libnova /usr/bin - /usr/share/man - - - - - 2014-02-16 - 1.1.0_20140207 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-23 - 20131006 - Release bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-26 - 1.1.0_rc1 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-04-05 - 1.1.0_rc1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - at-spi2-core - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - service - desktop.misc - Protocol definitions and daemons for D-Bus at-spi - D-Bus at-spi için protokol tanımları ve hizmetleri - at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. - at-spi2-core, erişilebilirlik teknolojilerinin uygulamalara D-Bus üzerinden erişerek onları otomatik olarak denetlemesini sağlar. - mirrors://gnome/at-spi2-core/2.16/at-spi2-core-2.16.0.tar.xz - - libXtst-devel - libXi-devel - gettext-devel - dbus-devel - glib2-devel - intltool - - desktop/misc/at-spi2-core/pspec.xml - - - at-spi2-core - - libXtst - libX11 - dbus - glib2 - - - /etc /usr/lib /usr/share/doc - /usr/share/dbus-1 - /usr/share/gtk-doc - /usr/libexec - /usr/share/gir-1.0 - /usr/share/locale - at-spi2-core-32bit - 32-bit shared libraries for at-spi2-core - emul32 - emul32 - - dbus-32bit - glib2-32bit - libXi-32bit - libX11-32bit - libXtst-32bit - glibc-32bit - + libnova-devel + Development files for libnova + libnova için geliştirme dosyaları - dbus-32bit - glib2-32bit - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - at-spi2-core-devel - at-spi2-core için geliştirme dosyaları - at-spi2-core için geliştirme dosyaları - - at-spi2-core - dbus-devel - glib2-devel + libnova /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig + /usr/bin/libnovaconfig - - 2015-04-17 - 2.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-14 - 2.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-10 - 2.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 2.8.0 - Fix build. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-30 - 2.8.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 2.8.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-17 - 2.8.0 - Rebuild with new pisi release - PisiLinux Community - admins@pisilinux.org - - - 2013-06-17 - 2.8.0 - Rebuild with new pisi release - Marcin Bojara - marcin@pisilinux.org - - 2013-04-23 - 2.8.0 - Dep fixed - PisiLinux Community - admins@pisilinux.org + 2014-06-14 + 0.14.0 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org - 2013-04-17 - 2.8.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-02-01 + 0.14.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-10-22 - 2.7.2 + 2012-02-13 + 0.14.0 First release - PisiLinux Community - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - startup-notification - http://www.freedesktop.org/software/startup-notification/ + libindi + http://www.indilib.org/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 + LGPLv2 + app:console library - desktop.misc - Application startup notification and feedback library - Uygulama başlangıç duyurusu ve geribildirim sistemi - startup-notification est un exemple d'implémentation de notification de démarrage (indiquant à l'environnement bureautique qu'une application a fini de démarrer). - startup-notification is a sample implementation of startup notification (telling the desktop environment when an app is done starting up). - startup-notification, bir program başlatıldığında bunu masaüstü ortamına bildirir. - http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz + science.misc + Astronomical control protocol library + indilib is a distributed control protocol designed to operate astronomical instrumentation. indilib is small, flexible, easy to parse, and scalable. + http://www.indilib.org/jdownloads/Source/libindi_1.1.0.tar.gz - libX11-devel - libxcb-devel - xcb-util-devel + libnova-devel + cfitsio-devel + gsl-devel + curl-devel + libjpeg-turbo-devel + libusb-devel + boost-devel + zlib-devel + pkgconfig + cmake - desktop/misc/startup-notification/pspec.xml + science/misc/libindi/pspec.xml - startup-notification + libindi - libX11 - libxcb - xcb-util + libnova + cfitsio + gsl + curl + libjpeg-turbo + libusb + gsl + libgcc + zlib + /usr/bin /usr/lib + /lib/udev/rules.d + /usr/share/indi /usr/share/doc - startup-notification-devel - Development files for startup-notification - startup-notification için geliştirme dosyaları + libindi-devel + Development files for libindi - startup-notification + libindi /usr/include /usr/lib/pkgconfig - /usr/share/doc/*/*.txt - - - 2014-05-18 - 0.12 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-26 - 0.12 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-10-13 - 0.12 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xdg-user-dirs - http://freedesktop.org/wiki/Software/xdg-user-dirs - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - desktop.misc - Utilities to handle user data directories - Kullanıcı veri dizinlerini idare etmek için yardımcı uygulamalar - xdg-user-dirs is a tool to help manage "well known" user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. - xdg-user-dirs, masaüstü ve müzik klasörleri gibi belli başlı kullanıcı dizinlerini yönetmek için bir araçtır. Ayrıca dosya adlarının yerelleştirilmesini de (ör. metin çevirileri) idare eder. - http://user-dirs.freedesktop.org/releases/xdg-user-dirs-0.15.tar.gz - - docbook-xsl - libxml2-devel - libxslt-devel - - - defaults.patch - tr.patch - xdg-user-dirs-0.15-libiconv.patch - - desktop/misc/xdg-user-dirs/pspec.xml - - - xdg-user-dirs - - /etc/X11 - /etc/xdg - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/man - - - xdg-user-dirs.sh - - - 2014-05-01 - 0.15 - Fix Downloads-İndirilenler direcory name. - Serdar Soytetir - kaptan@pisilinux.org + 2015-11-18 + 1.1.0 + Version Bump + Stefan Gronewold (groni) + groni@pisilinux.org - 2014-02-17 - 0.15 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-06-14 + 0.9.7 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org - 2013-08-26 - 0.12 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org + 2014-01-26 + 0.9.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2011-01-19 - 0.12 + 2012-10-28 + 0.9.5 First release - Pisi Linux Admins - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - desktop-file-utils - http://www.freedesktop.org/software/desktop-file-utils/ + eigen3 + http://eigen.tuxfamily.org PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv2-with-exceptions library - desktop.misc - Command line utilities to work with desktop menu entries - Masaüstü menü girdilerini yönetmek için komut satırı araçları - desktop files are used to describe an application for inclusion in GNOME or KDE menus. This package contains desktop-file-validate which checks whether a .desktop file complies with the specification and desktop-file-install which installs a desktop file to the standard directory, optionally fixing it up in the process. - http://freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.21.tar.xz + science.misc + Lightweight C++ template library for linear algebra + Lineer cebir için hafif bir C++ şablon kitaplığı + eigen3 is a lightweight C++ template library for vector and matrix math, a.k.a. linear algebra. + Eigen3, lineer cebir için kullanılan hafif bir C++ şablon kitaplığıdır. + http://bitbucket.org/eigen/eigen/get/3.2.5.tar.bz2 - glib2-devel + cmake + freeglut-devel + fftw3-devel + gmp-devel + mpfr-devel + mesa-devel - desktop/misc/desktop-file-utils/pspec.xml + science/misc/eigen3/pspec.xml - desktop-file-utils - - glib2 - + eigen3 - /usr/bin - /usr/share/doc - /usr/share/man/man1/ - - - System.PackageHandler - - - - - 2013-09-07 - 0.21 - Add comar script. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-26 - 0.21 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-21 - 0.21 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - at-spi2-atk - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - service - desktop.misc - Protocol definitions and daemons for D-Bus at-spi - at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. - mirrors://gnome/at-spi2-atk/2.16/at-spi2-atk-2.16.0.tar.xz - - at-spi2-core-devel - glib2-devel - atk-devel - libX11-devel - dbus-devel - libXtst-devel - - desktop/misc/at-spi2-atk/pspec.xml - - - at-spi2-atk - - atk - dbus - glib2 - at-spi2-core - - - /usr/lib - /usr/share/doc - - - - at-spi2-atk-32bit - 32-bit shared libraries for at-spi2-atk - emul32 - emul32 - - glibc-32bit - at-spi2-core-32bit - atk-32bit - dbus-32bit - glib2-32bit - - - glibc-32bit - atk-32bit - dbus-32bit - glib2-32bit - at-spi2-core-32bit - - - /usr/lib32 - - - - at-spi2-atk-devel - at-spi2-atk için geliştirme dosyaları - at-spi2-atk için geliştirme dosyaları - - at-spi2-atk - - - /usr/lib32/pkgconfig - /usr/lib/pkgconfig /usr/include + /usr/share - - 2015-04-17 - 2.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-15 - 2.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-10 - 2.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2013-07-27 - 2.8.1 - Move pc files to devel pack, rebuild + split packages - PisiLinux Community - admins@pisilinux.org - - - 2013-06-01 - 2.8.1 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-23 - 2.8.1 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-17 - 2.8.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-22 - 2.7.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - shared-mime-info - http://freedesktop.org/wiki/Software/shared-mime-info - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - data - desktop.misc - The shared MIME info database - Paylaşımlı MIME veritabanı tanımlamaları - shared-mim-info est un paquet contenant un grand nombre de types MIME communs, créés en fusionnant les bases de données KDE et GNOME existantes et en les convertissant au nouveau format, ainsi qu'un logiciel pour mettre à jour cette base en fonction des spécifications de share-mime-info. - shared-mime-info is a package containing a large number of common MIME types, created by converting the existing KDE and GNOME databases to the new format and merging them together, and software for updating the database based on the share-mime-info specification. - Bu pakette büyük miktarda dosya türü bilgisi bulunur. Bu bilgiler mevcut KDE ve GNOME veritabanlarının yeni biçime dönüştürülerek birleştirilmesinden oluşmuştur. Ayrıca, pakette bu veritabanını güncelleyen bir uygulama da bulunmaktadır. - http://freedesktop.org/~hadess/shared-mime-info-1.5.tar.xz - - libxml2-devel - glib2-devel - intltool - - - shared-mime-info-xz.patch - - desktop/misc/shared-mime-info/pspec.xml - - - shared-mime-info - - libxml2 - glib2 - - - /etc/X11/xinit - /usr/bin - /usr/share/applications - /usr/share/mime - /usr/share/pkgconfig - /usr/share/locale/ - /usr/share/doc - /usr/share/man - - - System.PackageHandler - System.Package - - - update-mime-database.sh - defaults.list - mimeapps.list - mimetypefixes.xml - - - - - 2015-11-05 - 1.5 + 2015-07-23 + 3.2.5 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - - 2015-02-16 - 1.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-11-07 - 1.3 - Fix ISO images appearing as .txt files in Dolphin - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2014-05-24 - 1.3 + 2015-01-29 + 3.2.4 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-09-05 - 1.1 - Add missing method to pakhandler.py + 2014-07-07 + 3.2.1 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-14 + 3.2.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-09 + 3.2.0 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + wcslib + http://www.atnf.csiro.au/people/Mark.Calabretta/WCS/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + science.misc + A C library that implements the 'World Coordinate System' (WCS) standard in FITS + The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. + ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-5.12.tar.bz2 + + gcc + flex + libgfortran + cfitsio-devel + + science/misc/wcslib/pspec.xml + + + wcslib + + cfitsio + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + wcslib-devel + Development files for wcslib + + wcslib + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-18 + 5.12 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ConsoleKit + https://github.com/Consolekit2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.auth + A framework for defining and tracking users, login sessions, and seats + Kullanıcıları, giriş oturumlarını ve koltukları takip etmek ve tanımlamak için bir altyapı + ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. which keyboard and mouse they use). + ConsoleKit, sisteme giriş yapmış kullanıcıları ve bu kullanıcıların bilgisayar ile nasıl etkileştiğini izleyen bir sistem hizmetidir. + https://github.com/ConsoleKit2/ConsoleKit2/releases/download/1.0.0/ConsoleKit2-1.0.0.tar.bz2 + + acl-devel + pam-devel + dbus-devel + eudev-devel + zlib-devel + glib2-devel + libX11-devel + libnih-devel + cgmanager-devel + polkit-devel + libxslt + xmlto + util-linux + + system/auth/ConsoleKit/pspec.xml + + + ConsoleKit + + acl + pam + dbus + zlib + glib2 + libX11 + libnih + cgmanager + polkit + eudev + + + /etc + /usr/lib/tmpfiles.d/ConsoleKit.conf + /usr/bin + /usr/sbin + /usr/libexec + /lib + /usr/lib + /usr/share/dbus-1 + /usr/share/polkit-1/actions + /usr/share/polkit-1/rules.d + /usr/share/man + /usr/share/locale + /usr/share/doc + /var + + + ConsoleKit.conf + 25-consolekit.rules + consolekit.pamd + pam-foreground-compat.ck + + + + ConsoleKit-devel + Development files for ConsoleKit + ConsoleKit için geliştirme dosyaları + + ConsoleKit + dbus-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-07 + 1.0.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-26 + 1.0.0 + readd pam-foreground-compat.ck script. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-10 + 1.0.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-20 + 0.9.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-16 + 0.9.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-15 + 0.9.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-05 + 0.9.2 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-08-01 + 0.4.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-11 + 0.4.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-06 + 0.4.6 + Dep Fix + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-09 + 0.4.6 + Add gentoo patches and ConsoleKit.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-08 + 0.4.6 + /var/run => /run Marcin Bojara marcin@pisilinux.org - 2013-07-11 - 1.1 - Version bump. + 2013-03-04 + 0.4.6 + Version bump Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2012-10-13 - 1.0 + 2012-08-23 + 0.4.5 First release - Marcin Bojara - marcin@pisilinux.org + PisiLinux Community + admins@pisilinux.org + + + + + + gfxboot + https://github.com/openSUSE/gfxboot + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + Tools to create graphical boot logos + Grafik açılış logosu oluşturma araçları + Set of tools to create graphical boot logos, for grub, lilo and syslinux. It supports arch-specific boot menus, advanced help menus, multiple keymaps, animated images, and more graphical pretty things. + Grub, syslinux ve lilo gibi önyükleyiciler için grafik açılış logoları oluşturma araçları. Mimari bazlı açılış menüsü, gelişmiş yardım menüsü, farklı diller için klavye haritası desteği, hareketli görüntü desteği ve daha pek çok görsel efekt desteği içerir. + gfxboot + https://github.com/openSUSE/gfxboot/archive/4.5.7.tar.gz + + xmlto + freetype-devel + util-linux + libxslt + lynx + + + productname.patch + no-theme-no-git.patch + + system/boot/gfxboot/pspec.xml + + + gfxboot + + perl-HTML-Parser + freetype + + + /usr/sbin + /usr/share/gfxboot/bin + /usr/share/gfxboot + /usr/share/doc + + + + + 2015-08-05 + 4.5.7 + Release bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-14 + 4.5.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-23 + 4.5.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-01-13 + 4.5.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + syslinux + http://syslinux.zytor.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + SysLinux, IsoLinux and PXELinux bootloader + SysLinux, IsoLinux ve PXELinux önyükleyicileri + Lightweight bootloaders for floppy media (SYSLINUX), network booting (PXELINUX), and bootable "El Torito" CD-ROMs (ISOLINUX). The project also includes MEMDISK, a tool to boot legacy operating systems (such as DOS) from nontraditional media; it is usually used in conjunction with PXELINUX and ISOLINUX. + Disket sürücüden (SYSLINUX), ağ üzerinden (PXELINUX) ve açılabilir "El Torito" CD-ROM'lardan (ISOLINUX) açılışı sağlayan hafif önyükleyici araçları. Bu proje ayrıca sık kullanılmayan ya da çok eski işletim sistemlerinin açılışı için genellikle PXELINUX ve ISOLINUX ile ortak kullanılabilen MEMDISK aracını da içermektedir. + https://www.kernel.org/pub/linux/utils/boot/syslinux/4.xx/syslinux-4.07.tar.xz + + nasm + libutil-linux-devel + + + nopie.patch + fixisohybrid.patch + + system/boot/syslinux/pspec.xml + + + syslinux + + mtools + libutil-linux + perl-Crypt-PasswdMD5 + perl-Digest-SHA1 + + + /sbin + /usr/bin + /usr/lib/syslinux + /usr/share/doc + /usr/share/man + + + pisi-iso/isolinux.cfg + pisi-iso/background.png + + + + + 2014-06-14 + 4.07 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-13 + 4.07 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 4.06 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-03-24 + 4.06 + Back to 4x line + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-07 + 5.00 + fix isohybrid + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-08 + 5.00 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gfxtheme-pisilinux-install + www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + system.boot + Pisi Linux gfxboot install theme + Pisi Linux gfxboot teması + Gfxtheme install package for Pisi Linux + Kurulum sistemi ve kurulu sistem için Pisi Linux gfxboot teması. + http://source.pisilinux.org/1.0/gfxtheme-pisilinux-install-0.2.tar.xz + + gfxboot + fribidi-devel + + + chmod-t.patch + + system/boot/gfxtheme-pisilinux-install/pspec.xml + + + gfxtheme-pisilinux-install + + /usr/share/gfxtheme/pisilinux/install + + + + + 2014-08-04 + 0.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-06-14 + 0.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-23 + 0.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-04-06 + 0.1 + First release. + Serdar Soytetir + kaptan@pisilinux.org + + + + + + efivar + https://github.com/vathpela/efivar + + Aydın Demirel + aydin.demirel@pisilinux.org + + LGPL2.1 + app:console + system.boot + Tools and library to manipulate EFI variables + EFI değişkenlerini işlemek için araçlar ve kütüphane + Tools and library to manipulate EFI variables. + EFI değişkenlerini işlemek için araçlar ve kütüphane + https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2 + + popt-devel + + system/boot/efivar/pspec.xml + + + efivar + + /usr/lib + /usr/share/man + /usr/bin + + + + efivar-devel + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-02-21 + 0.15 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-27 + 0.10.8 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + efibootmgr + https://github.com/vathpela/efibootmgr + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL2 + app:console + system.boot + Tool to modify UEFI Firmware Boot Manager Variables + UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç + a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. + UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç + http://source.pisilinux.org/1.0/efibootmgr.tar.gz + + pciutils-devel + zlib-devel + efivar + efivar-devel + + system/boot/efibootmgr/pspec.xml + + + efibootmgr + + /usr/sbin + /usr/share/man + /usr/lib/* + + + + efibootmgr-devel + + /usr/include + + + + + 2014-09-27 + 0.7.0.16 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + memtest86 + http://www.memtest.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + Memory tester + Bellek test edici + Testeur de mémoire pour architecture x86 et x86_64 pour ordinateurs x86 et 64 bit x86 compatibles. Il doit être lancer depuis le menu de démarrage. + Memory tester for x86 and x86_64 devices for x86 and 64bit x86 compatible computers. It should be started from boot menu. + x86 ve 64bit x86 mimarilerindeki bilgisayarın belleklerini test etmeye ve hataları bulmaya yaran bir program. Kullanmak için açılış menüsünden çalıştırmanız gerekmektedir. + http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz + system/boot/memtest86/pspec.xml + + + memtest86 + + /boot + /usr/share/doc + + + + + 2015-01-27 + 5.01 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-14 + 4.20 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-10 + 4.20 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-24 + 4.20 + First release + Erdem Artan + admins@pisilinux.org diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 7e487eec14..dc20af9100 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -4efc72e62a8bd44a60c8a99fcb50fbdeb755e231 \ No newline at end of file +1839d0293c6d49026506091669b8cc2b6c8ddf80 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 86fec9e96d..953d1e3df1 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 7fb8e260f2..52a1951e25 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -f42fa2429c44709326cfa4cfa96290622f7ceb3a \ No newline at end of file +252e424681ff85fd8ff87dc089fe6b15e01aa899 \ No newline at end of file diff --git a/server/ntp/actions.py b/server/ntp/actions.py new file mode 100644 index 0000000000..b0bee8e9e9 --- /dev/null +++ b/server/ntp/actions.py @@ -0,0 +1,59 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +WorkDir="%s" % get.srcDIR().replace("_", "") + +def setup(): + shelltools.export("CFLAGS", "%s -pie -fPIE -fno-strict-aliasing" % get.CFLAGS()) + + # needed to link with avahi + shelltools.export("ac_cv_header_dns_sd_h", "yes") + shelltools.export("ac_cv_lib_dns_sd_DNSServiceRegister", "yes") + + pisitools.dosed("ntpstat-0.2/Makefile", "^CC=.*gcc", "CC=%s" % get.CC()) + pisitools.dosed("ntpstat-0.2/Makefile", "^CFLAGS=.*", "CFLAGS=%s" % get.CFLAGS()) + + autotools.configure("--enable-all-clocks \ + --enable-parse-clocks \ + --enable-linuxcaps \ + --enable-ipv6 \ + --with-crypto") + +def build(): + autotools.make() + autotools.make("-C ntpstat-0.2") + + #shelltools.cd("html") + #shelltools.system("../scripts/html2man") + #shelltools.system("../fix-man-pages") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + # Remove autotools installed man pages + pisitools.removeDir("/usr/share/man") + + # pisitools.doman("html/man/man5/*.5", "html/man/man8/*.8") + + for sbin in ["sntp", "ntpdc", "ntpd", "ntp-keygen", "ntp-wait", + "ntpq", "ntptime", "ntptrace", "tickadj", "ntpsnmpd", "ntpdate"]: + pisitools.domove("/usr/bin/%s" % sbin, "/usr/sbin") + + # Additional ntpstat binary and man page + pisitools.dobin("ntpstat-0.2/ntpstat") + pisitools.doman("ntpstat-0.2/ntpstat.1") + + pisitools.dodir("/var/lib/ntp") + + #pisitools.removeDir("/usr/lib") + + pisitools.dohtml("html/*") + pisitools.dodoc("ChangeLog", "NEWS", "README", "TODO", "WHERE-TO-START") diff --git a/server/ntp/comar/ntp-server-package.py b/server/ntp/comar/ntp-server-package.py new file mode 100644 index 0000000000..6035f682ab --- /dev/null +++ b/server/ntp/comar/ntp-server-package.py @@ -0,0 +1,8 @@ +#!/usr/bin/python + +import os + +def postInstall(fromVersion, fromRelease, toVersion, toRelease): + os.system("chown -R ntp:ntp /var/lib/ntp") + os.system("chown -R root:ntp /etc/ntp/crypto") + os.chmod("/etc/ntp/crypto", 0750) diff --git a/server/ntp/comar/ntpd-service.py b/server/ntp/comar/ntpd-service.py new file mode 100644 index 0000000000..8150b8cd6f --- /dev/null +++ b/server/ntp/comar/ntpd-service.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +from comar.service import * + +import os + +serviceType = "server" +serviceDesc = _({"en": "NTP Daemon", + "tr": "NTP Hizmeti"}) +serviceConf = "ntpd" + +PIDFILE = "/run/ntpd.pid" + +@synchronized +def start(): + startService(command="/usr/sbin/ntpd", + args=config.get("OPTIONS", "-u ntp:ntp -p %s -g" % PIDFILE), + donotify=True) + +@synchronized +def stop(): + stopService(pidfile=PIDFILE, + donotify=True) + + if os.path.exists(PIDFILE): + os.unlink(PIDFILE) + +def status(): + return isServiceRunning(pidfile=PIDFILE) diff --git a/server/ntp/comar/ntpdate-package.py b/server/ntp/comar/ntpdate-package.py new file mode 100644 index 0000000000..455f7a50b6 --- /dev/null +++ b/server/ntp/comar/ntpdate-package.py @@ -0,0 +1,7 @@ +#!/usr/bin/python + +import os + +def postInstall(fromVersion, fromRelease, toVersion, toRelease): + os.system("/bin/chown root:wheel /usr/sbin/ntpdate") + os.system("/bin/chmod 04710 /usr/sbin/ntpdate") diff --git a/server/ntp/comar/ntpdate-service.py b/server/ntp/comar/ntpdate-service.py new file mode 100644 index 0000000000..4d34920ca6 --- /dev/null +++ b/server/ntp/comar/ntpdate-service.py @@ -0,0 +1,80 @@ +# -*- coding: utf-8 -*- +from comar.service import * + +import re + +serviceType = "local" +serviceDesc = _({"en": "Set the date & time via NTP", + "tr": "Tarih & zamanı NTP ile ayarlayın"}) +serviceConf = "ntpdate" +serviceDefault = "conditional" + +# ntpdate will run if it finds a ticker in any of the configuration files + +NTPCONF = "/etc/ntp.conf" +NTPSTEP = "/etc/ntp/step-tickers" +PIDFILE = "/run/ntpdate.pid" + +MSG_NOSERVER = _({"en" : "NTP server not specified in %s or %s." % (NTPSTEP, NTPCONF), + "tr" : "%s veya %s dosyasında hiç NTP sunucu belirtilmemiş." % (NTPSTEP, NTPCONF)}) + +def parse_tickers(): + tickers = [] + if os.path.exists(NTPSTEP): + for line in open(NTPSTEP, "r").read().strip().split("\n"): + if line and not line.startswith("#"): + tickers.append(line) + + if tickers: + return tickers + + if os.path.exists(NTPCONF): + for line in open(NTPCONF, "r").read().strip().split("\n"): + if line.startswith(("server", "peer")): + try: + peer = line.split()[1] + if not re.match("127\.127\.[0-9]+\.[0-9]+", peer): + tickers.append(peer) + except IndexError: + pass + + return tickers + +@synchronized +def start(): + tickers = parse_tickers() + + if len(tickers) == 0: + fail(MSG_NOSERVER) + + tickers = " ".join(tickers) + + # Eventhough the ntpdate is a oneshot process, the pidfile hack is used to + # work around COMAR's silly status() check in startService() + startService(command="/usr/sbin/ntpdate", + args="%s %s" % (config.get("OPTIONS", "-U ntp -s -b"), tickers), + makepid=True, + pidfile=PIDFILE, + donotify=True) + + if os.path.exists(PIDFILE): + os.unlink(PIDFILE) + + if config.get("SYNC_HWCLOCK", "no") == "yes": + run("/sbin/hwclock --systohc") + +def ready(): + status = is_on() + tickers = parse_tickers() + if status == "on" or (status == "conditional" and tickers): + start() + + +@synchronized +def stop(): + # There's nothing to do + pass + +def status(): + # No need to supply a status as the service is oneshot + return diff --git a/server/ntp/files/fedora/ntp-4.2.4p7-getprecision.patch b/server/ntp/files/fedora/ntp-4.2.4p7-getprecision.patch new file mode 100644 index 0000000000..ecf6defafa --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.4p7-getprecision.patch @@ -0,0 +1,12 @@ +diff -up ntp-4.2.4p7/ntpd/ntp_proto.c.getprecision ntp-4.2.4p7/ntpd/ntp_proto.c +--- ntp-4.2.4p7/ntpd/ntp_proto.c.getprecision 2009-09-29 14:16:22.000000000 +0200 ++++ ntp-4.2.4p7/ntpd/ntp_proto.c 2009-09-29 14:18:13.000000000 +0200 +@@ -3099,7 +3099,7 @@ peer_unfit( + /* + * Find the precision of this particular machine + */ +-#define MINSTEP 100e-9 /* minimum clock increment (s) */ ++#define MINSTEP 10e-9 /* minimum clock increment (s) */ + #define MAXSTEP 20e-3 /* maximum clock increment (s) */ + #define MINLOOPS 5 /* minimum number of step samples */ + diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-bcast.patch b/server/ntp/files/fedora/ntp-4.2.6p1-bcast.patch new file mode 100644 index 0000000000..8c30cf3231 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-bcast.patch @@ -0,0 +1,93 @@ +diff -up ntp-4.2.6p1/ntpd/ntp_io.c.bcast ntp-4.2.6p1/ntpd/ntp_io.c +--- ntp-4.2.6p1/ntpd/ntp_io.c.bcast 2009-12-09 08:36:37.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_io.c 2010-03-05 14:49:25.000000000 +0100 +@@ -151,6 +151,8 @@ int ninterfaces; /* Total number of in + + int disable_dynamic_updates; /* scan interfaces once only */ + ++static int pktinfo_status = 0; /* is IP_PKTINFO on wildipv4 iface enabled? */ ++ + #ifdef REFCLOCK + /* + * Refclock stuff. We keep a chain of structures with data concerning +@@ -1937,6 +1939,17 @@ set_reuseaddr( + #endif /* ! SO_EXCLUSIVEADDRUSE */ + } + ++static void ++set_pktinfo(int flag) ++{ ++ if (wildipv4 == NULL) ++ return; ++ if (setsockopt(wildipv4->fd, SOL_IP, IP_PKTINFO, &flag, sizeof (flag))) { ++ msyslog(LOG_ERR, "set_pktinfo: setsockopt(IP_PKTINFO, %s) failed: %m", flag ? "on" : "off"); ++ } else ++ pktinfo_status = flag; ++} ++ + /* + * This is just a wrapper around an internal function so we can + * make other changes as necessary later on +@@ -2374,6 +2387,7 @@ io_setbclient(void) + } + } + set_reuseaddr(0); ++ set_pktinfo(1); + if (nif > 0) + DPRINTF(1, ("io_setbclient: Opened broadcast clients\n")); + else if (!nif) +@@ -2405,6 +2419,7 @@ io_unsetbclient(void) + + socket_broadcast_disable(interf, &interf->sin); + } ++ set_pktinfo(0); + } + + /* +@@ -3130,7 +3145,8 @@ read_network_packet( + #ifdef HAVE_TIMESTAMP + struct msghdr msghdr; + struct iovec iovec; +- char control[TIMESTAMP_CTLMSGBUF_SIZE]; ++ char control[sizeof (struct cmsghdr) * 2 + sizeof (struct timeval) + ++ sizeof (struct in_pktinfo) + 32]; + #endif + + /* +@@ -3141,7 +3157,7 @@ read_network_packet( + */ + + rb = get_free_recv_buffer(); +- if (NULL == rb || itf->ignore_packets) { ++ if (NULL == rb || (itf->ignore_packets && !(pktinfo_status && itf == wildipv4))) { + char buf[RX_BUFF_SIZE]; + sockaddr_u from; + +@@ -3201,6 +3217,27 @@ read_network_packet( + return (buflen); + } + ++ if (pktinfo_status && itf->ignore_packets && itf == wildipv4) { ++ /* check for broadcast on 255.255.255.255, exception allowed on wildipv4 */ ++ struct cmsghdr *cmsg; ++ struct in_pktinfo *pktinfo = NULL; ++ ++ if ((cmsg = CMSG_FIRSTHDR(&msghdr))) ++ do { ++ if (cmsg->cmsg_level == SOL_IP && cmsg->cmsg_type == IP_PKTINFO) ++ pktinfo = (struct in_pktinfo *) CMSG_DATA(cmsg); ++ } while ((cmsg = CMSG_NXTHDR(&msghdr, cmsg))); ++ if (pktinfo && pktinfo->ipi_addr.s_addr == INADDR_BROADCAST) { ++ DPRINTF(4, ("INADDR_BROADCAST\n")); ++ } else { ++ DPRINTF(4, ("%s on (%lu) fd=%d from %s\n", "ignore", ++ free_recvbuffs(), fd, stoa(&rb->recv_srcadr))); ++ packets_ignored++; ++ freerecvbuf(rb); ++ return (buflen); ++ } ++ } ++ + DPRINTF(3, ("read_network_packet: fd=%d length %d from %s\n", + fd, buflen, stoa(&rb->recv_srcadr))); + diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-cmsgalign.patch b/server/ntp/files/fedora/ntp-4.2.6p1-cmsgalign.patch new file mode 100644 index 0000000000..0e4b8ccc7a --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-cmsgalign.patch @@ -0,0 +1,14 @@ +diff -up ntp-4.2.6p1/ntpd/ntp_io.c.cmsgalign ntp-4.2.6p1/ntpd/ntp_io.c +--- ntp-4.2.6p1/ntpd/ntp_io.c.cmsgalign 2010-03-04 18:28:53.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_io.c 2010-03-04 18:30:34.000000000 +0100 +@@ -3194,8 +3194,8 @@ read_network_packet( + msghdr.msg_namelen = fromlen; + msghdr.msg_iov = &iovec; + msghdr.msg_iovlen = 1; +- msghdr.msg_control = (void *)&control; +- msghdr.msg_controllen = sizeof(control); ++ msghdr.msg_control = (void *)((long)(control + 7) & -8); /* align to 8 bytes */ ++ msghdr.msg_controllen = sizeof(control) - 8; + msghdr.msg_flags = 0; + rb->recv_length = recvmsg(fd, &msghdr, 0); + #endif diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-droproot.patch b/server/ntp/files/fedora/ntp-4.2.6p1-droproot.patch new file mode 100644 index 0000000000..4d946b2a30 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-droproot.patch @@ -0,0 +1,208 @@ +diff -up ntp-4.2.6p1/html/ntpdate.html.droproot ntp-4.2.6p1/html/ntpdate.html +--- ntp-4.2.6p1/html/ntpdate.html.droproot 2006-12-28 13:02:58.000000000 +0100 ++++ ntp-4.2.6p1/html/ntpdate.html 2010-03-03 15:32:08.000000000 +0100 +@@ -18,7 +18,7 @@ +
+

Disclaimer: The functionality of this program is now available in the ntpd program. See the -q command line option in the ntpd - Network Time Protocol (NTP) daemon page. After a suitable period of mourning, the ntpdate program is to be retired from this distribution

+

Synopsis

+- ntpdate [ -bBdoqsuv ] [ -a key ] [ -e authdelay ] [ -k keyfile ] [ -o version ] [ -p samples ] [ -t timeout ] server [ ... ] ++ ntpdate [ -bBdoqsuv ] [ -a key ] [ -e authdelay ] [ -k keyfile ] [ -o version ] [ -p samples ] [ -t timeout ] [ -U user_name ] server [ ... ] +

Description

+ ntpdate sets the local date and time by polling the Network Time Protocol (NTP) server(s) given as the server arguments to determine the correct time. It must be run as root on the local host. A number of samples are obtained from each of the servers specified and a subset of the NTP clock filter and selection algorithms are applied to select the best of these. Note that the accuracy and reliability of ntpdate depends on the number of servers, the number of polls each time it is run and the interval between runs. +

ntpdate can be run manually as necessary to set the host clock, or it can be run from the host startup script to set the clock at boot time. This is useful in some cases to set the clock initially before starting the NTP daemon ntpd. It is also possible to run ntpdate from a cron script. However, it is important to note that ntpdate with contrived cron scripts is no substitute for the NTP daemon, which uses sophisticated algorithms to maximize accuracy and reliability while minimizing resource use. Finally, since ntpdate does not discipline the host clock frequency as does ntpd, the accuracy using ntpdate is limited.

+@@ -58,6 +58,11 @@ +
Direct ntpdate to use an unprivileged port or outgoing packets. This is most useful when behind a firewall that blocks incoming traffic to privileged ports, and you want to synchronise with hosts beyond the firewall. Note that the -d option always uses unprivileged ports. +
-v +
Be verbose. This option will cause ntpdate's version identification string to be logged. ++ ++
-U user_name
++
ntpdate process drops root privileges and changes user ID to ++ user_name and group ID to the primary group of ++ server_user. + +

Diagnostics

+ ntpdate's exit status is zero if it finds a server and updates the clock, and nonzero otherwise. +diff -up ntp-4.2.6p1/ntpdate/ntpdate.c.droproot ntp-4.2.6p1/ntpdate/ntpdate.c +--- ntp-4.2.6p1/ntpdate/ntpdate.c.droproot 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p1/ntpdate/ntpdate.c 2010-03-03 15:33:06.000000000 +0100 +@@ -48,6 +48,12 @@ + + #include + ++/* Linux capabilities */ ++#include ++#include ++#include ++#include ++ + #ifdef SYS_VXWORKS + # include "ioLib.h" + # include "sockLib.h" +@@ -152,6 +158,11 @@ int simple_query = 0; + int unpriv_port = 0; + + /* ++ * Use capabilities to drop privileges and switch uids ++ */ ++char *server_user; ++ ++/* + * Program name. + */ + char *progname; +@@ -293,6 +304,88 @@ void clear_globals() + static ni_namelist *getnetinfoservers (void); + #endif + ++/* This patch is adapted (copied) from Chris Wings drop root patch ++ * for xntpd. ++ */ ++void drop_root(uid_t server_uid, gid_t server_gid) ++{ ++ cap_t caps; ++ ++ if (prctl(PR_SET_KEEPCAPS, 1)) { ++ if (syslogit) { ++ msyslog(LOG_ERR, "prctl(PR_SET_KEEPCAPS, 1) failed"); ++ } ++ else { ++ fprintf(stderr, "prctl(PR_SET_KEEPCAPS, 1) failed.\n"); ++ } ++ exit(1); ++ } ++ ++ if ( setgroups(0, NULL) == -1 ) { ++ if (syslogit) { ++ msyslog(LOG_ERR, "setgroups failed."); ++ } ++ else { ++ fprintf(stderr, "setgroups failed.\n"); ++ } ++ exit(1); ++ } ++ ++ if ( setegid(server_gid) == -1 || seteuid(server_uid) == -1 ) { ++ if (syslogit) { ++ msyslog(LOG_ERR, "setegid/seteuid to uid=%d/gid=%d failed.", server_uid, ++ server_gid); ++ } ++ else { ++ fprintf(stderr, "setegid/seteuid to uid=%d/gid=%d failed.\n", server_uid, ++ server_gid); ++ } ++ exit(1); ++ } ++ ++ caps = cap_from_text("cap_sys_time=epi"); ++ if (caps == NULL) { ++ if (syslogit) { ++ msyslog(LOG_ERR, "cap_from_text failed."); ++ } ++ else { ++ fprintf(stderr, "cap_from_text failed.\n"); ++ } ++ exit(1); ++ } ++ ++ if (cap_set_proc(caps) == -1) { ++ if (syslogit) { ++ msyslog(LOG_ERR, "cap_set_proc failed."); ++ } ++ else { ++ fprintf(stderr, "cap_set_proc failed.\n"); ++ } ++ exit(1); ++ } ++ ++ /* Try to free the memory from cap_from_text */ ++ cap_free( caps ); ++ ++ if ( setregid(server_gid, server_gid) == -1 || ++ setreuid(server_uid, server_uid) == -1 ) { ++ if (syslogit) { ++ msyslog(LOG_ERR, "setregid/setreuid to uid=%d/gid=%d failed.", ++ server_uid, server_gid); ++ } ++ else { ++ fprintf(stderr, "setregid/setreuid to uid=%d/gid=%d failed.\n", ++ server_uid, server_gid); ++ } ++ exit(1); ++ } ++ ++ if (syslogit) { ++ msyslog(LOG_DEBUG, "running as uid(%d)/gid(%d) euid(%d)/egid(%d).", ++ getuid(), getgid(), geteuid(), getegid()); ++ } ++} ++ + /* + * Main program. Initialize us and loop waiting for I/O and/or + * timer expiries. +@@ -340,6 +433,8 @@ ntpdatemain ( + + init_lib(); /* sets up ipv4_works, ipv6_works */ + ++ server_user = NULL; ++ + /* Check to see if we have IPv6. Otherwise default to IPv4 */ + if (!ipv6_works) + ai_fam_templ = AF_INET; +@@ -351,7 +446,7 @@ ntpdatemain ( + /* + * Decode argument list + */ +- while ((c = ntp_getopt(argc, argv, "46a:bBde:k:o:p:qst:uv")) != EOF) ++ while ((c = ntp_getopt(argc, argv, "46a:bBde:k:o:p:qst:uvU:")) != EOF) + switch (c) + { + case '4': +@@ -429,6 +524,14 @@ ntpdatemain ( + case 'u': + unpriv_port = 1; + break; ++ case 'U': ++ if (ntp_optarg) { ++ server_user = strdup(ntp_optarg); ++ } ++ else { ++ ++errflg; ++ } ++ break; + case '?': + ++errflg; + break; +@@ -438,7 +541,7 @@ ntpdatemain ( + + if (errflg) { + (void) fprintf(stderr, +- "usage: %s [-46bBdqsuv] [-a key#] [-e delay] [-k file] [-p samples] [-o version#] [-t timeo] server ...\n", ++ "usage: %s [-46bBdqsuv] [-a key#] [-e delay] [-k file] [-p samples] [-o version#] [-t timeo] [-U username] server ...\n", + progname); + exit(2); + } +@@ -544,6 +647,24 @@ ntpdatemain ( + initializing = 0; + was_alarmed = 0; + ++ if (server_user) { ++ struct passwd *pwd = NULL; ++ ++ /* Lookup server_user uid/gid before chroot/chdir */ ++ pwd = getpwnam( server_user ); ++ if ( pwd == NULL ) { ++ if (syslogit) { ++ msyslog(LOG_ERR, "Failed to lookup user '%s'.", server_user); ++ } ++ else { ++ fprintf(stderr, "Failed to lookup user '%s'.\n", server_user); ++ } ++ exit(1); ++ } ++ drop_root(pwd->pw_uid, pwd->pw_gid); ++ } ++ ++ + while (complete_servers < sys_numservers) { + #ifdef HAVE_POLL_H + struct pollfd* rdfdes; diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-logdefault.patch b/server/ntp/files/fedora/ntp-4.2.6p1-logdefault.patch new file mode 100644 index 0000000000..ae816b7419 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-logdefault.patch @@ -0,0 +1,12 @@ +diff -up ntp-4.2.6p1/ntpd/ntp_config.c.logdefault ntp-4.2.6p1/ntpd/ntp_config.c +--- ntp-4.2.6p1/ntpd/ntp_config.c.logdefault 2010-01-24 11:01:45.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_config.c 2010-03-09 17:44:09.000000000 +0100 +@@ -3794,7 +3794,7 @@ getconfig( + + #endif /* SYS_WINNT */ + res_fp = NULL; +- ntp_syslogmask = NLOG_SYNCMASK; /* set more via logconfig */ ++ ntp_syslogmask = NLOG_SYNCMASK | NLOG_EVENT | NLOG_STATUS; /* set more via logconfig */ + + /* + * install a non default variable with this daemon version diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-nano.patch b/server/ntp/files/fedora/ntp-4.2.6p1-nano.patch new file mode 100644 index 0000000000..aa1cf15985 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-nano.patch @@ -0,0 +1,18 @@ +diff -up ntp-4.2.6p1/include/ntp_syscall.h.nano ntp-4.2.6p1/include/ntp_syscall.h +--- ntp-4.2.6p1/include/ntp_syscall.h.nano 2009-12-09 08:36:37.000000000 +0100 ++++ ntp-4.2.6p1/include/ntp_syscall.h 2010-03-03 15:42:18.000000000 +0100 +@@ -14,6 +14,14 @@ + # include + #endif + ++#if defined(ADJ_NANO) && !defined(MOD_NANO) ++#define MOD_NANO ADJ_NANO ++#endif ++ ++#if defined(ADJ_TAI) && !defined(MOD_TAI) ++#define MOD_TAI ADJ_TAI ++#endif ++ + #ifndef NTP_SYSCALLS_LIBC + #ifdef NTP_SYSCALLS_STD + # define ntp_adjtime(t) syscall(SYS_ntp_adjtime, (t)) diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-retcode.patch b/server/ntp/files/fedora/ntp-4.2.6p1-retcode.patch new file mode 100644 index 0000000000..6d676d274e --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-retcode.patch @@ -0,0 +1,12 @@ +diff -up ntp-4.2.6p1/ntpd/ntp_proto.c.retcode ntp-4.2.6p1/ntpd/ntp_proto.c +--- ntp-4.2.6p1/ntpd/ntp_proto.c.retcode 2009-12-09 08:36:36.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_proto.c 2010-03-03 16:06:00.000000000 +0100 +@@ -269,7 +269,7 @@ transmit( + "ntpd: no servers found"); + printf( + "ntpd: no servers found\n"); +- exit (0); ++ exit (1); + } + } + } diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-rtnetlink.patch b/server/ntp/files/fedora/ntp-4.2.6p1-rtnetlink.patch new file mode 100644 index 0000000000..2f3aa418d7 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-rtnetlink.patch @@ -0,0 +1,26 @@ +diff -up ntp-4.2.6p1/configure.rtnetlink ntp-4.2.6p1/configure +--- ntp-4.2.6p1/configure.rtnetlink 2010-02-09 11:19:49.000000000 +0100 ++++ ntp-4.2.6p1/configure 2010-03-04 17:11:50.000000000 +0100 +@@ -20579,6 +20579,7 @@ else + /* end confdefs.h. */ + + #include ++#include + #include + int + main () +diff -up ntp-4.2.6p1/ntpd/ntp_io.c.rtnetlink ntp-4.2.6p1/ntpd/ntp_io.c +--- ntp-4.2.6p1/ntpd/ntp_io.c.rtnetlink 2009-12-09 08:36:37.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_io.c 2010-03-04 17:11:32.000000000 +0100 +@@ -4304,10 +4304,7 @@ init_async_notifications() + #ifdef HAVE_RTNETLINK + memset(&sa, 0, sizeof(sa)); + sa.nl_family = PF_NETLINK; +- sa.nl_groups = RTMGRP_LINK | RTMGRP_IPV4_IFADDR +- | RTMGRP_IPV6_IFADDR | RTMGRP_IPV4_ROUTE +- | RTMGRP_IPV4_MROUTE | RTMGRP_IPV6_ROUTE +- | RTMGRP_IPV6_MROUTE; ++ sa.nl_groups = RTMGRP_IPV4_IFADDR | RTMGRP_IPV6_IFADDR; + if (bind(fd, (struct sockaddr *)&sa, sizeof(sa)) < 0) { + msyslog(LOG_ERR, + "bind failed on routing socket (%m) - using polled interface update"); diff --git a/server/ntp/files/fedora/ntp-4.2.6p1-sleep.patch b/server/ntp/files/fedora/ntp-4.2.6p1-sleep.patch new file mode 100644 index 0000000000..577ef26eed --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p1-sleep.patch @@ -0,0 +1,495 @@ +diff -up ntp-4.2.6p1/include/ntp_refclock.h.sleep ntp-4.2.6p1/include/ntp_refclock.h +--- ntp-4.2.6p1/include/ntp_refclock.h.sleep 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p1/include/ntp_refclock.h 2010-03-10 19:27:46.000000000 +0100 +@@ -260,6 +260,7 @@ extern void refclock_control (sockaddr_u + struct refclockstat *); + extern int refclock_open (char *, u_int, u_int); + extern int refclock_setup (int, u_int, u_int); ++extern int refclock_timer_needed (struct peer *); + extern void refclock_timer (struct peer *); + extern void refclock_transmit (struct peer *); + extern int refclock_ioctl (int, u_int); +diff -up ntp-4.2.6p1/include/ntp_stdlib.h.sleep ntp-4.2.6p1/include/ntp_stdlib.h +--- ntp-4.2.6p1/include/ntp_stdlib.h.sleep 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p1/include/ntp_stdlib.h 2010-03-10 19:27:46.000000000 +0100 +@@ -116,6 +116,7 @@ extern const char * FindConfig (const ch + extern void signal_no_reset (int, RETSIGTYPE (*func)(int)); + + extern void getauthkeys (const char *); ++extern int auth_agekeys_needed (void); + extern void auth_agekeys (void); + extern void rereadkeys (void); + +diff -up ntp-4.2.6p1/include/ntpd.h.sleep ntp-4.2.6p1/include/ntpd.h +--- ntp-4.2.6p1/include/ntpd.h.sleep 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p1/include/ntpd.h 2010-03-10 19:27:46.000000000 +0100 +@@ -112,8 +112,10 @@ extern void block_io_and_alarm (void); + /* ntp_loopfilter.c */ + extern void init_loopfilter(void); + extern int local_clock(struct peer *, double); +-extern void adj_host_clock(void); ++extern int adj_host_clock_needed(void); ++extern void adj_host_clock(int); + extern void loop_config(int, double); ++extern int huffpuff_enabled(void); + extern void huffpuff(void); + extern u_long sys_clocktime; + extern u_int sys_tai; +@@ -219,6 +221,8 @@ extern void hack_restrict (int, sockaddr + /* ntp_timer.c */ + extern void init_timer (void); + extern void reinit_timer (void); ++extern double get_timeout (l_fp *); ++extern int timer_elapsed (l_fp, int); + extern void timer (void); + extern void timer_clr_stats (void); + extern void timer_interfacetimeout (u_long); +diff -up ntp-4.2.6p1/libntp/authkeys.c.sleep ntp-4.2.6p1/libntp/authkeys.c +--- ntp-4.2.6p1/libntp/authkeys.c.sleep 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p1/libntp/authkeys.c 2010-03-10 19:27:46.000000000 +0100 +@@ -445,6 +445,25 @@ auth_delkeys(void) + } + } + ++int ++auth_agekeys_needed(void) { ++ struct savekey *sk; ++ int i; ++ ++ if (authnumkeys > 20) ++ return 1; ++ ++ for (i = 0; i < HASHSIZE; i++) { ++ sk = key_hash[i]; ++ while (sk != 0) { ++ if (sk->lifetime > 0) ++ return 1; ++ sk = sk->next; ++ } ++ } ++ return 0; ++} ++ + /* + * auth_agekeys - delete keys whose lifetimes have expired + */ +diff -up ntp-4.2.6p1/ntpd/ntp_loopfilter.c.sleep ntp-4.2.6p1/ntpd/ntp_loopfilter.c +--- ntp-4.2.6p1/ntpd/ntp_loopfilter.c.sleep 2009-12-09 08:36:36.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_loopfilter.c 2010-03-10 19:27:46.000000000 +0100 +@@ -677,6 +677,13 @@ local_clock( + #endif /* LOCKCLOCK */ + } + ++int ++adj_host_clock_needed(void) ++{ ++ return !(!ntp_enable || mode_ntpdate || (pll_control && ++ kern_enable)); ++} ++ + + /* + * adj_host_clock - Called once every second to update the local clock. +@@ -686,7 +693,7 @@ local_clock( + */ + void + adj_host_clock( +- void ++ int time_elapsed + ) + { + double adjustment; +@@ -698,7 +705,7 @@ adj_host_clock( + * since the poll interval can exceed one day, the old test + * would be counterproductive. + */ +- sys_rootdisp += clock_phi; ++ sys_rootdisp += clock_phi * time_elapsed; + + #ifndef LOCKCLOCK + /* +@@ -819,6 +826,12 @@ set_freq( + #endif /* KERNEL_PLL */ + } + ++int ++huffpuff_enabled(void) ++{ ++ return sys_huffpuff != NULL; ++} ++ + /* + * huff-n'-puff filter + */ +diff -up ntp-4.2.6p1/ntpd/ntp_refclock.c.sleep ntp-4.2.6p1/ntpd/ntp_refclock.c +--- ntp-4.2.6p1/ntpd/ntp_refclock.c.sleep 2009-12-09 08:36:36.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_refclock.c 2010-03-10 19:27:46.000000000 +0100 +@@ -268,6 +268,21 @@ refclock_unpeer( + } + + ++int ++refclock_timer_needed( ++ struct peer *peer /* peer structure pointer */ ++ ) ++{ ++ u_char clktype; ++ int unit; ++ ++ clktype = peer->refclktype; ++ unit = peer->refclkunit; ++ if (refclock_conf[clktype]->clock_timer != noentry) ++ return 1; ++ return 0; ++} ++ + /* + * refclock_timer - called once per second for housekeeping. + */ +diff -up ntp-4.2.6p1/ntpd/ntp_timer.c.sleep ntp-4.2.6p1/ntpd/ntp_timer.c +--- ntp-4.2.6p1/ntpd/ntp_timer.c.sleep 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntp_timer.c 2010-03-11 15:23:59.000000000 +0100 +@@ -56,7 +56,6 @@ static u_long adjust_timer; /* second ti + static u_long stats_timer; /* stats timer */ + static u_long huffpuff_timer; /* huff-n'-puff timer */ + u_long leapsec; /* leapseconds countdown */ +-l_fp sys_time; /* current system time */ + #ifdef OPENSSL + static u_long revoke_timer; /* keys revoke timer */ + static u_long keys_timer; /* session key timer */ +@@ -74,6 +73,12 @@ volatile u_long alarm_overflow; + #define DAY (24 * HOUR) + + u_long current_time; /* seconds since startup */ ++l_fp timer_base; ++int time_elapsed; ++ ++#define TIMEOUT_TS_SIZE 2 ++l_fp timeout_ts[TIMEOUT_TS_SIZE]; ++unsigned int timeout_ts_index; + + /* + * Stats. Number of overflows and number of calls to transmit(). +@@ -110,6 +115,8 @@ static RETSIGTYPE alarming (int); + void + reinit_timer(void) + { ++ get_systime(&timer_base); ++#if 0 + #if !defined(SYS_WINNT) && !defined(VMS) + # if defined(HAVE_TIMER_CREATE) && defined(HAVE_TIMER_SETTIME) + timer_gettime(ntpd_timerid, &itimer); +@@ -143,6 +150,7 @@ reinit_timer(void) + setitimer(ITIMER_REAL, &itimer, (struct itimerval *)0); + # endif + # endif /* VMS */ ++#endif + } + + /* +@@ -165,6 +173,12 @@ init_timer(void) + timer_xmtcalls = 0; + timer_timereset = 0; + ++ get_systime(&timer_base); ++ ++ for (timeout_ts_index = 0; timeout_ts_index < TIMEOUT_TS_SIZE; timeout_ts_index++) ++ L_CLR(&timeout_ts[timeout_ts_index]); ++ timeout_ts_index = 0; ++#if 0 + #if !defined(SYS_WINNT) + /* + * Set up the alarm interrupt. The first comes 2**EVENT_TIMEOUT +@@ -226,6 +240,7 @@ init_timer(void) + } + + #endif /* SYS_WINNT */ ++#endif + } + + #if defined(SYS_WINNT) +@@ -236,6 +251,104 @@ get_timer_handle(void) + } + #endif + ++double ++get_timeout(l_fp *now) ++{ ++ register struct peer *peer, *next_peer; ++ u_int n; ++ double r; ++ int next; ++ l_fp ts; ++ ++ ts = *now; ++ L_SUB(&ts, &timeout_ts[timeout_ts_index]); ++ timeout_ts[timeout_ts_index] = *now; ++ timeout_ts_index = (timeout_ts_index + 1) % TIMEOUT_TS_SIZE; ++ ++ /* don't waste CPU time if called too frequently */ ++ if (ts.l_ui == 0) { ++ next = 1; ++ goto finish; ++ } ++ ++ next = current_time + HOUR; ++ ++ if (adj_host_clock_needed()) { ++ next = 1; ++ goto finish; ++ } ++ for (n = 0; n < NTP_HASH_SIZE; n++) { ++ for (peer = peer_hash[n]; peer != 0; peer = next_peer) { ++ next_peer = peer->next; ++#ifdef REFCLOCK ++ if (peer->flags & FLAG_REFCLOCK && refclock_timer_needed(peer)) { ++ next = 1; ++ goto finish; ++ } ++#endif /* REFCLOCK */ ++ if (peer->action) ++ next = min(next, peer->nextaction); ++ next = min(next, peer->nextdate); ++ } ++ } ++ ++ if (leapsec > 0) ++ next = min(next, leapsec); ++ ++ if (huffpuff_enabled()) ++ next = min(next, huffpuff_timer); ++ ++#ifdef OPENSSL ++ if (auth_agekeys_needed()) ++ next = min(next, keys_timer); ++ if (sys_leap != LEAP_NOTINSYNC) ++ next = min(next, revoke_timer); ++#endif /* OPENSSL */ ++ ++ if (interface_interval) ++ next = min(next, interface_timer); ++ ++ next = min(next, stats_timer); ++ ++ next -= current_time; ++ if (next <= 0) ++ next = 1; ++finish: ++ ts = timer_base; ++ ts.l_ui += next; ++ L_SUB(&ts, now); ++ LFPTOD(&ts, r); ++#ifdef DEBUG ++ DPRINTF(2, ("timer: timeout %f\n", r)); ++#endif ++ ++ return r; ++} ++ ++int ++timer_elapsed(l_fp now, int timeout) ++{ ++ int elapsed; ++ ++ L_SUB(&now, &timer_base); ++ elapsed = now.l_i; ++ if (elapsed < 0 || elapsed > timeout + 10) { ++#ifdef DEBUG ++ DPRINTF(2, ("timer: unexpected time jump\n")); ++#endif ++ elapsed = 0; ++ reinit_timer(); ++ ++ } ++ timer_base.l_ui += elapsed; ++ time_elapsed += elapsed; ++ current_time += elapsed; ++#ifdef DEBUG ++ DPRINTF(2, ("timer: time elapsed %d\n", time_elapsed)); ++#endif ++ return time_elapsed; ++} ++ + /* + * timer - event timer + */ +@@ -251,11 +364,9 @@ timer(void) + * kiss-o'-deatch function and implement the association + * polling function.. + */ +- current_time++; +- get_systime(&sys_time); + if (adjust_timer <= current_time) { +- adjust_timer += 1; +- adj_host_clock(); ++ adjust_timer += time_elapsed; ++ adj_host_clock(time_elapsed); + #ifdef REFCLOCK + for (n = 0; n < NTP_HASH_SIZE; n++) { + for (peer = peer_hash[n]; peer != 0; peer = next_peer) { +@@ -286,7 +397,7 @@ timer(void) + * 128 s or less. + */ + if (peer->throttle > 0) +- peer->throttle--; ++ peer->throttle -= min(peer->throttle, time_elapsed); + if (peer->nextdate <= current_time) { + #ifdef REFCLOCK + if (peer->flags & FLAG_REFCLOCK) +@@ -333,7 +444,7 @@ timer(void) + * set. + */ + if (leapsec > 0) { +- leapsec--; ++ leapsec -= min(leapsec, time_elapsed); + if (leapsec == 0) { + sys_leap = LEAP_NOWARNING; + sys_tai = leap_tai; +@@ -398,11 +509,15 @@ timer(void) + * Finally, write hourly stats. + */ + if (stats_timer <= current_time) { ++ l_fp sys_time; ++ get_systime(&sys_time); + stats_timer += HOUR; + write_stats(); + if (sys_tai != 0 && sys_time.l_ui > leap_expire) + report_event(EVNT_LEAPVAL, NULL, NULL); + } ++ ++ time_elapsed = 0; + } + + +diff -up ntp-4.2.6p1/ntpd/ntpd.c.sleep ntp-4.2.6p1/ntpd/ntpd.c +--- ntp-4.2.6p1/ntpd/ntpd.c.sleep 2010-03-10 19:27:46.000000000 +0100 ++++ ntp-4.2.6p1/ntpd/ntpd.c 2010-03-10 19:27:46.000000000 +0100 +@@ -195,8 +195,6 @@ extern const char *Version; + + char const *progname; + +-int was_alarmed; +- + #ifdef DECL_SYSCALL + /* + * We put this here, since the argument profile is syscall-specific +@@ -1033,7 +1031,7 @@ getgroup: + #else /* normal I/O */ + + BLOCK_IO_AND_ALARM(); +- was_alarmed = 0; ++ + for (;;) + { + # if !defined(HAVE_SIGNALED_IO) +@@ -1041,42 +1039,39 @@ getgroup: + extern int maxactivefd; + + fd_set rdfdes; +- int nfound; +-# endif ++ int nfound, time_elapsed; + +- if (alarm_flag) /* alarmed? */ +- { +- was_alarmed = 1; +- alarm_flag = 0; +- } ++ time_elapsed = 0; ++# endif + +- if (!was_alarmed && has_full_recv_buffer() == ISC_FALSE) ++ if (has_full_recv_buffer() == ISC_FALSE) + { + /* + * Nothing to do. Wait for something. + */ + # ifndef HAVE_SIGNALED_IO ++ double timeout; ++ + rdfdes = activefds; +-# if defined(VMS) || defined(SYS_VXWORKS) +- /* make select() wake up after one second */ +- { +- struct timeval t1; ++ get_systime(&now); ++ timeout = get_timeout(&now); + +- t1.tv_sec = 1; t1.tv_usec = 0; ++ if (timeout > 0.0) { ++ struct timeval t1; ++ ++ t1.tv_sec = timeout; ++ t1.tv_usec = (timeout - t1.tv_sec) * 1000000; + nfound = select(maxactivefd+1, &rdfdes, (fd_set *)0, + (fd_set *)0, &t1); +- } +-# else +- nfound = select(maxactivefd+1, &rdfdes, (fd_set *)0, +- (fd_set *)0, (struct timeval *)0); +-# endif /* VMS */ +- if (nfound > 0) +- { +- l_fp ts; ++ get_systime(&now); ++ } else ++ nfound = 0; + +- get_systime(&ts); ++ time_elapsed = timer_elapsed(now, timeout); + +- (void)input_handler(&ts); ++ if (nfound > 0) ++ { ++ (void)input_handler(&now); + } + else if (nfound == -1 && errno != EINTR) + msyslog(LOG_ERR, "select() error: %m"); +@@ -1085,17 +1080,13 @@ getgroup: + msyslog(LOG_DEBUG, "select(): nfound=%d, error: %m", nfound); + # endif /* DEBUG */ + # else /* HAVE_SIGNALED_IO */ ++# error not supported by sleep patch + + wait_for_signal(); + # endif /* HAVE_SIGNALED_IO */ +- if (alarm_flag) /* alarmed? */ +- { +- was_alarmed = 1; +- alarm_flag = 0; +- } + } + +- if (was_alarmed) ++ if (time_elapsed > 0) + { + UNBLOCK_IO_AND_ALARM(); + /* +@@ -1103,7 +1094,6 @@ getgroup: + * to process expiry. + */ + timer(); +- was_alarmed = 0; + BLOCK_IO_AND_ALARM(); + } + +@@ -1121,19 +1111,8 @@ getgroup: + rbuf = get_full_recv_buffer(); + while (rbuf != NULL) + { +- if (alarm_flag) +- { +- was_alarmed = 1; +- alarm_flag = 0; +- } + UNBLOCK_IO_AND_ALARM(); + +- if (was_alarmed) +- { /* avoid timer starvation during lengthy I/O handling */ +- timer(); +- was_alarmed = 0; +- } +- + /* + * Call the data procedure to handle each received + * packet. diff --git a/server/ntp/files/fedora/ntp-4.2.6p2-html2man.patch b/server/ntp/files/fedora/ntp-4.2.6p2-html2man.patch new file mode 100644 index 0000000000..a82bc98745 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p2-html2man.patch @@ -0,0 +1,220 @@ +diff -up ntp-4.2.6p2/scripts/html2man.in.html2man ntp-4.2.6p2/scripts/html2man.in +--- ntp-4.2.6p2/scripts/html2man.in.html2man 2006-06-06 22:17:10.000000000 +0200 ++++ ntp-4.2.6p2/scripts/html2man.in 2010-09-15 16:56:55.000000000 +0200 +@@ -20,31 +20,33 @@ $MANDIR = "./man"; + # name of man page, man section, 'see also' section + %manfiles = ( + 'ntpd' => ['ntpd', 8, 'ntp.conf(5), ntpq(8), ntpdc(8)'], +- 'ntpq' => ['ntpq', 8, 'ntpd(8), ntpdc(8)'], ++ 'ntpq' => ['ntpq', 8, 'ntp_decode(5), ntpd(8), ntpdc(8)'], + 'ntpdate' => ['ntpdate', 8, 'ntpd(8)'], + 'ntpdc' => ['ntpdc', 8, 'ntpd(8)'], +- 'ntptime' => ['ntpdtime', 8, 'ntpd(8), ntpdate(8)'], ++ 'ntptime' => ['ntptime', 8, 'ntpd(8), ntpdate(8)'], + 'ntptrace' => ['ntptrace', 8, 'ntpd(8)'], ++ 'ntp-wait' => ['ntp-wait', 8, 'ntpd(8)'], + 'keygen' => ['ntp-keygen', 8, 'ntpd(8), ntp_auth(5)'], +- 'confopt' => ['ntp.conf', 5, 'ntpd(8)'], ++ 'tickadj' => ['tickadj', 8, 'ntpd(8)'], ++ 'confopt' => ['ntp.conf', 5, 'ntpd(8), ntp_auth(5), ntp_mon(5), ntp_acc(5), ntp_clock(5), ntp_misc(5)'], + 'authopt' => ['ntp_auth', 5, 'ntp.conf(5), ntpd(8)'], +- 'monopt' => ['ntp_mon', 5, 'ntp.conf(5)'], ++ 'monopt' => ['ntp_mon', 5, 'ntp.conf(5), ntp_decode(5)'], + 'accopt' => ['ntp_acc', 5, 'ntp.conf(5)'], + 'clockopt' => ['ntp_clock', 5, 'ntp.conf(5)'], ++ 'decode' => ['ntp_decode', 5, 'ntpq(8), ntp_mon(5)'], + 'miscopt' => ['ntp_misc', 5, 'ntp.conf(5)']); + ++%table_headers = ( ++ 'ntpd' => 'l l l l.', ++ 'ntpq' => 'l l.', ++ 'monopt' => 'l l l.', ++ 'decode' => 'l l l l.', ++ 'authopt' => 'c c c c c c.' ++); ++ + # Disclaimer to go in SEE ALSO section of the man page +-$seealso_disclaimer = 'These man pages are automatically hacked from the main NTP ' . +- 'documentation pages, which are maintained in HTML format. These files are ' . +- 'included in the NTP source distribution. If you installed NTP from a binary ' . +- 'package, or it came pre-installed on your system, chances are the documentation ' . +- 'was also included in the usual place for your system. The HTML files are more ' . +- 'correct and complete than these man pages, which are provided for your reference ' . +- 'only.'; +- +-# Disclaimer to go right at the top +-$top_disclaimer = 'This file was automatically generated from HTML source, and may be ' . +- 'incorrect. See the SEE ALSO section at the end of this file for more info'; ++$seealso_disclaimer = "HTML documentation in ntp-doc package.\n\n" . ++ "This file was automatically generated from HTML source.\n"; + + mkdir $MANDIR, 0777; + mkdir "$MANDIR/man8", 0777; +@@ -64,7 +66,8 @@ sub process { + $fileinfo = $manfiles{$filename}; + + $p = HTML::TokeParser->new("$filename.html") || die "Can't open $filename.html: $!"; +- open(MANOUT, ">$MANDIR/man$fileinfo->[1]/$fileinfo->[0].$fileinfo->[1]") ++ $fileout = "$MANDIR/man$fileinfo->[1]/$fileinfo->[0].$fileinfo->[1]"; ++ open(MANOUT, ">$fileout") + || die "Can't open: $!"; + + $p->get_tag("title"); +@@ -73,7 +76,6 @@ sub process { + + # Setup man header + print MANOUT ".TH " . $fileinfo->[0] . " " . $fileinfo->[1] . "\n"; +- print MANOUT ".UC 4\n"; + print MANOUT ".SH NAME\n"; + $pat = $fileinfo->[0]; + if ($name =~ /$pat/) { +@@ -81,10 +83,13 @@ sub process { + # Add the manpage name, if not in the HTML title already + print MANOUT "$fileinfo->[0] - "; + } +- print MANOUT "$name\n\n"; +- +- print MANOUT "$top_disclaimer\n"; ++ print MANOUT "$name\n.SH \\ \n\n"; + ++ @fontstack = (); ++ $deflevel = 0; ++ $pre = 0; ++ $ignore = 0; ++ $first_td = 1; + # Now start scanning. We basically print everything after translating some tags. + # $token->[0] has "T", "S", "E" for Text, Start, End + # $token->[1] has the tag name, or text (for "T" case) +@@ -92,19 +97,37 @@ sub process { + while (my $token = $p->get_token) { + if($token->[0] eq "T") { + my $text = $token->[1]; +- if($tag) { +- $text =~ s/^[\n ]*//; +- $text =~ s/[\n ]*$/ /; ++ if (!$pre) { ++ if($tag) { ++ $text =~ s/^[\n\t ]*//; ++ } ++ $text =~ s/^[\n\t ][\n\t ]+$//; ++ $text =~ s/[\n\t ]+/ /g; ++ $text =~ s/ \;/ /g; ++ $text =~ s/>\;/>/g; ++ $text =~ s/<\;/[0] eq "S") { + if($token->[1] eq "h4") { + my $text = uc($p->get_trimmed_text("/h4")); +- print MANOUT ".SH $text\n"; ++ # ignore these sections in ntpd.html ++ if ($filename eq "ntpd" && ++ ($text eq "CONFIGURATION OPTIONS")) { ++ $ignore = 1; ++ close(MANOUT); ++ open(MANOUT, ">/dev/null"); ++ } elsif ($ignore) { ++ $ignore = 0; ++ close(MANOUT); ++ open(MANOUT, ">>$fileout"); ++ } ++ print MANOUT "\n\n.SH $text\n"; + } + if($token->[1] eq "tt") { + push @fontstack, "tt"; +@@ -118,22 +141,42 @@ sub process { + my $text = $p->get_trimmed_text("/address"); + print MANOUT "\n.SH AUTHOR\n$text\n"; + } +- if($token->[1] eq "dt") { +- $tmp = $deflevel-4; +- print MANOUT "\n.RS $tmp\n"; ++ if($token->[1] eq "dt" || $token->[1] eq "br" && $deflevel > 0) { ++ print MANOUT "\n.TP 8\n"; + $tag = 1; + } + if($token->[1] eq "dd") { +- print MANOUT "\n.RS $deflevel\n"; ++ print MANOUT "\n"; + $tag = 1; + } + if($token->[1] eq "dl") { +- $deflevel+=4; ++ $deflevel+=1; ++ if ($deflevel > 0) { ++ print MANOUT "\n.RS ", $deflevel > 1 ? 8 : 0; ++ } ++ } ++ if($token->[1] eq "p") { ++ print MANOUT "\n"; ++ } ++ if($token->[1] eq "pre") { ++ print MANOUT "\n.nf"; ++ $pre = 1; ++ } ++ if($token->[1] eq "table") { ++ print MANOUT "\n.TS\n"; ++ print MANOUT "expand allbox tab(%);\n"; ++ print MANOUT $table_headers{$filename}; ++ print MANOUT "\n"; ++ } ++ if($token->[1] eq "td") { ++ if ($first_td == 0) { ++ print MANOUT " % "; ++ } ++ $first_td = 0; + } + } + elsif($token->[0] eq "E") { +- if($token->[1] eq "dd") { +- print MANOUT "\n.RE\n"; ++ if($token->[1] eq "h4") { + $tag = 1; + } + if($token->[1] eq "tt") { +@@ -157,15 +200,34 @@ sub process { + print MANOUT "$fontswitch"; + } + if($token->[1] eq "dl") { +- $deflevel-=4; ++ if ($deflevel > 0) { ++ print MANOUT "\n.RE"; ++ } ++ print MANOUT "\n"; ++ $deflevel-=1; + } +- if($token->[1] eq "dt") { +- print MANOUT "\n.RE"; ++ if($token->[1] eq "p") { ++ print MANOUT "\n"; + $tag = 1; + } ++ if($token->[1] eq "pre") { ++ print MANOUT "\n.fi"; ++ $pre = 0; ++ } ++ if($token->[1] eq "table") { ++ print MANOUT ".TE\n"; ++ } ++ if($token->[1] eq "tr") { ++ print MANOUT "\n"; ++ $first_td = 1; ++ } + } + } +- print MANOUT ".SH SEE ALSO\n\n"; ++ if ($ignore) { ++ close(MANOUT); ++ open(MANOUT, ">>$fileout"); ++ } ++ print MANOUT "\n.SH SEE ALSO\n\n"; + print MANOUT "$fileinfo->[2]\n\n"; + print MANOUT "$seealso_disclaimer\n"; + close(MANOUT); diff --git a/server/ntp/files/fedora/ntp-4.2.6p2-htmldoc.patch b/server/ntp/files/fedora/ntp-4.2.6p2-htmldoc.patch new file mode 100644 index 0000000000..5ec30707f1 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p2-htmldoc.patch @@ -0,0 +1,394 @@ +diff -up ntp-4.2.6p2/html/authopt.html.htmldoc ntp-4.2.6p2/html/authopt.html +--- ntp-4.2.6p2/html/authopt.html.htmldoc 2010-04-18 10:05:39.000000000 +0200 ++++ ntp-4.2.6p2/html/authopt.html 2010-07-12 16:31:43.000000000 +0200 +@@ -208,11 +208,7 @@ UTC

+ + + +- +- +- +- +- ++ + + + +@@ -368,7 +364,7 @@ UTC

+ are left unspecified, the default names are used as described below. Unless + the complete path and name of the file are specified, the location of a file + is relative to the keys directory specified in the keysdir configuration +- command or default /usr/local/etc. Following are the options. ++ command or default /etc/ntp/crypto. Following are the options. + +
+ +@@ -400,7 +396,7 @@ UTC

+
Specifies the complete path to the MD5 key file containing the keys and key IDs used by ntpd, ntpq and ntpdc when operating with symmetric key cryptography. This is the same operation as the -k command line option. Note that the directory path for Autokey media is specified by the keysdir command.
+ +
keysdir pathK
+-
This command specifies the default directory path for Autokey cryptographic keys, parameters and certificates. The default is /usr/local/etc/. Note that the path for the symmetric keys file is specified by the keys command.
++
This command specifies the default directory path for Autokey cryptographic keys, parameters and certificates. The default is /etc/ntp/crypto. Note that the path for the symmetric keys file is specified by the keys command.
+ +
requestkey keyid
+
Specifies the key ID to use with the +@@ -494,4 +490,4 @@ UTC

+ + + +- +\ No newline at end of file ++ +diff -up ntp-4.2.6p2/html/keygen.html.htmldoc ntp-4.2.6p2/html/keygen.html +--- ntp-4.2.6p2/html/keygen.html.htmldoc 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p2/html/keygen.html 2010-07-12 16:27:39.000000000 +0200 +@@ -90,7 +90,7 @@ + +

The pw option of the crypto configuration command specifies the read password for previously encrypted files. This must match the local password used by this program. If not specified, the host name is used. Thus, if files are generated by this program without password, they can be read back by ntpd without password, but only on the same host.

+ +-

All files and links are usually installed in the directory /usr/local/etc, ++

All files and links are usually installed in the directory /etc/ntp/crypto, + which is normally in a shared filesystem in NFS-mounted networks and cannot + be changed by shared clients. The location of the keys directory can be changed + by the keysdir configuration command in such cases. Normally, encrypted +@@ -101,7 +101,7 @@ + +

Running the Program

+ +-

To test and gain experience with Autokey concepts, log in as root and change to the keys directory, usually /usr/local/etc. When run for the first time, or if all files with names beginning ntpkey have been removed, use the ntp-keygen command without arguments to generate a default RSA host key and matching RSA-MD5 certificate with expiration date one year hence. If run again, the program uses the existing keys and parameters and generates only a new certificate with new expiration date one year hence; however, the certificate is not generated if the -e or -q options are present.

++

To test and gain experience with Autokey concepts, log in as root and change to the keys directory, usually /etc/ntp/crypto. When run for the first time, or if all files with names beginning ntpkey have been removed, use the ntp-keygen command without arguments to generate a default RSA host key and matching RSA-MD5 certificate with expiration date one year hence. If run again, the program uses the existing keys and parameters and generates only a new certificate with new expiration date one year hence; however, the certificate is not generated if the -e or -q options are present.

+ +

Run the command on as many hosts as necessary. Designate one of them as the trusted host (TH) using ntp-keygen with the -T option and configure it to synchronize from reliable Internet servers. Then configure the other hosts to synchronize to the TH directly or indirectly. A certificate trail is created when Autokey asks the immediately ascendant host towards the TH to sign its certificate, which is then provided to the immediately descendant host on request. All group hosts should have acyclic certificate trails ending on the TH.

+ +@@ -206,6 +206,7 @@ +

All cryptographically sound key generation schemes must have means to randomize the entropy seed used to initialize the internal pseudo-random number generator used by the OpenSSL library routines. If a site supports ssh, it is very likely that means to do this are already available. The entropy seed used by the OpenSSL library is contained in a file, usually called .rnd, which must be available when starting the ntp-keygen program or ntpd daemon.

+ +

The OpenSSL library looks for the file using the path specified by the RANDFILE environment variable in the user home directory, whether root or some other user. If the RANDFILE environment variable is not present, the library looks for the .rnd file in the user home directory. Since both the ntp-keygen program and ntpd daemon must run as root, the logical place to put this file is in /.rnd or /root/.rnd. If the file is not available or cannot be written, the program exits with a message to the system log.

++

On systems that provide /dev/urandom, the randomness device is used instead and the file specified by the randfile subcommand or the RANDFILE environment variable is ignored.

+ +

Cryptographic Data Files

+ +@@ -237,4 +238,4 @@ + + + +- +\ No newline at end of file ++ +diff -up ntp-4.2.6p2/html/ntp-wait.html.htmldoc ntp-4.2.6p2/html/ntp-wait.html +--- ntp-4.2.6p2/html/ntp-wait.html.htmldoc 2010-07-12 16:27:39.000000000 +0200 ++++ ntp-4.2.6p2/html/ntp-wait.html 2010-07-12 16:27:39.000000000 +0200 +@@ -0,0 +1,30 @@ ++ ++ ++ ++ ++ ++ ntp-wait - waits until ntpd is in synchronized state ++ ++ ++ ++

ntp-wait - waits until ntpd is in synchronized state

++
++

Synopsis

++

ntp-wait [ -v ] [ -n tries ] [ -s seconds ]

++

Description

++

The ntp-wait program blocks until ntpd is in synchronized state. ++ This can be useful at boot time, to delay the boot sequence ++ until after "ntpd -g" has set the time. ++

Command Line Options

++
++
-n tries ++
Number of tries before giving up. The default is 1000. ++
-s seconds ++
Seconds to sleep between tries. The default is 6 seconds. ++
-v ++
Be verbose. ++
++ ++ ++ ++ +diff -up ntp-4.2.6p2/html/ntpd.html.htmldoc ntp-4.2.6p2/html/ntpd.html +--- ntp-4.2.6p2/html/ntpd.html.htmldoc 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p2/html/ntpd.html 2010-07-12 16:27:39.000000000 +0200 +@@ -32,7 +32,7 @@ + +
+

Synopsis

+- ntpd [ -46aAbdDgLmnNqx ] [ -c conffile ] [ -f driftfile ] [ -i jaildir ] [ -k keyfile ] [ -l logfile ] [ -p pidfile ] [ -P priority ] [ -r broadcastdelay ] [ -s statsdir ] [ -t key ] [ -u user[:group] ] [ -U interface_update_interval ] [ -v variable ] [ -V variable ] ++ ntpd [ -46aAbdDgLnNqx ] [ -c conffile ] [ -f driftfile ] [ -i jaildir ] [ -I iface ] [ -k keyfile ] [ -l logfile ] [ -p pidfile ] [ -P priority ] [ -r broadcastdelay ] [ -s statsdir ] [ -t key ] [ -u user[:group] ] [ -U interface_update_interval ] [ -v variable ] [ -V variable ] +

Description

+

The ntpd program is an operating system daemon that synchronises the system clock with remote NTP time servers or local reference clocks. It is a complete implementation of the Network Time Protocol (NTP) version 4, but also retains compatibility with version 3, as defined by RFC-1305, and version 1 and 2, as defined by RFC-1059 and RFC-1119, respectively. The program can operate in any of several modes, as described on the Association Management page, and with both symmetric key and public key cryptography, as described on the Authentication Options page.

+

The ntpd program ordinarily requires a configuration file as desccribe on the Configuration Commands and Options collection above. However a client can discover remote servers and configure them automatically. This makes it possible to deploy a fleet of workstations without specifying configuration details specific to the local environment. Further details are on the Automatic Server Discovery page.

+@@ -44,7 +44,7 @@ +

The issues should be carefully considered before using these options. The maximum slew rate possible is limited to 500 parts-per-million (PPM) by the Unix kernel. As a result, the clock can take 2000 s for each second the clock is outside the acceptable range. During this interval the clock will not be consistent with any other network clock and the system cannot be used for distributed applications that require correctly synchronized network time.

+

The frequency file, usually called ntp.drift, contains the latest estimate of clock frequency. If this file does not exist when ntpd is started, it enters a special mode designed to measure the particular frequency directly. The measurement takes 15 minutes, after which the frequency is set and ntpd resumes normal mode where the time and frequency are continuously adjusted. The frequency file is updated at intervals of an hour or more depending on the measured clock stability.

+

Operating Modes

+-

The ntpd program normally operates continuously while adjusting the time and frequency, but in some cases it may not be practical to run it continuously. With the -q option ntpd operates as in continous mode, but exits just after setting the clock for the first time. Most applications will probably want to specify the iburst option with the server command. With this option a volley of messages is exchanged to groom the data and set the clock in about 10 s. If nothing is heard after a few minutes, the daemon times out and exits.

++

The ntpd program normally operates continuously while adjusting the time and frequency, but in some cases it may not be practical to run it continuously. With the -q option ntpd operates as in continous mode, but exits just after setting the clock for the first time with the configured servers. Most applications will probably want to specify the iburst option with the server command. With this option a volley of messages is exchanged to groom the data and set the clock in about 10 s. If nothing is heard after a few minutes, the daemon times out and exits.

+

Poll Interval Control

+

NTP uses an intricate heuristic algorithm to automatically control the poll interval for maximum accuracy consistent with minimum network overhead. The algorithm measures the incidental offset and jitter to determine the best poll interval. When ntpd starts, the interval is the default minimum 64 s. Under normal conditions when the clock discipline has stabilized, the interval increases in steps to the default maximum 1024 s. In addition, should a server become unreachable after some time, the interval increases in steps to the maximum in order to reduce network overhead.

+

The default poll interval range is suitable for most conditions, but can be changed using options on the Server Options and Miscellaneous Options pages. However, when using maximum intervals much larger than the default, the residual clock frequency error must be small enough for the discipline loop to capture and correct. The capture range is 500 PPM with a 64-s interval decreasing by a factor of two for each interval doubling. At a 36-hr interval, for example, the capture range is only 0.24 PPM.

+@@ -88,8 +88,13 @@ +

In contexts where a host name is expected, a -4 qualifier preceding the host name forces DNS resolution to the IPv4 namespace, while a -6 qualifier forces DNS resolution to the IPv6 namespace.

+

Various internal ntpd variables can be displayed and configuration options altered while the ntpd is running using the ntpq and ntpdc utility programs.

+

When ntpd starts it looks at the value of umask, and if zero ntpd will set the umask to 022.

++

Unless the -n, -d or -D option is used, ntpd changes the current working directory to the root directory, so any options or commands specifying paths need to use an absolute path or a path relative to the root.

+

Command Line Options

+
++
-4 ++
Force DNS resolution of host names to the IPv4 namespace. ++
-6 ++
Force DNS resolution of host names to the IPv6 namespace. +
-a
+
Require cryptographic authentication for broadcast client, multicast client and symmetric passive associations. This is the same operation as the enable auth command and is the default.
+
-A
+@@ -103,7 +108,7 @@ +
-D level
+
Specify debugging level directly.
+
-f driftfile
+-
Specify the name and path of the frequency file, default /etc/ntp.drift. This is the same operation as the driftfile driftfile command.
++
Specify the name and path of the frequency file. This is the same operation as the driftfile driftfile command.
+
-g
+
Normally, ntpd exits with a message to the system log if the offset exceeds the panic threshold, which is 1000 s by default. This option allows the time to be set to any value without restriction; however, this can happen only once. If the threshold is exceeded after that, ntpd will exit with a message to the system log. This option can be used with the -q and -x options. See the tinker command for other options.
+
-i jaildir
+@@ -111,7 +116,7 @@ +
-I [address | interface name]
+
Open the network address given, or all the addresses associated with the given interface name. This option may appear multiple times. This option also implies not opening other addresses, except wildcard and localhost. This option is deprecated. Please consider using the configuration file interface command, which is more versatile.
+
-k keyfile
+-
Specify the name and path of the symmetric key file, default /etc/ntp.keys. This is the same operation as the keys keyfile command.
++
Specify the name and path of the symmetric key file. This is the same operation as the keys keyfile command.
+
-l logfile
+
Specify the name and path of the log file. The default is the system log file. This is the same operation as the logfile logfile command.
+
-L
+@@ -209,17 +214,20 @@ +
+ + +- ++ + + + + + +- +- ++ ++ + + +
ClientServer
Client/ServerNONEAUTHPC
statistics path/var/NTP/var/log/ntpstats/-sstatsdir
keys path/usr/local/etc-k/etc/ntp/cryptononekeysdir
++

Exit Codes

++

A non-zero exit code indicates an error. Any error messages are logged to the system log by default.

++

The exit code is 0 only when ntpd is terminated by a signal, or when the -q option is used and ntpd successfully sets the system clock.

+
+ + +diff -up ntp-4.2.6p2/html/ntpdate.html.htmldoc ntp-4.2.6p2/html/ntpdate.html +--- ntp-4.2.6p2/html/ntpdate.html.htmldoc 2010-07-12 16:27:39.000000000 +0200 ++++ ntp-4.2.6p2/html/ntpdate.html 2010-07-12 16:27:39.000000000 +0200 +@@ -18,9 +18,9 @@ +
+

Disclaimer: The functionality of this program is now available in the ntpd program. See the -q command line option in the ntpd - Network Time Protocol (NTP) daemon page. After a suitable period of mourning, the ntpdate program is to be retired from this distribution

+

Synopsis

+- ntpdate [ -bBdoqsuv ] [ -a key ] [ -e authdelay ] [ -k keyfile ] [ -o version ] [ -p samples ] [ -t timeout ] [ -U user_name ] server [ ... ] ++ ntpdate [ -46bBdqsuv ] [ -a key ] [ -e authdelay ] [ -k keyfile ] [ -o version ] [ -p samples ] [ -t timeout ] [ -U user_name ] server [ ... ] +

Description

+- ntpdate sets the local date and time by polling the Network Time Protocol (NTP) server(s) given as the server arguments to determine the correct time. It must be run as root on the local host. A number of samples are obtained from each of the servers specified and a subset of the NTP clock filter and selection algorithms are applied to select the best of these. Note that the accuracy and reliability of ntpdate depends on the number of servers, the number of polls each time it is run and the interval between runs. ++

ntpdate sets the local date and time by polling the Network Time Protocol (NTP) server(s) given as the server arguments to determine the correct time. It must be run as root on the local host. A number of samples are obtained from each of the servers specified and a subset of the NTP clock filter and selection algorithms are applied to select the best of these. Note that the accuracy and reliability of ntpdate depends on the number of servers, the number of polls each time it is run and the interval between runs.

+

ntpdate can be run manually as necessary to set the host clock, or it can be run from the host startup script to set the clock at boot time. This is useful in some cases to set the clock initially before starting the NTP daemon ntpd. It is also possible to run ntpdate from a cron script. However, it is important to note that ntpdate with contrived cron scripts is no substitute for the NTP daemon, which uses sophisticated algorithms to maximize accuracy and reliability while minimizing resource use. Finally, since ntpdate does not discipline the host clock frequency as does ntpd, the accuracy using ntpdate is limited.

+

Time adjustments are made by ntpdate in one of two ways. If ntpdate determines the clock is in error more than 0.5 second it will simply step the time by calling the system settimeofday() routine. If the error is less than 0.5 seconds, it will slew the time by calling the system adjtime() routine. The latter technique is less disruptive and more accurate when the error is small, and works quite well when ntpdate is run by cron every hour or two.

+

ntpdate will decline to set the date if an NTP server daemon (e.g., ntpd) is running on the same host. When running ntpdate on a regular basis from cron as an alternative to running a daemon, doing so once every hour or two will result in precise enough timekeeping to avoid stepping the clock.

+@@ -33,9 +33,9 @@ +
-6 +
Force DNS resolution of following host names on the command line to the IPv6 namespace. +
-a key +-
Enable the authentication function and specify the key identifier to be used for authentication as the argument keyntpdate. The keys and key identifiers must match in both the client and server key files. The default is to disable the authentication function. ++
Enable the authentication function and specify the key identifier to be used for authentication as the argument key. The keys and key identifiers must match in both the client and server key files. The default is to disable the authentication function. +
-B +-
Force the time to always be slewed using the adjtime() system call, even if the measured offset is greater than +-128 ms. The default is to step the time using settimeofday() if the offset is greater than +-128 ms. Note that, if the offset is much greater than +-128 ms in this case, that it can take a long time (hours) to slew the clock to the correct value. During this time. the host should not be used to synchronize clients. ++
Force the time to always be slewed using the adjtime() system call, even if the measured offset is greater than +-500 ms. The default is to step the time using settimeofday() if the offset is greater than +-500 ms. Note that, if the offset is much greater than +-500 ms in this case, that it can take a long time (hours) to slew the clock to the correct value. During this time. the host should not be used to synchronize clients. +
-b +
Force the time to be stepped using the settimeofday() system call, rather than slewed (default) using the adjtime() system call. This option should be used when called from a startup file at boot time. +
-d +@@ -43,9 +43,9 @@ +
-e authdelay +
Specify the processing delay to perform an authentication function as the value authdelay, in seconds and fraction (see ntpd for details). This number is usually small enough to be negligible for most purposes, though specifying a value may improve timekeeping on very slow CPU's. +
-k keyfile +-
Specify the path for the authentication key file as the string keyfile. The default is /etc/ntp.keys. This file should be in the format described in ntpd. ++
Specify the path for the authentication key file as the string keyfile. The default is /etc/ntp/keys. This file should be in the format described in ntpd. +
-o version +-
Specify the NTP version for outgoing packets as the integer version, which can be 1 or 2. The default is 3. This allows ntpdate to be used with older NTP versions. ++
Specify the NTP version for outgoing packets as the integer version, which can be 1 or 2. The default is 4. This allows ntpdate to be used with older NTP versions. +
-p samples +
Specify the number of samples to be acquired from each server as the integer samples, with values from 1 to 8 inclusive. The default is 4. +
-q +@@ -55,7 +55,7 @@ +
-t timeout +
Specify the maximum time waiting for a server response as the value timeout, in seconds and fraction. The value is is rounded to a multiple of 0.2 seconds. The default is 1 second, a value suitable for polling across a LAN. +
-u +-
Direct ntpdate to use an unprivileged port or outgoing packets. This is most useful when behind a firewall that blocks incoming traffic to privileged ports, and you want to synchronise with hosts beyond the firewall. Note that the -d option always uses unprivileged ports. ++
Direct ntpdate to use an unprivileged port for outgoing packets. This is most useful when behind a firewall that blocks incoming traffic to privileged ports, and you want to synchronize with hosts beyond the firewall. Note that the -d option always uses unprivileged ports. +
-v +
Be verbose. This option will cause ntpdate's version identification string to be logged. + +@@ -67,7 +67,7 @@ +

Diagnostics

+ ntpdate's exit status is zero if it finds a server and updates the clock, and nonzero otherwise. +

Files

+- /etc/ntp.keys - encryption keys used by ntpdate. ++ /etc/ntp/keys - encryption keys used by ntpdate. +

Bugs

+ The slew adjustment is actually 50% larger than the measured offset, since this (it is argued) will tend to keep a badly drifting clock more accurate. This is probably not a good idea and may cause a troubling hunt for some values of the kernel variables tick and tickadj.  +
+diff -up ntp-4.2.6p2/html/ntpdc.html.htmldoc ntp-4.2.6p2/html/ntpdc.html +--- ntp-4.2.6p2/html/ntpdc.html.htmldoc 2009-12-09 08:36:35.000000000 +0100 ++++ ntp-4.2.6p2/html/ntpdc.html 2010-07-12 16:27:39.000000000 +0200 +@@ -19,9 +19,9 @@ + +
+

Synopsis

+- ntpdc [ -ilnps ] [ -c command ] [ host ] [ ... ] ++ ntpdc [ -46dilnps ] [ -c command ] [ host ] [ ... ] +

Description

+- ntpdc is used to query the ntpd daemon about its current state and to request changes in that state. The program may be run either in interactive mode or controlled using command line arguments. Extensive state and statistics information is available through the ntpdc interface. In addition, nearly all the configuration options which can be specified at startup using ntpd's configuration file may also be specified at run time using ntpdc. ++

ntpdc is used to query the ntpd daemon about its current state and to request changes in that state. The program may be run either in interactive mode or controlled using command line arguments. Extensive state and statistics information is available through the ntpdc interface. In addition, nearly all the configuration options which can be specified at startup using ntpd's configuration file may also be specified at run time using ntpdc.

+

If one or more request options are included on the command line when ntpdc is executed, each of the requests will be sent to the NTP servers running on each of the hosts given as command line arguments, or on localhost by default. If no request options are given, ntpdc will attempt to read commands from the standard input and execute these on the NTP server running on the first host given on the command line, again defaulting to localhost when no other host is specified. ntpdc will prompt for commands if the standard input is a terminal device.

+

ntpdc uses NTP mode 7 packets to communicate with the NTP server, and hence can be used to query any compatible server on the network which permits it. Note that since NTP is a UDP protocol this communication will be somewhat unreliable, especially over large distances in terms of network topology. ntpdc makes no attempt to retransmit requests, and will time requests out if the remote host is not heard from within a suitable timeout time.

+

The operation of ntpdc are specific to the particular implementation of the ntpd daemon and can be expected to work only with this and maybe some previous versions of the daemon. Requests from a remote ntpdc program which affect the state of the local server must be authenticated, which requires both the remote program and local server share a common key and key identifier.

+@@ -35,6 +35,8 @@ +
Force DNS resolution of following host names on the command line to the IPv6 namespace. +
-c command +
The following argument is interpreted as an interactive format command and is added to the list of commands to be executed on the specified host(s). Multiple -c options may be given. ++
-d ++
Turn on debugging mode. +
-i +
Force ntpdc to operate in interactive mode. Prompts will be written to the standard output and commands read from the standard input. +
-l +@@ -134,11 +136,11 @@ +
addpeer peer_address [ + keyid ] [ version ] [ + minpoll# | prefer | iburst | burst | minpoll +- N | maxpoll N [...] ] ++ N | maxpoll N [...] ] +
addpeer peer_address [ + prefer | iburst | burst | minpoll + N | maxpoll N | keyid +- N | version N [...] ] ++ N | version N [...] ] +
Add a configured peer association at the + given address and operating in symmetric + active mode. Note that an existing association +@@ -162,16 +164,16 @@ + peer configuration file command of + ntpd. See the Server Options page for further information. + Each flag (or its absence) replaces the +- previous setting. The prefer keyword indicates a preferred peer (and thus will be used primarily for clock synchronisation if possible). The preferred peer also determines the validity of the PPS signal - if the preferred peer is suitable for synchronisation so is the PPS signal. ++ previous setting. The prefer keyword indicates a preferred peer (and thus will be used primarily for clock synchronization if possible). The preferred peer also determines the validity of the PPS signal - if the preferred peer is suitable for synchronization so is the PPS signal. + The dynamic keyword allows association configuration even when no suitable network interface is found at configuration time. The dynamic interface update mechanism may complete the configuration when new interfaces appear (e.g. WLAN/PPP interfaces) at a later time and thus render the association operable. +
addserver peer_address [ + keyid ] [ version ] [ + minpoll# | prefer | iburst | burst | minpoll +- N | maxpoll N [...] ] ++ N | maxpoll N [...] ] +
addserver peer_address [ + prefer | iburst | burst | minpoll + N | maxpoll N | keyid +- N | version N [...] ] ++ N | version N [...] ] +
Identical to the addpeer command, except that the operating mode is client. +
broadcast peer_address [ + keyid ] [ version ] [ prefer ] +@@ -200,9 +202,9 @@ +
Returns information concerning the authentication module, including known keys and counts of encryptions and decryptions which have been done. +
traps +
Display the traps set in the server. See the source listing for further information. +-
addtrap [ address [ port ] [ interface ] ++
addtrap [ address ] [ port ] [ interface ] +
Set a trap for asynchronous messages. See the source listing for further information. +-
clrtrap [ address [ port ] [ interface] ++
clrtrap [ address ] [ port ] [ interface] +
Clear a trap for asynchronous messages. See the source listing for further information. +
reset +
Clear the statistics counters in various modules of the server. See the source listing for further information. +diff -up ntp-4.2.6p2/html/ntpq.html.htmldoc ntp-4.2.6p2/html/ntpq.html +--- ntp-4.2.6p2/html/ntpq.html.htmldoc 2010-02-09 11:01:26.000000000 +0100 ++++ ntp-4.2.6p2/html/ntpq.html 2010-07-12 16:27:39.000000000 +0200 +@@ -21,7 +21,7 @@ + +
+

Synopsis

+- ntpq [-inp] [-c command] [host] [...] ++ ntpq [-46dinp] [-c command] [host] [...] +

Description

+

The ntpq utility program is used to monitor NTP daemon ntpd operations + and determine performance. It uses the standard NTP mode 6 control +@@ -591,4 +591,4 @@ + + + +- +\ No newline at end of file ++ +diff -up ntp-4.2.6p2/html/ntptrace.html.htmldoc ntp-4.2.6p2/html/ntptrace.html +--- ntp-4.2.6p2/html/ntptrace.html.htmldoc 2009-12-09 08:36:36.000000000 +0100 ++++ ntp-4.2.6p2/html/ntptrace.html 2010-07-12 16:27:39.000000000 +0200 +@@ -17,7 +17,7 @@ +
+


+

Synopsis

+- ntptrace [ -vdn ] [ -r retries ] [ -t timeout ] [ server ] ++ ntptrace [ -n ] [ -m maxhosts ] [ server ] +

Description

+

ntptrace is a perl script that uses the ntpq utility program to follow the chain of NTP servers from a given host back to the primary time source. For ntptrace to work properly, each of these servers must implement the NTP Control and Monitoring Protocol specified in RFC 1305 and enable NTP Mode 6 packets.

+

If given no arguments, ntptrace starts with localhost. Here is an example of the output from ntptrace:

+@@ -30,16 +30,8 @@ usndh.edu: stratum 1, offset 0.0019298, +

On each line, the fields are (left to right): the host name, the host stratum, the time offset between that host and the local host (as measured by ntptrace; this is why it is not always zero for "localhost"), the host synchronization distance, and (only for stratum-1 servers) the reference clock ID. All times are given in seconds. Note that the stratum is the server hop count to the primary source, while the synchronization distance is the estimated error relative to the primary source. These terms are precisely defined in RFC-1305.

+

Options

+
+-
-d +-
Turns on some debugging output. +
-n +
Turns off the printing of host names; instead, host IP addresses are given. This may be useful if a nameserver is down. +-
-r retries +-
Sets the number of retransmission attempts for each host (default = 5). +-
-t timeout +-
Sets the retransmission timeout (in seconds) (default = 2). +-
-v +-
Prints verbose information about the NTP servers. +
+

Bugs

+

This program makes no attempt to improve accuracy by doing multiple samples.

+@@ -47,4 +39,4 @@ usndh.edu: stratum 1, offset 0.0019298, + + + +- +\ No newline at end of file ++ +diff -up ntp-4.2.6p2/html/tickadj.html.htmldoc ntp-4.2.6p2/html/tickadj.html +--- ntp-4.2.6p2/html/tickadj.html.htmldoc 2009-12-09 08:36:36.000000000 +0100 ++++ ntp-4.2.6p2/html/tickadj.html 2010-07-12 16:27:39.000000000 +0200 +@@ -14,10 +14,12 @@ +

Last update: 18:53 UTC Wednesday, January 16, 2008

+
+

Synopsis

+- tickadj [ -Aqs ] [ -a tickadj ] [ -t tick ] ++

tickadj [ tick ]

++

tickadj [ -Aqs ] [ -a tickadj ] [ -t tick ]

+

Description

+

The tickadj program reads, and optionally modifies, several timekeeping-related variables in older kernels that do not have support for precision ttimekeeping, including HP-UX, SunOS, Ultrix, SGI and probably others. Those machines provide means to patch the kernel /dev/kmem. Newer machines with kernel time support, including Solaris, Tru64, FreeBSD and Linux, should NOT use the program, even if it appears to work, as it will destabilize the kernel time support. Use the ntptime program instead.

+

The particular variables that can be changed with tickadj include tick, which is the number of microseconds added to the system time for a clock interrupt, tickadj, which sets the slew rate and resolution used by the adjtime system call, and dosynctodr, which indicates to the kernels on some machines whether they should internally adjust the system clock to keep it in line with time-of-day clock or not.

++

On Linux, only the tick variable is supported and the only allowed argument is the tick value.

+

By default, with no arguments, tickadj reads the variables of interest in the kernel and displays them. At the same time, it determines an "optimal" value for the value of the tickadj variable if the intent is to run the ntpd Network Time Protocol (NTP) daemon, and prints this as well. Since the operation of tickadj when reading the kernel mimics the operation of similar parts of the ntpd program fairly closely, this can be useful when debugging problems with ntpd.

+

Note that tickadj should be run with some caution when being used for the first time on different types of machines. The operations which tickadj tries to perform are not guaranteed to work on all Unix machines and may in rare cases cause the kernel to crash.

+

Command Line Options

+@@ -43,4 +45,4 @@ + + + +- +\ No newline at end of file ++ diff --git a/server/ntp/files/fedora/ntp-4.2.6p2-mlock.patch b/server/ntp/files/fedora/ntp-4.2.6p2-mlock.patch new file mode 100644 index 0000000000..53230d41e9 --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p2-mlock.patch @@ -0,0 +1,146 @@ +diff -up ntp-4.2.6p2/html/ntpd.html.mlock ntp-4.2.6p2/html/ntpd.html +--- ntp-4.2.6p2/html/ntpd.html.mlock 2010-07-12 16:36:09.000000000 +0200 ++++ ntp-4.2.6p2/html/ntpd.html 2010-07-12 16:36:09.000000000 +0200 +@@ -32,7 +32,7 @@ + +
+

Synopsis

+- ntpd [ -46aAbdDgLnNqx ] [ -c conffile ] [ -f driftfile ] [ -i jaildir ] [ -I iface ] [ -k keyfile ] [ -l logfile ] [ -p pidfile ] [ -P priority ] [ -r broadcastdelay ] [ -s statsdir ] [ -t key ] [ -u user[:group] ] [ -U interface_update_interval ] [ -v variable ] [ -V variable ] ++ ntpd [ -46aAbdDgLmnNqx ] [ -c conffile ] [ -f driftfile ] [ -i jaildir ] [ -I iface ] [ -k keyfile ] [ -l logfile ] [ -p pidfile ] [ -P priority ] [ -r broadcastdelay ] [ -s statsdir ] [ -t key ] [ -u user[:group] ] [ -U interface_update_interval ] [ -v variable ] [ -V variable ] +

Description

+

The ntpd program is an operating system daemon that synchronises the system clock with remote NTP time servers or local reference clocks. It is a complete implementation of the Network Time Protocol (NTP) version 4, but also retains compatibility with version 3, as defined by RFC-1305, and version 1 and 2, as defined by RFC-1059 and RFC-1119, respectively. The program can operate in any of several modes, as described on the Association Management page, and with both symmetric key and public key cryptography, as described on the Authentication Options page.

+

The ntpd program ordinarily requires a configuration file as desccribe on the Configuration Commands and Options collection above. However a client can discover remote servers and configure them automatically. This makes it possible to deploy a fleet of workstations without specifying configuration details specific to the local environment. Further details are on the Automatic Server Discovery page.

+@@ -123,6 +123,8 @@ +
Do not listen to virtual interfaces, defined as those with names containing a colon. This option is deprecated. Please consider using the configuration file interface command, which is more versatile.
+
-M
+
Raise scheduler precision to its maximum (1 msec) using timeBeginPeriod. (Windows only)
++
-m ++
Lock memory. +
-n
+
Don't fork.
+
-N
+diff -up ntp-4.2.6p2/ntpd/ntpd-opts.c.mlock ntp-4.2.6p2/ntpd/ntpd-opts.c +--- ntp-4.2.6p2/ntpd/ntpd-opts.c.mlock 2010-07-09 04:23:28.000000000 +0200 ++++ ntp-4.2.6p2/ntpd/ntpd-opts.c 2010-07-12 16:36:09.000000000 +0200 +@@ -284,6 +284,15 @@ tSCC zNice_Name[] = "ni + #define NICE_FLAGS (OPTST_DISABLED) + + /* ++ * Mlock option description: ++ */ ++tSCC zMlockText[] = ++ "Lock memory"; ++tSCC zMlock_NAME[] = "MLOCK"; ++tSCC zMlock_Name[] = "mlock"; ++#define MLOCK_FLAGS (OPTST_DISABLED) ++ ++/* + * Pidfile option description: + */ + tSCC zPidfileText[] = +@@ -911,6 +920,18 @@ static tOptDesc optDesc[ OPTION_CT ] = { + /* desc, NAME, name */ zPccfreqText, zPccfreq_NAME, zPccfreq_Name, + /* disablement strs */ NULL, NULL }, + ++ { /* entry idx, value */ 32, VALUE_OPT_MLOCK, ++ /* equiv idx, value */ 32, VALUE_OPT_MLOCK, ++ /* equivalenced to */ NO_EQUIVALENT, ++ /* min, max, act ct */ 0, 1, 0, ++ /* opt state flags */ MLOCK_FLAGS, 0, ++ /* last opt argumnt */ { NULL }, ++ /* arg list/cookie */ NULL, ++ /* must/cannot opts */ NULL, NULL, ++ /* option proc */ NULL, ++ /* desc, NAME, name */ zMlockText, zMlock_NAME, zMlock_Name, ++ /* disablement strs */ NULL, NULL }, ++ + { /* entry idx, value */ INDEX_OPT_VERSION, VALUE_OPT_VERSION, + /* equiv idx value */ NO_EQUIVALENT, 0, + /* equivalenced to */ NO_EQUIVALENT, +@@ -1005,7 +1026,7 @@ tOptions ntpdOptions = { + NO_EQUIVALENT, /* '-#' option index */ + NO_EQUIVALENT /* index of default opt */ + }, +- 35 /* full option count */, 32 /* user option count */, ++ 36 /* full option count */, 33 /* user option count */, + ntpd_full_usage, ntpd_short_usage, + NULL, NULL + }; +diff -up ntp-4.2.6p2/ntpd/ntpd-opts.h.mlock ntp-4.2.6p2/ntpd/ntpd-opts.h +--- ntp-4.2.6p2/ntpd/ntpd-opts.h.mlock 2010-07-09 04:23:28.000000000 +0200 ++++ ntp-4.2.6p2/ntpd/ntpd-opts.h 2010-07-12 16:36:09.000000000 +0200 +@@ -84,12 +84,13 @@ typedef enum { + INDEX_OPT_SLEW = 29, + INDEX_OPT_USEPCC = 30, + INDEX_OPT_PCCFREQ = 31, +- INDEX_OPT_VERSION = 32, +- INDEX_OPT_HELP = 33, +- INDEX_OPT_MORE_HELP = 34 ++ INDEX_OPT_MLOCK = 32, ++ INDEX_OPT_VERSION = 33, ++ INDEX_OPT_HELP = 34, ++ INDEX_OPT_MORE_HELP = 35 + } teOptIndex; + +-#define OPTION_CT 35 ++#define OPTION_CT 36 + #define NTPD_VERSION "4.2.6p2" + #define NTPD_FULL_VERSION "ntpd - NTP daemon program - Ver. 4.2.6p2" + +@@ -182,6 +183,10 @@ typedef enum { + # warning undefining MODIFYMMTIMER due to option name conflict + # undef MODIFYMMTIMER + # endif ++# ifdef MLOCK ++# warning undefining MLOCK due to option name conflict ++# undef MLOCK ++# endif + # ifdef NOFORK + # warning undefining NOFORK due to option name conflict + # undef NOFORK +@@ -263,6 +268,7 @@ typedef enum { + # undef LOGFILE + # undef NOVIRTUALIPS + # undef MODIFYMMTIMER ++# undef MLOCK + # undef NOFORK + # undef NICE + # undef PIDFILE +@@ -301,6 +307,7 @@ typedef enum { + #define VALUE_OPT_LOGFILE 'l' + #define VALUE_OPT_NOVIRTUALIPS 'L' + #define VALUE_OPT_MODIFYMMTIMER 'M' ++#define VALUE_OPT_MLOCK 'm' + #define VALUE_OPT_NOFORK 'n' + #define VALUE_OPT_NICE 'N' + #define VALUE_OPT_PIDFILE 'p' +diff -up ntp-4.2.6p2/ntpd/ntpd.c.mlock ntp-4.2.6p2/ntpd/ntpd.c +--- ntp-4.2.6p2/ntpd/ntpd.c.mlock 2010-07-12 16:36:09.000000000 +0200 ++++ ntp-4.2.6p2/ntpd/ntpd.c 2010-07-12 16:36:09.000000000 +0200 +@@ -722,7 +722,8 @@ ntpdmain( + } + #endif + +-#if defined(HAVE_MLOCKALL) && defined(MCL_CURRENT) && defined(MCL_FUTURE) ++#if defined(MCL_CURRENT) && defined(MCL_FUTURE) ++ if (HAVE_OPT( MLOCK )) { + # ifdef HAVE_SETRLIMIT + /* + * Set the stack limit to something smaller, so that we don't lock a lot +@@ -748,7 +749,7 @@ ntpdmain( + * fail if we drop root privlege. To be useful the value + * has to be larger than the largest ntpd resident set size. + */ +- rl.rlim_cur = rl.rlim_max = 32*1024*1024; ++ rl.rlim_cur = rl.rlim_max = 64*1024*1024; + if (setrlimit(RLIMIT_MEMLOCK, &rl) == -1) { + msyslog(LOG_ERR, "Cannot set RLIMIT_MEMLOCK: %m"); + } +@@ -760,6 +761,7 @@ ntpdmain( + */ + if (mlockall(MCL_CURRENT|MCL_FUTURE) < 0) + msyslog(LOG_ERR, "mlockall(): %m"); ++ } + #else /* not (HAVE_MLOCKALL && MCL_CURRENT && MCL_FUTURE) */ + # ifdef HAVE_PLOCK + # ifdef PROCLOCK diff --git a/server/ntp/files/fedora/ntp-4.2.6p2-tentative.patch b/server/ntp/files/fedora/ntp-4.2.6p2-tentative.patch new file mode 100644 index 0000000000..8f589a0eca --- /dev/null +++ b/server/ntp/files/fedora/ntp-4.2.6p2-tentative.patch @@ -0,0 +1,23 @@ +diff -up ntp-4.2.6p2/lib/isc/unix/interfaceiter.c.tentative ntp-4.2.6p2/lib/isc/unix/interfaceiter.c +--- ntp-4.2.6p2/lib/isc/unix/interfaceiter.c.tentative 2010-06-12 08:13:53.000000000 +0200 ++++ ntp-4.2.6p2/lib/isc/unix/interfaceiter.c 2010-07-12 16:25:43.000000000 +0200 +@@ -45,6 +45,8 @@ + #include + #include + ++#include ++ + /* Must follow . */ + #ifdef HAVE_NET_IF6_H + #include +@@ -252,6 +254,10 @@ linux_if_inet6_current(isc_interfaceiter + iter->current.flags |= INTERFACE_F_MULTICAST; + #endif + ++ /* ignore tentative address */ ++ if (flags & IFA_F_TENTATIVE) ++ iter->current.flags &= ~INTERFACE_F_UP; ++ + isc_netaddr_fromin6(&iter->current.address, &addr6); + if (isc_netaddr_islinklocal(&iter->current.address)) { + isc_netaddr_setzone(&iter->current.address, diff --git a/server/ntp/files/fedora/ntp.conf b/server/ntp/files/fedora/ntp.conf new file mode 100644 index 0000000000..7c0bff95c6 --- /dev/null +++ b/server/ntp/files/fedora/ntp.conf @@ -0,0 +1,59 @@ +# For more information about this file, see the man pages +# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5). + +driftfile /var/lib/ntp/drift + +# Permit time synchronization with our time source, but do not +# permit the source to query or modify the service on this system. +restrict default kod nomodify notrap nopeer noquery +restrict -6 default kod nomodify notrap nopeer noquery + +# Permit all access over the loopback interface. This could +# be tightened as well, but to do so would effect some of +# the administrative functions. +restrict 127.0.0.1 +restrict -6 ::1 + +# Hosts on local network are less restricted. +#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap + +# Use public servers from the pool.ntp.org project. +# Please consider joining the pool (http://www.pool.ntp.org/join.html). +server 0.pool.ntp.org +server 1.pool.ntp.org +server 2.pool.ntp.org + +peer 127.127.4.76 + +#broadcast 192.168.1.255 autokey # broadcast server +#broadcastclient # broadcast client +#broadcast 224.0.1.1 autokey # multicast server +#multicastclient 224.0.1.1 # multicast client +#manycastserver 239.255.254.254 # manycast server +#manycastclient 239.255.254.254 autokey # manycast client + +# Undisciplined Local Clock. This is a fake driver intended for backup +# and when no outside source of synchronized time is available. +#server 127.127.1.0 # local clock +#fudge 127.127.1.0 stratum 10 + +# Enable public key cryptography. +#crypto + +includefile /etc/ntp/crypto/pw + +# Key file containing the keys and key identifiers used when operating +# with symmetric key cryptography. +keys /etc/ntp/keys + +# Specify the key identifiers which are trusted. +#trustedkey 4 8 42 + +# Specify the key identifier to use with the ntpdc utility. +#requestkey 8 + +# Specify the key identifier to use with the ntpq utility. +#controlkey 8 + +# Enable writing of statistics records. +#statistics clockstats cryptostats loopstats peerstats diff --git a/server/ntp/files/fedora/ntp.cryptopw b/server/ntp/files/fedora/ntp.cryptopw new file mode 100644 index 0000000000..b76b0ca91b --- /dev/null +++ b/server/ntp/files/fedora/ntp.cryptopw @@ -0,0 +1,4 @@ +# Specify the password to decrypt files containing private keys and identity +# parameters. This is required only if these files have been encrypted. +# +#crypto pw apassword diff --git a/server/ntp/files/fedora/ntp.keys b/server/ntp/files/fedora/ntp.keys new file mode 100644 index 0000000000..5500a718ba --- /dev/null +++ b/server/ntp/files/fedora/ntp.keys @@ -0,0 +1,5 @@ +# +# PLEASE DO NOT USE THE DEFAULT VALUES HERE. +# +#65535 M akey +#1 M pass diff --git a/server/ntp/files/fedora/ntp.step-tickers b/server/ntp/files/fedora/ntp.step-tickers new file mode 100644 index 0000000000..92b33c90ec --- /dev/null +++ b/server/ntp/files/fedora/ntp.step-tickers @@ -0,0 +1 @@ +# List of servers used for initial synchronization. diff --git a/server/ntp/files/fedora/ntpd.sysconfig b/server/ntp/files/fedora/ntpd.sysconfig new file mode 100644 index 0000000000..800a722535 --- /dev/null +++ b/server/ntp/files/fedora/ntpd.sysconfig @@ -0,0 +1,2 @@ +# Drop root to id 'ntp:ntp' by default. +OPTIONS="-u ntp:ntp -p /run/ntpd.pid -g" diff --git a/server/ntp/files/fedora/ntpdate.sysconfig b/server/ntp/files/fedora/ntpdate.sysconfig new file mode 100644 index 0000000000..667093a342 --- /dev/null +++ b/server/ntp/files/fedora/ntpdate.sysconfig @@ -0,0 +1,5 @@ +# Options for ntpdate +OPTIONS="-U ntp -s -b" + +# Set to 'yes' to sync hw clock after successful ntpdate +SYNC_HWCLOCK=no diff --git a/server/ntp/files/fedora/ntpstat-0.2-multipacket.patch b/server/ntp/files/fedora/ntpstat-0.2-multipacket.patch new file mode 100644 index 0000000000..c75c8320b7 --- /dev/null +++ b/server/ntp/files/fedora/ntpstat-0.2-multipacket.patch @@ -0,0 +1,12 @@ +diff -up ntp-4.2.4p7/ntpstat-0.2/ntpstat.c.ntpstat ntp-4.2.4p7/ntpstat-0.2/ntpstat.c +--- ntpstat-0.2/ntpstat.c.ntpstat 2002-06-10 08:02:12.000000000 +0200 ++++ ntpstat-0.2/ntpstat.c 2009-07-20 12:22:35.000000000 +0200 +@@ -151,7 +151,7 @@ int main (void) { + /* For the reply message to be valid, the first byte should be as sent, + and the second byte should be the same, with the response bit set */ + byte1ok = ((ntpmsg.byte1&0x3F) == B1VAL); +- byte2ok = (ntpmsg.byte2 == (B2VAL|RMASK)); ++ byte2ok = ((ntpmsg.byte2 & ~MMASK) == (B2VAL|RMASK)); + if (!(byte1ok && byte2ok)) { + fprintf (stderr,"status word is 0x%02x%02x\n", ntpmsg.byte1,ntpmsg.byte2 ); + die ("return data appears to be invalid based on status word"); diff --git a/server/ntp/files/fedora/ntpstat-0.2-sysvars.patch b/server/ntp/files/fedora/ntpstat-0.2-sysvars.patch new file mode 100644 index 0000000000..c883359d8f --- /dev/null +++ b/server/ntp/files/fedora/ntpstat-0.2-sysvars.patch @@ -0,0 +1,15 @@ +diff -up ntp-4.2.6p1/ntpstat-0.2/ntpstat.c.sysvars ntp-4.2.6p1/ntpstat-0.2/ntpstat.c +--- ntpstat-0.2/ntpstat.c.sysvars 2010-05-03 11:27:47.000000000 +0200 ++++ ntpstat-0.2/ntpstat.c 2010-05-03 11:32:56.000000000 +0200 +@@ -89,9 +89,9 @@ int main (void) { + "modem"}; /* 9 */ + char *newstr; + char *dispstr; +- const char DISP[] = "rootdispersion="; ++ const char DISP[] = "rootdisp="; + const char STRATUM[] = "stratum="; +- const char POLL[] = "poll="; ++ const char POLL[] = "tc="; + const char REFID[] = "refid="; + + /* initialise timeout value */ diff --git a/server/ntp/files/fix-man-pages.sh b/server/ntp/files/fix-man-pages.sh new file mode 100644 index 0000000000..475916996a --- /dev/null +++ b/server/ntp/files/fix-man-pages.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# remove adjacent blank lines +sed -i 's/^[\t\ ]*$//;/./,/^$/!d' man/man*/*.[58] + +#sed -i 's/sntp\.1/sntp\.8/' man/man1/sntp.1 +#mv man/man1/sntp.1 man/man8/sntp.8 + +# fix section numbers +sed -i 's/\(\.TH[a-zA-Z ]*\)[1-9]\(.*\)/\18\2/' man/man8/*.8 diff --git a/server/ntp/files/ntp.conf b/server/ntp/files/ntp.conf new file mode 100644 index 0000000000..5fd22003f5 --- /dev/null +++ b/server/ntp/files/ntp.conf @@ -0,0 +1,52 @@ +## /etc/ntp/ntp.conf +## +## Sample NTP configuration file. +## See package 'ntp-doc' for documentation, Mini-HOWTO and FAQ. + +## Radio and modem clocks by convention have addresses in the +## form 127.127.t.u, where t is the clock type and u is a unit +## number in the range 0-3. +## +## Most of these clocks require support in the form of a +## serial port or special bus peripheral. The particular +## device is normally specified by adding a soft link +## /dev/device-u to the particular hardware device involved, +## where u correspond to the unit number above. +## +## Generic DCF77 clock on serial port (Conrad DCF77) +## Address: 127.127.8.u +## Serial Port: /dev/refclock-u +## +## (create soft link /dev/refclock-0 to the particular ttyS?) +## +# server 127.127.8.0 mode 5 prefer + +## Undisciplined Local Clock. This is a fake driver intended for backup +## and when no outside source of synchronized time is available. +## +server 127.127.1.0 # local clock (LCL) +fudge 127.127.1.0 stratum 10 # LCL is unsynchronized + +## Outside source of synchronized time +## +## server xx.xx.xx.xx # IP address of server + +## Miscellaneous stuff + +driftfile /var/lib/ntp/drift/ntp.drift # path for drift file + +logfile /var/log/ntp # alternate log file +# logconfig =syncstatus + sysevents +# logconfig =all + +# statsdir /tmp/ # directory for statistics files +# filegen peerstats file peerstats type day enable +# filegen loopstats file loopstats type day enable +# filegen clockstats file clockstats type day enable + +# Authentication stuff +# +# keys /etc/ntp.keys # path for keys file +# trustedkey 1 2 3 4 5 6 14 15 # define trusted keys +# requestkey 15 # key (7) for accessing server variables +# controlkey 15 # key (6) for accessing server variables diff --git a/server/ntp/pspec.xml b/server/ntp/pspec.xml new file mode 100644 index 0000000000..315d974fec --- /dev/null +++ b/server/ntp/pspec.xml @@ -0,0 +1,171 @@ + + + + + ntp + http://www.ntp.org + + PisiLinux Community + admins@pisilinux.org + + MIT + BSD + GPLv2+ + service + NTP daemon and client + Network Time Protocol utilities and daemons that will synchronize your computer's time to Coordinated Universal Time (UTC) via the NTP protocol and NTP servers. + https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p4.tar.gz + http://sourceforge.net/projects/ictom/files/ntpstat-0.2.tar.gz + + fix-man-pages.sh + + + avahi-compat-libdns_sd-devel + libedit-devel + net-snmp-devel + perl-HTML-Parser + libcap-devel + openssl-devel + libevent-devel + + + + + + + ntp-server + NTP server + + avahi-compat-libdns_sd + libedit + net-snmp + libcap + openssl + libevent + ntp-client + + + /etc/ntp.conf + /etc/conf.d + /etc/ntp/crypto + /usr/bin/ntpstat + /usr/bin/update-leap + /usr/bin/calc_tickadj + /usr/share/ntp/lib/NTP/Util.pm + /usr/libexec + /usr/sbin + /usr/share/doc + /usr/share/man + /var/lib/ntp + + + fedora/ntp.conf + fedora/ntpd.sysconfig + fedora/ntp.cryptopw + + + System.Package + System.Service + + + + + ntp-client + app:console + util.admin + NTP client + + /etc/conf.d/ntpdate + /etc/ntp/step-tickers + /etc/ntp/keys + /usr/sbin/ntpdate + /usr/share/man/man8/ntpdate.8* + + + fedora/ntpdate.sysconfig + fedora/ntp.step-tickers + fedora/ntp.keys + + + System.Service + + System.Package + + + + + ntp-docs + data:doc + NTP documentation + + ntp-client + + + /usr/share/doc/ntp/html + + + + + + 2016-01-01 + 4.2.8_p4 + Version Bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-07-08 + 4.2.6_p5 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-30 + 4.2.6_p2 + Rebuild. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-03-09 + 4.2.6_p2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-03-06 + 4.2.6_p2 + URL Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-02-16 + 4.2.6_p2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/server/ntp/translations.xml b/server/ntp/translations.xml new file mode 100644 index 0000000000..a093d732a7 --- /dev/null +++ b/server/ntp/translations.xml @@ -0,0 +1,23 @@ + + + + ntp + NTP hizmeti ve istemcisi + ntp, NTP protokolü üzerinden uzak sunucuları kullanarak sisteminizin zamanını eşitlemek için gerekli araçları ve hizmetleri içerir. + + + + ntp-server + NTP hizmeti + + + + ntp-client + NTP istemcisi + + + + ntp-docs + NTP belgeleri + + diff --git a/util/archive/p7zip/actions.py b/util/archive/p7zip/actions.py new file mode 100644 index 0000000000..c2f1e168a4 --- /dev/null +++ b/util/archive/p7zip/actions.py @@ -0,0 +1,39 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +WorkDir = "p7zip_%s" % get.srcVERSION() + +makefiles = { + 'i686' : "makefile.linux_x86_asm_gcc_4.X", + 'x86_64' : "makefile.linux_amd64_asm" + } + +def setup(): + shelltools.copy(makefiles[get.ARCH()], "makefile.machine") + + for i in shelltools.ls("makefile.*"): + pisitools.dosed(i, "^CC=gcc ", "CC=%s " % get.CC()) + pisitools.dosed(i, "^CXX=g\+\+ ", "CXX=%s " % get.CXX()) + +def build(): + # do not force CC and CXX here since asm build fails + autotools.make('OPTFLAGS="%s -DHAVE_GCCVISIBILITYPATCH -fvisibility=hidden -fvisibility-inlines-hidden" \ + all3' % get.CFLAGS()) + +def install(): + pisitools.insinto("/usr/lib/p7zip","bin/*") + + # p7zip wrapper + pisitools.dobin("contrib/gzip-like_CLI_wrapper_for_7z/p7zip") + pisitools.doman("contrib/gzip-like_CLI_wrapper_for_7z/man1/p7zip.1") + + pisitools.dohtml("DOC/MANUAL/*") + pisitools.dodoc("ChangeLog", "README", "TODO", "DOC/*.txt") diff --git a/util/archive/p7zip/files/7z b/util/archive/p7zip/files/7z new file mode 100644 index 0000000000..f0f6a49706 --- /dev/null +++ b/util/archive/p7zip/files/7z @@ -0,0 +1,4 @@ +#!/bin/sh +cd "" +export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:" +exec /usr/lib/p7zip/7z "$@" diff --git a/util/archive/p7zip/files/7za b/util/archive/p7zip/files/7za new file mode 100644 index 0000000000..2e43b1c51a --- /dev/null +++ b/util/archive/p7zip/files/7za @@ -0,0 +1,4 @@ +#!/bin/sh +cd "" +export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:" +exec /usr/lib/p7zip/7za "$@" diff --git a/util/archive/p7zip/pspec.xml b/util/archive/p7zip/pspec.xml new file mode 100644 index 0000000000..06c587a342 --- /dev/null +++ b/util/archive/p7zip/pspec.xml @@ -0,0 +1,66 @@ + + + + + p7zip + http://p7zip.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + Port of 7-Zip archiver for *nix + p7zip is a port of 7-Zip archiver for Unix. Supports packing-unpacking 7z, ZIP, GZIP, BZIP2 and TAR archives and unpacking RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB and NSIS arhives. + mirrors://sourceforge/p7zip/p7zip/15.09/p7zip_15.09_src_all.tar.bz2 + + + + p7zip + + libgcc + + + /usr/bin + /usr/lib/p7zip + /usr/lib/p7zip/Codecs + /usr/share/doc + /usr/share/man + + + 7z + 7za + + + + + + 2016-01-01 + 15.09 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-16 + 9.38 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-02 + 9.20.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-11-03 + 9.20.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/util/archive/p7zip/translations.xml b/util/archive/p7zip/translations.xml new file mode 100644 index 0000000000..7fd31546e9 --- /dev/null +++ b/util/archive/p7zip/translations.xml @@ -0,0 +1,8 @@ + + + + p7zip + 7-zip arşivleme programı + 7-zip arşivleme programı. 7z, ZIP, GZIP, BZIP2 ve TAR arşivleri oluşturabilir ve açabilir; RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB ve NSIS arşivlerini ise açabilir. + + diff --git a/util/archive/rar/actions.py b/util/archive/rar/actions.py new file mode 100644 index 0000000000..80dd69d60a --- /dev/null +++ b/util/archive/rar/actions.py @@ -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 pisitools +from pisi.actionsapi import get + +WorkDir = "%s/%s" % (get.ARCH(), get.srcNAME()) +NoStrip = ["/"] + +def install(): + pisitools.insinto("/opt/rar/bin", "rar") + pisitools.insinto("/opt/rar/lib", "default.sfx") + pisitools.insinto("/opt/rar/etc", "rarfiles.lst") + + pisitools.dosym("/opt/rar/bin/rar", "/usr/bin/rar") + + pisitools.dodoc("license.txt", "readme.txt", "whatsnew.txt", "order.htm", "rar.txt") diff --git a/util/archive/rar/pspec.xml b/util/archive/rar/pspec.xml new file mode 100644 index 0000000000..0e6ed33329 --- /dev/null +++ b/util/archive/rar/pspec.xml @@ -0,0 +1,70 @@ + + + + + rar + http://www.rarlab.com + + PisiLinux Community + admins@pisilinux.org + + RAR + app:console + RAR compressor + rar is an compressor supporting multiple volume archives and damage protection. It can also create SFX-archives. This program is shareware and you must register it after 40 days of use. + http://www.rarlab.com/rar/rarlinux-5.3.0.tar.gz + http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz + + + + rar + + libgcc + + + /usr/bin + /opt/rar/bin + /opt/rar/lib + /opt/rar/etc + /usr/share/doc/rar + + + + + + 2016-01-01 + 5.3.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-25 + 5.2.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-21 + 5.0.0 + Update + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-19 + 4.2.0 + New version + Ertan Güven + ertan@pisilinux.org + + + 2011-05-04 + 4.0.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/util/archive/rar/translations.xml b/util/archive/rar/translations.xml new file mode 100644 index 0000000000..05a4ee42b4 --- /dev/null +++ b/util/archive/rar/translations.xml @@ -0,0 +1,8 @@ + + + + rar + RAR sıkıştırıcı + rar, çoklu arşivleri ve hasar korumayı destekleyen bir sıkıştırıcıdır. rar aynı zamanda SFX arşivleri de yaratabilir. Bu uygulama ücretli olup 40 günlük kullanımdan sonra kayıt olunması gerekmektedir. + +